priceos 0.0.40 → 0.0.41
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -297,6 +297,8 @@ interface paths {
|
|
|
297
297
|
name?: string;
|
|
298
298
|
/** @description Customer email address. */
|
|
299
299
|
email?: string;
|
|
300
|
+
/** @description Unix timestamp (ms) when usage tracking started. */
|
|
301
|
+
usageStartedAt?: number;
|
|
300
302
|
/** @description Assigned product keys for non-Stripe customers. */
|
|
301
303
|
productKeys?: string[];
|
|
302
304
|
};
|
|
@@ -677,6 +679,8 @@ interface paths {
|
|
|
677
679
|
name?: string;
|
|
678
680
|
/** @description Customer email address. */
|
|
679
681
|
email?: string;
|
|
682
|
+
/** @description Unix timestamp (ms) when usage tracking started. */
|
|
683
|
+
usageStartedAt?: number;
|
|
680
684
|
/** @description Assigned product keys for non-Stripe customers. */
|
|
681
685
|
productKeys?: string[];
|
|
682
686
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -297,6 +297,8 @@ interface paths {
|
|
|
297
297
|
name?: string;
|
|
298
298
|
/** @description Customer email address. */
|
|
299
299
|
email?: string;
|
|
300
|
+
/** @description Unix timestamp (ms) when usage tracking started. */
|
|
301
|
+
usageStartedAt?: number;
|
|
300
302
|
/** @description Assigned product keys for non-Stripe customers. */
|
|
301
303
|
productKeys?: string[];
|
|
302
304
|
};
|
|
@@ -677,6 +679,8 @@ interface paths {
|
|
|
677
679
|
name?: string;
|
|
678
680
|
/** @description Customer email address. */
|
|
679
681
|
email?: string;
|
|
682
|
+
/** @description Unix timestamp (ms) when usage tracking started. */
|
|
683
|
+
usageStartedAt?: number;
|
|
680
684
|
/** @description Assigned product keys for non-Stripe customers. */
|
|
681
685
|
productKeys?: string[];
|
|
682
686
|
};
|