api.fluff4.me 1.0.736 → 1.0.737
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 +12 -6
- package/openapi.json +44 -22
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -65,6 +65,12 @@ export interface AuthorSelf {
|
|
|
65
65
|
supporter?: Supporter | null
|
|
66
66
|
supporter_months_supported: number
|
|
67
67
|
description: TextBody
|
|
68
|
+
license?:
|
|
69
|
+
| {
|
|
70
|
+
name: string
|
|
71
|
+
link: string
|
|
72
|
+
}
|
|
73
|
+
| null
|
|
68
74
|
authorisations?: Authorisation[] | null
|
|
69
75
|
patreon_campaign?: PatreonCampaign | null
|
|
70
76
|
patreon_patron?: Authorisation | null
|
|
@@ -74,12 +80,6 @@ export interface AuthorSelf {
|
|
|
74
80
|
totp_state?: "enabled" | "disabled" | null
|
|
75
81
|
auth_services_required?: number | null
|
|
76
82
|
age: "sixteen_plus" | "eighteen_plus"
|
|
77
|
-
license?:
|
|
78
|
-
| {
|
|
79
|
-
name: string
|
|
80
|
-
link: string
|
|
81
|
-
}
|
|
82
|
-
| null
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
export interface TextBody {
|
|
@@ -208,6 +208,12 @@ export interface AuthorFull {
|
|
|
208
208
|
supporter?: Supporter | null
|
|
209
209
|
supporter_months_supported: number
|
|
210
210
|
description: TextBody
|
|
211
|
+
license?:
|
|
212
|
+
| {
|
|
213
|
+
name: string
|
|
214
|
+
link: string
|
|
215
|
+
}
|
|
216
|
+
| null
|
|
211
217
|
}
|
|
212
218
|
|
|
213
219
|
export interface AuthorInsertBody {
|
package/openapi.json
CHANGED
|
@@ -274,6 +274,28 @@
|
|
|
274
274
|
"description": {
|
|
275
275
|
"$ref": "#/components/schema/TextBody"
|
|
276
276
|
},
|
|
277
|
+
"license": {
|
|
278
|
+
"anyOf": [
|
|
279
|
+
{
|
|
280
|
+
"type": "object",
|
|
281
|
+
"properties": {
|
|
282
|
+
"name": {
|
|
283
|
+
"type": "string"
|
|
284
|
+
},
|
|
285
|
+
"link": {
|
|
286
|
+
"type": "string"
|
|
287
|
+
}
|
|
288
|
+
},
|
|
289
|
+
"required": [
|
|
290
|
+
"name",
|
|
291
|
+
"link"
|
|
292
|
+
]
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"type": "null"
|
|
296
|
+
}
|
|
297
|
+
]
|
|
298
|
+
},
|
|
277
299
|
"authorisations": {
|
|
278
300
|
"anyOf": [
|
|
279
301
|
{
|
|
@@ -373,28 +395,6 @@
|
|
|
373
395
|
"sixteen_plus",
|
|
374
396
|
"eighteen_plus"
|
|
375
397
|
]
|
|
376
|
-
},
|
|
377
|
-
"license": {
|
|
378
|
-
"anyOf": [
|
|
379
|
-
{
|
|
380
|
-
"type": "object",
|
|
381
|
-
"properties": {
|
|
382
|
-
"name": {
|
|
383
|
-
"type": "string"
|
|
384
|
-
},
|
|
385
|
-
"link": {
|
|
386
|
-
"type": "string"
|
|
387
|
-
}
|
|
388
|
-
},
|
|
389
|
-
"required": [
|
|
390
|
-
"name",
|
|
391
|
-
"link"
|
|
392
|
-
]
|
|
393
|
-
},
|
|
394
|
-
{
|
|
395
|
-
"type": "null"
|
|
396
|
-
}
|
|
397
|
-
]
|
|
398
398
|
}
|
|
399
399
|
},
|
|
400
400
|
"required": [
|
|
@@ -1086,6 +1086,28 @@
|
|
|
1086
1086
|
},
|
|
1087
1087
|
"description": {
|
|
1088
1088
|
"$ref": "#/components/schema/TextBody"
|
|
1089
|
+
},
|
|
1090
|
+
"license": {
|
|
1091
|
+
"anyOf": [
|
|
1092
|
+
{
|
|
1093
|
+
"type": "object",
|
|
1094
|
+
"properties": {
|
|
1095
|
+
"name": {
|
|
1096
|
+
"type": "string"
|
|
1097
|
+
},
|
|
1098
|
+
"link": {
|
|
1099
|
+
"type": "string"
|
|
1100
|
+
}
|
|
1101
|
+
},
|
|
1102
|
+
"required": [
|
|
1103
|
+
"name",
|
|
1104
|
+
"link"
|
|
1105
|
+
]
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"type": "null"
|
|
1109
|
+
}
|
|
1110
|
+
]
|
|
1089
1111
|
}
|
|
1090
1112
|
},
|
|
1091
1113
|
"required": [
|
package/package.json
CHANGED