@shipstatic/types 2.3.0-beta.0 → 2.4.0-beta.0
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 +2 -0
- package/package.json +1 -1
- package/src/index.ts +2 -0
package/dist/index.d.ts
CHANGED
|
@@ -258,6 +258,8 @@ export interface Account {
|
|
|
258
258
|
readonly activated: number | null;
|
|
259
259
|
/** Last 4 characters of the API key for identification, null when no key generated */
|
|
260
260
|
readonly hint: string | null;
|
|
261
|
+
/** Unix timestamp (seconds) of the API key's last use, null when never used or no key generated */
|
|
262
|
+
readonly used: number | null;
|
|
261
263
|
/** Grace period expiration (unix seconds), null if no grace period active */
|
|
262
264
|
readonly grace: number | null;
|
|
263
265
|
}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -295,6 +295,8 @@ export interface Account {
|
|
|
295
295
|
readonly activated: number | null;
|
|
296
296
|
/** Last 4 characters of the API key for identification, null when no key generated */
|
|
297
297
|
readonly hint: string | null;
|
|
298
|
+
/** Unix timestamp (seconds) of the API key's last use, null when never used or no key generated */
|
|
299
|
+
readonly used: number | null;
|
|
298
300
|
/** Grace period expiration (unix seconds), null if no grace period active */
|
|
299
301
|
readonly grace: number | null;
|
|
300
302
|
}
|