api.fluff4.me 1.0.604 → 1.0.606

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.
Files changed (3) hide show
  1. package/index.d.ts +18 -0
  2. package/openapi.json +75 -0
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -673,6 +673,18 @@ export interface HistoryItem {
673
673
  view_time: string
674
674
  }
675
675
 
676
+ export interface LemonSqueezyProductResponse {
677
+ products: LemonSqueezyProductDisplay[]
678
+ }
679
+
680
+ export interface LemonSqueezyProductDisplay {
681
+ name: string
682
+ description: string
683
+ price: number
684
+ price_formatted: string
685
+ buy_now_url: string
686
+ }
687
+
676
688
  export interface ErrorResponse {
677
689
  code: number
678
690
  detail?: string | null
@@ -1551,4 +1563,10 @@ export interface Paths {
1551
1563
  search?: undefined
1552
1564
  response: void | ErrorResponse
1553
1565
  },
1566
+ "/supporter/status": {
1567
+ method: "post"
1568
+ body?: undefined
1569
+ search?: undefined
1570
+ response: Response<LemonSqueezyProductResponse> | ErrorResponse
1571
+ },
1554
1572
  }
package/openapi.json CHANGED
@@ -3660,6 +3660,47 @@
3660
3660
  "view_time"
3661
3661
  ]
3662
3662
  },
3663
+ "LemonSqueezyProductResponse": {
3664
+ "type": "object",
3665
+ "properties": {
3666
+ "products": {
3667
+ "type": "array",
3668
+ "items": {
3669
+ "$ref": "#/components/schema/LemonSqueezyProductDisplay"
3670
+ }
3671
+ }
3672
+ },
3673
+ "required": [
3674
+ "products"
3675
+ ]
3676
+ },
3677
+ "LemonSqueezyProductDisplay": {
3678
+ "type": "object",
3679
+ "properties": {
3680
+ "name": {
3681
+ "type": "string"
3682
+ },
3683
+ "description": {
3684
+ "type": "string"
3685
+ },
3686
+ "price": {
3687
+ "type": "number"
3688
+ },
3689
+ "price_formatted": {
3690
+ "type": "string"
3691
+ },
3692
+ "buy_now_url": {
3693
+ "type": "string"
3694
+ }
3695
+ },
3696
+ "required": [
3697
+ "name",
3698
+ "description",
3699
+ "price",
3700
+ "price_formatted",
3701
+ "buy_now_url"
3702
+ ]
3703
+ },
3663
3704
  "ErrorResponse": {
3664
3705
  "type": "object",
3665
3706
  "properties": {
@@ -9598,6 +9639,40 @@
9598
9639
  }
9599
9640
  }
9600
9641
  }
9642
+ },
9643
+ "/supporter/status": {
9644
+ "post": {
9645
+ "responses": {
9646
+ "200": {
9647
+ "description": "200 response",
9648
+ "content": {
9649
+ "application/json": {
9650
+ "schema": {
9651
+ "type": "object",
9652
+ "properties": {
9653
+ "data": {
9654
+ "$ref": "#/components/schemas/LemonSqueezyProductResponse"
9655
+ }
9656
+ },
9657
+ "required": [
9658
+ "data"
9659
+ ]
9660
+ }
9661
+ }
9662
+ }
9663
+ },
9664
+ "default": {
9665
+ "description": "Error",
9666
+ "content": {
9667
+ "application/json": {
9668
+ "schema": {
9669
+ "$ref": "#/components/schemas/ErrorResponse"
9670
+ }
9671
+ }
9672
+ }
9673
+ }
9674
+ }
9675
+ }
9601
9676
  }
9602
9677
  }
9603
9678
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.604",
3
+ "version": "1.0.606",
4
4
  "types": "index.d.ts"
5
5
  }