api.fluff4.me 1.0.443 → 1.0.445
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 +4 -6
- package/openapi.json +12 -15
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -86,7 +86,7 @@ export interface AuthorSelf {
|
|
|
86
86
|
authorisations?: Authorisation[] | null
|
|
87
87
|
patreon_tiers?: Tier[] | null
|
|
88
88
|
patreon_campaign?: PatreonCampaign | null
|
|
89
|
-
patreon_patron?:
|
|
89
|
+
patreon_patron?: Authorisation | null
|
|
90
90
|
works?: Work[] | null
|
|
91
91
|
}
|
|
92
92
|
|
|
@@ -108,12 +108,10 @@ export interface Tier {
|
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
export interface PatreonCampaign {
|
|
111
|
-
url: string
|
|
112
|
-
display_name: string
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
export interface PatreonPatron {
|
|
116
111
|
display_name: string
|
|
112
|
+
service: string
|
|
113
|
+
id: string
|
|
114
|
+
url: string
|
|
117
115
|
}
|
|
118
116
|
|
|
119
117
|
export interface Work {
|
package/openapi.json
CHANGED
|
@@ -350,7 +350,7 @@
|
|
|
350
350
|
"patreon_patron": {
|
|
351
351
|
"anyOf": [
|
|
352
352
|
{
|
|
353
|
-
"$ref": "#/components/schema/
|
|
353
|
+
"$ref": "#/components/schema/Authorisation"
|
|
354
354
|
},
|
|
355
355
|
{
|
|
356
356
|
"type": "null"
|
|
@@ -491,27 +491,24 @@
|
|
|
491
491
|
"PatreonCampaign": {
|
|
492
492
|
"type": "object",
|
|
493
493
|
"properties": {
|
|
494
|
-
"
|
|
494
|
+
"display_name": {
|
|
495
495
|
"type": "string"
|
|
496
496
|
},
|
|
497
|
-
"
|
|
497
|
+
"service": {
|
|
498
498
|
"type": "string"
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
"
|
|
504
|
-
]
|
|
505
|
-
},
|
|
506
|
-
"PatreonPatron": {
|
|
507
|
-
"type": "object",
|
|
508
|
-
"properties": {
|
|
509
|
-
"display_name": {
|
|
499
|
+
},
|
|
500
|
+
"id": {
|
|
501
|
+
"type": "string"
|
|
502
|
+
},
|
|
503
|
+
"url": {
|
|
510
504
|
"type": "string"
|
|
511
505
|
}
|
|
512
506
|
},
|
|
513
507
|
"required": [
|
|
514
|
-
"display_name"
|
|
508
|
+
"display_name",
|
|
509
|
+
"service",
|
|
510
|
+
"id",
|
|
511
|
+
"url"
|
|
515
512
|
]
|
|
516
513
|
},
|
|
517
514
|
"Work": {
|
package/package.json
CHANGED