api.fluff4.me 1.0.628 → 1.0.630
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +3 -0
- package/openapi.json +29 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -73,6 +73,7 @@ export interface AuthorSelf {
|
|
|
73
73
|
roles?: Role[] | null
|
|
74
74
|
totp_state?: "enabled" | "disabled" | null
|
|
75
75
|
auth_services_required?: number | null
|
|
76
|
+
age: "sixteen_plus" | "eighteen_plus"
|
|
76
77
|
}
|
|
77
78
|
|
|
78
79
|
export interface TextBody {
|
|
@@ -167,6 +168,7 @@ export interface AuthorCreateBody {
|
|
|
167
168
|
settings?: string | null
|
|
168
169
|
username_colours?: number[] | null
|
|
169
170
|
card_colours?: number[] | null
|
|
171
|
+
age: "sixteen_plus" | "eighteen_plus"
|
|
170
172
|
}
|
|
171
173
|
|
|
172
174
|
export interface AuthorFull {
|
|
@@ -205,6 +207,7 @@ export interface AuthorInsertBody {
|
|
|
205
207
|
settings?: string | null
|
|
206
208
|
username_colours?: number[] | null
|
|
207
209
|
card_colours?: number[] | null
|
|
210
|
+
age: "sixteen_plus" | "eighteen_plus"
|
|
208
211
|
}
|
|
209
212
|
|
|
210
213
|
export interface AuthorUpdateSettingsBody {
|
package/openapi.json
CHANGED
|
@@ -366,6 +366,13 @@
|
|
|
366
366
|
"type": "null"
|
|
367
367
|
}
|
|
368
368
|
]
|
|
369
|
+
},
|
|
370
|
+
"age": {
|
|
371
|
+
"type": "string",
|
|
372
|
+
"enum": [
|
|
373
|
+
"sixteen_plus",
|
|
374
|
+
"eighteen_plus"
|
|
375
|
+
]
|
|
369
376
|
}
|
|
370
377
|
},
|
|
371
378
|
"required": [
|
|
@@ -377,7 +384,8 @@
|
|
|
377
384
|
"work_count",
|
|
378
385
|
"vanity",
|
|
379
386
|
"supporter_months_supported",
|
|
380
|
-
"description"
|
|
387
|
+
"description",
|
|
388
|
+
"age"
|
|
381
389
|
]
|
|
382
390
|
},
|
|
383
391
|
"TextBody": {
|
|
@@ -884,11 +892,19 @@
|
|
|
884
892
|
"type": "null"
|
|
885
893
|
}
|
|
886
894
|
]
|
|
895
|
+
},
|
|
896
|
+
"age": {
|
|
897
|
+
"type": "string",
|
|
898
|
+
"enum": [
|
|
899
|
+
"sixteen_plus",
|
|
900
|
+
"eighteen_plus"
|
|
901
|
+
]
|
|
887
902
|
}
|
|
888
903
|
},
|
|
889
904
|
"required": [
|
|
890
905
|
"name",
|
|
891
|
-
"vanity"
|
|
906
|
+
"vanity",
|
|
907
|
+
"age"
|
|
892
908
|
]
|
|
893
909
|
},
|
|
894
910
|
"AuthorFull": {
|
|
@@ -1159,8 +1175,18 @@
|
|
|
1159
1175
|
"type": "null"
|
|
1160
1176
|
}
|
|
1161
1177
|
]
|
|
1178
|
+
},
|
|
1179
|
+
"age": {
|
|
1180
|
+
"type": "string",
|
|
1181
|
+
"enum": [
|
|
1182
|
+
"sixteen_plus",
|
|
1183
|
+
"eighteen_plus"
|
|
1184
|
+
]
|
|
1162
1185
|
}
|
|
1163
|
-
}
|
|
1186
|
+
},
|
|
1187
|
+
"required": [
|
|
1188
|
+
"age"
|
|
1189
|
+
]
|
|
1164
1190
|
},
|
|
1165
1191
|
"AuthorUpdateSettingsBody": {
|
|
1166
1192
|
"type": "object",
|
package/package.json
CHANGED