priceos 0.0.17 → 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 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}
@@ -206,6 +208,8 @@ interface paths {
206
208
  name?: string;
207
209
  /** @description Customer email address. */
208
210
  email?: string;
211
+ /** @description Unix timestamp (ms) when usage tracking started. */
212
+ usageStartedAt?: number;
209
213
  /**
210
214
  * @description Customer environment.
211
215
  * @enum {string}
@@ -379,6 +383,8 @@ interface paths {
379
383
  name?: string;
380
384
  /** @description Customer email address. */
381
385
  email?: string;
386
+ /** @description Unix timestamp (ms) when usage tracking started. */
387
+ usageStartedAt?: number;
382
388
  /**
383
389
  * @description Customer environment.
384
390
  * @enum {string}
@@ -643,6 +649,8 @@ interface paths {
643
649
  name?: string;
644
650
  /** @description Customer email address. */
645
651
  email?: string;
652
+ /** @description Unix timestamp (ms) when usage tracking started. */
653
+ usageStartedAt?: number;
646
654
  /**
647
655
  * @description Customer environment.
648
656
  * @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}
@@ -206,6 +208,8 @@ interface paths {
206
208
  name?: string;
207
209
  /** @description Customer email address. */
208
210
  email?: string;
211
+ /** @description Unix timestamp (ms) when usage tracking started. */
212
+ usageStartedAt?: number;
209
213
  /**
210
214
  * @description Customer environment.
211
215
  * @enum {string}
@@ -379,6 +383,8 @@ interface paths {
379
383
  name?: string;
380
384
  /** @description Customer email address. */
381
385
  email?: string;
386
+ /** @description Unix timestamp (ms) when usage tracking started. */
387
+ usageStartedAt?: number;
382
388
  /**
383
389
  * @description Customer environment.
384
390
  * @enum {string}
@@ -643,6 +649,8 @@ interface paths {
643
649
  name?: string;
644
650
  /** @description Customer email address. */
645
651
  email?: string;
652
+ /** @description Unix timestamp (ms) when usage tracking started. */
653
+ usageStartedAt?: number;
646
654
  /**
647
655
  * @description Customer environment.
648
656
  * @enum {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "priceos",
3
- "version": "0.0.17",
3
+ "version": "0.0.18",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",