Skip to content

Commit fee1b9c

Browse files
committed
bc
1 parent 28c7142 commit fee1b9c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

generators/src/main/java/com/algolia/codegen/AlgoliaSwiftGenerator.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)