@shipstatic/types 0.6.1 → 0.6.2

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.ts CHANGED
@@ -252,6 +252,8 @@ export interface Account {
252
252
  readonly activated: number | null;
253
253
  /** Last 4 characters of the API key for identification, null when no key generated */
254
254
  readonly hint: string | null;
255
+ /** Grace period expiration (unix seconds), null if no grace period active */
256
+ readonly grace: number | null;
255
257
  }
256
258
  /**
257
259
  * Account-specific configuration overrides
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Shared types for Shipstatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -289,6 +289,8 @@ export interface Account {
289
289
  readonly activated: number | null;
290
290
  /** Last 4 characters of the API key for identification, null when no key generated */
291
291
  readonly hint: string | null;
292
+ /** Grace period expiration (unix seconds), null if no grace period active */
293
+ readonly grace: number | null;
292
294
  }
293
295
 
294
296
  /**