priceos 0.0.15 → 0.0.18
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 +20 -4
- package/dist/index.d.ts +20 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -45,6 +45,8 @@ interface paths {
|
|
|
45
45
|
name?: string;
|
|
46
46
|
/** @description Customer email address. */
|
|
47
47
|
email?: string;
|
|
48
|
+
/** @description Unix timestamp (ms) when usage tracking started. */
|
|
49
|
+
usageStartedAt?: number;
|
|
48
50
|
/**
|
|
49
51
|
* @description Customer environment.
|
|
50
52
|
* @enum {string}
|
|
@@ -59,7 +61,9 @@ interface paths {
|
|
|
59
61
|
/** @description Product version number. */
|
|
60
62
|
version: number;
|
|
61
63
|
/** @description Custom product metadata (custom products only). */
|
|
62
|
-
metadata?:
|
|
64
|
+
metadata?: {
|
|
65
|
+
[key: string]: string;
|
|
66
|
+
};
|
|
63
67
|
/**
|
|
64
68
|
* @description Stripe subscription status (Stripe customers only).
|
|
65
69
|
* @enum {string}
|
|
@@ -204,6 +208,8 @@ interface paths {
|
|
|
204
208
|
name?: string;
|
|
205
209
|
/** @description Customer email address. */
|
|
206
210
|
email?: string;
|
|
211
|
+
/** @description Unix timestamp (ms) when usage tracking started. */
|
|
212
|
+
usageStartedAt?: number;
|
|
207
213
|
/**
|
|
208
214
|
* @description Customer environment.
|
|
209
215
|
* @enum {string}
|
|
@@ -218,7 +224,9 @@ interface paths {
|
|
|
218
224
|
/** @description Product version number. */
|
|
219
225
|
version: number;
|
|
220
226
|
/** @description Custom product metadata (custom products only). */
|
|
221
|
-
metadata?:
|
|
227
|
+
metadata?: {
|
|
228
|
+
[key: string]: string;
|
|
229
|
+
};
|
|
222
230
|
/**
|
|
223
231
|
* @description Stripe subscription status (Stripe customers only).
|
|
224
232
|
* @enum {string}
|
|
@@ -375,6 +383,8 @@ interface paths {
|
|
|
375
383
|
name?: string;
|
|
376
384
|
/** @description Customer email address. */
|
|
377
385
|
email?: string;
|
|
386
|
+
/** @description Unix timestamp (ms) when usage tracking started. */
|
|
387
|
+
usageStartedAt?: number;
|
|
378
388
|
/**
|
|
379
389
|
* @description Customer environment.
|
|
380
390
|
* @enum {string}
|
|
@@ -389,7 +399,9 @@ interface paths {
|
|
|
389
399
|
/** @description Product version number. */
|
|
390
400
|
version: number;
|
|
391
401
|
/** @description Custom product metadata (custom products only). */
|
|
392
|
-
metadata?:
|
|
402
|
+
metadata?: {
|
|
403
|
+
[key: string]: string;
|
|
404
|
+
};
|
|
393
405
|
/**
|
|
394
406
|
* @description Stripe subscription status (Stripe customers only).
|
|
395
407
|
* @enum {string}
|
|
@@ -637,6 +649,8 @@ interface paths {
|
|
|
637
649
|
name?: string;
|
|
638
650
|
/** @description Customer email address. */
|
|
639
651
|
email?: string;
|
|
652
|
+
/** @description Unix timestamp (ms) when usage tracking started. */
|
|
653
|
+
usageStartedAt?: number;
|
|
640
654
|
/**
|
|
641
655
|
* @description Customer environment.
|
|
642
656
|
* @enum {string}
|
|
@@ -651,7 +665,9 @@ interface paths {
|
|
|
651
665
|
/** @description Product version number. */
|
|
652
666
|
version: number;
|
|
653
667
|
/** @description Custom product metadata (custom products only). */
|
|
654
|
-
metadata?:
|
|
668
|
+
metadata?: {
|
|
669
|
+
[key: string]: string;
|
|
670
|
+
};
|
|
655
671
|
/**
|
|
656
672
|
* @description Stripe subscription status (Stripe customers only).
|
|
657
673
|
* @enum {string}
|
package/dist/index.d.ts
CHANGED
|
@@ -45,6 +45,8 @@ interface paths {
|
|
|
45
45
|
name?: string;
|
|
46
46
|
/** @description Customer email address. */
|
|
47
47
|
email?: string;
|
|
48
|
+
/** @description Unix timestamp (ms) when usage tracking started. */
|
|
49
|
+
usageStartedAt?: number;
|
|
48
50
|
/**
|
|
49
51
|
* @description Customer environment.
|
|
50
52
|
* @enum {string}
|
|
@@ -59,7 +61,9 @@ interface paths {
|
|
|
59
61
|
/** @description Product version number. */
|
|
60
62
|
version: number;
|
|
61
63
|
/** @description Custom product metadata (custom products only). */
|
|
62
|
-
metadata?:
|
|
64
|
+
metadata?: {
|
|
65
|
+
[key: string]: string;
|
|
66
|
+
};
|
|
63
67
|
/**
|
|
64
68
|
* @description Stripe subscription status (Stripe customers only).
|
|
65
69
|
* @enum {string}
|
|
@@ -204,6 +208,8 @@ interface paths {
|
|
|
204
208
|
name?: string;
|
|
205
209
|
/** @description Customer email address. */
|
|
206
210
|
email?: string;
|
|
211
|
+
/** @description Unix timestamp (ms) when usage tracking started. */
|
|
212
|
+
usageStartedAt?: number;
|
|
207
213
|
/**
|
|
208
214
|
* @description Customer environment.
|
|
209
215
|
* @enum {string}
|
|
@@ -218,7 +224,9 @@ interface paths {
|
|
|
218
224
|
/** @description Product version number. */
|
|
219
225
|
version: number;
|
|
220
226
|
/** @description Custom product metadata (custom products only). */
|
|
221
|
-
metadata?:
|
|
227
|
+
metadata?: {
|
|
228
|
+
[key: string]: string;
|
|
229
|
+
};
|
|
222
230
|
/**
|
|
223
231
|
* @description Stripe subscription status (Stripe customers only).
|
|
224
232
|
* @enum {string}
|
|
@@ -375,6 +383,8 @@ interface paths {
|
|
|
375
383
|
name?: string;
|
|
376
384
|
/** @description Customer email address. */
|
|
377
385
|
email?: string;
|
|
386
|
+
/** @description Unix timestamp (ms) when usage tracking started. */
|
|
387
|
+
usageStartedAt?: number;
|
|
378
388
|
/**
|
|
379
389
|
* @description Customer environment.
|
|
380
390
|
* @enum {string}
|
|
@@ -389,7 +399,9 @@ interface paths {
|
|
|
389
399
|
/** @description Product version number. */
|
|
390
400
|
version: number;
|
|
391
401
|
/** @description Custom product metadata (custom products only). */
|
|
392
|
-
metadata?:
|
|
402
|
+
metadata?: {
|
|
403
|
+
[key: string]: string;
|
|
404
|
+
};
|
|
393
405
|
/**
|
|
394
406
|
* @description Stripe subscription status (Stripe customers only).
|
|
395
407
|
* @enum {string}
|
|
@@ -637,6 +649,8 @@ interface paths {
|
|
|
637
649
|
name?: string;
|
|
638
650
|
/** @description Customer email address. */
|
|
639
651
|
email?: string;
|
|
652
|
+
/** @description Unix timestamp (ms) when usage tracking started. */
|
|
653
|
+
usageStartedAt?: number;
|
|
640
654
|
/**
|
|
641
655
|
* @description Customer environment.
|
|
642
656
|
* @enum {string}
|
|
@@ -651,7 +665,9 @@ interface paths {
|
|
|
651
665
|
/** @description Product version number. */
|
|
652
666
|
version: number;
|
|
653
667
|
/** @description Custom product metadata (custom products only). */
|
|
654
|
-
metadata?:
|
|
668
|
+
metadata?: {
|
|
669
|
+
[key: string]: string;
|
|
670
|
+
};
|
|
655
671
|
/**
|
|
656
672
|
* @description Stripe subscription status (Stripe customers only).
|
|
657
673
|
* @enum {string}
|