priceos 0.0.14 → 0.0.17

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/index.d.cts CHANGED
@@ -59,7 +59,9 @@ interface paths {
59
59
  /** @description Product version number. */
60
60
  version: number;
61
61
  /** @description Custom product metadata (custom products only). */
62
- metadata?: unknown;
62
+ metadata?: {
63
+ [key: string]: string;
64
+ };
63
65
  /**
64
66
  * @description Stripe subscription status (Stripe customers only).
65
67
  * @enum {string}
@@ -218,7 +220,9 @@ interface paths {
218
220
  /** @description Product version number. */
219
221
  version: number;
220
222
  /** @description Custom product metadata (custom products only). */
221
- metadata?: unknown;
223
+ metadata?: {
224
+ [key: string]: string;
225
+ };
222
226
  /**
223
227
  * @description Stripe subscription status (Stripe customers only).
224
228
  * @enum {string}
@@ -389,7 +393,9 @@ interface paths {
389
393
  /** @description Product version number. */
390
394
  version: number;
391
395
  /** @description Custom product metadata (custom products only). */
392
- metadata?: unknown;
396
+ metadata?: {
397
+ [key: string]: string;
398
+ };
393
399
  /**
394
400
  * @description Stripe subscription status (Stripe customers only).
395
401
  * @enum {string}
@@ -651,7 +657,9 @@ interface paths {
651
657
  /** @description Product version number. */
652
658
  version: number;
653
659
  /** @description Custom product metadata (custom products only). */
654
- metadata?: unknown;
660
+ metadata?: {
661
+ [key: string]: string;
662
+ };
655
663
  /**
656
664
  * @description Stripe subscription status (Stripe customers only).
657
665
  * @enum {string}
package/dist/index.d.ts CHANGED
@@ -59,7 +59,9 @@ interface paths {
59
59
  /** @description Product version number. */
60
60
  version: number;
61
61
  /** @description Custom product metadata (custom products only). */
62
- metadata?: unknown;
62
+ metadata?: {
63
+ [key: string]: string;
64
+ };
63
65
  /**
64
66
  * @description Stripe subscription status (Stripe customers only).
65
67
  * @enum {string}
@@ -218,7 +220,9 @@ interface paths {
218
220
  /** @description Product version number. */
219
221
  version: number;
220
222
  /** @description Custom product metadata (custom products only). */
221
- metadata?: unknown;
223
+ metadata?: {
224
+ [key: string]: string;
225
+ };
222
226
  /**
223
227
  * @description Stripe subscription status (Stripe customers only).
224
228
  * @enum {string}
@@ -389,7 +393,9 @@ interface paths {
389
393
  /** @description Product version number. */
390
394
  version: number;
391
395
  /** @description Custom product metadata (custom products only). */
392
- metadata?: unknown;
396
+ metadata?: {
397
+ [key: string]: string;
398
+ };
393
399
  /**
394
400
  * @description Stripe subscription status (Stripe customers only).
395
401
  * @enum {string}
@@ -651,7 +657,9 @@ interface paths {
651
657
  /** @description Product version number. */
652
658
  version: number;
653
659
  /** @description Custom product metadata (custom products only). */
654
- metadata?: unknown;
660
+ metadata?: {
661
+ [key: string]: string;
662
+ };
655
663
  /**
656
664
  * @description Stripe subscription status (Stripe customers only).
657
665
  * @enum {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "priceos",
3
- "version": "0.0.14",
3
+ "version": "0.0.17",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",