@epilot/app-client 0.0.20 → 0.0.21

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/dist/openapi.d.ts CHANGED
@@ -602,7 +602,7 @@ declare namespace Components {
602
602
  }[];
603
603
  }
604
604
  export interface Pricing {
605
- pricing_type?: "FREE" | "SUBSCRIPTION" | "USAGE_BASED";
605
+ pricing_type?: "FREE" | "SUBSCRIPTION" | "USAGE_BASED" | "ONE_TIME" | "CUSTOM" | "UNKNOWN";
606
606
  billing_frequency?: /* How often the subscription is billed */ BillingFrequency;
607
607
  }
608
608
  export interface S3Reference {
package/dist/openapi.json CHANGED
@@ -1399,7 +1399,10 @@
1399
1399
  "enum": [
1400
1400
  "FREE",
1401
1401
  "SUBSCRIPTION",
1402
- "USAGE_BASED"
1402
+ "USAGE_BASED",
1403
+ "ONE_TIME",
1404
+ "CUSTOM",
1405
+ "UNKNOWN"
1403
1406
  ]
1404
1407
  },
1405
1408
  "billing_frequency": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/app-client",
3
- "version": "0.0.20",
3
+ "version": "0.0.21",
4
4
  "description": "JavaScript client library for the epilot App API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",