@shipstatic/types 0.3.8 → 0.3.9
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/README.md +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -2
- package/package.json +1 -1
- package/src/index.ts +3 -2
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ interface Account {
|
|
|
48
48
|
email: string; // User email address
|
|
49
49
|
name: string; // User display name
|
|
50
50
|
picture?: string; // Profile picture URL
|
|
51
|
-
plan: 'free' | '
|
|
51
|
+
plan: 'free' | 'standard' | 'sponsored' | 'enterprise' | 'suspended' | 'terminating' | 'terminated'; // Account plan status
|
|
52
52
|
created: number; // Unix timestamp (seconds)
|
|
53
53
|
}
|
|
54
54
|
```
|
package/dist/index.d.ts
CHANGED
|
@@ -147,7 +147,7 @@ export interface TokenCreateResponse {
|
|
|
147
147
|
*/
|
|
148
148
|
export declare const AccountPlan: {
|
|
149
149
|
readonly FREE: "free";
|
|
150
|
-
readonly
|
|
150
|
+
readonly STANDARD: "standard";
|
|
151
151
|
readonly SPONSORED: "sponsored";
|
|
152
152
|
readonly ENTERPRISE: "enterprise";
|
|
153
153
|
readonly SUSPENDED: "suspended";
|
|
@@ -303,6 +303,7 @@ export declare const AuthMethod: {
|
|
|
303
303
|
readonly API_KEY: "apiKey";
|
|
304
304
|
readonly TOKEN: "token";
|
|
305
305
|
readonly WEBHOOK: "webhook";
|
|
306
|
+
readonly SYSTEM: "system";
|
|
306
307
|
};
|
|
307
308
|
export type AuthMethodType = typeof AuthMethod[keyof typeof AuthMethod];
|
|
308
309
|
export declare const DEPLOYMENT_CONFIG_FILENAME = "ship.json";
|
package/dist/index.js
CHANGED
|
@@ -34,7 +34,7 @@ export const DomainStatus = {
|
|
|
34
34
|
*/
|
|
35
35
|
export const AccountPlan = {
|
|
36
36
|
FREE: 'free',
|
|
37
|
-
|
|
37
|
+
STANDARD: 'standard',
|
|
38
38
|
SPONSORED: 'sponsored',
|
|
39
39
|
ENTERPRISE: 'enterprise',
|
|
40
40
|
SUSPENDED: 'suspended',
|
|
@@ -194,7 +194,8 @@ export const AuthMethod = {
|
|
|
194
194
|
JWT: 'jwt',
|
|
195
195
|
API_KEY: 'apiKey',
|
|
196
196
|
TOKEN: 'token',
|
|
197
|
-
WEBHOOK: 'webhook'
|
|
197
|
+
WEBHOOK: 'webhook',
|
|
198
|
+
SYSTEM: 'system'
|
|
198
199
|
};
|
|
199
200
|
// Deployment Configuration
|
|
200
201
|
export const DEPLOYMENT_CONFIG_FILENAME = 'ship.json';
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -177,7 +177,7 @@ export interface TokenCreateResponse {
|
|
|
177
177
|
*/
|
|
178
178
|
export const AccountPlan = {
|
|
179
179
|
FREE: 'free',
|
|
180
|
-
|
|
180
|
+
STANDARD: 'standard',
|
|
181
181
|
SPONSORED: 'sponsored',
|
|
182
182
|
ENTERPRISE: 'enterprise',
|
|
183
183
|
SUSPENDED: 'suspended',
|
|
@@ -467,7 +467,8 @@ export const AuthMethod = {
|
|
|
467
467
|
JWT: 'jwt',
|
|
468
468
|
API_KEY: 'apiKey',
|
|
469
469
|
TOKEN: 'token',
|
|
470
|
-
WEBHOOK: 'webhook'
|
|
470
|
+
WEBHOOK: 'webhook',
|
|
471
|
+
SYSTEM: 'system'
|
|
471
472
|
} as const;
|
|
472
473
|
|
|
473
474
|
export type AuthMethodType = typeof AuthMethod[keyof typeof AuthMethod];
|