freestyle-sandboxes 0.0.93 → 0.0.95
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/ai/inde.d.cts +1 -1
- package/dist/ai/inde.d.mts +1 -1
- package/dist/ai/index.d.cts +1 -1
- package/dist/ai/index.d.mts +1 -1
- package/dist/inde.d.cts +16 -6
- package/dist/inde.d.mts +16 -6
- package/dist/index.cjs +19 -8
- package/dist/index.d.cts +16 -6
- package/dist/index.d.mts +16 -6
- package/dist/index.mjs +19 -8
- package/dist/langgraph/inde.d.cts +1 -1
- package/dist/langgraph/inde.d.mts +1 -1
- package/dist/langgraph/index.d.cts +1 -1
- package/dist/langgraph/index.d.mts +1 -1
- package/dist/mastra/inde.d.cts +1 -1
- package/dist/mastra/inde.d.mts +1 -1
- package/dist/mastra/index.d.cts +1 -1
- package/dist/mastra/index.d.mts +1 -1
- package/dist/{types.gen-CG8tIO9M.d.ts → types.gen-DKjMRuu5.d.ts} +448 -43
- package/dist/utils/inde.d.cts +1 -1
- package/dist/utils/inde.d.mts +1 -1
- package/dist/utils/index.d.cts +1 -1
- package/dist/utils/index.d.mts +1 -1
- package/openapi/sdk.gen.ts +234 -1
- package/openapi/types.gen.ts +389 -19
- package/openapi.json +1 -1
- package/package.json +1 -1
- package/src/index.ts +22 -1
- package/dist/index-BBXyg0JQ.cjs +0 -3253
- package/dist/index-BQHqnjZK.mjs +0 -3231
- package/dist/index-CEEa9WHp.cjs +0 -3238
- package/dist/index-D1ulQeJR.mjs +0 -3247
- package/dist/index-DCF70Xbq.mjs +0 -3246
- package/dist/index-H7UNEAjs.cjs +0 -3254
- package/dist/index.d-CXx1AdyW.d.ts +0 -4210
- package/dist/types.gen-1sd31qLV.d.ts +0 -172
- package/dist/types.gen-627pxroW.d.ts +0 -830
- package/dist/types.gen-BCdfx7yt.d.ts +0 -760
- package/dist/types.gen-BVXmFV7d.d.ts +0 -1299
- package/dist/types.gen-BWwhCgTX.d.ts +0 -1462
- package/dist/types.gen-BaMKzqxQ.d.ts +0 -233
- package/dist/types.gen-BbekD8Sd.d.ts +0 -1119
- package/dist/types.gen-BpWMzgc3.d.ts +0 -1493
- package/dist/types.gen-BqN1t03N.d.ts +0 -842
- package/dist/types.gen-BtK6PMQy.d.ts +0 -195
- package/dist/types.gen-BuhQ5LpB.d.ts +0 -764
- package/dist/types.gen-BzRtj_TA.d.ts +0 -725
- package/dist/types.gen-C03gaIPq.d.ts +0 -297
- package/dist/types.gen-CIf3ciN7.d.ts +0 -807
- package/dist/types.gen-CMuCas4r.d.ts +0 -183
- package/dist/types.gen-CWa4Mw0J.d.ts +0 -1493
- package/dist/types.gen-CZUnqmzP.d.ts +0 -789
- package/dist/types.gen-CnEkmbco.d.ts +0 -314
- package/dist/types.gen-DDYpuDzZ.d.ts +0 -764
- package/dist/types.gen-DHmdEOOa.d.ts +0 -172
- package/dist/types.gen-DLYohMJT.d.ts +0 -382
- package/dist/types.gen-DbTb_SrD.d.ts +0 -156
- package/dist/types.gen-DkFlXKTr.d.ts +0 -1354
- package/dist/types.gen-DkQ-Dbs1.d.ts +0 -764
- package/dist/types.gen-DyY7Deri.d.ts +0 -138
- package/dist/types.gen-MBZCvIhE.d.ts +0 -311
- package/dist/types.gen-YhJAHBw8.d.ts +0 -233
- package/dist/types.gen-cCnnhnB6.d.ts +0 -182
- package/dist/types.gen-mg_JNXrq.d.ts +0 -830
- package/dist/types.gen-uDTr6v-7.d.ts +0 -731
|
@@ -1,842 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Identical to [`RepositoryInfo`], but with the permissions field added.
|
|
3
|
-
*/
|
|
4
|
-
type AccessibleRepository = {
|
|
5
|
-
id: string;
|
|
6
|
-
name?: (string) | null;
|
|
7
|
-
accountId: string;
|
|
8
|
-
permissions: AccessLevel;
|
|
9
|
-
visibility: Visibility;
|
|
10
|
-
};
|
|
11
|
-
type AccessLevel = 'read' | 'write';
|
|
12
|
-
type AccessTokenInfo = {
|
|
13
|
-
id: string;
|
|
14
|
-
};
|
|
15
|
-
type Behavior = 'regex' | 'exact';
|
|
16
|
-
type CreateDomainMappingRequest = {
|
|
17
|
-
deploymentId: string;
|
|
18
|
-
};
|
|
19
|
-
type CreatedToken = {
|
|
20
|
-
id: string;
|
|
21
|
-
token: string;
|
|
22
|
-
};
|
|
23
|
-
type CreateRecordParams = {
|
|
24
|
-
domain: string;
|
|
25
|
-
record: DnsRecordData;
|
|
26
|
-
};
|
|
27
|
-
type CreateRepoRequest = {
|
|
28
|
-
source?: (null | CreateRepoSource);
|
|
29
|
-
};
|
|
30
|
-
type CreateRepositoryRequest = {
|
|
31
|
-
/**
|
|
32
|
-
* This name is not visible to users, and is only accessible to you via API and in the
|
|
33
|
-
* dashboard. Mostly useful for observability.
|
|
34
|
-
*/
|
|
35
|
-
name?: (string) | null;
|
|
36
|
-
public?: boolean;
|
|
37
|
-
source?: CreateRepoSource;
|
|
38
|
-
};
|
|
39
|
-
type CreateRepositoryResponseSuccess = {
|
|
40
|
-
repoId: string;
|
|
41
|
-
};
|
|
42
|
-
type CreateRepoSource = {
|
|
43
|
-
url: string;
|
|
44
|
-
branch?: (string) | null;
|
|
45
|
-
depth?: (number) | null;
|
|
46
|
-
type: 'git';
|
|
47
|
-
};
|
|
48
|
-
type type = 'git';
|
|
49
|
-
type CustomBuildOptions = {
|
|
50
|
-
command?: (string) | null;
|
|
51
|
-
};
|
|
52
|
-
type DeploymentBuildOptions = CustomBuildOptions | boolean;
|
|
53
|
-
type DeploymentLogEntry = {
|
|
54
|
-
deploymentId: string;
|
|
55
|
-
accountId: string;
|
|
56
|
-
provisionedAt: string;
|
|
57
|
-
timeout: string;
|
|
58
|
-
state: DeploymentState;
|
|
59
|
-
deployedAt?: (string) | null;
|
|
60
|
-
domains: Array<(string)>;
|
|
61
|
-
envVars: {
|
|
62
|
-
[key: string]: (string);
|
|
63
|
-
};
|
|
64
|
-
};
|
|
65
|
-
type DeploymentSource = {
|
|
66
|
-
files: {
|
|
67
|
-
[key: string]: FreestyleFile;
|
|
68
|
-
};
|
|
69
|
-
kind: 'files';
|
|
70
|
-
} | {
|
|
71
|
-
url: string;
|
|
72
|
-
kind: 'tar';
|
|
73
|
-
} | {
|
|
74
|
-
url: string;
|
|
75
|
-
branch?: (string) | null;
|
|
76
|
-
kind: 'git';
|
|
77
|
-
};
|
|
78
|
-
type kind = 'files';
|
|
79
|
-
type DeploymentState = 'provisioning' | 'deployed' | 'failed';
|
|
80
|
-
type DescribePermissionResponseSuccess = {
|
|
81
|
-
identity: string;
|
|
82
|
-
repo: string;
|
|
83
|
-
accessLevel?: (null | AccessLevel);
|
|
84
|
-
};
|
|
85
|
-
type DevServer = {
|
|
86
|
-
command?: (string) | null;
|
|
87
|
-
/**
|
|
88
|
-
* @deprecated
|
|
89
|
-
*/
|
|
90
|
-
repo?: (string) | null;
|
|
91
|
-
repoId?: (string) | null;
|
|
92
|
-
/**
|
|
93
|
-
* @deprecated
|
|
94
|
-
*/
|
|
95
|
-
domain?: (string) | null;
|
|
96
|
-
};
|
|
97
|
-
type DnsRecord = {
|
|
98
|
-
kind: DnsRecordKind;
|
|
99
|
-
name: string;
|
|
100
|
-
value: string;
|
|
101
|
-
ttl: string;
|
|
102
|
-
priority?: (number) | null;
|
|
103
|
-
managed: boolean;
|
|
104
|
-
};
|
|
105
|
-
type DnsRecordData = {
|
|
106
|
-
kind: DnsRecordKind;
|
|
107
|
-
name: string;
|
|
108
|
-
value: string;
|
|
109
|
-
ttl?: (string) | null;
|
|
110
|
-
priority?: (number) | null;
|
|
111
|
-
};
|
|
112
|
-
type DnsRecordKind = 'A' | 'AAAA' | 'CNAME' | 'TXT' | 'NS';
|
|
113
|
-
type DomainVerificationRequest = {
|
|
114
|
-
id: string;
|
|
115
|
-
domain: string;
|
|
116
|
-
accountId: string;
|
|
117
|
-
verificationCode: string;
|
|
118
|
-
createdAt: number;
|
|
119
|
-
};
|
|
120
|
-
type ExecuteLogEntry = {
|
|
121
|
-
deployment: string;
|
|
122
|
-
accountId: string;
|
|
123
|
-
provisionedAt: string;
|
|
124
|
-
startedAt?: (string) | null;
|
|
125
|
-
duration?: (string) | null;
|
|
126
|
-
state: ExecuteRunState;
|
|
127
|
-
envVars: {
|
|
128
|
-
[key: string]: (string);
|
|
129
|
-
};
|
|
130
|
-
};
|
|
131
|
-
type ExecuteRunInfo = {
|
|
132
|
-
code: string;
|
|
133
|
-
nodeModules: {
|
|
134
|
-
[key: string]: (string);
|
|
135
|
-
};
|
|
136
|
-
};
|
|
137
|
-
type ExecuteRunState = 'starting' | 'running' | 'complete';
|
|
138
|
-
type FreestyleCloudstateDeployConfiguration = {
|
|
139
|
-
/**
|
|
140
|
-
* ID of the project to deploy, if not provided will create a new project
|
|
141
|
-
*/
|
|
142
|
-
domains?: Array<(string)> | null;
|
|
143
|
-
/**
|
|
144
|
-
* The environment variables that the cloudstate deploy can access
|
|
145
|
-
*/
|
|
146
|
-
envVars?: {
|
|
147
|
-
[key: string]: (string);
|
|
148
|
-
};
|
|
149
|
-
cloudstateDatabaseId?: (string) | null;
|
|
150
|
-
};
|
|
151
|
-
type FreestyleCloudstateDeployErrorResponse = {
|
|
152
|
-
message: string;
|
|
153
|
-
};
|
|
154
|
-
type FreestyleCloudstateDeployRequest = {
|
|
155
|
-
classes: string;
|
|
156
|
-
config?: FreestyleCloudstateDeployConfiguration;
|
|
157
|
-
};
|
|
158
|
-
type FreestyleCloudstateDeploySuccessResponse = {
|
|
159
|
-
deploymentId: string;
|
|
160
|
-
cloudstateDatabaseId: string;
|
|
161
|
-
};
|
|
162
|
-
type FreestyleDeleteDomainVerificationRequest = {
|
|
163
|
-
/**
|
|
164
|
-
* The domain to create a verification code for
|
|
165
|
-
*/
|
|
166
|
-
domain: string;
|
|
167
|
-
/**
|
|
168
|
-
* The verification code
|
|
169
|
-
*/
|
|
170
|
-
verificationCode: string;
|
|
171
|
-
};
|
|
172
|
-
type FreestyleDeployWebConfiguration = {
|
|
173
|
-
/**
|
|
174
|
-
* The entrypoint file for the website
|
|
175
|
-
*/
|
|
176
|
-
entrypoint?: (string) | null;
|
|
177
|
-
/**
|
|
178
|
-
* The custom domains for the website, eg. [\"subdomain.yourwebsite.com\"]. You may include a single *.style.dev domain here.
|
|
179
|
-
*/
|
|
180
|
-
domains?: Array<(string)> | null;
|
|
181
|
-
/**
|
|
182
|
-
* Project ID was our original way of tracking deployments together, it is now deprecated and will be removed in the future. Please use the domains field to specify the domains for your project.
|
|
183
|
-
* @deprecated
|
|
184
|
-
*/
|
|
185
|
-
projectId?: (string) | null;
|
|
186
|
-
/**
|
|
187
|
-
* Node Modules to install for the website, a map of package names to versions, e.g. { \"express\": \"4.17.1\" }. If this and a package-lock.json are provided, the package-lock.json, bun.lockb, pnpm-lock.yaml, or yarn.lock is also provided, the versions here will override the versions in those lock files.
|
|
188
|
-
*/
|
|
189
|
-
nodeModules?: {
|
|
190
|
-
[key: string]: (string);
|
|
191
|
-
} | null;
|
|
192
|
-
/**
|
|
193
|
-
* The environment variables that the website can access
|
|
194
|
-
* e.g. { \"RESEND_API_KEY\": \"re_123456789\" }
|
|
195
|
-
*/
|
|
196
|
-
envVars?: {
|
|
197
|
-
[key: string]: (string);
|
|
198
|
-
} | null;
|
|
199
|
-
serverStartCheck?: boolean;
|
|
200
|
-
networkPermissions?: Array<FreestyleNetworkPermission> | null;
|
|
201
|
-
build?: (null | DeploymentBuildOptions);
|
|
202
|
-
/**
|
|
203
|
-
* Timeout for the deployment in seconds. If not provided, the default is 10 seconds.
|
|
204
|
-
*/
|
|
205
|
-
timeout?: (number) | null;
|
|
206
|
-
};
|
|
207
|
-
type FreestyleDeployWebErrorResponse = {
|
|
208
|
-
message: string;
|
|
209
|
-
};
|
|
210
|
-
type FreestyleDeployWebPayload = {
|
|
211
|
-
/**
|
|
212
|
-
* The files to deploy, a map of file paths to file contents, e.g. { \"index.js\": {\"content\": \"your main\", \"encoding\": \"utf-8\"}, \"file2.js\": {\"content\": \"your helper\" } }
|
|
213
|
-
*
|
|
214
|
-
* **Do not include node modules in this bundle, they will not work**. Instead, includes a package-lock.json, bun.lockb, pnpm-lock.yaml, or yarn.lock, the node modules for the project will be installed from that lock file, or use the node_modules field in the configuration to specify the node modules to install.
|
|
215
|
-
*/
|
|
216
|
-
files: {
|
|
217
|
-
[key: string]: FreestyleFile;
|
|
218
|
-
};
|
|
219
|
-
config?: FreestyleDeployWebConfiguration;
|
|
220
|
-
};
|
|
221
|
-
type FreestyleDeployWebPayloadV2 = {
|
|
222
|
-
/**
|
|
223
|
-
* The files to deploy, a map of file paths to file contents, e.g. { \"index.js\": {\"content\": \"your main\", \"encoding\": \"utf-8\"}, \"file2.js\": {\"content\": \"your helper\" } }
|
|
224
|
-
*
|
|
225
|
-
* **Do not include node modules in this bundle, they will not work**. Instead, includes a package-lock.json, bun.lockb, pnpm-lock.yaml, or yarn.lock, the node modules for the project will be installed from that lock file, or use the node_modules field in the configuration to specify the node modules to install.
|
|
226
|
-
*/
|
|
227
|
-
source: DeploymentSource;
|
|
228
|
-
config?: FreestyleDeployWebConfiguration;
|
|
229
|
-
};
|
|
230
|
-
type FreestyleDeployWebSuccessResponseV2 = {
|
|
231
|
-
deploymentId: string;
|
|
232
|
-
/**
|
|
233
|
-
* @deprecated
|
|
234
|
-
*/
|
|
235
|
-
projectId: string;
|
|
236
|
-
domains?: Array<(string)> | null;
|
|
237
|
-
/**
|
|
238
|
-
* The entrypoint file for the website. If not specified we try to automatically detect it.
|
|
239
|
-
*/
|
|
240
|
-
entrypoint: string;
|
|
241
|
-
};
|
|
242
|
-
type FreestyleDomainVerificationRequest = {
|
|
243
|
-
/**
|
|
244
|
-
* The domain to create a verification code for
|
|
245
|
-
*/
|
|
246
|
-
domain: string;
|
|
247
|
-
};
|
|
248
|
-
type FreestyleExecuteScriptParams = {
|
|
249
|
-
/**
|
|
250
|
-
* The JavaScript or TypeScript script to execute
|
|
251
|
-
*/
|
|
252
|
-
script: string;
|
|
253
|
-
config?: FreestyleExecuteScriptParamsConfiguration;
|
|
254
|
-
};
|
|
255
|
-
type FreestyleExecuteScriptParamsConfiguration = {
|
|
256
|
-
/**
|
|
257
|
-
* The environment variables to set for the script
|
|
258
|
-
*/
|
|
259
|
-
envVars?: {
|
|
260
|
-
[key: string]: (string);
|
|
261
|
-
};
|
|
262
|
-
/**
|
|
263
|
-
* The node modules to install for the script
|
|
264
|
-
*/
|
|
265
|
-
nodeModules?: {
|
|
266
|
-
[key: string]: (string);
|
|
267
|
-
};
|
|
268
|
-
/**
|
|
269
|
-
* Tags for you to organize your scripts, useful for tracking what you're running
|
|
270
|
-
*/
|
|
271
|
-
tags?: Array<(string)>;
|
|
272
|
-
/**
|
|
273
|
-
* The script timeout
|
|
274
|
-
*/
|
|
275
|
-
timeout?: (string) | null;
|
|
276
|
-
/**
|
|
277
|
-
* If false, we'll not resolve peer dependencies for the packages given, this can speed up execute performance, but will break packages with peers unless the peers are manually specified.
|
|
278
|
-
*/
|
|
279
|
-
peerDependencyResolution?: boolean;
|
|
280
|
-
networkPermissions?: Array<FreestyleNetworkPermission> | null;
|
|
281
|
-
/**
|
|
282
|
-
* These headers will be added to every fetch request made through the script
|
|
283
|
-
*/
|
|
284
|
-
customHeaders?: {
|
|
285
|
-
[key: string]: (string);
|
|
286
|
-
};
|
|
287
|
-
/**
|
|
288
|
-
* Proxy all outgoing requests through this URL
|
|
289
|
-
*/
|
|
290
|
-
proxy?: (string) | null;
|
|
291
|
-
};
|
|
292
|
-
type FreestyleExecuteScriptResultSuccess = {
|
|
293
|
-
/**
|
|
294
|
-
* The return value of the default export of the script
|
|
295
|
-
*/
|
|
296
|
-
result: unknown;
|
|
297
|
-
logs: Array<FreestyleJavaScriptLog>;
|
|
298
|
-
};
|
|
299
|
-
type FreestyleFile = {
|
|
300
|
-
/**
|
|
301
|
-
* The content of the file
|
|
302
|
-
*/
|
|
303
|
-
content: string;
|
|
304
|
-
/**
|
|
305
|
-
* The encoding of the file. Either **utf-8** or **base64**
|
|
306
|
-
*/
|
|
307
|
-
encoding?: string;
|
|
308
|
-
};
|
|
309
|
-
type FreestyleGetLogsResponse = {
|
|
310
|
-
logs: Array<FreestyleLogResponseObject>;
|
|
311
|
-
};
|
|
312
|
-
type FreestyleJavaScriptLog = {
|
|
313
|
-
/**
|
|
314
|
-
* The log message
|
|
315
|
-
*/
|
|
316
|
-
message: string;
|
|
317
|
-
/**
|
|
318
|
-
* The log level
|
|
319
|
-
*/
|
|
320
|
-
type: string;
|
|
321
|
-
};
|
|
322
|
-
type FreestyleLogResponseObject = {
|
|
323
|
-
message: string;
|
|
324
|
-
timestamp: string;
|
|
325
|
-
};
|
|
326
|
-
type FreestyleNetworkPermission = (NetworkPermissionData & {
|
|
327
|
-
action: 'allow';
|
|
328
|
-
}) | (NetworkPermissionData & {
|
|
329
|
-
action: 'deny';
|
|
330
|
-
});
|
|
331
|
-
type action = 'allow';
|
|
332
|
-
/**
|
|
333
|
-
* Verify a domain verification request, can either be done for a domain, or for a specific request
|
|
334
|
-
*/
|
|
335
|
-
type FreestyleVerifyDomainRequest = {
|
|
336
|
-
domain: string;
|
|
337
|
-
} | {
|
|
338
|
-
id: string;
|
|
339
|
-
};
|
|
340
|
-
type GitIdentity = {
|
|
341
|
-
id: string;
|
|
342
|
-
};
|
|
343
|
-
type GitRepositoryTrigger = {
|
|
344
|
-
repositoryId: string;
|
|
345
|
-
trigger: ({
|
|
346
|
-
branches?: Array<(string)> | null;
|
|
347
|
-
globs?: Array<(string)> | null;
|
|
348
|
-
event: 'push';
|
|
349
|
-
});
|
|
350
|
-
action: ({
|
|
351
|
-
endpoint: string;
|
|
352
|
-
action: 'webhook';
|
|
353
|
-
});
|
|
354
|
-
managed: boolean;
|
|
355
|
-
id: string;
|
|
356
|
-
createdAt: number;
|
|
357
|
-
};
|
|
358
|
-
type event = 'push';
|
|
359
|
-
type action2 = 'webhook';
|
|
360
|
-
type GitTrigger = {
|
|
361
|
-
branches?: Array<(string)> | null;
|
|
362
|
-
globs?: Array<(string)> | null;
|
|
363
|
-
event: 'push';
|
|
364
|
-
};
|
|
365
|
-
type GitTriggerAction = {
|
|
366
|
-
endpoint: string;
|
|
367
|
-
action: 'webhook';
|
|
368
|
-
};
|
|
369
|
-
type GrantPermissionRequest = {
|
|
370
|
-
permission: AccessLevel;
|
|
371
|
-
};
|
|
372
|
-
type InternalServerError = string;
|
|
373
|
-
type ListGitTokensResponseSuccess = {
|
|
374
|
-
tokens: Array<AccessTokenInfo>;
|
|
375
|
-
};
|
|
376
|
-
type ListPermissionResponseSuccess = {
|
|
377
|
-
repositories: Array<AccessibleRepository>;
|
|
378
|
-
};
|
|
379
|
-
type ListRecordsResponse = {
|
|
380
|
-
records: Array<DnsRecord>;
|
|
381
|
-
};
|
|
382
|
-
type NetworkPermissionData = {
|
|
383
|
-
query: string;
|
|
384
|
-
behavior?: Behavior;
|
|
385
|
-
};
|
|
386
|
-
type RepositoryInfo = {
|
|
387
|
-
id: string;
|
|
388
|
-
name?: (string) | null;
|
|
389
|
-
accountId: string;
|
|
390
|
-
visibility: Visibility;
|
|
391
|
-
};
|
|
392
|
-
type RevokeGitTokenRequest = {
|
|
393
|
-
tokenId: string;
|
|
394
|
-
};
|
|
395
|
-
type UpdatePermissionRequest = {
|
|
396
|
-
permission: AccessLevel;
|
|
397
|
-
};
|
|
398
|
-
type Visibility = 'public' | 'private';
|
|
399
|
-
type HandleDeployCloudstateData = {
|
|
400
|
-
body: FreestyleCloudstateDeployRequest;
|
|
401
|
-
};
|
|
402
|
-
type HandleDeployCloudstateResponse = (FreestyleCloudstateDeploySuccessResponse);
|
|
403
|
-
type HandleDeployCloudstateError = (FreestyleCloudstateDeployErrorResponse);
|
|
404
|
-
type HandleBackupCloudstateData = {
|
|
405
|
-
path: {
|
|
406
|
-
id: string;
|
|
407
|
-
};
|
|
408
|
-
};
|
|
409
|
-
type HandleBackupCloudstateResponse = (Array<(number)>);
|
|
410
|
-
type HandleBackupCloudstateError = (unknown);
|
|
411
|
-
type HandleListRecordsData = {
|
|
412
|
-
query: {
|
|
413
|
-
domain: string;
|
|
414
|
-
};
|
|
415
|
-
};
|
|
416
|
-
type HandleListRecordsResponse = (ListRecordsResponse);
|
|
417
|
-
type HandleListRecordsError = ({
|
|
418
|
-
message: string;
|
|
419
|
-
});
|
|
420
|
-
type HandleCreateRecordData = {
|
|
421
|
-
body: CreateRecordParams;
|
|
422
|
-
};
|
|
423
|
-
type HandleCreateRecordResponse = ({
|
|
424
|
-
record: DnsRecord;
|
|
425
|
-
});
|
|
426
|
-
type HandleCreateRecordError = ({
|
|
427
|
-
message: string;
|
|
428
|
-
});
|
|
429
|
-
type HandleDeleteRecordData = {
|
|
430
|
-
query: {
|
|
431
|
-
domain: string;
|
|
432
|
-
record: DnsRecord;
|
|
433
|
-
};
|
|
434
|
-
};
|
|
435
|
-
type HandleDeleteRecordResponse = ({
|
|
436
|
-
message: string;
|
|
437
|
-
});
|
|
438
|
-
type HandleDeleteRecordError = ({
|
|
439
|
-
message: string;
|
|
440
|
-
});
|
|
441
|
-
type HandleVerifyWildcardData = {
|
|
442
|
-
path: {
|
|
443
|
-
domain: string;
|
|
444
|
-
};
|
|
445
|
-
};
|
|
446
|
-
type HandleVerifyWildcardResponse = ({
|
|
447
|
-
domain: string;
|
|
448
|
-
});
|
|
449
|
-
type HandleVerifyWildcardError = ({
|
|
450
|
-
message: string;
|
|
451
|
-
});
|
|
452
|
-
type HandleListDomainsResponse = (Array<{
|
|
453
|
-
domain: string;
|
|
454
|
-
createdAt: number;
|
|
455
|
-
}>);
|
|
456
|
-
type HandleListDomainsError = ({
|
|
457
|
-
message: string;
|
|
458
|
-
});
|
|
459
|
-
type HandleInsertDomainMappingData = {
|
|
460
|
-
body: CreateDomainMappingRequest;
|
|
461
|
-
path: {
|
|
462
|
-
domain: string;
|
|
463
|
-
};
|
|
464
|
-
};
|
|
465
|
-
type HandleInsertDomainMappingResponse = (unknown);
|
|
466
|
-
type HandleInsertDomainMappingError = ({
|
|
467
|
-
message: string;
|
|
468
|
-
});
|
|
469
|
-
type HandleDeleteDomainMappingData = {
|
|
470
|
-
path: {
|
|
471
|
-
domain: string;
|
|
472
|
-
};
|
|
473
|
-
};
|
|
474
|
-
type HandleDeleteDomainMappingResponse = (unknown);
|
|
475
|
-
type HandleDeleteDomainMappingError = ({
|
|
476
|
-
message: string;
|
|
477
|
-
});
|
|
478
|
-
type HandleListDomainVerificationRequestsResponse = (Array<{
|
|
479
|
-
verificationCode: string;
|
|
480
|
-
domain: string;
|
|
481
|
-
createdAt: number;
|
|
482
|
-
}>);
|
|
483
|
-
type HandleListDomainVerificationRequestsError = ({
|
|
484
|
-
message: string;
|
|
485
|
-
});
|
|
486
|
-
type HandleVerifyDomainData = {
|
|
487
|
-
body: FreestyleVerifyDomainRequest;
|
|
488
|
-
};
|
|
489
|
-
type HandleVerifyDomainResponse = ({
|
|
490
|
-
domain: string;
|
|
491
|
-
});
|
|
492
|
-
type HandleVerifyDomainError = ({
|
|
493
|
-
message: string;
|
|
494
|
-
});
|
|
495
|
-
type HandleCreateDomainVerificationData = {
|
|
496
|
-
body: FreestyleDomainVerificationRequest;
|
|
497
|
-
};
|
|
498
|
-
type HandleCreateDomainVerificationResponse = (DomainVerificationRequest);
|
|
499
|
-
type HandleCreateDomainVerificationError = ({
|
|
500
|
-
message: string;
|
|
501
|
-
});
|
|
502
|
-
type HandleDeleteDomainVerificationData = {
|
|
503
|
-
body: FreestyleDeleteDomainVerificationRequest;
|
|
504
|
-
};
|
|
505
|
-
type HandleDeleteDomainVerificationResponse = ({
|
|
506
|
-
verificationCode: string;
|
|
507
|
-
domain: string;
|
|
508
|
-
});
|
|
509
|
-
type HandleDeleteDomainVerificationError = ({
|
|
510
|
-
message: string;
|
|
511
|
-
});
|
|
512
|
-
type HandleEphemeralDevServerData = {
|
|
513
|
-
body: DevServer;
|
|
514
|
-
};
|
|
515
|
-
type HandleEphemeralDevServerResponse = ({
|
|
516
|
-
/**
|
|
517
|
-
* @deprecated
|
|
518
|
-
*/
|
|
519
|
-
url: string;
|
|
520
|
-
isNew: boolean;
|
|
521
|
-
devCommandRunning: boolean;
|
|
522
|
-
installCommandRunning: boolean;
|
|
523
|
-
mcpEphemeralUrl?: (string) | null;
|
|
524
|
-
ephemeralUrl?: (string) | null;
|
|
525
|
-
});
|
|
526
|
-
type HandleEphemeralDevServerError = (InternalServerError);
|
|
527
|
-
type HandleListExecuteRunsData = {
|
|
528
|
-
query?: {
|
|
529
|
-
limit?: (number) | null;
|
|
530
|
-
offset?: (number) | null;
|
|
531
|
-
};
|
|
532
|
-
};
|
|
533
|
-
type HandleListExecuteRunsResponse = ({
|
|
534
|
-
entries: Array<ExecuteLogEntry>;
|
|
535
|
-
total: number;
|
|
536
|
-
offset: number;
|
|
537
|
-
});
|
|
538
|
-
type HandleListExecuteRunsError = ({
|
|
539
|
-
message: string;
|
|
540
|
-
});
|
|
541
|
-
type HandleGetExecuteRunData = {
|
|
542
|
-
path: {
|
|
543
|
-
deployment: string;
|
|
544
|
-
};
|
|
545
|
-
};
|
|
546
|
-
type HandleGetExecuteRunResponse = ({
|
|
547
|
-
metadata: ExecuteLogEntry;
|
|
548
|
-
code: ExecuteRunInfo;
|
|
549
|
-
});
|
|
550
|
-
type HandleGetExecuteRunError = ({
|
|
551
|
-
message: string;
|
|
552
|
-
});
|
|
553
|
-
type HandleExecuteScriptData = {
|
|
554
|
-
body: FreestyleExecuteScriptParams;
|
|
555
|
-
};
|
|
556
|
-
type HandleExecuteScriptResponse = ({
|
|
557
|
-
/**
|
|
558
|
-
* The return value of the default export of the script
|
|
559
|
-
*/
|
|
560
|
-
result: unknown;
|
|
561
|
-
logs: Array<FreestyleJavaScriptLog>;
|
|
562
|
-
});
|
|
563
|
-
type HandleExecuteScriptError = ({
|
|
564
|
-
error: string;
|
|
565
|
-
logs?: Array<FreestyleJavaScriptLog> | null;
|
|
566
|
-
});
|
|
567
|
-
type HandleListIdentitiesData = {
|
|
568
|
-
query?: {
|
|
569
|
-
limit?: (number) | null;
|
|
570
|
-
offset?: (number) | null;
|
|
571
|
-
};
|
|
572
|
-
};
|
|
573
|
-
type HandleListIdentitiesResponse = ({
|
|
574
|
-
identities: Array<GitIdentity>;
|
|
575
|
-
offset: number;
|
|
576
|
-
total: number;
|
|
577
|
-
});
|
|
578
|
-
type HandleListIdentitiesError = ({
|
|
579
|
-
message: string;
|
|
580
|
-
});
|
|
581
|
-
type HandleCreateIdentityResponse = (GitIdentity);
|
|
582
|
-
type HandleCreateIdentityError = ({
|
|
583
|
-
message: string;
|
|
584
|
-
});
|
|
585
|
-
type HandleDeleteIdentityData = {
|
|
586
|
-
path: {
|
|
587
|
-
identity: string;
|
|
588
|
-
};
|
|
589
|
-
};
|
|
590
|
-
type HandleDeleteIdentityResponse = ({
|
|
591
|
-
[key: string]: unknown;
|
|
592
|
-
});
|
|
593
|
-
type HandleDeleteIdentityError = ({
|
|
594
|
-
message: string;
|
|
595
|
-
});
|
|
596
|
-
type HandleListPermissionsData = {
|
|
597
|
-
path: {
|
|
598
|
-
identity: string;
|
|
599
|
-
};
|
|
600
|
-
query?: {
|
|
601
|
-
/**
|
|
602
|
-
* Maximum number of repositories to return
|
|
603
|
-
*/
|
|
604
|
-
limit?: number;
|
|
605
|
-
/**
|
|
606
|
-
* Offset for the list of repositories
|
|
607
|
-
*/
|
|
608
|
-
offset?: number;
|
|
609
|
-
};
|
|
610
|
-
};
|
|
611
|
-
type HandleListPermissionsResponse = (ListPermissionResponseSuccess);
|
|
612
|
-
type HandleListPermissionsError = ({
|
|
613
|
-
message: string;
|
|
614
|
-
});
|
|
615
|
-
type HandleDescribePermissionData = {
|
|
616
|
-
path: {
|
|
617
|
-
identity: string;
|
|
618
|
-
repo: string;
|
|
619
|
-
};
|
|
620
|
-
};
|
|
621
|
-
type HandleDescribePermissionResponse = (DescribePermissionResponseSuccess);
|
|
622
|
-
type HandleDescribePermissionError = ({
|
|
623
|
-
message: string;
|
|
624
|
-
});
|
|
625
|
-
type HandleGrantPermissionData = {
|
|
626
|
-
body: GrantPermissionRequest;
|
|
627
|
-
path: {
|
|
628
|
-
identity: string;
|
|
629
|
-
repo: string;
|
|
630
|
-
};
|
|
631
|
-
};
|
|
632
|
-
type HandleGrantPermissionResponse = ({
|
|
633
|
-
[key: string]: unknown;
|
|
634
|
-
});
|
|
635
|
-
type HandleGrantPermissionError = ({
|
|
636
|
-
message: string;
|
|
637
|
-
});
|
|
638
|
-
type HandleRevokePermissionData = {
|
|
639
|
-
path: {
|
|
640
|
-
identity: string;
|
|
641
|
-
repo: string;
|
|
642
|
-
};
|
|
643
|
-
};
|
|
644
|
-
type HandleRevokePermissionResponse = ({
|
|
645
|
-
[key: string]: unknown;
|
|
646
|
-
});
|
|
647
|
-
type HandleRevokePermissionError = ({
|
|
648
|
-
message: string;
|
|
649
|
-
});
|
|
650
|
-
type HandleUpdatePermissionData = {
|
|
651
|
-
body: UpdatePermissionRequest;
|
|
652
|
-
path: {
|
|
653
|
-
identity: string;
|
|
654
|
-
repo: string;
|
|
655
|
-
};
|
|
656
|
-
};
|
|
657
|
-
type HandleUpdatePermissionResponse = ({
|
|
658
|
-
[key: string]: unknown;
|
|
659
|
-
});
|
|
660
|
-
type HandleUpdatePermissionError = ({
|
|
661
|
-
message: string;
|
|
662
|
-
});
|
|
663
|
-
type HandleListGitTokensData = {
|
|
664
|
-
path: {
|
|
665
|
-
identity: string;
|
|
666
|
-
};
|
|
667
|
-
};
|
|
668
|
-
type HandleListGitTokensResponse = (ListGitTokensResponseSuccess);
|
|
669
|
-
type HandleListGitTokensError = ({
|
|
670
|
-
message: string;
|
|
671
|
-
});
|
|
672
|
-
type HandleCreateGitTokenData = {
|
|
673
|
-
path: {
|
|
674
|
-
identity: string;
|
|
675
|
-
};
|
|
676
|
-
};
|
|
677
|
-
type HandleCreateGitTokenResponse = (CreatedToken);
|
|
678
|
-
type HandleCreateGitTokenError = ({
|
|
679
|
-
message: string;
|
|
680
|
-
});
|
|
681
|
-
type HandleRevokeGitTokenData = {
|
|
682
|
-
body: RevokeGitTokenRequest;
|
|
683
|
-
path: {
|
|
684
|
-
identity: string;
|
|
685
|
-
};
|
|
686
|
-
};
|
|
687
|
-
type HandleRevokeGitTokenResponse = ({
|
|
688
|
-
[key: string]: unknown;
|
|
689
|
-
});
|
|
690
|
-
type HandleRevokeGitTokenError = ({
|
|
691
|
-
message: string;
|
|
692
|
-
});
|
|
693
|
-
type HandleListRepositoriesData = {
|
|
694
|
-
query?: {
|
|
695
|
-
/**
|
|
696
|
-
* Maximum number of repositories to return
|
|
697
|
-
*/
|
|
698
|
-
limit?: number;
|
|
699
|
-
/**
|
|
700
|
-
* Offset for the list of repositories
|
|
701
|
-
*/
|
|
702
|
-
offset?: number;
|
|
703
|
-
};
|
|
704
|
-
};
|
|
705
|
-
type HandleListRepositoriesResponse = ({
|
|
706
|
-
repositories: Array<RepositoryInfo>;
|
|
707
|
-
offset: number;
|
|
708
|
-
});
|
|
709
|
-
type HandleListRepositoriesError = ({
|
|
710
|
-
message: string;
|
|
711
|
-
});
|
|
712
|
-
type HandleCreateRepoData = {
|
|
713
|
-
body: {
|
|
714
|
-
/**
|
|
715
|
-
* This name is not visible to users, and is only accessible to you via API and in the
|
|
716
|
-
* dashboard. Mostly useful for observability.
|
|
717
|
-
*/
|
|
718
|
-
name?: (string) | null;
|
|
719
|
-
public?: boolean;
|
|
720
|
-
source?: CreateRepoSource;
|
|
721
|
-
};
|
|
722
|
-
};
|
|
723
|
-
type HandleCreateRepoResponse = (CreateRepositoryResponseSuccess);
|
|
724
|
-
type HandleCreateRepoError = ({
|
|
725
|
-
message: string;
|
|
726
|
-
});
|
|
727
|
-
type HandleDeleteRepoData = {
|
|
728
|
-
path: {
|
|
729
|
-
/**
|
|
730
|
-
* The repository id
|
|
731
|
-
*/
|
|
732
|
-
repo: string;
|
|
733
|
-
};
|
|
734
|
-
};
|
|
735
|
-
type HandleDeleteRepoResponse = ({
|
|
736
|
-
[key: string]: unknown;
|
|
737
|
-
});
|
|
738
|
-
type HandleDeleteRepoError = ({
|
|
739
|
-
message: string;
|
|
740
|
-
} | {
|
|
741
|
-
[key: string]: unknown;
|
|
742
|
-
});
|
|
743
|
-
type HandleListGitTriggersData = {
|
|
744
|
-
path: {
|
|
745
|
-
/**
|
|
746
|
-
* The repository id
|
|
747
|
-
*/
|
|
748
|
-
repo: string;
|
|
749
|
-
};
|
|
750
|
-
};
|
|
751
|
-
type HandleListGitTriggersResponse = ({
|
|
752
|
-
triggers: Array<GitRepositoryTrigger>;
|
|
753
|
-
});
|
|
754
|
-
type HandleListGitTriggersError = ({
|
|
755
|
-
message: string;
|
|
756
|
-
});
|
|
757
|
-
type HandleCreateGitTriggerData = {
|
|
758
|
-
body: {
|
|
759
|
-
trigger: ({
|
|
760
|
-
branches?: Array<(string)> | null;
|
|
761
|
-
globs?: Array<(string)> | null;
|
|
762
|
-
event: 'push';
|
|
763
|
-
});
|
|
764
|
-
action: ({
|
|
765
|
-
endpoint: string;
|
|
766
|
-
action: 'webhook';
|
|
767
|
-
});
|
|
768
|
-
};
|
|
769
|
-
path: {
|
|
770
|
-
/**
|
|
771
|
-
* The repository id
|
|
772
|
-
*/
|
|
773
|
-
repo: string;
|
|
774
|
-
};
|
|
775
|
-
};
|
|
776
|
-
type HandleCreateGitTriggerResponse = ({
|
|
777
|
-
triggerId: string;
|
|
778
|
-
});
|
|
779
|
-
type HandleCreateGitTriggerError = ({
|
|
780
|
-
message: string;
|
|
781
|
-
});
|
|
782
|
-
type HandleDeleteGitTriggerData = {
|
|
783
|
-
path: {
|
|
784
|
-
/**
|
|
785
|
-
* The trigger id
|
|
786
|
-
*/
|
|
787
|
-
trigger: string;
|
|
788
|
-
};
|
|
789
|
-
};
|
|
790
|
-
type HandleDeleteGitTriggerResponse = ({
|
|
791
|
-
[key: string]: unknown;
|
|
792
|
-
});
|
|
793
|
-
type HandleDeleteGitTriggerError = ({
|
|
794
|
-
message: string;
|
|
795
|
-
} | {
|
|
796
|
-
[key: string]: unknown;
|
|
797
|
-
});
|
|
798
|
-
type HandleGetLogsData = {
|
|
799
|
-
query?: {
|
|
800
|
-
deploymentId?: (string) | null;
|
|
801
|
-
domain?: (string) | null;
|
|
802
|
-
};
|
|
803
|
-
};
|
|
804
|
-
type HandleGetLogsResponse = (FreestyleGetLogsResponse);
|
|
805
|
-
type HandleGetLogsError = unknown;
|
|
806
|
-
type HandleDeployWebData = {
|
|
807
|
-
body: FreestyleDeployWebPayload;
|
|
808
|
-
};
|
|
809
|
-
type HandleDeployWebResponse = (FreestyleDeployWebSuccessResponseV2);
|
|
810
|
-
type HandleDeployWebError = (FreestyleDeployWebErrorResponse);
|
|
811
|
-
type HandleDeployWebV2Data = {
|
|
812
|
-
body: FreestyleDeployWebPayloadV2;
|
|
813
|
-
};
|
|
814
|
-
type HandleDeployWebV2Response = (FreestyleDeployWebSuccessResponseV2);
|
|
815
|
-
type HandleDeployWebV2Error = (FreestyleDeployWebErrorResponse);
|
|
816
|
-
type HandleListWebDeploysData = {
|
|
817
|
-
query: {
|
|
818
|
-
/**
|
|
819
|
-
* Maximum number of repositories to return
|
|
820
|
-
*/
|
|
821
|
-
limit: number;
|
|
822
|
-
/**
|
|
823
|
-
* Offset for the list of repositories
|
|
824
|
-
*/
|
|
825
|
-
offset: number;
|
|
826
|
-
};
|
|
827
|
-
};
|
|
828
|
-
type HandleListWebDeploysResponse = ({
|
|
829
|
-
entries: Array<DeploymentLogEntry>;
|
|
830
|
-
total: number;
|
|
831
|
-
offset: number;
|
|
832
|
-
});
|
|
833
|
-
type HandleListWebDeploysError = ({
|
|
834
|
-
message: string;
|
|
835
|
-
});
|
|
836
|
-
type HandleGetWebDeployDetailsData = {
|
|
837
|
-
path: {
|
|
838
|
-
deployment_id: string;
|
|
839
|
-
};
|
|
840
|
-
};
|
|
841
|
-
|
|
842
|
-
export type { ExecuteLogEntry as $, AccessLevel as A, HandleCreateGitTriggerResponse as B, CreateRepositoryResponseSuccess as C, DeploymentSource as D, DeploymentBuildOptions as E, FreestyleExecuteScriptParamsConfiguration as F, GitIdentity as G, HandleBackupCloudstateResponse as H, AccessibleRepository as I, AccessTokenInfo as J, Behavior as K, ListPermissionResponseSuccess as L, CreateDomainMappingRequest as M, CreateRecordParams as N, CreateRepoRequest as O, CreateRepositoryRequest as P, CreateRepoSource as Q, type as R, CustomBuildOptions as S, DeploymentLogEntry as T, kind as U, DeploymentState as V, DevServer as W, DnsRecord as X, DnsRecordData as Y, DnsRecordKind as Z, DomainVerificationRequest as _, FreestyleExecuteScriptResultSuccess as a, HandleGetExecuteRunError as a$, ExecuteRunInfo as a0, ExecuteRunState as a1, FreestyleCloudstateDeployConfiguration as a2, FreestyleCloudstateDeployErrorResponse as a3, FreestyleDeleteDomainVerificationRequest as a4, FreestyleDeployWebErrorResponse as a5, FreestyleDeployWebPayload as a6, FreestyleDeployWebPayloadV2 as a7, FreestyleDomainVerificationRequest as a8, FreestyleExecuteScriptParams as a9, HandleCreateRecordData as aA, HandleCreateRecordResponse as aB, HandleCreateRecordError as aC, HandleDeleteRecordData as aD, HandleDeleteRecordResponse as aE, HandleDeleteRecordError as aF, HandleVerifyWildcardData as aG, HandleVerifyWildcardError as aH, HandleListDomainsError as aI, HandleInsertDomainMappingData as aJ, HandleInsertDomainMappingResponse as aK, HandleInsertDomainMappingError as aL, HandleDeleteDomainMappingData as aM, HandleDeleteDomainMappingResponse as aN, HandleDeleteDomainMappingError as aO, HandleListDomainVerificationRequestsError as aP, HandleVerifyDomainData as aQ, HandleCreateDomainVerificationData as aR, HandleCreateDomainVerificationError as aS, HandleDeleteDomainVerificationData as aT, HandleDeleteDomainVerificationError as aU, HandleEphemeralDevServerData as aV, HandleEphemeralDevServerResponse as aW, HandleEphemeralDevServerError as aX, HandleListExecuteRunsData as aY, HandleListExecuteRunsError as aZ, HandleGetExecuteRunData as a_, FreestyleFile as aa, FreestyleGetLogsResponse as ab, FreestyleJavaScriptLog as ac, FreestyleLogResponseObject as ad, FreestyleNetworkPermission as ae, action as af, FreestyleVerifyDomainRequest as ag, GitRepositoryTrigger as ah, event as ai, action2 as aj, GrantPermissionRequest as ak, InternalServerError as al, ListRecordsResponse as am, NetworkPermissionData as an, RepositoryInfo as ao, RevokeGitTokenRequest as ap, UpdatePermissionRequest as aq, Visibility as ar, HandleDeployCloudstateData as as, HandleDeployCloudstateResponse as at, HandleDeployCloudstateError as au, HandleBackupCloudstateData as av, HandleBackupCloudstateError as aw, HandleListRecordsData as ax, HandleListRecordsResponse as ay, HandleListRecordsError as az, FreestyleDeployWebConfiguration as b, HandleExecuteScriptData as b0, HandleExecuteScriptResponse as b1, HandleExecuteScriptError as b2, HandleListIdentitiesData as b3, HandleListIdentitiesResponse as b4, HandleListIdentitiesError as b5, HandleCreateIdentityResponse as b6, HandleCreateIdentityError as b7, HandleDeleteIdentityData as b8, HandleDeleteIdentityError as b9, HandleCreateRepoResponse as bA, HandleCreateRepoError as bB, HandleDeleteRepoData as bC, HandleDeleteRepoError as bD, HandleListGitTriggersData as bE, HandleListGitTriggersError as bF, HandleCreateGitTriggerData as bG, HandleCreateGitTriggerError as bH, HandleDeleteGitTriggerData as bI, HandleDeleteGitTriggerResponse as bJ, HandleDeleteGitTriggerError as bK, HandleGetLogsData as bL, HandleGetLogsError as bM, HandleDeployWebData as bN, HandleDeployWebResponse as bO, HandleDeployWebError as bP, HandleDeployWebV2Data as bQ, HandleDeployWebV2Response as bR, HandleDeployWebV2Error as bS, HandleListWebDeploysData as bT, HandleListWebDeploysError as bU, HandleGetWebDeployDetailsData as bV, HandleListPermissionsData as ba, HandleListPermissionsResponse as bb, HandleListPermissionsError as bc, HandleDescribePermissionData as bd, HandleDescribePermissionResponse as be, HandleDescribePermissionError as bf, HandleGrantPermissionData as bg, HandleGrantPermissionError as bh, HandleRevokePermissionData as bi, HandleRevokePermissionResponse as bj, HandleRevokePermissionError as bk, HandleUpdatePermissionData as bl, HandleUpdatePermissionResponse as bm, HandleUpdatePermissionError as bn, HandleListGitTokensData as bo, HandleListGitTokensResponse as bp, HandleListGitTokensError as bq, HandleCreateGitTokenData as br, HandleCreateGitTokenResponse as bs, HandleCreateGitTokenError as bt, HandleRevokeGitTokenData as bu, HandleRevokeGitTokenResponse as bv, HandleRevokeGitTokenError as bw, HandleListRepositoriesData as bx, HandleListRepositoriesError as by, HandleCreateRepoData as bz, FreestyleDeployWebSuccessResponseV2 as c, FreestyleCloudstateDeployRequest as d, FreestyleCloudstateDeploySuccessResponse as e, HandleGetLogsResponse as f, HandleCreateDomainVerificationResponse as g, HandleVerifyDomainResponse as h, HandleVerifyDomainError as i, HandleListDomainsResponse as j, HandleListDomainVerificationRequestsResponse as k, HandleDeleteDomainVerificationResponse as l, HandleListWebDeploysResponse as m, HandleListExecuteRunsResponse as n, HandleGetExecuteRunResponse as o, HandleVerifyWildcardResponse as p, HandleListRepositoriesResponse as q, HandleDeleteRepoResponse as r, HandleDeleteIdentityResponse as s, HandleGrantPermissionResponse as t, DescribePermissionResponseSuccess as u, CreatedToken as v, ListGitTokensResponseSuccess as w, HandleListGitTriggersResponse as x, GitTrigger as y, GitTriggerAction as z };
|