File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed
generators/src/main/java/com/algolia/codegen
templates/javascript/clients/algoliasearch/builds Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 24
24
if : ${{ github.event.number }}
25
25
permissions :
26
26
pull-requests : write
27
+ issues : write
27
28
steps :
28
29
- uses : actions/checkout@v4
29
30
Original file line number Diff line number Diff line change @@ -38,6 +38,11 @@ public class AlgoliaSwiftGenerator extends Swift5ClientCodegen {
38
38
"aroundradiusall" ,
39
39
"automaticfacetfilter" ,
40
40
"automaticfacetfilters" ,
41
+ "banner" ,
42
+ "bannerimage" ,
43
+ "bannerimageurl" ,
44
+ "bannerlink" ,
45
+ "banners" ,
41
46
"baseindexsettings" ,
42
47
"basesearchparams" ,
43
48
"basesearchparamswithoutquery" ,
@@ -109,7 +114,8 @@ public class AlgoliaSwiftGenerator extends Swift5ClientCodegen {
109
114
"timerange" ,
110
115
"typotolerance" ,
111
116
"typotoleranceenum" ,
112
- "value"
117
+ "value" ,
118
+ "widgets"
113
119
);
114
120
115
121
// This is used for the CTS generation
Original file line number Diff line number Diff line change @@ -13,6 +13,11 @@ import type {
13
13
AroundRadiusAll,
14
14
AutomaticFacetFilter,
15
15
AutomaticFacetFilters,
16
+ Banner,
17
+ BannerImage,
18
+ BannerImageUrl,
19
+ BannerLink,
20
+ Banners,
16
21
BaseIndexSettings,
17
22
BaseSearchParams,
18
23
BaseSearchParamsWithoutQuery,
@@ -79,6 +84,7 @@ import type {
79
84
TypoTolerance,
80
85
TypoToleranceEnum,
81
86
Value,
87
+ Widgets,
82
88
} from '@algolia/client-search';
83
89
import { apiClientVersion } from '@algolia/client-search';
84
90
import type { RecommendClient } from '@algolia/recommend';
@@ -103,6 +109,11 @@ export {
103
109
AroundRadiusAll,
104
110
AutomaticFacetFilter,
105
111
AutomaticFacetFilters,
112
+ Banner,
113
+ BannerImage,
114
+ BannerImageUrl,
115
+ BannerLink,
116
+ Banners,
106
117
BaseIndexSettings,
107
118
BaseSearchParams,
108
119
BaseSearchParamsWithoutQuery,
@@ -170,6 +181,7 @@ export {
170
181
TypoTolerance,
171
182
TypoToleranceEnum,
172
183
Value,
184
+ Widgets,
173
185
} ;
174
186
175
187
/**
You can’t perform that action at this time.
0 commit comments