components.d.ts
7.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
import type { Schema, Struct } from '@strapi/strapi';
export interface AboutusCouncilTeam extends Struct.ComponentSchema {
collectionName: 'components_aboutus_council_teams';
info: {
displayName: 'Council Team';
};
attributes: {
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Information: Schema.Attribute.Text;
Name: Schema.Attribute.String;
};
}
export interface AboutusMission extends Struct.ComponentSchema {
collectionName: 'components_aboutus_missions';
info: {
displayName: 'Mission';
};
attributes: {
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Title: Schema.Attribute.String;
};
}
export interface AboutusMissionAndVision extends Struct.ComponentSchema {
collectionName: 'components_aboutus_mission_and_visions';
info: {
displayName: 'Mission&Vision';
};
attributes: {
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Title: Schema.Attribute.String;
};
}
export interface AboutusVideoGallery extends Struct.ComponentSchema {
collectionName: 'components_aboutus_video_galleries';
info: {
displayName: 'VideoGallery';
};
attributes: {
Heading: Schema.Attribute.Component<'heading.heading', false>;
Video: Schema.Attribute.Component<'aboutus.videolist', true>;
};
}
export interface AboutusVideolist extends Struct.ComponentSchema {
collectionName: 'components_aboutus_videolists';
info: {
displayName: 'Videolist';
};
attributes: {
Title: Schema.Attribute.String;
videolink: Schema.Attribute.String;
};
}
export interface AboutusVission extends Struct.ComponentSchema {
collectionName: 'components_aboutus_vissions';
info: {
displayName: 'vission';
};
attributes: {};
}
export interface ButtonButtton extends Struct.ComponentSchema {
collectionName: 'components_button_butttons';
info: {
displayName: 'Buttton';
};
attributes: {
Btn_link: Schema.Attribute.String;
Label: Schema.Attribute.String;
};
}
export interface HeadingHeading extends Struct.ComponentSchema {
collectionName: 'components_heading_headings';
info: {
displayName: 'Heading';
};
attributes: {
Heading1: Schema.Attribute.String;
Heading2: Schema.Attribute.String;
Subheading: Schema.Attribute.String;
};
}
export interface HomeHome extends Struct.ComponentSchema {
collectionName: 'components_home_homes';
info: {
displayName: 'Home';
};
attributes: {};
}
export interface HomeLifeatIba extends Struct.ComponentSchema {
collectionName: 'components_home_lifeat_ibas';
info: {
displayName: 'LifeatIBA';
};
attributes: {
Heading: Schema.Attribute.Component<'heading.heading', false>;
};
}
export interface HomeOverview extends Struct.ComponentSchema {
collectionName: 'components_home_overviews';
info: {
displayName: 'Overview';
};
attributes: {
Description: Schema.Attribute.Text;
Heading: Schema.Attribute.Component<'heading.heading', true>;
};
}
export interface InnerBannerInnerBanner extends Struct.ComponentSchema {
collectionName: 'components_inner_banner_inner_banners';
info: {
displayName: 'InnerBanner';
};
attributes: {
Button: Schema.Attribute.Component<'button.buttton', false>;
Description: Schema.Attribute.Text;
Desktopbanner: Schema.Attribute.Media<
'images' | 'files' | 'videos' | 'audios'
>;
logos: Schema.Attribute.Media<
'images' | 'files' | 'videos' | 'audios',
true
>;
Mobilebanner: Schema.Attribute.Media<
'images' | 'files' | 'videos' | 'audios'
>;
PageTitle: Schema.Attribute.String;
Subtitle: Schema.Attribute.String;
};
}
export interface SharedMedia extends Struct.ComponentSchema {
collectionName: 'components_shared_media';
info: {
displayName: 'Media';
icon: 'file-video';
};
attributes: {
file: Schema.Attribute.Media<'images' | 'files' | 'videos'>;
};
}
export interface SharedMetaSocial extends Struct.ComponentSchema {
collectionName: 'components_shared_meta_socials';
info: {
displayName: 'metaSocial';
icon: 'project-diagram';
};
attributes: {
description: Schema.Attribute.String &
Schema.Attribute.Required &
Schema.Attribute.SetMinMaxLength<{
maxLength: 65;
}>;
image: Schema.Attribute.Media<'images' | 'files' | 'videos'>;
socialNetwork: Schema.Attribute.Enumeration<['Facebook', 'Twitter']> &
Schema.Attribute.Required;
title: Schema.Attribute.String &
Schema.Attribute.Required &
Schema.Attribute.SetMinMaxLength<{
maxLength: 60;
}>;
};
}
export interface SharedPageSchema extends Struct.ComponentSchema {
collectionName: 'components_shared_page_schemas';
info: {
displayName: 'Page Schema';
};
attributes: {
jsonSchema: Schema.Attribute.JSON;
schemaName: Schema.Attribute.String;
};
}
export interface SharedQuote extends Struct.ComponentSchema {
collectionName: 'components_shared_quotes';
info: {
displayName: 'Quote';
icon: 'indent';
};
attributes: {
body: Schema.Attribute.Text;
title: Schema.Attribute.String;
};
}
export interface SharedRichText extends Struct.ComponentSchema {
collectionName: 'components_shared_rich_texts';
info: {
description: '';
displayName: 'Rich text';
icon: 'align-justify';
};
attributes: {
body: Schema.Attribute.RichText;
};
}
export interface SharedSeo extends Struct.ComponentSchema {
collectionName: 'components_shared_seos';
info: {
description: '';
displayName: 'seo';
icon: 'search';
};
attributes: {
canonicalURL: Schema.Attribute.String;
keywords: Schema.Attribute.Text;
metaDescription: Schema.Attribute.String &
Schema.Attribute.SetMinMaxLength<{
maxLength: 250;
minLength: 50;
}>;
metaImage: Schema.Attribute.Media<'images'>;
metaRobots: Schema.Attribute.String;
metaSocial: Schema.Attribute.Component<'shared.meta-social', true>;
metaTitle: Schema.Attribute.String &
Schema.Attribute.Required &
Schema.Attribute.SetMinMaxLength<{
maxLength: 200;
}> &
Schema.Attribute.DefaultTo<'IBA'>;
metaViewport: Schema.Attribute.String;
schema: Schema.Attribute.Component<'shared.page-schema', true>;
};
}
export interface SharedSlider extends Struct.ComponentSchema {
collectionName: 'components_shared_sliders';
info: {
description: '';
displayName: 'Slider';
icon: 'address-book';
};
attributes: {
files: Schema.Attribute.Media<'images', true>;
};
}
declare module '@strapi/strapi' {
export module Public {
export interface ComponentSchemas {
'aboutus.council-team': AboutusCouncilTeam;
'aboutus.mission': AboutusMission;
'aboutus.mission-and-vision': AboutusMissionAndVision;
'aboutus.video-gallery': AboutusVideoGallery;
'aboutus.videolist': AboutusVideolist;
'aboutus.vission': AboutusVission;
'button.buttton': ButtonButtton;
'heading.heading': HeadingHeading;
'home.home': HomeHome;
'home.lifeat-iba': HomeLifeatIba;
'home.overview': HomeOverview;
'inner-banner.inner-banner': InnerBannerInnerBanner;
'shared.media': SharedMedia;
'shared.meta-social': SharedMetaSocial;
'shared.page-schema': SharedPageSchema;
'shared.quote': SharedQuote;
'shared.rich-text': SharedRichText;
'shared.seo': SharedSeo;
'shared.slider': SharedSlider;
}
}
}