File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
generators/src/main/java/com/algolia/codegen Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -152,6 +152,7 @@ public class AlgoliaSwiftGenerator extends Swift5ClientCodegen {
152152 "facethits" ,
153153 "gettaskresponse" ,
154154 "hit" ,
155+ "indexsettingsfacets" ,
155156 "main" ,
156157 "multiplebatchrequest" ,
157158 "multiplebatchresponse" ,
@@ -210,7 +211,8 @@ public static String getClientName(String client) {
210211 public void processOpts () {
211212 CLIENT = (String ) additionalProperties .get ("client" );
212213
213- // We will use the default URLSession library coming from the Foundation package to handle HTTP
214+ // We will use the default URLSession library coming from the Foundation package
215+ // to handle HTTP
214216 // requests
215217 setLibrary (LIBRARY_URLSESSION );
216218
@@ -426,7 +428,8 @@ public String getTypeDeclaration(Schema p) {
426428 ? "Set<" + getTypeDeclaration (items ) + ">"
427429 : "[" + getTypeDeclaration (items ) + "]" ;
428430 } else if (ModelUtils .isMapSchema (target )) {
429- // Note: ModelUtils.isMapSchema(p) returns true when p is a composed schema that also defines
431+ // Note: ModelUtils.isMapSchema(p) returns true when p is a composed schema that
432+ // also defines
430433 // additionalproperties: true
431434 Schema <?> inner = ModelUtils .getAdditionalProperties (target );
432435 if (inner == null ) {
You can’t perform that action at this time.
0 commit comments