File tree Expand file tree Collapse file tree 4 files changed +50
-24
lines changed
donation/content-types/donation
projects-list/content-types/projects-list
extensions/documentation/documentation/1.0.0 Expand file tree Collapse file tree 4 files changed +50
-24
lines changed Original file line number Diff line number Diff line change 19
19
"banner_title" : {
20
20
"type" : " string"
21
21
},
22
+ "banner_subtitle" : {
23
+ "type" : " string"
24
+ },
22
25
"banner_video" : {
23
26
"type" : " media" ,
24
27
"multiple" : false ,
Original file line number Diff line number Diff line change 29
29
"relation" : " oneToMany" ,
30
30
"target" : " api::thematic.thematic"
31
31
},
32
- "informations" : {
33
- "type" : " component" ,
34
- "component" : " information.information-block" ,
35
- "repeatable" : true
36
- },
37
32
"seasons" : {
38
33
"type" : " relation" ,
39
34
"relation" : " oneToMany" ,
58
53
"type" : " component" ,
59
54
"component" : " call-to-action.call-to-action" ,
60
55
"repeatable" : false
56
+ },
57
+ "informations_title" : {
58
+ "type" : " string"
59
+ },
60
+ "informations" : {
61
+ "type" : " component" ,
62
+ "component" : " information.information-block" ,
63
+ "repeatable" : true
61
64
}
62
65
}
63
66
}
Original file line number Diff line number Diff line change 14
14
"name": "Apache 2.0",
15
15
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
16
16
},
17
- "x-generation-date": "2025-09-29T13:11:12.255Z "
17
+ "x-generation-date": "2025-09-30T19:28:18.174Z "
18
18
},
19
19
"x-strapi-config": {
20
20
"plugins": [
28088
28088
"banner_title": {
28089
28089
"type": "string"
28090
28090
},
28091
+ "banner_subtitle": {
28092
+ "type": "string"
28093
+ },
28091
28094
"banner_video": {
28092
28095
"oneOf": [
28093
28096
{
28194
28197
"banner_title": {
28195
28198
"type": "string"
28196
28199
},
28200
+ "banner_subtitle": {
28201
+ "type": "string"
28202
+ },
28197
28203
"banner_video": {
28198
28204
"type": "object",
28199
28205
"properties": {
28401
28407
"banner_title": {
28402
28408
"type": "string"
28403
28409
},
28410
+ "banner_subtitle": {
28411
+ "type": "string"
28412
+ },
28404
28413
"banner_video": {
28405
28414
"type": "object",
28406
28415
"properties": {
55309
55318
"example": "string or id"
55310
55319
}
55311
55320
},
55312
- "informations": {
55313
- "type": "array",
55314
- "items": {
55315
- "$ref": "#/components/schemas/InformationInformationBlockComponent"
55316
- }
55317
- },
55318
55321
"seasons": {
55319
55322
"type": "array",
55320
55323
"items": {
55347
55350
"join_cta": {
55348
55351
"$ref": "#/components/schemas/CallToActionCallToActionComponent"
55349
55352
},
55353
+ "informations_title": {
55354
+ "type": "string"
55355
+ },
55356
+ "informations": {
55357
+ "type": "array",
55358
+ "items": {
55359
+ "$ref": "#/components/schemas/InformationInformationBlockComponent"
55360
+ }
55361
+ },
55350
55362
"locale": {
55351
55363
"type": "string"
55352
55364
},
57821
57833
}
57822
57834
}
57823
57835
},
57824
- "informations": {
57825
- "type": "array",
57826
- "items": {
57827
- "$ref": "#/components/schemas/InformationInformationBlockComponent"
57828
- }
57829
- },
57830
57836
"seasons": {
57831
57837
"type": "array",
57832
57838
"items": {
57859
57865
"join_cta": {
57860
57866
"$ref": "#/components/schemas/CallToActionCallToActionComponent"
57861
57867
},
57868
+ "informations_title": {
57869
+ "type": "string"
57870
+ },
57871
+ "informations": {
57872
+ "type": "array",
57873
+ "items": {
57874
+ "$ref": "#/components/schemas/InformationInformationBlockComponent"
57875
+ }
57876
+ },
57862
57877
"createdAt": {
57863
57878
"type": "string",
57864
57879
"format": "date-time"
57930
57945
}
57931
57946
}
57932
57947
},
57933
- "informations": {
57934
- "type": "array",
57935
- "items": {
57936
- "$ref": "#/components/schemas/InformationInformationBlockComponent"
57937
- }
57938
- },
57939
57948
"seasons": {
57940
57949
"type": "array",
57941
57950
"items": {
57968
57977
"join_cta": {
57969
57978
"$ref": "#/components/schemas/CallToActionCallToActionComponent"
57970
57979
},
57980
+ "informations_title": {
57981
+ "type": "string"
57982
+ },
57983
+ "informations": {
57984
+ "type": "array",
57985
+ "items": {
57986
+ "$ref": "#/components/schemas/InformationInformationBlockComponent"
57987
+ }
57988
+ },
57971
57989
"createdAt": {
57972
57990
"type": "string",
57973
57991
"format": "date-time"
Original file line number Diff line number Diff line change @@ -670,6 +670,7 @@ export interface ApiDonationDonation extends Struct.SingleTypeSchema {
670
670
'call-to-action.call-to-action-with-image' ,
671
671
true
672
672
> ;
673
+ banner_subtitle : Schema . Attribute . String ;
673
674
banner_title : Schema . Attribute . String ;
674
675
banner_video : Schema . Attribute . Media <
675
676
'images' | 'files' | 'videos' | 'audios'
@@ -1525,6 +1526,7 @@ export interface ApiProjectsListProjectsList extends Struct.SingleTypeSchema {
1525
1526
'information.information-block' ,
1526
1527
true
1527
1528
> ;
1529
+ informations_title : Schema . Attribute . String ;
1528
1530
introduction : Schema . Attribute . Text ;
1529
1531
introduction_cta : Schema . Attribute . Component <
1530
1532
'call-to-action.call-to-action-with-image' ,
You can’t perform that action at this time.
0 commit comments