api.fluff4.me 1.0.497 → 1.0.499
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 +34 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -249,11 +249,13 @@ export interface ChapterCreateBody {
|
|
|
249
249
|
global_tags?: string[] | null
|
|
250
250
|
custom_tags?: string[] | null
|
|
251
251
|
tier_id?: string | null
|
|
252
|
+
tier_ids?: string[] | null
|
|
252
253
|
}
|
|
253
254
|
|
|
254
255
|
export interface ChapterPatreon {
|
|
255
256
|
campaign: PatreonCampaignLite
|
|
256
257
|
tier: PatreonCampaignTier
|
|
258
|
+
tiers: PatreonCampaignTier[]
|
|
257
259
|
}
|
|
258
260
|
|
|
259
261
|
export interface PatreonCampaignLite {
|
|
@@ -271,6 +273,7 @@ export interface ChapterUpdateBody {
|
|
|
271
273
|
global_tags?: string[] | null
|
|
272
274
|
custom_tags?: string[] | null
|
|
273
275
|
tier_id?: string | null
|
|
276
|
+
tier_ids?: string[] | null
|
|
274
277
|
}
|
|
275
278
|
|
|
276
279
|
export interface ChapterLite {
|
package/openapi.json
CHANGED
|
@@ -1470,6 +1470,19 @@
|
|
|
1470
1470
|
"type": "null"
|
|
1471
1471
|
}
|
|
1472
1472
|
]
|
|
1473
|
+
},
|
|
1474
|
+
"tier_ids": {
|
|
1475
|
+
"anyOf": [
|
|
1476
|
+
{
|
|
1477
|
+
"type": "array",
|
|
1478
|
+
"items": {
|
|
1479
|
+
"type": "string"
|
|
1480
|
+
}
|
|
1481
|
+
},
|
|
1482
|
+
{
|
|
1483
|
+
"type": "null"
|
|
1484
|
+
}
|
|
1485
|
+
]
|
|
1473
1486
|
}
|
|
1474
1487
|
},
|
|
1475
1488
|
"required": [
|
|
@@ -1486,11 +1499,18 @@
|
|
|
1486
1499
|
},
|
|
1487
1500
|
"tier": {
|
|
1488
1501
|
"$ref": "#/components/schema/PatreonCampaignTier"
|
|
1502
|
+
},
|
|
1503
|
+
"tiers": {
|
|
1504
|
+
"type": "array",
|
|
1505
|
+
"items": {
|
|
1506
|
+
"$ref": "#/components/schema/PatreonCampaignTier"
|
|
1507
|
+
}
|
|
1489
1508
|
}
|
|
1490
1509
|
},
|
|
1491
1510
|
"required": [
|
|
1492
1511
|
"campaign",
|
|
1493
|
-
"tier"
|
|
1512
|
+
"tier",
|
|
1513
|
+
"tiers"
|
|
1494
1514
|
]
|
|
1495
1515
|
},
|
|
1496
1516
|
"PatreonCampaignLite": {
|
|
@@ -1616,6 +1636,19 @@
|
|
|
1616
1636
|
"type": "null"
|
|
1617
1637
|
}
|
|
1618
1638
|
]
|
|
1639
|
+
},
|
|
1640
|
+
"tier_ids": {
|
|
1641
|
+
"anyOf": [
|
|
1642
|
+
{
|
|
1643
|
+
"type": "array",
|
|
1644
|
+
"items": {
|
|
1645
|
+
"type": "string"
|
|
1646
|
+
}
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
"type": "null"
|
|
1650
|
+
}
|
|
1651
|
+
]
|
|
1619
1652
|
}
|
|
1620
1653
|
}
|
|
1621
1654
|
},
|
package/package.json
CHANGED