vercel-api-js 1.0.0 → 1.0.1
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/client.d.mts +182 -182
- package/dist/client.d.ts +182 -182
- package/dist/generated/components.d.mts +664 -664
- package/dist/generated/components.d.ts +664 -664
- package/dist/generated/components.js +1071 -801
- package/dist/generated/components.mjs +1071 -801
- package/dist/generated/mcp.d.mts +2061 -0
- package/dist/generated/mcp.d.ts +2061 -0
- package/dist/generated/mcp.js +4692 -0
- package/dist/generated/mcp.mjs +4508 -0
- package/dist/generated/schemas.d.mts +14785 -1918
- package/dist/generated/schemas.d.ts +14785 -1918
- package/dist/generated/schemas.js +1501 -989
- package/dist/generated/schemas.mjs +1501 -989
- package/dist/generated/types.d.mts +11 -2
- package/dist/generated/types.d.ts +11 -2
- package/dist/generated/types.js +133 -132
- package/dist/generated/types.mjs +133 -132
- package/dist/index.d.mts +484 -484
- package/dist/index.d.ts +484 -484
- package/dist/mcp.d.mts +1 -0
- package/dist/mcp.d.ts +1 -0
- package/dist/mcp.js +5 -0
- package/dist/mcp.mjs +1 -0
- package/dist/utils/fetcher.d.mts +2 -3
- package/dist/utils/fetcher.d.ts +2 -3
- package/dist/utils/fetcher.js +2 -1
- package/dist/utils/fetcher.mjs +2 -1
- package/dist/utils/mcp.d.mts +1 -0
- package/dist/utils/mcp.d.ts +1 -0
- package/dist/utils/mcp.js +2 -0
- package/dist/utils/mcp.mjs +1 -0
- package/package.json +14 -4
package/dist/generated/types.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const ACLActionEnum = {
|
|
|
7
7
|
delete: 'delete',
|
|
8
8
|
list: 'list',
|
|
9
9
|
read: 'read',
|
|
10
|
-
update: 'update'
|
|
10
|
+
update: 'update'
|
|
11
11
|
};
|
|
12
12
|
export const entitiesTypeEnum = {
|
|
13
13
|
author: 'author',
|
|
@@ -30,139 +30,139 @@ export const entitiesTypeEnum = {
|
|
|
30
30
|
scaling_rules: 'scaling_rules',
|
|
31
31
|
store: 'store',
|
|
32
32
|
system: 'system',
|
|
33
|
-
target: 'target'
|
|
33
|
+
target: 'target'
|
|
34
34
|
};
|
|
35
35
|
export const principalTypeEnum = {
|
|
36
|
-
user: 'user'
|
|
36
|
+
user: 'user'
|
|
37
37
|
};
|
|
38
38
|
export const principalTypeEnum2 = {
|
|
39
|
-
app: 'app'
|
|
39
|
+
app: 'app'
|
|
40
40
|
};
|
|
41
41
|
export const viaTypeEnum = {
|
|
42
|
-
user: 'user'
|
|
42
|
+
user: 'user'
|
|
43
43
|
};
|
|
44
44
|
export const viaTypeEnum2 = {
|
|
45
|
-
app: 'app'
|
|
45
|
+
app: 'app'
|
|
46
46
|
};
|
|
47
47
|
export const payloadActionEnum = {
|
|
48
48
|
created: 'created',
|
|
49
49
|
updated: 'updated',
|
|
50
50
|
deleted: 'deleted',
|
|
51
51
|
archived: 'archived',
|
|
52
|
-
unarchived: 'unarchived'
|
|
52
|
+
unarchived: 'unarchived'
|
|
53
53
|
};
|
|
54
54
|
export const payloadNextRoleEnum = {
|
|
55
55
|
ADMIN: 'ADMIN',
|
|
56
56
|
PROJECT_DEVELOPER: 'PROJECT_DEVELOPER',
|
|
57
|
-
PROJECT_VIEWER: 'PROJECT_VIEWER'
|
|
57
|
+
PROJECT_VIEWER: 'PROJECT_VIEWER'
|
|
58
58
|
};
|
|
59
59
|
export const payloadPreviousRoleEnum = {
|
|
60
60
|
ADMIN: 'ADMIN',
|
|
61
61
|
PROJECT_DEVELOPER: 'PROJECT_DEVELOPER',
|
|
62
|
-
PROJECT_VIEWER: 'PROJECT_VIEWER'
|
|
62
|
+
PROJECT_VIEWER: 'PROJECT_VIEWER'
|
|
63
63
|
};
|
|
64
64
|
export const payloadActionEnum2 = {
|
|
65
65
|
created: 'created',
|
|
66
|
-
removed: 'removed'
|
|
66
|
+
removed: 'removed'
|
|
67
67
|
};
|
|
68
68
|
export const payloadTypeEnum = {
|
|
69
69
|
system: 'system',
|
|
70
70
|
encrypted: 'encrypted',
|
|
71
71
|
plain: 'plain',
|
|
72
|
-
sensitive: 'sensitive'
|
|
72
|
+
sensitive: 'sensitive'
|
|
73
73
|
};
|
|
74
74
|
export const payloadTargetEnum = {
|
|
75
75
|
production: 'production',
|
|
76
76
|
preview: 'preview',
|
|
77
|
-
development: 'development'
|
|
77
|
+
development: 'development'
|
|
78
78
|
};
|
|
79
79
|
export const oldEnvVarTypeEnum = {
|
|
80
80
|
system: 'system',
|
|
81
81
|
encrypted: 'encrypted',
|
|
82
82
|
plain: 'plain',
|
|
83
|
-
sensitive: 'sensitive'
|
|
83
|
+
sensitive: 'sensitive'
|
|
84
84
|
};
|
|
85
85
|
export const oldEnvVarTargetEnum = {
|
|
86
86
|
production: 'production',
|
|
87
87
|
preview: 'preview',
|
|
88
|
-
development: 'development'
|
|
88
|
+
development: 'development'
|
|
89
89
|
};
|
|
90
90
|
export const newEnvVarTypeEnum = {
|
|
91
91
|
system: 'system',
|
|
92
92
|
encrypted: 'encrypted',
|
|
93
93
|
plain: 'plain',
|
|
94
|
-
sensitive: 'sensitive'
|
|
94
|
+
sensitive: 'sensitive'
|
|
95
95
|
};
|
|
96
96
|
export const newEnvVarTargetEnum = {
|
|
97
97
|
production: 'production',
|
|
98
98
|
preview: 'preview',
|
|
99
|
-
development: 'development'
|
|
99
|
+
development: 'development'
|
|
100
100
|
};
|
|
101
101
|
export const updateDiffOldTargetEnum = {
|
|
102
102
|
production: 'production',
|
|
103
103
|
preview: 'preview',
|
|
104
|
-
development: 'development'
|
|
104
|
+
development: 'development'
|
|
105
105
|
};
|
|
106
106
|
export const updateDiffNewTargetEnum = {
|
|
107
107
|
production: 'production',
|
|
108
108
|
preview: 'preview',
|
|
109
|
-
development: 'development'
|
|
109
|
+
development: 'development'
|
|
110
110
|
};
|
|
111
111
|
export const payloadActionEnum3 = {
|
|
112
112
|
log: 'log',
|
|
113
113
|
challenge: 'challenge',
|
|
114
|
-
deny: 'deny'
|
|
114
|
+
deny: 'deny'
|
|
115
115
|
};
|
|
116
116
|
export const actionEnum = {
|
|
117
117
|
log: 'log',
|
|
118
118
|
challenge: 'challenge',
|
|
119
|
-
deny: 'deny'
|
|
119
|
+
deny: 'deny'
|
|
120
120
|
};
|
|
121
121
|
export const blockHistoryActionEnum = {
|
|
122
122
|
'hard-blocked': 'hard-blocked',
|
|
123
123
|
'soft-blocked': 'soft-blocked',
|
|
124
|
-
unblocked: 'unblocked'
|
|
124
|
+
unblocked: 'unblocked'
|
|
125
125
|
};
|
|
126
126
|
export const billingPlanEnum = {
|
|
127
127
|
pro: 'pro',
|
|
128
128
|
enterprise: 'enterprise',
|
|
129
|
-
hobby: 'hobby'
|
|
129
|
+
hobby: 'hobby'
|
|
130
130
|
};
|
|
131
131
|
export const credentialsTypeEnum = {
|
|
132
132
|
gitlab: 'gitlab',
|
|
133
133
|
bitbucket: 'bitbucket',
|
|
134
134
|
google: 'google',
|
|
135
135
|
'github-oauth': 'github-oauth',
|
|
136
|
-
'github-
|
|
136
|
+
'github-oauth-limited': 'github-oauth-limited'
|
|
137
137
|
};
|
|
138
138
|
export const credentialsTypeEnum2 = {
|
|
139
|
-
'github-oauth-custom-host': 'github-oauth-custom-host'
|
|
140
|
-
'github-app-custom-host': 'github-app-custom-host',
|
|
139
|
+
'github-oauth-custom-host': 'github-oauth-custom-host'
|
|
141
140
|
};
|
|
142
141
|
export const newOwnerImportFlowGitProviderEnum = {
|
|
143
142
|
github: 'github',
|
|
144
143
|
gitlab: 'gitlab',
|
|
145
144
|
bitbucket: 'bitbucket',
|
|
146
|
-
'github-
|
|
145
|
+
'github-limited': 'github-limited',
|
|
146
|
+
'github-custom-host': 'github-custom-host'
|
|
147
147
|
};
|
|
148
148
|
export const buildMachinePurchaseTypeEnum = {
|
|
149
149
|
enhanced: 'enhanced',
|
|
150
|
-
turbo: 'turbo'
|
|
150
|
+
turbo: 'turbo'
|
|
151
151
|
};
|
|
152
152
|
export const activeDashboardViewsViewPreferenceEnum = {
|
|
153
153
|
cards: 'cards',
|
|
154
|
-
list: 'list'
|
|
154
|
+
list: 'list'
|
|
155
155
|
};
|
|
156
156
|
export const activeDashboardViewsFavoritesViewPreferenceEnum = {
|
|
157
157
|
open: 'open',
|
|
158
|
-
closed: 'closed'
|
|
158
|
+
closed: 'closed'
|
|
159
159
|
};
|
|
160
160
|
export const activeDashboardViewsRecentsViewPreferenceEnum = {
|
|
161
161
|
open: 'open',
|
|
162
|
-
closed: 'closed'
|
|
162
|
+
closed: 'closed'
|
|
163
163
|
};
|
|
164
164
|
export const siftRouteNameEnum = {
|
|
165
|
-
string: 'string'
|
|
165
|
+
string: 'string'
|
|
166
166
|
};
|
|
167
167
|
export const softBlockReasonEnum = {
|
|
168
168
|
SUBSCRIPTION_CANCELED: 'SUBSCRIPTION_CANCELED',
|
|
@@ -170,7 +170,7 @@ export const softBlockReasonEnum = {
|
|
|
170
170
|
UNPAID_INVOICE: 'UNPAID_INVOICE',
|
|
171
171
|
ENTERPRISE_TRIAL_ENDED: 'ENTERPRISE_TRIAL_ENDED',
|
|
172
172
|
FAIR_USE_LIMITS_EXCEEDED: 'FAIR_USE_LIMITS_EXCEEDED',
|
|
173
|
-
BLOCKED_FOR_PLATFORM_ABUSE: 'BLOCKED_FOR_PLATFORM_ABUSE'
|
|
173
|
+
BLOCKED_FOR_PLATFORM_ABUSE: 'BLOCKED_FOR_PLATFORM_ABUSE'
|
|
174
174
|
};
|
|
175
175
|
export const softBlockBlockedDueToOverageTypeEnum = {
|
|
176
176
|
analyticsUsage: 'analyticsUsage',
|
|
@@ -211,7 +211,7 @@ export const softBlockBlockedDueToOverageTypeEnum = {
|
|
|
211
211
|
wafOwaspExcessBytes: 'wafOwaspExcessBytes',
|
|
212
212
|
wafOwaspRequests: 'wafOwaspRequests',
|
|
213
213
|
wafRateLimitRequest: 'wafRateLimitRequest',
|
|
214
|
-
webAnalyticsEvent: 'webAnalyticsEvent'
|
|
214
|
+
webAnalyticsEvent: 'webAnalyticsEvent'
|
|
215
215
|
};
|
|
216
216
|
export const teamsRoleEnum = {
|
|
217
217
|
OWNER: 'OWNER',
|
|
@@ -220,7 +220,7 @@ export const teamsRoleEnum = {
|
|
|
220
220
|
SECURITY: 'SECURITY',
|
|
221
221
|
BILLING: 'BILLING',
|
|
222
222
|
VIEWER: 'VIEWER',
|
|
223
|
-
CONTRIBUTOR: 'CONTRIBUTOR'
|
|
223
|
+
CONTRIBUTOR: 'CONTRIBUTOR'
|
|
224
224
|
};
|
|
225
225
|
export const teamsTeamRolesEnum = {
|
|
226
226
|
OWNER: 'OWNER',
|
|
@@ -229,14 +229,14 @@ export const teamsTeamRolesEnum = {
|
|
|
229
229
|
SECURITY: 'SECURITY',
|
|
230
230
|
BILLING: 'BILLING',
|
|
231
231
|
VIEWER: 'VIEWER',
|
|
232
|
-
CONTRIBUTOR: 'CONTRIBUTOR'
|
|
232
|
+
CONTRIBUTOR: 'CONTRIBUTOR'
|
|
233
233
|
};
|
|
234
234
|
export const teamsTeamPermissionsEnum = {
|
|
235
235
|
CreateProject: 'CreateProject',
|
|
236
236
|
FullProductionDeployment: 'FullProductionDeployment',
|
|
237
237
|
UsageViewer: 'UsageViewer',
|
|
238
238
|
EnvVariableManager: 'EnvVariableManager',
|
|
239
|
-
EnvironmentManager: 'EnvironmentManager'
|
|
239
|
+
EnvironmentManager: 'EnvironmentManager'
|
|
240
240
|
};
|
|
241
241
|
export const joinedFromOriginEnum = {
|
|
242
242
|
teams: 'teams',
|
|
@@ -249,10 +249,10 @@ export const joinedFromOriginEnum = {
|
|
|
249
249
|
import: 'import',
|
|
250
250
|
dsync: 'dsync',
|
|
251
251
|
feedback: 'feedback',
|
|
252
|
-
'organization-teams': 'organization-teams'
|
|
252
|
+
'organization-teams': 'organization-teams'
|
|
253
253
|
};
|
|
254
254
|
export const newOwnerTypeEnum = {
|
|
255
|
-
user: 'user'
|
|
255
|
+
user: 'user'
|
|
256
256
|
};
|
|
257
257
|
export const newOwnerEnablePreviewFeedbackEnum = {
|
|
258
258
|
default: 'default',
|
|
@@ -260,43 +260,43 @@ export const newOwnerEnablePreviewFeedbackEnum = {
|
|
|
260
260
|
off: 'off',
|
|
261
261
|
'on-force': 'on-force',
|
|
262
262
|
'off-force': 'off-force',
|
|
263
|
-
'default-force': 'default-force'
|
|
263
|
+
'default-force': 'default-force'
|
|
264
264
|
};
|
|
265
265
|
export const webAnalyticsBlockReasonEnum = {
|
|
266
266
|
admin_override: 'admin_override',
|
|
267
|
-
limits_exceeded: 'limits_exceeded'
|
|
267
|
+
limits_exceeded: 'limits_exceeded'
|
|
268
268
|
};
|
|
269
269
|
export const monitoringBlockReasonEnum = {
|
|
270
270
|
admin_override: 'admin_override',
|
|
271
|
-
limits_exceeded: 'limits_exceeded'
|
|
271
|
+
limits_exceeded: 'limits_exceeded'
|
|
272
272
|
};
|
|
273
273
|
export const monitoringBlockTypeEnum = {
|
|
274
274
|
soft: 'soft',
|
|
275
|
-
hard: 'hard'
|
|
275
|
+
hard: 'hard'
|
|
276
276
|
};
|
|
277
277
|
export const observabilityPlusBlockReasonEnum = {
|
|
278
278
|
admin_override: 'admin_override',
|
|
279
|
-
limits_exceeded: 'limits_exceeded'
|
|
279
|
+
limits_exceeded: 'limits_exceeded'
|
|
280
280
|
};
|
|
281
281
|
export const observabilityPlusBlockTypeEnum = {
|
|
282
282
|
soft: 'soft',
|
|
283
|
-
hard: 'hard'
|
|
283
|
+
hard: 'hard'
|
|
284
284
|
};
|
|
285
285
|
export const dataCacheBlockReasonEnum = {
|
|
286
286
|
admin_override: 'admin_override',
|
|
287
|
-
limits_exceeded: 'limits_exceeded'
|
|
287
|
+
limits_exceeded: 'limits_exceeded'
|
|
288
288
|
};
|
|
289
289
|
export const imageOptimizationTransformationBlockReasonEnum = {
|
|
290
290
|
admin_override: 'admin_override',
|
|
291
|
-
limits_exceeded: 'limits_exceeded'
|
|
291
|
+
limits_exceeded: 'limits_exceeded'
|
|
292
292
|
};
|
|
293
293
|
export const sourceImagesBlockReasonEnum = {
|
|
294
294
|
admin_override: 'admin_override',
|
|
295
|
-
limits_exceeded: 'limits_exceeded'
|
|
295
|
+
limits_exceeded: 'limits_exceeded'
|
|
296
296
|
};
|
|
297
297
|
export const blobBlockReasonEnum = {
|
|
298
298
|
admin_override: 'admin_override',
|
|
299
|
-
limits_exceeded: 'limits_exceeded'
|
|
299
|
+
limits_exceeded: 'limits_exceeded'
|
|
300
300
|
};
|
|
301
301
|
export const blobOverageReasonEnum = {
|
|
302
302
|
analyticsUsage: 'analyticsUsage',
|
|
@@ -337,11 +337,11 @@ export const blobOverageReasonEnum = {
|
|
|
337
337
|
wafOwaspExcessBytes: 'wafOwaspExcessBytes',
|
|
338
338
|
wafOwaspRequests: 'wafOwaspRequests',
|
|
339
339
|
wafRateLimitRequest: 'wafRateLimitRequest',
|
|
340
|
-
webAnalyticsEvent: 'webAnalyticsEvent'
|
|
340
|
+
webAnalyticsEvent: 'webAnalyticsEvent'
|
|
341
341
|
};
|
|
342
342
|
export const postgresBlockReasonEnum = {
|
|
343
343
|
admin_override: 'admin_override',
|
|
344
|
-
limits_exceeded: 'limits_exceeded'
|
|
344
|
+
limits_exceeded: 'limits_exceeded'
|
|
345
345
|
};
|
|
346
346
|
export const postgresOverageReasonEnum = {
|
|
347
347
|
analyticsUsage: 'analyticsUsage',
|
|
@@ -382,11 +382,11 @@ export const postgresOverageReasonEnum = {
|
|
|
382
382
|
wafOwaspExcessBytes: 'wafOwaspExcessBytes',
|
|
383
383
|
wafOwaspRequests: 'wafOwaspRequests',
|
|
384
384
|
wafRateLimitRequest: 'wafRateLimitRequest',
|
|
385
|
-
webAnalyticsEvent: 'webAnalyticsEvent'
|
|
385
|
+
webAnalyticsEvent: 'webAnalyticsEvent'
|
|
386
386
|
};
|
|
387
387
|
export const redisBlockReasonEnum = {
|
|
388
388
|
admin_override: 'admin_override',
|
|
389
|
-
limits_exceeded: 'limits_exceeded'
|
|
389
|
+
limits_exceeded: 'limits_exceeded'
|
|
390
390
|
};
|
|
391
391
|
export const redisOverageReasonEnum = {
|
|
392
392
|
analyticsUsage: 'analyticsUsage',
|
|
@@ -427,10 +427,10 @@ export const redisOverageReasonEnum = {
|
|
|
427
427
|
wafOwaspExcessBytes: 'wafOwaspExcessBytes',
|
|
428
428
|
wafOwaspRequests: 'wafOwaspRequests',
|
|
429
429
|
wafRateLimitRequest: 'wafRateLimitRequest',
|
|
430
|
-
webAnalyticsEvent: 'webAnalyticsEvent'
|
|
430
|
+
webAnalyticsEvent: 'webAnalyticsEvent'
|
|
431
431
|
};
|
|
432
432
|
export const newOwnerVersionEnum = {
|
|
433
|
-
northstar: 'northstar'
|
|
433
|
+
northstar: 'northstar'
|
|
434
434
|
};
|
|
435
435
|
export const browserNameEnum = {
|
|
436
436
|
iphone: 'iphone',
|
|
@@ -439,7 +439,7 @@ export const browserNameEnum = {
|
|
|
439
439
|
chrome: 'chrome',
|
|
440
440
|
firefox: 'firefox',
|
|
441
441
|
mozilla: 'mozilla',
|
|
442
|
-
unknown: 'unknown'
|
|
442
|
+
unknown: 'unknown'
|
|
443
443
|
};
|
|
444
444
|
export const osNameEnum = {
|
|
445
445
|
unknown: 'unknown',
|
|
@@ -454,7 +454,7 @@ export const osNameEnum = {
|
|
|
454
454
|
ios: 'ios',
|
|
455
455
|
android: 'android',
|
|
456
456
|
'Mac OS': 'Mac OS',
|
|
457
|
-
'OS X': 'OS X'
|
|
457
|
+
'OS X': 'OS X'
|
|
458
458
|
};
|
|
459
459
|
export const roleEnum = {
|
|
460
460
|
OWNER: 'OWNER',
|
|
@@ -463,7 +463,7 @@ export const roleEnum = {
|
|
|
463
463
|
SECURITY: 'SECURITY',
|
|
464
464
|
BILLING: 'BILLING',
|
|
465
465
|
VIEWER: 'VIEWER',
|
|
466
|
-
CONTRIBUTOR: 'CONTRIBUTOR'
|
|
466
|
+
CONTRIBUTOR: 'CONTRIBUTOR'
|
|
467
467
|
};
|
|
468
468
|
export const joinedFromOriginEnum2 = {
|
|
469
469
|
teams: 'teams',
|
|
@@ -476,146 +476,146 @@ export const joinedFromOriginEnum2 = {
|
|
|
476
476
|
import: 'import',
|
|
477
477
|
dsync: 'dsync',
|
|
478
478
|
feedback: 'feedback',
|
|
479
|
-
'organization-teams': 'organization-teams'
|
|
479
|
+
'organization-teams': 'organization-teams'
|
|
480
480
|
};
|
|
481
481
|
export const ssoProtectionDeploymentTypeEnum = {
|
|
482
482
|
all: 'all',
|
|
483
483
|
preview: 'preview',
|
|
484
484
|
prod_deployment_urls_and_all_previews: 'prod_deployment_urls_and_all_previews',
|
|
485
|
-
all_except_custom_domains: 'all_except_custom_domains'
|
|
485
|
+
all_except_custom_domains: 'all_except_custom_domains'
|
|
486
486
|
};
|
|
487
487
|
export const payloadSsoProtectionEnum = {
|
|
488
488
|
all: 'all',
|
|
489
489
|
preview: 'preview',
|
|
490
490
|
prod_deployment_urls_and_all_previews: 'prod_deployment_urls_and_all_previews',
|
|
491
|
-
all_except_custom_domains: 'all_except_custom_domains'
|
|
491
|
+
all_except_custom_domains: 'all_except_custom_domains'
|
|
492
492
|
};
|
|
493
493
|
export const oldSsoProtectionDeploymentTypeEnum = {
|
|
494
494
|
all: 'all',
|
|
495
495
|
preview: 'preview',
|
|
496
496
|
prod_deployment_urls_and_all_previews: 'prod_deployment_urls_and_all_previews',
|
|
497
|
-
all_except_custom_domains: 'all_except_custom_domains'
|
|
497
|
+
all_except_custom_domains: 'all_except_custom_domains'
|
|
498
498
|
};
|
|
499
499
|
export const payloadOldSsoProtectionEnum = {
|
|
500
500
|
all: 'all',
|
|
501
501
|
preview: 'preview',
|
|
502
502
|
prod_deployment_urls_and_all_previews: 'prod_deployment_urls_and_all_previews',
|
|
503
|
-
all_except_custom_domains: 'all_except_custom_domains'
|
|
503
|
+
all_except_custom_domains: 'all_except_custom_domains'
|
|
504
504
|
};
|
|
505
505
|
export const passwordProtectionDeploymentTypeEnum = {
|
|
506
506
|
all: 'all',
|
|
507
507
|
preview: 'preview',
|
|
508
508
|
prod_deployment_urls_and_all_previews: 'prod_deployment_urls_and_all_previews',
|
|
509
|
-
all_except_custom_domains: 'all_except_custom_domains'
|
|
509
|
+
all_except_custom_domains: 'all_except_custom_domains'
|
|
510
510
|
};
|
|
511
511
|
export const payloadPasswordProtectionEnum = {
|
|
512
512
|
all: 'all',
|
|
513
513
|
preview: 'preview',
|
|
514
514
|
prod_deployment_urls_and_all_previews: 'prod_deployment_urls_and_all_previews',
|
|
515
|
-
all_except_custom_domains: 'all_except_custom_domains'
|
|
515
|
+
all_except_custom_domains: 'all_except_custom_domains'
|
|
516
516
|
};
|
|
517
517
|
export const oldPasswordProtectionDeploymentTypeEnum = {
|
|
518
518
|
all: 'all',
|
|
519
519
|
preview: 'preview',
|
|
520
520
|
prod_deployment_urls_and_all_previews: 'prod_deployment_urls_and_all_previews',
|
|
521
|
-
all_except_custom_domains: 'all_except_custom_domains'
|
|
521
|
+
all_except_custom_domains: 'all_except_custom_domains'
|
|
522
522
|
};
|
|
523
523
|
export const payloadOldPasswordProtectionEnum = {
|
|
524
524
|
all: 'all',
|
|
525
525
|
preview: 'preview',
|
|
526
526
|
prod_deployment_urls_and_all_previews: 'prod_deployment_urls_and_all_previews',
|
|
527
|
-
all_except_custom_domains: 'all_except_custom_domains'
|
|
527
|
+
all_except_custom_domains: 'all_except_custom_domains'
|
|
528
528
|
};
|
|
529
529
|
export const payloadTrustedIpsEnum = {
|
|
530
530
|
all: 'all',
|
|
531
531
|
preview: 'preview',
|
|
532
532
|
prod_deployment_urls_and_all_previews: 'prod_deployment_urls_and_all_previews',
|
|
533
533
|
all_except_custom_domains: 'all_except_custom_domains',
|
|
534
|
-
production: 'production'
|
|
534
|
+
production: 'production'
|
|
535
535
|
};
|
|
536
536
|
export const payloadOldTrustedIpsEnum = {
|
|
537
537
|
all: 'all',
|
|
538
538
|
preview: 'preview',
|
|
539
539
|
prod_deployment_urls_and_all_previews: 'prod_deployment_urls_and_all_previews',
|
|
540
540
|
all_except_custom_domains: 'all_except_custom_domains',
|
|
541
|
-
production: 'production'
|
|
541
|
+
production: 'production'
|
|
542
542
|
};
|
|
543
543
|
export const payloadActionEnum4 = {
|
|
544
544
|
enabled: 'enabled',
|
|
545
545
|
disabled: 'disabled',
|
|
546
|
-
regenerated: 'regenerated'
|
|
546
|
+
regenerated: 'regenerated'
|
|
547
547
|
};
|
|
548
548
|
export const oldConnectConfigurationsEnvIdEnum = {
|
|
549
549
|
preview: 'preview',
|
|
550
|
-
production: 'production'
|
|
550
|
+
production: 'production'
|
|
551
551
|
};
|
|
552
552
|
export const newConnectConfigurationsEnvIdEnum = {
|
|
553
553
|
preview: 'preview',
|
|
554
|
-
production: 'production'
|
|
554
|
+
production: 'production'
|
|
555
555
|
};
|
|
556
556
|
export const budgetTypeEnum = {
|
|
557
|
-
fixed: 'fixed'
|
|
557
|
+
fixed: 'fixed'
|
|
558
558
|
};
|
|
559
559
|
export const budgetPricingPlanEnum = {
|
|
560
560
|
legacy: 'legacy',
|
|
561
|
-
unbundled: 'unbundled'
|
|
561
|
+
unbundled: 'unbundled'
|
|
562
562
|
};
|
|
563
563
|
export const budgetItemTypeEnum = {
|
|
564
|
-
fixed: 'fixed'
|
|
564
|
+
fixed: 'fixed'
|
|
565
565
|
};
|
|
566
566
|
export const budgetItemPricingPlanEnum = {
|
|
567
567
|
legacy: 'legacy',
|
|
568
|
-
unbundled: 'unbundled'
|
|
568
|
+
unbundled: 'unbundled'
|
|
569
569
|
};
|
|
570
570
|
export const payloadTypeEnum2 = {
|
|
571
571
|
redis: 'redis',
|
|
572
572
|
postgres: 'postgres',
|
|
573
573
|
'edge-config': 'edge-config',
|
|
574
574
|
blob: 'blob',
|
|
575
|
-
integration: 'integration'
|
|
575
|
+
integration: 'integration'
|
|
576
576
|
};
|
|
577
577
|
export const payloadStoreTypeEnum = {
|
|
578
578
|
redis: 'redis',
|
|
579
|
-
postgres: 'postgres'
|
|
579
|
+
postgres: 'postgres'
|
|
580
580
|
};
|
|
581
581
|
export const projectMembershipRoleEnum = {
|
|
582
582
|
ADMIN: 'ADMIN',
|
|
583
583
|
PROJECT_DEVELOPER: 'PROJECT_DEVELOPER',
|
|
584
|
-
PROJECT_VIEWER: 'PROJECT_VIEWER'
|
|
584
|
+
PROJECT_VIEWER: 'PROJECT_VIEWER'
|
|
585
585
|
};
|
|
586
586
|
export const removedMembershipRoleEnum = {
|
|
587
587
|
ADMIN: 'ADMIN',
|
|
588
588
|
PROJECT_DEVELOPER: 'PROJECT_DEVELOPER',
|
|
589
|
-
PROJECT_VIEWER: 'PROJECT_VIEWER'
|
|
589
|
+
PROJECT_VIEWER: 'PROJECT_VIEWER'
|
|
590
590
|
};
|
|
591
591
|
export const projectMembershipRoleEnum2 = {
|
|
592
592
|
ADMIN: 'ADMIN',
|
|
593
593
|
PROJECT_DEVELOPER: 'PROJECT_DEVELOPER',
|
|
594
|
-
PROJECT_VIEWER: 'PROJECT_VIEWER'
|
|
594
|
+
PROJECT_VIEWER: 'PROJECT_VIEWER'
|
|
595
595
|
};
|
|
596
596
|
export const projectMembershipPreviousRoleEnum = {
|
|
597
597
|
ADMIN: 'ADMIN',
|
|
598
598
|
PROJECT_DEVELOPER: 'PROJECT_DEVELOPER',
|
|
599
|
-
PROJECT_VIEWER: 'PROJECT_VIEWER'
|
|
599
|
+
PROJECT_VIEWER: 'PROJECT_VIEWER'
|
|
600
600
|
};
|
|
601
601
|
export const projectRoleEnum = {
|
|
602
602
|
ADMIN: 'ADMIN',
|
|
603
603
|
PROJECT_DEVELOPER: 'PROJECT_DEVELOPER',
|
|
604
|
-
PROJECT_VIEWER: 'PROJECT_VIEWER'
|
|
604
|
+
PROJECT_VIEWER: 'PROJECT_VIEWER'
|
|
605
605
|
};
|
|
606
606
|
export const payloadActionEnum5 = {
|
|
607
607
|
enable: 'enable',
|
|
608
|
-
disable: 'disable'
|
|
608
|
+
disable: 'disable'
|
|
609
609
|
};
|
|
610
610
|
export const payloadTierEnum = {
|
|
611
611
|
pro: 'pro',
|
|
612
|
-
plus: 'plus'
|
|
612
|
+
plus: 'plus'
|
|
613
613
|
};
|
|
614
614
|
export const payloadGrantTypeEnum = {
|
|
615
615
|
authorization_code: 'authorization_code',
|
|
616
616
|
refresh_token: 'refresh_token',
|
|
617
617
|
'urn:ietf:params:oauth:grant-type:device_code': 'urn:ietf:params:oauth:grant-type:device_code',
|
|
618
|
-
client_credentials: 'client_credentials'
|
|
618
|
+
client_credentials: 'client_credentials'
|
|
619
619
|
};
|
|
620
620
|
export const payloadAuthMethodEnum = {
|
|
621
621
|
email: 'email',
|
|
@@ -628,7 +628,7 @@ export const payloadAuthMethodEnum = {
|
|
|
628
628
|
otp: 'otp',
|
|
629
629
|
sms: 'sms',
|
|
630
630
|
invite: 'invite',
|
|
631
|
-
google: 'google'
|
|
631
|
+
google: 'google'
|
|
632
632
|
};
|
|
633
633
|
export const rolesEnum = {
|
|
634
634
|
OWNER: 'OWNER',
|
|
@@ -637,7 +637,7 @@ export const rolesEnum = {
|
|
|
637
637
|
SECURITY: 'SECURITY',
|
|
638
638
|
BILLING: 'BILLING',
|
|
639
639
|
VIEWER: 'VIEWER',
|
|
640
|
-
CONTRIBUTOR: 'CONTRIBUTOR'
|
|
640
|
+
CONTRIBUTOR: 'CONTRIBUTOR'
|
|
641
641
|
};
|
|
642
642
|
export const teamEnablePreviewFeedbackEnum = {
|
|
643
643
|
default: 'default',
|
|
@@ -645,7 +645,7 @@ export const teamEnablePreviewFeedbackEnum = {
|
|
|
645
645
|
off: 'off',
|
|
646
646
|
'off-force': 'off-force',
|
|
647
647
|
on: 'on',
|
|
648
|
-
'on-force': 'on-force'
|
|
648
|
+
'on-force': 'on-force'
|
|
649
649
|
};
|
|
650
650
|
export const teamEnableProductionFeedbackEnum = {
|
|
651
651
|
default: 'default',
|
|
@@ -653,12 +653,12 @@ export const teamEnableProductionFeedbackEnum = {
|
|
|
653
653
|
off: 'off',
|
|
654
654
|
'off-force': 'off-force',
|
|
655
655
|
on: 'on',
|
|
656
|
-
'on-force': 'on-force'
|
|
656
|
+
'on-force': 'on-force'
|
|
657
657
|
};
|
|
658
658
|
export const teamSensitiveEnvironmentVariablePolicyEnum = {
|
|
659
659
|
default: 'default',
|
|
660
660
|
off: 'off',
|
|
661
|
-
on: 'on'
|
|
661
|
+
on: 'on'
|
|
662
662
|
};
|
|
663
663
|
export const membershipRoleEnum = {
|
|
664
664
|
BILLING: 'BILLING',
|
|
@@ -667,7 +667,7 @@ export const membershipRoleEnum = {
|
|
|
667
667
|
MEMBER: 'MEMBER',
|
|
668
668
|
OWNER: 'OWNER',
|
|
669
669
|
SECURITY: 'SECURITY',
|
|
670
|
-
VIEWER: 'VIEWER'
|
|
670
|
+
VIEWER: 'VIEWER'
|
|
671
671
|
};
|
|
672
672
|
export const membershipTeamRolesEnum = {
|
|
673
673
|
BILLING: 'BILLING',
|
|
@@ -676,14 +676,14 @@ export const membershipTeamRolesEnum = {
|
|
|
676
676
|
MEMBER: 'MEMBER',
|
|
677
677
|
OWNER: 'OWNER',
|
|
678
678
|
SECURITY: 'SECURITY',
|
|
679
|
-
VIEWER: 'VIEWER'
|
|
679
|
+
VIEWER: 'VIEWER'
|
|
680
680
|
};
|
|
681
681
|
export const membershipTeamPermissionsEnum = {
|
|
682
682
|
CreateProject: 'CreateProject',
|
|
683
683
|
EnvVariableManager: 'EnvVariableManager',
|
|
684
684
|
EnvironmentManager: 'EnvironmentManager',
|
|
685
685
|
FullProductionDeployment: 'FullProductionDeployment',
|
|
686
|
-
UsageViewer: 'UsageViewer'
|
|
686
|
+
UsageViewer: 'UsageViewer'
|
|
687
687
|
};
|
|
688
688
|
export const joinedFromOriginEnum3 = {
|
|
689
689
|
bitbucket: 'bitbucket',
|
|
@@ -696,11 +696,11 @@ export const joinedFromOriginEnum3 = {
|
|
|
696
696
|
mail: 'mail',
|
|
697
697
|
'organization-teams': 'organization-teams',
|
|
698
698
|
saml: 'saml',
|
|
699
|
-
teams: 'teams'
|
|
699
|
+
teams: 'teams'
|
|
700
700
|
};
|
|
701
701
|
export const teamLimitedLimitedByEnum = {
|
|
702
702
|
mfa: 'mfa',
|
|
703
|
-
scope: 'scope'
|
|
703
|
+
scope: 'scope'
|
|
704
704
|
};
|
|
705
705
|
export const membershipRoleEnum2 = {
|
|
706
706
|
BILLING: 'BILLING',
|
|
@@ -709,7 +709,7 @@ export const membershipRoleEnum2 = {
|
|
|
709
709
|
MEMBER: 'MEMBER',
|
|
710
710
|
OWNER: 'OWNER',
|
|
711
711
|
SECURITY: 'SECURITY',
|
|
712
|
-
VIEWER: 'VIEWER'
|
|
712
|
+
VIEWER: 'VIEWER'
|
|
713
713
|
};
|
|
714
714
|
export const membershipTeamRolesEnum2 = {
|
|
715
715
|
BILLING: 'BILLING',
|
|
@@ -718,14 +718,14 @@ export const membershipTeamRolesEnum2 = {
|
|
|
718
718
|
MEMBER: 'MEMBER',
|
|
719
719
|
OWNER: 'OWNER',
|
|
720
720
|
SECURITY: 'SECURITY',
|
|
721
|
-
VIEWER: 'VIEWER'
|
|
721
|
+
VIEWER: 'VIEWER'
|
|
722
722
|
};
|
|
723
723
|
export const membershipTeamPermissionsEnum2 = {
|
|
724
724
|
CreateProject: 'CreateProject',
|
|
725
725
|
EnvVariableManager: 'EnvVariableManager',
|
|
726
726
|
EnvironmentManager: 'EnvironmentManager',
|
|
727
727
|
FullProductionDeployment: 'FullProductionDeployment',
|
|
728
|
-
UsageViewer: 'UsageViewer'
|
|
728
|
+
UsageViewer: 'UsageViewer'
|
|
729
729
|
};
|
|
730
730
|
export const joinedFromOriginEnum4 = {
|
|
731
731
|
bitbucket: 'bitbucket',
|
|
@@ -738,15 +738,15 @@ export const joinedFromOriginEnum4 = {
|
|
|
738
738
|
mail: 'mail',
|
|
739
739
|
'organization-teams': 'organization-teams',
|
|
740
740
|
saml: 'saml',
|
|
741
|
-
teams: 'teams'
|
|
741
|
+
teams: 'teams'
|
|
742
742
|
};
|
|
743
743
|
export const scopesTypeEnum = {
|
|
744
|
-
user: 'user'
|
|
744
|
+
user: 'user'
|
|
745
745
|
};
|
|
746
746
|
export const sudoOriginEnum = {
|
|
747
747
|
totp: 'totp',
|
|
748
748
|
webauthn: 'webauthn',
|
|
749
|
-
'recovery-code': 'recovery-code'
|
|
749
|
+
'recovery-code': 'recovery-code'
|
|
750
750
|
};
|
|
751
751
|
export const scopesOriginEnum = {
|
|
752
752
|
saml: 'saml',
|
|
@@ -759,10 +759,10 @@ export const scopesOriginEnum = {
|
|
|
759
759
|
otp: 'otp',
|
|
760
760
|
sms: 'sms',
|
|
761
761
|
invite: 'invite',
|
|
762
|
-
google: 'google'
|
|
762
|
+
google: 'google'
|
|
763
763
|
};
|
|
764
764
|
export const scopesTypeEnum2 = {
|
|
765
|
-
team: 'team'
|
|
765
|
+
team: 'team'
|
|
766
766
|
};
|
|
767
767
|
export const scopesOriginEnum2 = {
|
|
768
768
|
saml: 'saml',
|
|
@@ -775,7 +775,7 @@ export const scopesOriginEnum2 = {
|
|
|
775
775
|
otp: 'otp',
|
|
776
776
|
sms: 'sms',
|
|
777
777
|
invite: 'invite',
|
|
778
|
-
google: 'google'
|
|
778
|
+
google: 'google'
|
|
779
779
|
};
|
|
780
780
|
export const softBlockReasonEnum2 = {
|
|
781
781
|
BLOCKED_FOR_PLATFORM_ABUSE: 'BLOCKED_FOR_PLATFORM_ABUSE',
|
|
@@ -783,7 +783,7 @@ export const softBlockReasonEnum2 = {
|
|
|
783
783
|
FAIR_USE_LIMITS_EXCEEDED: 'FAIR_USE_LIMITS_EXCEEDED',
|
|
784
784
|
SUBSCRIPTION_CANCELED: 'SUBSCRIPTION_CANCELED',
|
|
785
785
|
SUBSCRIPTION_EXPIRED: 'SUBSCRIPTION_EXPIRED',
|
|
786
|
-
UNPAID_INVOICE: 'UNPAID_INVOICE'
|
|
786
|
+
UNPAID_INVOICE: 'UNPAID_INVOICE'
|
|
787
787
|
};
|
|
788
788
|
export const softBlockBlockedDueToOverageTypeEnum2 = {
|
|
789
789
|
analyticsUsage: 'analyticsUsage',
|
|
@@ -824,29 +824,30 @@ export const softBlockBlockedDueToOverageTypeEnum2 = {
|
|
|
824
824
|
wafOwaspExcessBytes: 'wafOwaspExcessBytes',
|
|
825
825
|
wafOwaspRequests: 'wafOwaspRequests',
|
|
826
826
|
wafRateLimitRequest: 'wafRateLimitRequest',
|
|
827
|
-
webAnalyticsEvent: 'webAnalyticsEvent'
|
|
827
|
+
webAnalyticsEvent: 'webAnalyticsEvent'
|
|
828
828
|
};
|
|
829
829
|
export const buildMachinePurchaseTypeEnum2 = {
|
|
830
830
|
enhanced: 'enhanced',
|
|
831
|
-
turbo: 'turbo'
|
|
831
|
+
turbo: 'turbo'
|
|
832
832
|
};
|
|
833
833
|
export const activeDashboardViewsViewPreferenceEnum2 = {
|
|
834
834
|
cards: 'cards',
|
|
835
|
-
list: 'list'
|
|
835
|
+
list: 'list'
|
|
836
836
|
};
|
|
837
837
|
export const activeDashboardViewsFavoritesViewPreferenceEnum2 = {
|
|
838
838
|
closed: 'closed',
|
|
839
|
-
open: 'open'
|
|
839
|
+
open: 'open'
|
|
840
840
|
};
|
|
841
841
|
export const activeDashboardViewsRecentsViewPreferenceEnum2 = {
|
|
842
842
|
closed: 'closed',
|
|
843
|
-
open: 'open'
|
|
843
|
+
open: 'open'
|
|
844
844
|
};
|
|
845
845
|
export const authUserImportFlowGitProviderEnum = {
|
|
846
846
|
bitbucket: 'bitbucket',
|
|
847
847
|
github: 'github',
|
|
848
848
|
'github-custom-host': 'github-custom-host',
|
|
849
|
-
|
|
849
|
+
'github-limited': 'github-limited',
|
|
850
|
+
gitlab: 'gitlab'
|
|
850
851
|
};
|
|
851
852
|
export const fileTreeTypeEnum = {
|
|
852
853
|
directory: 'directory',
|
|
@@ -854,82 +855,82 @@ export const fileTreeTypeEnum = {
|
|
|
854
855
|
invalid: 'invalid',
|
|
855
856
|
lambda: 'lambda',
|
|
856
857
|
middleware: 'middleware',
|
|
857
|
-
symlink: 'symlink'
|
|
858
|
+
symlink: 'symlink'
|
|
858
859
|
};
|
|
859
860
|
export const getDeploymentEventsQueryParamsDirectionEnum = {
|
|
860
861
|
backward: 'backward',
|
|
861
|
-
forward: 'forward'
|
|
862
|
+
forward: 'forward'
|
|
862
863
|
};
|
|
863
864
|
export const getDeploymentEventsQueryParamsFollowEnum = {
|
|
864
865
|
'0': 0,
|
|
865
|
-
'1': 1
|
|
866
|
+
'1': 1
|
|
866
867
|
};
|
|
867
868
|
export const getDeploymentEventsQueryParamsDelimiterEnum = {
|
|
868
869
|
'0': 0,
|
|
869
|
-
'1': 1
|
|
870
|
+
'1': 1
|
|
870
871
|
};
|
|
871
872
|
export const getDeploymentEventsQueryParamsBuildsEnum = {
|
|
872
873
|
'0': 0,
|
|
873
|
-
'1': 1
|
|
874
|
+
'1': 1
|
|
874
875
|
};
|
|
875
876
|
export const createDeploymentQueryParamsForceNewEnum = {
|
|
876
877
|
'0': '0',
|
|
877
|
-
'1': '1'
|
|
878
|
+
'1': '1'
|
|
878
879
|
};
|
|
879
880
|
export const createDeploymentQueryParamsSkipAutoDetectionConfirmationEnum = {
|
|
880
881
|
'0': '0',
|
|
881
|
-
'1': '1'
|
|
882
|
+
'1': '1'
|
|
882
883
|
};
|
|
883
884
|
export const checkDomainPriceQueryParamsTypeEnum = {
|
|
884
885
|
new: 'new',
|
|
885
886
|
renewal: 'renewal',
|
|
886
887
|
transfer: 'transfer',
|
|
887
|
-
redemption: 'redemption'
|
|
888
|
+
redemption: 'redemption'
|
|
888
889
|
};
|
|
889
890
|
export const getDomainConfigQueryParamsStrictEnum = {
|
|
890
891
|
true: 'true',
|
|
891
|
-
false: 'false'
|
|
892
|
+
false: 'false'
|
|
892
893
|
};
|
|
893
894
|
export const getConfigurationsQueryParamsViewEnum = {
|
|
894
895
|
account: 'account',
|
|
895
|
-
project: 'project'
|
|
896
|
+
project: 'project'
|
|
896
897
|
};
|
|
897
898
|
export const getConfigurationsQueryParamsInstallationTypeEnum = {
|
|
898
899
|
marketplace: 'marketplace',
|
|
899
|
-
external: 'external'
|
|
900
|
+
external: 'external'
|
|
900
901
|
};
|
|
901
902
|
export const getProjectsQueryParamsGitForkProtectionEnum = {
|
|
902
903
|
'1': '1',
|
|
903
|
-
'0': '0'
|
|
904
|
+
'0': '0'
|
|
904
905
|
};
|
|
905
906
|
export const getProjectDomainsQueryParamsProductionEnum = {
|
|
906
907
|
true: 'true',
|
|
907
|
-
false: 'false'
|
|
908
|
+
false: 'false'
|
|
908
909
|
};
|
|
909
910
|
export const getProjectDomainsQueryParamsTargetEnum = {
|
|
910
911
|
production: 'production',
|
|
911
|
-
preview: 'preview'
|
|
912
|
+
preview: 'preview'
|
|
912
913
|
};
|
|
913
914
|
export const getProjectDomainsQueryParamsRedirectsEnum = {
|
|
914
915
|
true: 'true',
|
|
915
|
-
false: 'false'
|
|
916
|
+
false: 'false'
|
|
916
917
|
};
|
|
917
918
|
export const getProjectDomainsQueryParamsVerifiedEnum = {
|
|
918
919
|
true: 'true',
|
|
919
|
-
false: 'false'
|
|
920
|
+
false: 'false'
|
|
920
921
|
};
|
|
921
922
|
export const getProjectDomainsQueryParamsOrderEnum = {
|
|
922
923
|
ASC: 'ASC',
|
|
923
|
-
DESC: 'DESC'
|
|
924
|
+
DESC: 'DESC'
|
|
924
925
|
};
|
|
925
926
|
export const filterProjectEnvsQueryParamsDecryptEnum = {
|
|
926
927
|
true: 'true',
|
|
927
|
-
false: 'false'
|
|
928
|
+
false: 'false'
|
|
928
929
|
};
|
|
929
930
|
export const getRollingReleaseQueryParamsStateEnum = {
|
|
930
931
|
ACTIVE: 'ACTIVE',
|
|
931
932
|
COMPLETE: 'COMPLETE',
|
|
932
|
-
ABORTED: 'ABORTED'
|
|
933
|
+
ABORTED: 'ABORTED'
|
|
933
934
|
};
|
|
934
935
|
export const getTeamMembersQueryParamsRoleEnum = {
|
|
935
936
|
OWNER: 'OWNER',
|
|
@@ -937,9 +938,9 @@ export const getTeamMembersQueryParamsRoleEnum = {
|
|
|
937
938
|
DEVELOPER: 'DEVELOPER',
|
|
938
939
|
VIEWER: 'VIEWER',
|
|
939
940
|
BILLING: 'BILLING',
|
|
940
|
-
CONTRIBUTOR: 'CONTRIBUTOR'
|
|
941
|
+
CONTRIBUTOR: 'CONTRIBUTOR'
|
|
941
942
|
};
|
|
942
943
|
export const getSecretQueryParamsDecryptEnum = {
|
|
943
944
|
true: 'true',
|
|
944
|
-
false: 'false'
|
|
945
|
+
false: 'false'
|
|
945
946
|
};
|