api.fluff4.me 1.0.608 → 1.0.611

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 CHANGED
@@ -465,6 +465,7 @@ export interface Tag {
465
465
  description: TextBody
466
466
  category: string
467
467
  aliases?: string[] | null
468
+ is_mature: boolean
468
469
  }
469
470
 
470
471
  export interface TagCreateGlobalBody {
@@ -474,6 +475,7 @@ export interface TagCreateGlobalBody {
474
475
  aliases?: string[] | null
475
476
  relationships_to?: string[] | null
476
477
  relationships_from?: string[] | null
478
+ is_mature?: boolean | null
477
479
  }
478
480
 
479
481
  export interface TagCategory {
@@ -493,6 +495,7 @@ export interface TagGlobalUpdateBody {
493
495
  aliases?: string[] | null
494
496
  relationships_to?: string[] | null
495
497
  relationships_from?: string[] | null
498
+ is_mature?: boolean | null
496
499
  }
497
500
 
498
501
  export interface TagCategoryUpdateBody {
@@ -528,6 +531,7 @@ export interface TagCustomPromoteBody {
528
531
  aliases?: string[] | null
529
532
  relationships_to?: string[] | null
530
533
  relationships_from?: string[] | null
534
+ is_mature?: boolean | null
531
535
  }
532
536
  | null
533
537
  }
@@ -673,8 +677,9 @@ export interface HistoryItem {
673
677
  view_time: string
674
678
  }
675
679
 
676
- export interface LemonSqueezyProductResponse {
680
+ export interface SupporterStatus {
677
681
  products: LemonSqueezyProductDisplay[]
682
+ user_status: "active" | "inactive"
678
683
  }
679
684
 
680
685
  export interface LemonSqueezyProductDisplay {
@@ -1567,6 +1572,6 @@ export interface Paths {
1567
1572
  method: "get"
1568
1573
  body?: undefined
1569
1574
  search?: undefined
1570
- response: Response<LemonSqueezyProductResponse> | ErrorResponse
1575
+ response: Response<SupporterStatus> | ErrorResponse
1571
1576
  },
1572
1577
  }
package/openapi.json CHANGED
@@ -2663,12 +2663,16 @@
2663
2663
  "type": "null"
2664
2664
  }
2665
2665
  ]
2666
+ },
2667
+ "is_mature": {
2668
+ "type": "boolean"
2666
2669
  }
2667
2670
  },
2668
2671
  "required": [
2669
2672
  "name",
2670
2673
  "description",
2671
- "category"
2674
+ "category",
2675
+ "is_mature"
2672
2676
  ]
2673
2677
  },
2674
2678
  "TagCreateGlobalBody": {
@@ -2724,6 +2728,16 @@
2724
2728
  "type": "null"
2725
2729
  }
2726
2730
  ]
2731
+ },
2732
+ "is_mature": {
2733
+ "anyOf": [
2734
+ {
2735
+ "type": "boolean"
2736
+ },
2737
+ {
2738
+ "type": "null"
2739
+ }
2740
+ ]
2727
2741
  }
2728
2742
  },
2729
2743
  "required": [
@@ -2842,6 +2856,16 @@
2842
2856
  "type": "null"
2843
2857
  }
2844
2858
  ]
2859
+ },
2860
+ "is_mature": {
2861
+ "anyOf": [
2862
+ {
2863
+ "type": "boolean"
2864
+ },
2865
+ {
2866
+ "type": "null"
2867
+ }
2868
+ ]
2845
2869
  }
2846
2870
  }
2847
2871
  },
@@ -3007,6 +3031,16 @@
3007
3031
  "type": "null"
3008
3032
  }
3009
3033
  ]
3034
+ },
3035
+ "is_mature": {
3036
+ "anyOf": [
3037
+ {
3038
+ "type": "boolean"
3039
+ },
3040
+ {
3041
+ "type": "null"
3042
+ }
3043
+ ]
3010
3044
  }
3011
3045
  },
3012
3046
  "required": [
@@ -3660,7 +3694,7 @@
3660
3694
  "view_time"
3661
3695
  ]
3662
3696
  },
3663
- "LemonSqueezyProductResponse": {
3697
+ "SupporterStatus": {
3664
3698
  "type": "object",
3665
3699
  "properties": {
3666
3700
  "products": {
@@ -3668,10 +3702,18 @@
3668
3702
  "items": {
3669
3703
  "$ref": "#/components/schema/LemonSqueezyProductDisplay"
3670
3704
  }
3705
+ },
3706
+ "user_status": {
3707
+ "type": "string",
3708
+ "enum": [
3709
+ "active",
3710
+ "inactive"
3711
+ ]
3671
3712
  }
3672
3713
  },
3673
3714
  "required": [
3674
- "products"
3715
+ "products",
3716
+ "user_status"
3675
3717
  ]
3676
3718
  },
3677
3719
  "LemonSqueezyProductDisplay": {
@@ -9651,7 +9693,7 @@
9651
9693
  "type": "object",
9652
9694
  "properties": {
9653
9695
  "data": {
9654
- "$ref": "#/components/schemas/LemonSqueezyProductResponse"
9696
+ "$ref": "#/components/schemas/SupporterStatus"
9655
9697
  }
9656
9698
  },
9657
9699
  "required": [
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.608",
3
+ "version": "1.0.611",
4
4
  "types": "index.d.ts"
5
5
  }