@teardown/types 0.1.31 → 0.1.32
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/package.json +1 -1
- package/src/generated-consts.ts +70 -61
package/package.json
CHANGED
package/src/generated-consts.ts
CHANGED
|
@@ -1,69 +1,78 @@
|
|
|
1
|
-
export
|
|
2
|
-
IOS
|
|
3
|
-
ANDROID
|
|
4
|
-
WEB
|
|
5
|
-
WINDOWS
|
|
6
|
-
MACOS
|
|
7
|
-
LINUX
|
|
8
|
-
PHONE
|
|
9
|
-
TABLET
|
|
10
|
-
DESKTOP
|
|
11
|
-
CONSOLE
|
|
12
|
-
TV
|
|
13
|
-
WEARABLE
|
|
14
|
-
GAME_CONSOLE
|
|
15
|
-
VR
|
|
16
|
-
UNKNOWN
|
|
17
|
-
OTHER
|
|
18
|
-
}
|
|
1
|
+
export const DevicePlatform = {
|
|
2
|
+
IOS: "IOS",
|
|
3
|
+
ANDROID: "ANDROID",
|
|
4
|
+
WEB: "WEB",
|
|
5
|
+
WINDOWS: "WINDOWS",
|
|
6
|
+
MACOS: "MACOS",
|
|
7
|
+
LINUX: "LINUX",
|
|
8
|
+
PHONE: "PHONE",
|
|
9
|
+
TABLET: "TABLET",
|
|
10
|
+
DESKTOP: "DESKTOP",
|
|
11
|
+
CONSOLE: "CONSOLE",
|
|
12
|
+
TV: "TV",
|
|
13
|
+
WEARABLE: "WEARABLE",
|
|
14
|
+
GAME_CONSOLE: "GAME_CONSOLE",
|
|
15
|
+
VR: "VR",
|
|
16
|
+
UNKNOWN: "UNKNOWN",
|
|
17
|
+
OTHER: "OTHER",
|
|
18
|
+
} as const;
|
|
19
|
+
export type DevicePlatformEnum = (typeof DevicePlatform)[keyof typeof DevicePlatform];
|
|
19
20
|
|
|
20
|
-
export
|
|
21
|
-
DEVELOPMENT
|
|
22
|
-
STAGING
|
|
23
|
-
PRODUCTION
|
|
24
|
-
}
|
|
21
|
+
export const EnvironmentType = {
|
|
22
|
+
DEVELOPMENT: "DEVELOPMENT",
|
|
23
|
+
STAGING: "STAGING",
|
|
24
|
+
PRODUCTION: "PRODUCTION",
|
|
25
|
+
} as const;
|
|
26
|
+
export type EnvironmentTypeEnum = (typeof EnvironmentType)[keyof typeof EnvironmentType];
|
|
25
27
|
|
|
26
|
-
export
|
|
27
|
-
OWNER
|
|
28
|
-
ADMIN
|
|
29
|
-
ENGINEER
|
|
30
|
-
}
|
|
28
|
+
export const OrgRoleType = {
|
|
29
|
+
OWNER: "OWNER",
|
|
30
|
+
ADMIN: "ADMIN",
|
|
31
|
+
ENGINEER: "ENGINEER",
|
|
32
|
+
} as const;
|
|
33
|
+
export type OrgRoleTypeEnum = (typeof OrgRoleType)[keyof typeof OrgRoleType];
|
|
31
34
|
|
|
32
|
-
export
|
|
33
|
-
PERSONAL
|
|
34
|
-
START_UP
|
|
35
|
-
SCALE_UP
|
|
36
|
-
AGENCY
|
|
37
|
-
ENTERPRISE
|
|
38
|
-
}
|
|
35
|
+
export const OrgType = {
|
|
36
|
+
PERSONAL: "PERSONAL",
|
|
37
|
+
START_UP: "START_UP",
|
|
38
|
+
SCALE_UP: "SCALE_UP",
|
|
39
|
+
AGENCY: "AGENCY",
|
|
40
|
+
ENTERPRISE: "ENTERPRISE",
|
|
41
|
+
} as const;
|
|
42
|
+
export type OrgTypeEnum = (typeof OrgType)[keyof typeof OrgType];
|
|
39
43
|
|
|
40
|
-
export
|
|
41
|
-
publishable
|
|
42
|
-
secret
|
|
43
|
-
}
|
|
44
|
+
export const ProjectApiKeyKind = {
|
|
45
|
+
publishable: "publishable",
|
|
46
|
+
secret: "secret",
|
|
47
|
+
} as const;
|
|
48
|
+
export type ProjectApiKeyKindEnum = (typeof ProjectApiKeyKind)[keyof typeof ProjectApiKeyKind];
|
|
44
49
|
|
|
45
|
-
export
|
|
46
|
-
PENDING_SETUP
|
|
47
|
-
ACTIVE
|
|
48
|
-
PAUSED
|
|
49
|
-
ARCHIVED
|
|
50
|
-
}
|
|
50
|
+
export const ProjectStatus = {
|
|
51
|
+
PENDING_SETUP: "PENDING_SETUP",
|
|
52
|
+
ACTIVE: "ACTIVE",
|
|
53
|
+
PAUSED: "PAUSED",
|
|
54
|
+
ARCHIVED: "ARCHIVED",
|
|
55
|
+
} as const;
|
|
56
|
+
export type ProjectStatusEnum = (typeof ProjectStatus)[keyof typeof ProjectStatus];
|
|
51
57
|
|
|
52
|
-
export
|
|
53
|
-
REACT_NATIVE
|
|
54
|
-
EXPO
|
|
55
|
-
}
|
|
58
|
+
export const ProjectType = {
|
|
59
|
+
REACT_NATIVE: "REACT_NATIVE",
|
|
60
|
+
EXPO: "EXPO",
|
|
61
|
+
} as const;
|
|
62
|
+
export type ProjectTypeEnum = (typeof ProjectType)[keyof typeof ProjectType];
|
|
56
63
|
|
|
57
|
-
export
|
|
58
|
-
SUPPORTED
|
|
59
|
-
UPDATE_AVAILABLE
|
|
60
|
-
UPDATE_RECOMMENDED
|
|
61
|
-
UPDATE_REQUIRED
|
|
62
|
-
}
|
|
64
|
+
export const ProjectVersionStatus = {
|
|
65
|
+
SUPPORTED: "SUPPORTED",
|
|
66
|
+
UPDATE_AVAILABLE: "UPDATE_AVAILABLE",
|
|
67
|
+
UPDATE_RECOMMENDED: "UPDATE_RECOMMENDED",
|
|
68
|
+
UPDATE_REQUIRED: "UPDATE_REQUIRED",
|
|
69
|
+
} as const;
|
|
70
|
+
export type ProjectVersionStatusEnum = (typeof ProjectVersionStatus)[keyof typeof ProjectVersionStatus];
|
|
63
71
|
|
|
64
|
-
export
|
|
65
|
-
SUPPORTED
|
|
66
|
-
UPDATE_AVAILABLE
|
|
67
|
-
UPDATE_RECOMMENDED
|
|
68
|
-
UPDATE_REQUIRED
|
|
69
|
-
}
|
|
72
|
+
export const VersionBuildStatus = {
|
|
73
|
+
SUPPORTED: "SUPPORTED",
|
|
74
|
+
UPDATE_AVAILABLE: "UPDATE_AVAILABLE",
|
|
75
|
+
UPDATE_RECOMMENDED: "UPDATE_RECOMMENDED",
|
|
76
|
+
UPDATE_REQUIRED: "UPDATE_REQUIRED",
|
|
77
|
+
} as const;
|
|
78
|
+
export type VersionBuildStatusEnum = (typeof VersionBuildStatus)[keyof typeof VersionBuildStatus];
|