freestyle-sandboxes 0.0.83 → 0.0.84
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 +45 -4
- package/dist/inde.d.mts +45 -4
- package/dist/index.cjs +170 -7
- package/dist/index.d.cts +45 -4
- package/dist/index.d.mts +45 -4
- package/dist/index.mjs +170 -7
- 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-BWwhCgTX.d.ts +1462 -0
- 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/package.json +1 -1
|
@@ -0,0 +1,1462 @@
|
|
|
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
|
+
/**
|
|
17
|
+
* The encoding of a blob from the API. Always `base64`.
|
|
18
|
+
*/
|
|
19
|
+
type BlobEncoding = 'base64';
|
|
20
|
+
/**
|
|
21
|
+
* Blob object
|
|
22
|
+
*/
|
|
23
|
+
type BlobObject = {
|
|
24
|
+
/**
|
|
25
|
+
* The content of the blob, base64 encoded.
|
|
26
|
+
*/
|
|
27
|
+
content: string;
|
|
28
|
+
/**
|
|
29
|
+
* The encoding of the blob. Always `base64`.
|
|
30
|
+
*/
|
|
31
|
+
encoding: BlobEncoding;
|
|
32
|
+
/**
|
|
33
|
+
* The object's hash.
|
|
34
|
+
*/
|
|
35
|
+
sha: string;
|
|
36
|
+
};
|
|
37
|
+
type BranchDetails = {
|
|
38
|
+
default: boolean;
|
|
39
|
+
name: string;
|
|
40
|
+
target?: (string) | null;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Commit object
|
|
44
|
+
*/
|
|
45
|
+
type CommitObject = {
|
|
46
|
+
/**
|
|
47
|
+
* The author of the commit
|
|
48
|
+
*/
|
|
49
|
+
author: Signature;
|
|
50
|
+
/**
|
|
51
|
+
* The committer
|
|
52
|
+
*/
|
|
53
|
+
committer: Signature;
|
|
54
|
+
/**
|
|
55
|
+
* The commit message
|
|
56
|
+
*/
|
|
57
|
+
message: string;
|
|
58
|
+
/**
|
|
59
|
+
* The ID of the tree pointed to by this commit
|
|
60
|
+
*/
|
|
61
|
+
tree: CommitTree;
|
|
62
|
+
/**
|
|
63
|
+
* Parent commit(s) of this commit
|
|
64
|
+
*/
|
|
65
|
+
parents: Array<CommitParent>;
|
|
66
|
+
/**
|
|
67
|
+
* The commit's hash ID
|
|
68
|
+
*/
|
|
69
|
+
sha: string;
|
|
70
|
+
};
|
|
71
|
+
type CommitParent = {
|
|
72
|
+
/**
|
|
73
|
+
* The commit's hash ID
|
|
74
|
+
*/
|
|
75
|
+
sha: string;
|
|
76
|
+
};
|
|
77
|
+
type CommitTree = {
|
|
78
|
+
/**
|
|
79
|
+
* The tree's hash ID
|
|
80
|
+
*/
|
|
81
|
+
sha: string;
|
|
82
|
+
};
|
|
83
|
+
type ConfigureGithubSyncRequest = {
|
|
84
|
+
/**
|
|
85
|
+
* The GitHub repository name in "owner/repo" format
|
|
86
|
+
*/
|
|
87
|
+
githubRepoName: string;
|
|
88
|
+
};
|
|
89
|
+
type CreateDomainMappingRequest = {
|
|
90
|
+
deploymentId: string;
|
|
91
|
+
};
|
|
92
|
+
type CreatedToken = {
|
|
93
|
+
id: string;
|
|
94
|
+
token: string;
|
|
95
|
+
};
|
|
96
|
+
type CreateRecordParams = {
|
|
97
|
+
domain: string;
|
|
98
|
+
record: DnsRecordData;
|
|
99
|
+
};
|
|
100
|
+
type CreateRepoImport = {
|
|
101
|
+
files: {
|
|
102
|
+
[key: string]: (string);
|
|
103
|
+
};
|
|
104
|
+
commit_message: string;
|
|
105
|
+
author_name?: (string) | null;
|
|
106
|
+
author_email?: (string) | null;
|
|
107
|
+
type: 'files';
|
|
108
|
+
} | {
|
|
109
|
+
url: string;
|
|
110
|
+
dir?: (string) | null;
|
|
111
|
+
commit_message: string;
|
|
112
|
+
author_name?: (string) | null;
|
|
113
|
+
author_email?: (string) | null;
|
|
114
|
+
type: 'tar';
|
|
115
|
+
} | {
|
|
116
|
+
url: string;
|
|
117
|
+
dir?: (string) | null;
|
|
118
|
+
commit_message: string;
|
|
119
|
+
author_name?: (string) | null;
|
|
120
|
+
author_email?: (string) | null;
|
|
121
|
+
type: 'zip';
|
|
122
|
+
} | {
|
|
123
|
+
url: string;
|
|
124
|
+
branch?: (string) | null;
|
|
125
|
+
dir?: (string) | null;
|
|
126
|
+
commit_message: string;
|
|
127
|
+
author_name?: (string) | null;
|
|
128
|
+
author_email?: (string) | null;
|
|
129
|
+
type: 'git';
|
|
130
|
+
};
|
|
131
|
+
type type = 'files';
|
|
132
|
+
type CreateRepoRequest = {
|
|
133
|
+
source?: (null | CreateRepoSource);
|
|
134
|
+
import?: (null | CreateRepoImport);
|
|
135
|
+
defaultBranch?: (string) | null;
|
|
136
|
+
};
|
|
137
|
+
type CreateRepositoryRequest = {
|
|
138
|
+
/**
|
|
139
|
+
* This name is not visible to users, and is only accessible to you via API and in the
|
|
140
|
+
* dashboard. Mostly useful for observability.
|
|
141
|
+
*/
|
|
142
|
+
name?: (string) | null;
|
|
143
|
+
public?: boolean;
|
|
144
|
+
/**
|
|
145
|
+
* The default branch name for the repository. Defaults to "main" if not specified.
|
|
146
|
+
*/
|
|
147
|
+
defaultBranch?: (string) | null;
|
|
148
|
+
source?: CreateRepoSource;
|
|
149
|
+
import?: CreateRepoImport;
|
|
150
|
+
};
|
|
151
|
+
type CreateRepositoryResponseSuccess = {
|
|
152
|
+
repoId: string;
|
|
153
|
+
};
|
|
154
|
+
type CreateRepoSource = {
|
|
155
|
+
url: string;
|
|
156
|
+
branch?: (string) | null;
|
|
157
|
+
depth?: (number) | null;
|
|
158
|
+
type: 'git';
|
|
159
|
+
};
|
|
160
|
+
type type2 = 'git';
|
|
161
|
+
type CustomBuildOptions = {
|
|
162
|
+
command?: (string) | null;
|
|
163
|
+
envVars?: {
|
|
164
|
+
[key: string]: (string);
|
|
165
|
+
} | null;
|
|
166
|
+
outDir?: (string) | null;
|
|
167
|
+
};
|
|
168
|
+
type DeploymentBuildOptions = (CustomBuildOptions) | boolean;
|
|
169
|
+
type DeploymentLogEntry = {
|
|
170
|
+
deploymentId: string;
|
|
171
|
+
accountId: string;
|
|
172
|
+
provisionedAt: string;
|
|
173
|
+
timeout: string;
|
|
174
|
+
state: DeploymentState;
|
|
175
|
+
deployedAt?: (string) | null;
|
|
176
|
+
domains: Array<(string)>;
|
|
177
|
+
envVars: {
|
|
178
|
+
[key: string]: (string);
|
|
179
|
+
};
|
|
180
|
+
};
|
|
181
|
+
type DeploymentSource = {
|
|
182
|
+
files: {
|
|
183
|
+
[key: string]: FreestyleFile;
|
|
184
|
+
};
|
|
185
|
+
kind: 'files';
|
|
186
|
+
} | {
|
|
187
|
+
url: string;
|
|
188
|
+
kind: 'tar';
|
|
189
|
+
} | {
|
|
190
|
+
url: string;
|
|
191
|
+
branch?: (string) | null;
|
|
192
|
+
dir?: (string) | null;
|
|
193
|
+
kind: 'git';
|
|
194
|
+
};
|
|
195
|
+
type kind = 'files';
|
|
196
|
+
type DeploymentState = 'provisioning' | 'deployed' | 'failed';
|
|
197
|
+
type DescribePermissionResponseSuccess = {
|
|
198
|
+
identity: string;
|
|
199
|
+
repo: string;
|
|
200
|
+
accessLevel?: (null | AccessLevel);
|
|
201
|
+
};
|
|
202
|
+
type DevServer = {
|
|
203
|
+
repoId: string;
|
|
204
|
+
kind: 'repo';
|
|
205
|
+
};
|
|
206
|
+
type kind2 = 'repo';
|
|
207
|
+
type DevServerRequest = {
|
|
208
|
+
devCommand?: (string) | null;
|
|
209
|
+
preDevCommandOnce?: (string) | null;
|
|
210
|
+
baseId?: (string) | null;
|
|
211
|
+
envVars?: {
|
|
212
|
+
[key: string]: (string);
|
|
213
|
+
} | null;
|
|
214
|
+
repoId?: (string) | null;
|
|
215
|
+
computeClass?: (string) | null;
|
|
216
|
+
/**
|
|
217
|
+
* Timeout in seconds
|
|
218
|
+
*/
|
|
219
|
+
timeout?: (number) | null;
|
|
220
|
+
/**
|
|
221
|
+
* @deprecated
|
|
222
|
+
*/
|
|
223
|
+
domain?: (string) | null;
|
|
224
|
+
/**
|
|
225
|
+
* @deprecated
|
|
226
|
+
*/
|
|
227
|
+
repo?: (string) | null;
|
|
228
|
+
gitRef?: (string) | null;
|
|
229
|
+
};
|
|
230
|
+
type DevServerStatusRequest = {
|
|
231
|
+
devServer: DevServer;
|
|
232
|
+
};
|
|
233
|
+
type DevServerWatchFilesRequest = {
|
|
234
|
+
devServer: DevServer;
|
|
235
|
+
};
|
|
236
|
+
type DnsRecord = {
|
|
237
|
+
kind: DnsRecordKind;
|
|
238
|
+
name: string;
|
|
239
|
+
value: string;
|
|
240
|
+
ttl: string;
|
|
241
|
+
priority?: (number) | null;
|
|
242
|
+
managed: boolean;
|
|
243
|
+
};
|
|
244
|
+
type DnsRecordData = {
|
|
245
|
+
kind: DnsRecordKind;
|
|
246
|
+
name: string;
|
|
247
|
+
value: string;
|
|
248
|
+
ttl?: (string) | null;
|
|
249
|
+
priority?: (number) | null;
|
|
250
|
+
};
|
|
251
|
+
type DnsRecordKind = 'A' | 'AAAA' | 'CNAME' | 'TXT' | 'NS';
|
|
252
|
+
type DomainVerificationRequest = {
|
|
253
|
+
id: string;
|
|
254
|
+
domain: string;
|
|
255
|
+
accountId: string;
|
|
256
|
+
verificationCode: string;
|
|
257
|
+
createdAt: string;
|
|
258
|
+
};
|
|
259
|
+
type ExecRequest = {
|
|
260
|
+
devServer: DevServer;
|
|
261
|
+
command: string;
|
|
262
|
+
/**
|
|
263
|
+
* Spawn this command as a background process and return immediately
|
|
264
|
+
*/
|
|
265
|
+
background: boolean;
|
|
266
|
+
};
|
|
267
|
+
type ExecuteLogEntry = {
|
|
268
|
+
deployment: string;
|
|
269
|
+
accountId: string;
|
|
270
|
+
provisionedAt: string;
|
|
271
|
+
startedAt?: (string) | null;
|
|
272
|
+
duration?: (string) | null;
|
|
273
|
+
state: ExecuteRunState;
|
|
274
|
+
envVars: {
|
|
275
|
+
[key: string]: (string);
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
type ExecuteRunInfo = {
|
|
279
|
+
code: string;
|
|
280
|
+
nodeModules: {
|
|
281
|
+
[key: string]: (string);
|
|
282
|
+
};
|
|
283
|
+
};
|
|
284
|
+
type ExecuteRunState = 'starting' | 'running' | 'complete';
|
|
285
|
+
type FileReadContent = {
|
|
286
|
+
content: string;
|
|
287
|
+
encoding: string;
|
|
288
|
+
kind: 'file';
|
|
289
|
+
} | {
|
|
290
|
+
files: Array<(string)>;
|
|
291
|
+
kind: 'directory';
|
|
292
|
+
};
|
|
293
|
+
type kind3 = 'file';
|
|
294
|
+
type FreestyleCloudstateDeployConfiguration = {
|
|
295
|
+
/**
|
|
296
|
+
* ID of the project to deploy, if not provided will create a new project
|
|
297
|
+
*/
|
|
298
|
+
domains?: Array<(string)> | null;
|
|
299
|
+
/**
|
|
300
|
+
* The environment variables that the cloudstate deploy can access
|
|
301
|
+
*/
|
|
302
|
+
envVars?: {
|
|
303
|
+
[key: string]: (string);
|
|
304
|
+
};
|
|
305
|
+
cloudstateDatabaseId?: (string) | null;
|
|
306
|
+
};
|
|
307
|
+
type FreestyleCloudstateDeployErrorResponse = {
|
|
308
|
+
message: string;
|
|
309
|
+
};
|
|
310
|
+
type FreestyleCloudstateDeployRequest = {
|
|
311
|
+
classes: string;
|
|
312
|
+
config?: FreestyleCloudstateDeployConfiguration;
|
|
313
|
+
};
|
|
314
|
+
type FreestyleCloudstateDeploySuccessResponse = {
|
|
315
|
+
deploymentId: string;
|
|
316
|
+
cloudstateDatabaseId: string;
|
|
317
|
+
};
|
|
318
|
+
type FreestyleDeleteDomainVerificationRequest = {
|
|
319
|
+
/**
|
|
320
|
+
* The domain to create a verification code for
|
|
321
|
+
*/
|
|
322
|
+
domain: string;
|
|
323
|
+
/**
|
|
324
|
+
* The verification code
|
|
325
|
+
*/
|
|
326
|
+
verificationCode: string;
|
|
327
|
+
};
|
|
328
|
+
type FreestyleDeployWebConfiguration = {
|
|
329
|
+
/**
|
|
330
|
+
* The entrypoint file for the website
|
|
331
|
+
*/
|
|
332
|
+
entrypoint?: (string) | null;
|
|
333
|
+
/**
|
|
334
|
+
* The custom domains for the website, eg. [\"subdomain.yourwebsite.com\"]. You may include a single *.style.dev domain here.
|
|
335
|
+
*/
|
|
336
|
+
domains?: Array<(string)> | null;
|
|
337
|
+
/**
|
|
338
|
+
* 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.
|
|
339
|
+
* @deprecated
|
|
340
|
+
*/
|
|
341
|
+
projectId?: (string) | null;
|
|
342
|
+
/**
|
|
343
|
+
* 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.
|
|
344
|
+
*/
|
|
345
|
+
nodeModules?: {
|
|
346
|
+
[key: string]: (string);
|
|
347
|
+
} | null;
|
|
348
|
+
/**
|
|
349
|
+
* The environment variables that the website can access
|
|
350
|
+
* e.g. { \"RESEND_API_KEY\": \"re_123456789\" }
|
|
351
|
+
*/
|
|
352
|
+
envVars?: {
|
|
353
|
+
[key: string]: (string);
|
|
354
|
+
} | null;
|
|
355
|
+
serverStartCheck?: boolean;
|
|
356
|
+
networkPermissions?: Array<FreestyleNetworkPermission> | null;
|
|
357
|
+
build?: (null | DeploymentBuildOptions);
|
|
358
|
+
/**
|
|
359
|
+
* Timeout for the deployment in seconds. If not provided, the default is 10 seconds.
|
|
360
|
+
*/
|
|
361
|
+
timeout?: (number) | null;
|
|
362
|
+
};
|
|
363
|
+
type FreestyleDeployWebErrorResponse = {
|
|
364
|
+
message: string;
|
|
365
|
+
};
|
|
366
|
+
type FreestyleDeployWebPayload = {
|
|
367
|
+
/**
|
|
368
|
+
* 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\" } }
|
|
369
|
+
*
|
|
370
|
+
* **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.
|
|
371
|
+
*/
|
|
372
|
+
files: {
|
|
373
|
+
[key: string]: FreestyleFile;
|
|
374
|
+
};
|
|
375
|
+
config?: FreestyleDeployWebConfiguration;
|
|
376
|
+
};
|
|
377
|
+
type FreestyleDeployWebPayloadV2 = {
|
|
378
|
+
/**
|
|
379
|
+
* 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\" } }
|
|
380
|
+
*
|
|
381
|
+
* **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.
|
|
382
|
+
*/
|
|
383
|
+
source: DeploymentSource;
|
|
384
|
+
config?: FreestyleDeployWebConfiguration;
|
|
385
|
+
};
|
|
386
|
+
type FreestyleDeployWebSuccessResponseV2 = {
|
|
387
|
+
deploymentId: string;
|
|
388
|
+
/**
|
|
389
|
+
* @deprecated
|
|
390
|
+
*/
|
|
391
|
+
projectId: string;
|
|
392
|
+
domains?: Array<(string)> | null;
|
|
393
|
+
/**
|
|
394
|
+
* The entrypoint file for the website. If not specified we try to automatically detect it.
|
|
395
|
+
*/
|
|
396
|
+
entrypoint: string;
|
|
397
|
+
};
|
|
398
|
+
type FreestyleDomainVerificationRequest = {
|
|
399
|
+
/**
|
|
400
|
+
* The domain to create a verification code for
|
|
401
|
+
*/
|
|
402
|
+
domain: string;
|
|
403
|
+
};
|
|
404
|
+
type FreestyleExecuteScriptParams = {
|
|
405
|
+
/**
|
|
406
|
+
* The JavaScript or TypeScript script to execute
|
|
407
|
+
*/
|
|
408
|
+
script: string;
|
|
409
|
+
config?: FreestyleExecuteScriptParamsConfiguration;
|
|
410
|
+
};
|
|
411
|
+
type FreestyleExecuteScriptParamsConfiguration = {
|
|
412
|
+
/**
|
|
413
|
+
* The environment variables to set for the script
|
|
414
|
+
*/
|
|
415
|
+
envVars?: {
|
|
416
|
+
[key: string]: (string);
|
|
417
|
+
};
|
|
418
|
+
/**
|
|
419
|
+
* The node modules to install for the script
|
|
420
|
+
*/
|
|
421
|
+
nodeModules?: {
|
|
422
|
+
[key: string]: (string);
|
|
423
|
+
};
|
|
424
|
+
/**
|
|
425
|
+
* Tags for you to organize your scripts, useful for tracking what you're running
|
|
426
|
+
*/
|
|
427
|
+
tags?: Array<(string)>;
|
|
428
|
+
/**
|
|
429
|
+
* The script timeout
|
|
430
|
+
*/
|
|
431
|
+
timeout?: (number) | null;
|
|
432
|
+
/**
|
|
433
|
+
* 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.
|
|
434
|
+
*/
|
|
435
|
+
peerDependencyResolution?: boolean;
|
|
436
|
+
networkPermissions?: Array<FreestyleNetworkPermission> | null;
|
|
437
|
+
/**
|
|
438
|
+
* These headers will be added to every fetch request made through the script
|
|
439
|
+
*/
|
|
440
|
+
customHeaders?: {
|
|
441
|
+
[key: string]: (string);
|
|
442
|
+
};
|
|
443
|
+
/**
|
|
444
|
+
* Proxy all outgoing requests through this URL
|
|
445
|
+
*/
|
|
446
|
+
proxy?: (string) | null;
|
|
447
|
+
};
|
|
448
|
+
type FreestyleExecuteScriptResultSuccess = {
|
|
449
|
+
/**
|
|
450
|
+
* The return value of the default export of the script
|
|
451
|
+
*/
|
|
452
|
+
result: unknown;
|
|
453
|
+
logs: Array<FreestyleJavaScriptLog>;
|
|
454
|
+
};
|
|
455
|
+
type FreestyleFile = {
|
|
456
|
+
/**
|
|
457
|
+
* The content of the file
|
|
458
|
+
*/
|
|
459
|
+
content: string;
|
|
460
|
+
/**
|
|
461
|
+
* The encoding of the file. Either **utf-8** or **base64**
|
|
462
|
+
*/
|
|
463
|
+
encoding?: string;
|
|
464
|
+
};
|
|
465
|
+
type FreestyleGetLogsResponse = {
|
|
466
|
+
logs: Array<FreestyleLogResponseObject>;
|
|
467
|
+
};
|
|
468
|
+
type FreestyleJavaScriptLog = {
|
|
469
|
+
/**
|
|
470
|
+
* The log message
|
|
471
|
+
*/
|
|
472
|
+
message: string;
|
|
473
|
+
/**
|
|
474
|
+
* The log level
|
|
475
|
+
*/
|
|
476
|
+
type: string;
|
|
477
|
+
};
|
|
478
|
+
type FreestyleLogResponseObject = {
|
|
479
|
+
message: string;
|
|
480
|
+
timestamp: string;
|
|
481
|
+
};
|
|
482
|
+
type FreestyleNetworkPermission = (NetworkPermissionData & {
|
|
483
|
+
action: 'allow';
|
|
484
|
+
}) | (NetworkPermissionData & {
|
|
485
|
+
action: 'deny';
|
|
486
|
+
});
|
|
487
|
+
type action = 'allow';
|
|
488
|
+
/**
|
|
489
|
+
* Verify a domain verification request, can either be done for a domain, or for a specific request
|
|
490
|
+
*/
|
|
491
|
+
type FreestyleVerifyDomainRequest = {
|
|
492
|
+
domain: string;
|
|
493
|
+
} | {
|
|
494
|
+
id: string;
|
|
495
|
+
};
|
|
496
|
+
type GetDefaultBranchResponse = {
|
|
497
|
+
defaultBranch: string;
|
|
498
|
+
};
|
|
499
|
+
type GitCommitPushRequest = {
|
|
500
|
+
devServer: DevServer;
|
|
501
|
+
message: string;
|
|
502
|
+
};
|
|
503
|
+
type GitContents = {
|
|
504
|
+
name: string;
|
|
505
|
+
path: string;
|
|
506
|
+
/**
|
|
507
|
+
* The hash / object ID of the file.
|
|
508
|
+
*/
|
|
509
|
+
sha: string;
|
|
510
|
+
size: number;
|
|
511
|
+
/**
|
|
512
|
+
* Base64-encoded content.
|
|
513
|
+
*/
|
|
514
|
+
content: string;
|
|
515
|
+
type: 'file';
|
|
516
|
+
} | {
|
|
517
|
+
name: string;
|
|
518
|
+
path: string;
|
|
519
|
+
/**
|
|
520
|
+
* The hash / object ID of the directory.
|
|
521
|
+
*/
|
|
522
|
+
sha: string;
|
|
523
|
+
entries: Array<GitContentsDirEntryItem>;
|
|
524
|
+
type: 'dir';
|
|
525
|
+
};
|
|
526
|
+
type type3 = 'file';
|
|
527
|
+
type GitContentsDirEntryItem = {
|
|
528
|
+
name: string;
|
|
529
|
+
path: string;
|
|
530
|
+
/**
|
|
531
|
+
* The hash / object ID of the file.
|
|
532
|
+
*/
|
|
533
|
+
sha: string;
|
|
534
|
+
size: number;
|
|
535
|
+
type: 'file';
|
|
536
|
+
} | {
|
|
537
|
+
name: string;
|
|
538
|
+
path: string;
|
|
539
|
+
/**
|
|
540
|
+
* The hash / object ID of the directory.
|
|
541
|
+
*/
|
|
542
|
+
sha: string;
|
|
543
|
+
entries: Array<({
|
|
544
|
+
[key: string]: unknown;
|
|
545
|
+
})>;
|
|
546
|
+
type: 'dir';
|
|
547
|
+
};
|
|
548
|
+
type GithubRepoSyncConfig = {
|
|
549
|
+
freestyleRepoId: string;
|
|
550
|
+
accountId: string;
|
|
551
|
+
installationId: number;
|
|
552
|
+
githubRepoId: number;
|
|
553
|
+
githubRepoName: string;
|
|
554
|
+
createdAt: string;
|
|
555
|
+
};
|
|
556
|
+
type GithubSyncConfigResponse = {
|
|
557
|
+
githubRepoName: string;
|
|
558
|
+
};
|
|
559
|
+
type GitIdentity = {
|
|
560
|
+
id: string;
|
|
561
|
+
managed: boolean;
|
|
562
|
+
};
|
|
563
|
+
/**
|
|
564
|
+
* A reference to a Git object
|
|
565
|
+
*/
|
|
566
|
+
type GitReference = {
|
|
567
|
+
/**
|
|
568
|
+
* The name of the ref (e.g., "refs/heads/main" or "refs/tags/v1.0.0")
|
|
569
|
+
*/
|
|
570
|
+
name: string;
|
|
571
|
+
/**
|
|
572
|
+
* The SHA-1 hash of the Git object this reference points to
|
|
573
|
+
*/
|
|
574
|
+
sha: string;
|
|
575
|
+
};
|
|
576
|
+
type GitRepositoryTrigger = {
|
|
577
|
+
repositoryId: string;
|
|
578
|
+
trigger: ({
|
|
579
|
+
branches?: Array<(string)> | null;
|
|
580
|
+
globs?: Array<(string)> | null;
|
|
581
|
+
event: 'push';
|
|
582
|
+
});
|
|
583
|
+
action: ({
|
|
584
|
+
endpoint: string;
|
|
585
|
+
action: 'webhook';
|
|
586
|
+
});
|
|
587
|
+
managed: boolean;
|
|
588
|
+
id: string;
|
|
589
|
+
createdAt: string;
|
|
590
|
+
};
|
|
591
|
+
type event = 'push';
|
|
592
|
+
type action2 = 'webhook';
|
|
593
|
+
type GitTrigger = {
|
|
594
|
+
branches?: Array<(string)> | null;
|
|
595
|
+
globs?: Array<(string)> | null;
|
|
596
|
+
event: 'push';
|
|
597
|
+
};
|
|
598
|
+
type GitTriggerAction = {
|
|
599
|
+
endpoint: string;
|
|
600
|
+
action: 'webhook';
|
|
601
|
+
};
|
|
602
|
+
type GrantPermissionRequest = {
|
|
603
|
+
permission: AccessLevel;
|
|
604
|
+
};
|
|
605
|
+
type InternalServerError = string;
|
|
606
|
+
type ListGitTokensResponseSuccess = {
|
|
607
|
+
tokens: Array<AccessTokenInfo>;
|
|
608
|
+
};
|
|
609
|
+
type ListPermissionResponseSuccess = {
|
|
610
|
+
repositories: Array<AccessibleRepository>;
|
|
611
|
+
};
|
|
612
|
+
type ListRecordsResponse = {
|
|
613
|
+
records: Array<DnsRecord>;
|
|
614
|
+
};
|
|
615
|
+
type NetworkPermissionData = {
|
|
616
|
+
query: string;
|
|
617
|
+
behavior?: Behavior;
|
|
618
|
+
};
|
|
619
|
+
type ReadFileEphemeralDevServerResponses = {
|
|
620
|
+
id: string;
|
|
621
|
+
isNew: boolean;
|
|
622
|
+
content: ({
|
|
623
|
+
content: string;
|
|
624
|
+
encoding: string;
|
|
625
|
+
kind: 'file';
|
|
626
|
+
} | {
|
|
627
|
+
files: Array<(string)>;
|
|
628
|
+
kind: 'directory';
|
|
629
|
+
});
|
|
630
|
+
} | {
|
|
631
|
+
id: string;
|
|
632
|
+
isNew: boolean;
|
|
633
|
+
} | InternalServerError;
|
|
634
|
+
type ReadFileRequest = {
|
|
635
|
+
devServer: DevServer;
|
|
636
|
+
encoding?: string;
|
|
637
|
+
};
|
|
638
|
+
type RepositoryInfo = {
|
|
639
|
+
id: string;
|
|
640
|
+
name?: (string) | null;
|
|
641
|
+
accountId: string;
|
|
642
|
+
visibility: Visibility;
|
|
643
|
+
defaultBranch: string;
|
|
644
|
+
};
|
|
645
|
+
type RepositoryMetadata = {
|
|
646
|
+
branches: {
|
|
647
|
+
[key: string]: BranchDetails;
|
|
648
|
+
};
|
|
649
|
+
tags: {
|
|
650
|
+
[key: string]: TagDetails;
|
|
651
|
+
};
|
|
652
|
+
defaultBranch: string;
|
|
653
|
+
};
|
|
654
|
+
type RevokeGitTokenRequest = {
|
|
655
|
+
tokenId: string;
|
|
656
|
+
};
|
|
657
|
+
type SetDefaultBranchRequest = {
|
|
658
|
+
defaultBranch: string;
|
|
659
|
+
};
|
|
660
|
+
type SetDefaultBranchResponse = {
|
|
661
|
+
[key: string]: unknown;
|
|
662
|
+
};
|
|
663
|
+
type ShutdownDevServerRequest = {
|
|
664
|
+
/**
|
|
665
|
+
* The dev server to shutdown
|
|
666
|
+
*/
|
|
667
|
+
devServer: DevServer;
|
|
668
|
+
};
|
|
669
|
+
type Signature = {
|
|
670
|
+
/**
|
|
671
|
+
* The date marker for this signature
|
|
672
|
+
*/
|
|
673
|
+
date: string;
|
|
674
|
+
name: string;
|
|
675
|
+
email: string;
|
|
676
|
+
};
|
|
677
|
+
type TagDetails = {
|
|
678
|
+
name: string;
|
|
679
|
+
target: string;
|
|
680
|
+
message?: (string) | null;
|
|
681
|
+
};
|
|
682
|
+
/**
|
|
683
|
+
* Tag object
|
|
684
|
+
*/
|
|
685
|
+
type TagObject = {
|
|
686
|
+
/**
|
|
687
|
+
* The tag name
|
|
688
|
+
*/
|
|
689
|
+
name: string;
|
|
690
|
+
tagger?: (null | Signature);
|
|
691
|
+
/**
|
|
692
|
+
* The tag message
|
|
693
|
+
*/
|
|
694
|
+
message?: (string) | null;
|
|
695
|
+
/**
|
|
696
|
+
* The object this tag points to
|
|
697
|
+
*/
|
|
698
|
+
target: TagTarget;
|
|
699
|
+
/**
|
|
700
|
+
* The tag's hash ID
|
|
701
|
+
*/
|
|
702
|
+
sha: string;
|
|
703
|
+
};
|
|
704
|
+
type TagTarget = {
|
|
705
|
+
/**
|
|
706
|
+
* The target object's hash ID
|
|
707
|
+
*/
|
|
708
|
+
sha: string;
|
|
709
|
+
};
|
|
710
|
+
type TreeEntry = {
|
|
711
|
+
path: string;
|
|
712
|
+
sha: string;
|
|
713
|
+
type: 'blob';
|
|
714
|
+
} | {
|
|
715
|
+
path: string;
|
|
716
|
+
sha: string;
|
|
717
|
+
type: 'tree';
|
|
718
|
+
};
|
|
719
|
+
type type4 = 'blob';
|
|
720
|
+
/**
|
|
721
|
+
* Tree object
|
|
722
|
+
*/
|
|
723
|
+
type TreeObject = {
|
|
724
|
+
/**
|
|
725
|
+
* The tree's entries
|
|
726
|
+
*/
|
|
727
|
+
tree: Array<TreeEntry>;
|
|
728
|
+
/**
|
|
729
|
+
* The tree's hash ID
|
|
730
|
+
*/
|
|
731
|
+
sha: string;
|
|
732
|
+
};
|
|
733
|
+
type UpdatePermissionRequest = {
|
|
734
|
+
permission: AccessLevel;
|
|
735
|
+
};
|
|
736
|
+
type Visibility = 'public' | 'private';
|
|
737
|
+
type WriteFileRequest = {
|
|
738
|
+
devServer: DevServer;
|
|
739
|
+
content: string;
|
|
740
|
+
encoding?: string;
|
|
741
|
+
};
|
|
742
|
+
type HandleDeployCloudstateData = {
|
|
743
|
+
body: FreestyleCloudstateDeployRequest;
|
|
744
|
+
};
|
|
745
|
+
type HandleDeployCloudstateResponse = (FreestyleCloudstateDeploySuccessResponse);
|
|
746
|
+
type HandleDeployCloudstateError = (FreestyleCloudstateDeployErrorResponse);
|
|
747
|
+
type HandleBackupCloudstateData = {
|
|
748
|
+
path: {
|
|
749
|
+
id: string;
|
|
750
|
+
};
|
|
751
|
+
};
|
|
752
|
+
type HandleBackupCloudstateResponse = (Array<(number)>);
|
|
753
|
+
type HandleBackupCloudstateError = (unknown);
|
|
754
|
+
type HandleListRecordsData = {
|
|
755
|
+
query: {
|
|
756
|
+
domain: string;
|
|
757
|
+
};
|
|
758
|
+
};
|
|
759
|
+
type HandleListRecordsResponse = (ListRecordsResponse);
|
|
760
|
+
type HandleListRecordsError = ({
|
|
761
|
+
message: string;
|
|
762
|
+
});
|
|
763
|
+
type HandleCreateRecordData = {
|
|
764
|
+
body: CreateRecordParams;
|
|
765
|
+
};
|
|
766
|
+
type HandleCreateRecordResponse = ({
|
|
767
|
+
record: DnsRecord;
|
|
768
|
+
});
|
|
769
|
+
type HandleCreateRecordError = ({
|
|
770
|
+
message: string;
|
|
771
|
+
});
|
|
772
|
+
type HandleDeleteRecordData = {
|
|
773
|
+
query: {
|
|
774
|
+
domain: string;
|
|
775
|
+
record: DnsRecord;
|
|
776
|
+
};
|
|
777
|
+
};
|
|
778
|
+
type HandleDeleteRecordResponse = ({
|
|
779
|
+
message: string;
|
|
780
|
+
});
|
|
781
|
+
type HandleDeleteRecordError = ({
|
|
782
|
+
message: string;
|
|
783
|
+
});
|
|
784
|
+
type HandleVerifyWildcardData = {
|
|
785
|
+
path: {
|
|
786
|
+
domain: string;
|
|
787
|
+
};
|
|
788
|
+
};
|
|
789
|
+
type HandleVerifyWildcardResponse = ({
|
|
790
|
+
domain: string;
|
|
791
|
+
});
|
|
792
|
+
type HandleVerifyWildcardError = ({
|
|
793
|
+
message: string;
|
|
794
|
+
});
|
|
795
|
+
type HandleListDomainsResponse = (Array<{
|
|
796
|
+
domain: string;
|
|
797
|
+
createdAt: string;
|
|
798
|
+
}>);
|
|
799
|
+
type HandleListDomainsError = ({
|
|
800
|
+
message: string;
|
|
801
|
+
});
|
|
802
|
+
type HandleInsertDomainMappingData = {
|
|
803
|
+
body: CreateDomainMappingRequest;
|
|
804
|
+
path: {
|
|
805
|
+
domain: string;
|
|
806
|
+
};
|
|
807
|
+
};
|
|
808
|
+
type HandleInsertDomainMappingResponse = (unknown);
|
|
809
|
+
type HandleInsertDomainMappingError = ({
|
|
810
|
+
message: string;
|
|
811
|
+
});
|
|
812
|
+
type HandleDeleteDomainMappingData = {
|
|
813
|
+
path: {
|
|
814
|
+
domain: string;
|
|
815
|
+
};
|
|
816
|
+
};
|
|
817
|
+
type HandleDeleteDomainMappingResponse = (unknown);
|
|
818
|
+
type HandleDeleteDomainMappingError = ({
|
|
819
|
+
message: string;
|
|
820
|
+
});
|
|
821
|
+
type HandleListDomainVerificationRequestsResponse = (Array<{
|
|
822
|
+
verificationCode: string;
|
|
823
|
+
domain: string;
|
|
824
|
+
createdAt: string;
|
|
825
|
+
}>);
|
|
826
|
+
type HandleListDomainVerificationRequestsError = ({
|
|
827
|
+
message: string;
|
|
828
|
+
});
|
|
829
|
+
type HandleVerifyDomainData = {
|
|
830
|
+
body: FreestyleVerifyDomainRequest;
|
|
831
|
+
};
|
|
832
|
+
type HandleVerifyDomainResponse = ({
|
|
833
|
+
domain: string;
|
|
834
|
+
});
|
|
835
|
+
type HandleVerifyDomainError = ({
|
|
836
|
+
message: string;
|
|
837
|
+
});
|
|
838
|
+
type HandleCreateDomainVerificationData = {
|
|
839
|
+
body: FreestyleDomainVerificationRequest;
|
|
840
|
+
};
|
|
841
|
+
type HandleCreateDomainVerificationResponse = (DomainVerificationRequest);
|
|
842
|
+
type HandleCreateDomainVerificationError = ({
|
|
843
|
+
message: string;
|
|
844
|
+
});
|
|
845
|
+
type HandleDeleteDomainVerificationData = {
|
|
846
|
+
body: FreestyleDeleteDomainVerificationRequest;
|
|
847
|
+
};
|
|
848
|
+
type HandleDeleteDomainVerificationResponse = ({
|
|
849
|
+
verificationCode: string;
|
|
850
|
+
domain: string;
|
|
851
|
+
});
|
|
852
|
+
type HandleDeleteDomainVerificationError = ({
|
|
853
|
+
message: string;
|
|
854
|
+
});
|
|
855
|
+
type HandleEphemeralDevServerData = {
|
|
856
|
+
body: DevServerRequest;
|
|
857
|
+
};
|
|
858
|
+
type HandleEphemeralDevServerResponse = ({
|
|
859
|
+
/**
|
|
860
|
+
* @deprecated
|
|
861
|
+
*/
|
|
862
|
+
url: string;
|
|
863
|
+
isNew: boolean;
|
|
864
|
+
devCommandRunning: boolean;
|
|
865
|
+
installCommandRunning: boolean;
|
|
866
|
+
mcpEphemeralUrl?: (string) | null;
|
|
867
|
+
ephemeralUrl?: (string) | null;
|
|
868
|
+
});
|
|
869
|
+
type HandleEphemeralDevServerError = (InternalServerError);
|
|
870
|
+
type HandleExecOnEphemeralDevServerData = {
|
|
871
|
+
body: ExecRequest;
|
|
872
|
+
};
|
|
873
|
+
type HandleExecOnEphemeralDevServerResponse = ({
|
|
874
|
+
id: string;
|
|
875
|
+
isNew: boolean;
|
|
876
|
+
stdout?: Array<(string)> | null;
|
|
877
|
+
stderr?: Array<(string)> | null;
|
|
878
|
+
});
|
|
879
|
+
type HandleExecOnEphemeralDevServerError = (InternalServerError);
|
|
880
|
+
type HandleWriteFileFromEphemeralDevServerData = {
|
|
881
|
+
body: WriteFileRequest;
|
|
882
|
+
};
|
|
883
|
+
type HandleWriteFileFromEphemeralDevServerResponse = ({
|
|
884
|
+
id: string;
|
|
885
|
+
isNew: boolean;
|
|
886
|
+
});
|
|
887
|
+
type HandleWriteFileFromEphemeralDevServerError = (InternalServerError);
|
|
888
|
+
type HandleReadFileFromEphemeralDevServerData = {
|
|
889
|
+
body: ReadFileRequest;
|
|
890
|
+
};
|
|
891
|
+
type HandleReadFileFromEphemeralDevServerResponse = ({
|
|
892
|
+
id: string;
|
|
893
|
+
isNew: boolean;
|
|
894
|
+
content: ({
|
|
895
|
+
content: string;
|
|
896
|
+
encoding: string;
|
|
897
|
+
kind: 'file';
|
|
898
|
+
} | {
|
|
899
|
+
files: Array<(string)>;
|
|
900
|
+
kind: 'directory';
|
|
901
|
+
});
|
|
902
|
+
});
|
|
903
|
+
type HandleReadFileFromEphemeralDevServerError = ({
|
|
904
|
+
id: string;
|
|
905
|
+
isNew: boolean;
|
|
906
|
+
} | InternalServerError);
|
|
907
|
+
type HandleGitCommitPushData = {
|
|
908
|
+
body: GitCommitPushRequest;
|
|
909
|
+
};
|
|
910
|
+
type HandleGitCommitPushResponse = ({
|
|
911
|
+
id: string;
|
|
912
|
+
isNew: boolean;
|
|
913
|
+
});
|
|
914
|
+
type HandleGitCommitPushError = (InternalServerError);
|
|
915
|
+
type HandleShutdownDevServerData = {
|
|
916
|
+
body: ShutdownDevServerRequest;
|
|
917
|
+
};
|
|
918
|
+
type HandleShutdownDevServerResponse = ({
|
|
919
|
+
success: boolean;
|
|
920
|
+
message: string;
|
|
921
|
+
});
|
|
922
|
+
type HandleShutdownDevServerError = ({
|
|
923
|
+
message: string;
|
|
924
|
+
} | InternalServerError);
|
|
925
|
+
type HandleDevServerStatusData = {
|
|
926
|
+
body: DevServerStatusRequest;
|
|
927
|
+
};
|
|
928
|
+
type HandleDevServerStatusResponse = ({
|
|
929
|
+
installing: boolean;
|
|
930
|
+
devRunning: boolean;
|
|
931
|
+
});
|
|
932
|
+
type HandleDevServerStatusError = (InternalServerError);
|
|
933
|
+
type HandleWatchDevServerFilesData = {
|
|
934
|
+
body: DevServerWatchFilesRequest;
|
|
935
|
+
};
|
|
936
|
+
type HandleWatchDevServerFilesResponse = (string);
|
|
937
|
+
type HandleWatchDevServerFilesError = unknown;
|
|
938
|
+
type HandleListExecuteRunsData = {
|
|
939
|
+
query?: {
|
|
940
|
+
limit?: (number) | null;
|
|
941
|
+
offset?: (number) | null;
|
|
942
|
+
};
|
|
943
|
+
};
|
|
944
|
+
type HandleListExecuteRunsResponse = ({
|
|
945
|
+
entries: Array<ExecuteLogEntry>;
|
|
946
|
+
total: number;
|
|
947
|
+
offset: number;
|
|
948
|
+
});
|
|
949
|
+
type HandleListExecuteRunsError = ({
|
|
950
|
+
message: string;
|
|
951
|
+
});
|
|
952
|
+
type HandleGetExecuteRunData = {
|
|
953
|
+
path: {
|
|
954
|
+
deployment: string;
|
|
955
|
+
};
|
|
956
|
+
};
|
|
957
|
+
type HandleGetExecuteRunResponse = ({
|
|
958
|
+
metadata: ExecuteLogEntry;
|
|
959
|
+
code: ExecuteRunInfo;
|
|
960
|
+
});
|
|
961
|
+
type HandleGetExecuteRunError = ({
|
|
962
|
+
message: string;
|
|
963
|
+
});
|
|
964
|
+
type HandleExecuteScriptData = {
|
|
965
|
+
body: FreestyleExecuteScriptParams;
|
|
966
|
+
};
|
|
967
|
+
type HandleExecuteScriptResponse = ({
|
|
968
|
+
/**
|
|
969
|
+
* The return value of the default export of the script
|
|
970
|
+
*/
|
|
971
|
+
result: unknown;
|
|
972
|
+
logs: Array<FreestyleJavaScriptLog>;
|
|
973
|
+
});
|
|
974
|
+
type HandleExecuteScriptError = ({
|
|
975
|
+
error: string;
|
|
976
|
+
logs?: Array<FreestyleJavaScriptLog> | null;
|
|
977
|
+
});
|
|
978
|
+
type HandleListIdentitiesData = {
|
|
979
|
+
query?: {
|
|
980
|
+
includeManaged?: (boolean) | null;
|
|
981
|
+
limit?: (number) | null;
|
|
982
|
+
offset?: (number) | null;
|
|
983
|
+
};
|
|
984
|
+
};
|
|
985
|
+
type HandleListIdentitiesResponse = ({
|
|
986
|
+
identities: Array<GitIdentity>;
|
|
987
|
+
offset: number;
|
|
988
|
+
total: number;
|
|
989
|
+
});
|
|
990
|
+
type HandleListIdentitiesError = ({
|
|
991
|
+
message: string;
|
|
992
|
+
});
|
|
993
|
+
type HandleCreateIdentityResponse = (GitIdentity);
|
|
994
|
+
type HandleCreateIdentityError = ({
|
|
995
|
+
message: string;
|
|
996
|
+
});
|
|
997
|
+
type HandleDeleteIdentityData = {
|
|
998
|
+
path: {
|
|
999
|
+
identity: string;
|
|
1000
|
+
};
|
|
1001
|
+
};
|
|
1002
|
+
type HandleDeleteIdentityResponse = ({
|
|
1003
|
+
[key: string]: unknown;
|
|
1004
|
+
});
|
|
1005
|
+
type HandleDeleteIdentityError = ({
|
|
1006
|
+
message: string;
|
|
1007
|
+
});
|
|
1008
|
+
type HandleListPermissionsData = {
|
|
1009
|
+
path: {
|
|
1010
|
+
identity: string;
|
|
1011
|
+
};
|
|
1012
|
+
query?: {
|
|
1013
|
+
/**
|
|
1014
|
+
* Maximum number of repositories to return
|
|
1015
|
+
*/
|
|
1016
|
+
limit?: number;
|
|
1017
|
+
/**
|
|
1018
|
+
* Offset for the list of repositories
|
|
1019
|
+
*/
|
|
1020
|
+
offset?: number;
|
|
1021
|
+
};
|
|
1022
|
+
};
|
|
1023
|
+
type HandleListPermissionsResponse = (ListPermissionResponseSuccess);
|
|
1024
|
+
type HandleListPermissionsError = ({
|
|
1025
|
+
message: string;
|
|
1026
|
+
});
|
|
1027
|
+
type HandleDescribePermissionData = {
|
|
1028
|
+
path: {
|
|
1029
|
+
identity: string;
|
|
1030
|
+
repo: string;
|
|
1031
|
+
};
|
|
1032
|
+
};
|
|
1033
|
+
type HandleDescribePermissionResponse = (DescribePermissionResponseSuccess);
|
|
1034
|
+
type HandleDescribePermissionError = ({
|
|
1035
|
+
message: string;
|
|
1036
|
+
});
|
|
1037
|
+
type HandleGrantPermissionData = {
|
|
1038
|
+
body: GrantPermissionRequest;
|
|
1039
|
+
path: {
|
|
1040
|
+
identity: string;
|
|
1041
|
+
repo: string;
|
|
1042
|
+
};
|
|
1043
|
+
};
|
|
1044
|
+
type HandleGrantPermissionResponse = ({
|
|
1045
|
+
[key: string]: unknown;
|
|
1046
|
+
});
|
|
1047
|
+
type HandleGrantPermissionError = ({
|
|
1048
|
+
message: string;
|
|
1049
|
+
});
|
|
1050
|
+
type HandleRevokePermissionData = {
|
|
1051
|
+
path: {
|
|
1052
|
+
identity: string;
|
|
1053
|
+
repo: string;
|
|
1054
|
+
};
|
|
1055
|
+
};
|
|
1056
|
+
type HandleRevokePermissionResponse = ({
|
|
1057
|
+
[key: string]: unknown;
|
|
1058
|
+
});
|
|
1059
|
+
type HandleRevokePermissionError = ({
|
|
1060
|
+
message: string;
|
|
1061
|
+
});
|
|
1062
|
+
type HandleUpdatePermissionData = {
|
|
1063
|
+
body: UpdatePermissionRequest;
|
|
1064
|
+
path: {
|
|
1065
|
+
identity: string;
|
|
1066
|
+
repo: string;
|
|
1067
|
+
};
|
|
1068
|
+
};
|
|
1069
|
+
type HandleUpdatePermissionResponse = ({
|
|
1070
|
+
[key: string]: unknown;
|
|
1071
|
+
});
|
|
1072
|
+
type HandleUpdatePermissionError = ({
|
|
1073
|
+
message: string;
|
|
1074
|
+
});
|
|
1075
|
+
type HandleListGitTokensData = {
|
|
1076
|
+
path: {
|
|
1077
|
+
identity: string;
|
|
1078
|
+
};
|
|
1079
|
+
};
|
|
1080
|
+
type HandleListGitTokensResponse = (ListGitTokensResponseSuccess);
|
|
1081
|
+
type HandleListGitTokensError = ({
|
|
1082
|
+
message: string;
|
|
1083
|
+
});
|
|
1084
|
+
type HandleCreateGitTokenData = {
|
|
1085
|
+
path: {
|
|
1086
|
+
identity: string;
|
|
1087
|
+
};
|
|
1088
|
+
};
|
|
1089
|
+
type HandleCreateGitTokenResponse = (CreatedToken);
|
|
1090
|
+
type HandleCreateGitTokenError = ({
|
|
1091
|
+
message: string;
|
|
1092
|
+
});
|
|
1093
|
+
type HandleRevokeGitTokenData = {
|
|
1094
|
+
body: RevokeGitTokenRequest;
|
|
1095
|
+
path: {
|
|
1096
|
+
identity: string;
|
|
1097
|
+
};
|
|
1098
|
+
};
|
|
1099
|
+
type HandleRevokeGitTokenResponse = ({
|
|
1100
|
+
[key: string]: unknown;
|
|
1101
|
+
});
|
|
1102
|
+
type HandleRevokeGitTokenError = ({
|
|
1103
|
+
message: string;
|
|
1104
|
+
});
|
|
1105
|
+
type HandleListRepositoriesData = {
|
|
1106
|
+
query?: {
|
|
1107
|
+
/**
|
|
1108
|
+
* Maximum number of repositories to return
|
|
1109
|
+
*/
|
|
1110
|
+
limit?: number;
|
|
1111
|
+
/**
|
|
1112
|
+
* Offset for the list of repositories
|
|
1113
|
+
*/
|
|
1114
|
+
offset?: number;
|
|
1115
|
+
};
|
|
1116
|
+
};
|
|
1117
|
+
type HandleListRepositoriesResponse = ({
|
|
1118
|
+
repositories: Array<RepositoryMetadata>;
|
|
1119
|
+
total: number;
|
|
1120
|
+
offset: number;
|
|
1121
|
+
});
|
|
1122
|
+
type HandleListRepositoriesError = ({
|
|
1123
|
+
message: string;
|
|
1124
|
+
});
|
|
1125
|
+
type HandleCreateRepoData = {
|
|
1126
|
+
body: {
|
|
1127
|
+
/**
|
|
1128
|
+
* This name is not visible to users, and is only accessible to you via API and in the
|
|
1129
|
+
* dashboard. Mostly useful for observability.
|
|
1130
|
+
*/
|
|
1131
|
+
name?: (string) | null;
|
|
1132
|
+
public?: boolean;
|
|
1133
|
+
/**
|
|
1134
|
+
* The default branch name for the repository. Defaults to "main" if not specified.
|
|
1135
|
+
*/
|
|
1136
|
+
defaultBranch?: (string) | null;
|
|
1137
|
+
source?: CreateRepoSource;
|
|
1138
|
+
import?: CreateRepoImport;
|
|
1139
|
+
};
|
|
1140
|
+
};
|
|
1141
|
+
type HandleCreateRepoResponse = (CreateRepositoryResponseSuccess);
|
|
1142
|
+
type HandleCreateRepoError = ({
|
|
1143
|
+
message: string;
|
|
1144
|
+
});
|
|
1145
|
+
type HandleGetDefaultBranchData = {
|
|
1146
|
+
path: {
|
|
1147
|
+
/**
|
|
1148
|
+
* The repository ID
|
|
1149
|
+
*/
|
|
1150
|
+
repo_id: string;
|
|
1151
|
+
};
|
|
1152
|
+
};
|
|
1153
|
+
type HandleGetDefaultBranchResponse = (GetDefaultBranchResponse);
|
|
1154
|
+
type HandleGetDefaultBranchError = unknown;
|
|
1155
|
+
type HandleSetDefaultBranchData = {
|
|
1156
|
+
body: SetDefaultBranchRequest;
|
|
1157
|
+
path: {
|
|
1158
|
+
/**
|
|
1159
|
+
* The repository ID
|
|
1160
|
+
*/
|
|
1161
|
+
repo_id: string;
|
|
1162
|
+
};
|
|
1163
|
+
};
|
|
1164
|
+
type HandleSetDefaultBranchResponse = (SetDefaultBranchResponse);
|
|
1165
|
+
type HandleSetDefaultBranchError = unknown;
|
|
1166
|
+
type GetGithubSyncData = {
|
|
1167
|
+
path: {
|
|
1168
|
+
/**
|
|
1169
|
+
* Repository ID
|
|
1170
|
+
*/
|
|
1171
|
+
repo_id: string;
|
|
1172
|
+
};
|
|
1173
|
+
};
|
|
1174
|
+
type GetGithubSyncResponse = (GithubSyncConfigResponse);
|
|
1175
|
+
type GetGithubSyncError = (unknown);
|
|
1176
|
+
type ConfigureGithubSyncData = {
|
|
1177
|
+
body: ConfigureGithubSyncRequest;
|
|
1178
|
+
path: {
|
|
1179
|
+
/**
|
|
1180
|
+
* Repository ID
|
|
1181
|
+
*/
|
|
1182
|
+
repo_id: string;
|
|
1183
|
+
};
|
|
1184
|
+
};
|
|
1185
|
+
type ConfigureGithubSyncResponse = (unknown);
|
|
1186
|
+
type ConfigureGithubSyncError = (unknown);
|
|
1187
|
+
type RemoveGithubSyncData = {
|
|
1188
|
+
path: {
|
|
1189
|
+
/**
|
|
1190
|
+
* Repository ID
|
|
1191
|
+
*/
|
|
1192
|
+
repo_id: string;
|
|
1193
|
+
};
|
|
1194
|
+
};
|
|
1195
|
+
type RemoveGithubSyncResponse = (unknown);
|
|
1196
|
+
type RemoveGithubSyncError = (unknown);
|
|
1197
|
+
type HandleDeleteRepoData = {
|
|
1198
|
+
path: {
|
|
1199
|
+
/**
|
|
1200
|
+
* The repository id
|
|
1201
|
+
*/
|
|
1202
|
+
repo: string;
|
|
1203
|
+
};
|
|
1204
|
+
};
|
|
1205
|
+
type HandleDeleteRepoResponse = ({
|
|
1206
|
+
[key: string]: unknown;
|
|
1207
|
+
});
|
|
1208
|
+
type HandleDeleteRepoError = ({
|
|
1209
|
+
message: string;
|
|
1210
|
+
} | {
|
|
1211
|
+
[key: string]: unknown;
|
|
1212
|
+
});
|
|
1213
|
+
type HandleGetContentsData = {
|
|
1214
|
+
path: {
|
|
1215
|
+
/**
|
|
1216
|
+
* The path to the file or directory. Empty for root.
|
|
1217
|
+
*/
|
|
1218
|
+
'*path': (string) | null;
|
|
1219
|
+
/**
|
|
1220
|
+
* The repository ID.
|
|
1221
|
+
*/
|
|
1222
|
+
repo: string;
|
|
1223
|
+
};
|
|
1224
|
+
query?: {
|
|
1225
|
+
/**
|
|
1226
|
+
* The git reference (branch name, commit SHA, etc.). Defaults to HEAD.
|
|
1227
|
+
*/
|
|
1228
|
+
ref?: string;
|
|
1229
|
+
};
|
|
1230
|
+
};
|
|
1231
|
+
type HandleGetContentsResponse = (GitContents);
|
|
1232
|
+
type HandleGetContentsError = ({
|
|
1233
|
+
message: string;
|
|
1234
|
+
});
|
|
1235
|
+
type HandleGetBlobData = {
|
|
1236
|
+
path: {
|
|
1237
|
+
/**
|
|
1238
|
+
* The repository id
|
|
1239
|
+
*/
|
|
1240
|
+
repo: string;
|
|
1241
|
+
};
|
|
1242
|
+
};
|
|
1243
|
+
type HandleGetBlobResponse = (BlobObject);
|
|
1244
|
+
type HandleGetBlobError = ({
|
|
1245
|
+
message: string;
|
|
1246
|
+
});
|
|
1247
|
+
type HandleGetCommitData = {
|
|
1248
|
+
path: {
|
|
1249
|
+
/**
|
|
1250
|
+
* The object's hash
|
|
1251
|
+
*/
|
|
1252
|
+
hash: string;
|
|
1253
|
+
/**
|
|
1254
|
+
* The repository id
|
|
1255
|
+
*/
|
|
1256
|
+
repo: string;
|
|
1257
|
+
};
|
|
1258
|
+
};
|
|
1259
|
+
type HandleGetCommitResponse = (CommitObject);
|
|
1260
|
+
type HandleGetCommitError = ({
|
|
1261
|
+
message: string;
|
|
1262
|
+
});
|
|
1263
|
+
type HandleGetRefBranchData = {
|
|
1264
|
+
path: {
|
|
1265
|
+
/**
|
|
1266
|
+
* The branch's name
|
|
1267
|
+
*/
|
|
1268
|
+
branch: string;
|
|
1269
|
+
/**
|
|
1270
|
+
* The repository id
|
|
1271
|
+
*/
|
|
1272
|
+
repo: string;
|
|
1273
|
+
};
|
|
1274
|
+
};
|
|
1275
|
+
type HandleGetRefBranchResponse = (GitReference);
|
|
1276
|
+
type HandleGetRefBranchError = (unknown | {
|
|
1277
|
+
message: string;
|
|
1278
|
+
});
|
|
1279
|
+
type HandleGetRefTagData = {
|
|
1280
|
+
path: {
|
|
1281
|
+
/**
|
|
1282
|
+
* The repository id
|
|
1283
|
+
*/
|
|
1284
|
+
repo: string;
|
|
1285
|
+
/**
|
|
1286
|
+
* The tag's name
|
|
1287
|
+
*/
|
|
1288
|
+
tag: string;
|
|
1289
|
+
};
|
|
1290
|
+
};
|
|
1291
|
+
type HandleGetRefTagResponse = (GitReference);
|
|
1292
|
+
type HandleGetRefTagError = (unknown | {
|
|
1293
|
+
message: string;
|
|
1294
|
+
});
|
|
1295
|
+
type HandleGetTagData = {
|
|
1296
|
+
path: {
|
|
1297
|
+
/**
|
|
1298
|
+
* The object's hash
|
|
1299
|
+
*/
|
|
1300
|
+
hash: string;
|
|
1301
|
+
/**
|
|
1302
|
+
* The repository id
|
|
1303
|
+
*/
|
|
1304
|
+
repo: string;
|
|
1305
|
+
};
|
|
1306
|
+
};
|
|
1307
|
+
type HandleGetTagResponse = (TagObject);
|
|
1308
|
+
type HandleGetTagError = ({
|
|
1309
|
+
message: string;
|
|
1310
|
+
});
|
|
1311
|
+
type HandleGetTreeData = {
|
|
1312
|
+
path: {
|
|
1313
|
+
/**
|
|
1314
|
+
* The object's hash
|
|
1315
|
+
*/
|
|
1316
|
+
hash: string;
|
|
1317
|
+
/**
|
|
1318
|
+
* The repository id
|
|
1319
|
+
*/
|
|
1320
|
+
repo: string;
|
|
1321
|
+
};
|
|
1322
|
+
};
|
|
1323
|
+
type HandleGetTreeResponse = (TreeObject);
|
|
1324
|
+
type HandleGetTreeError = ({
|
|
1325
|
+
message: string;
|
|
1326
|
+
});
|
|
1327
|
+
type HandleDownloadTarballData = {
|
|
1328
|
+
path: {
|
|
1329
|
+
/**
|
|
1330
|
+
* The repository id
|
|
1331
|
+
*/
|
|
1332
|
+
repo: string;
|
|
1333
|
+
};
|
|
1334
|
+
query?: {
|
|
1335
|
+
/**
|
|
1336
|
+
* The git reference (branch name, commit SHA, etc.). Defaults to HEAD.
|
|
1337
|
+
*/
|
|
1338
|
+
ref?: string;
|
|
1339
|
+
};
|
|
1340
|
+
};
|
|
1341
|
+
type HandleDownloadTarballResponse = (unknown);
|
|
1342
|
+
type HandleDownloadTarballError = ({
|
|
1343
|
+
message: string;
|
|
1344
|
+
});
|
|
1345
|
+
type HandleListGitTriggersData = {
|
|
1346
|
+
path: {
|
|
1347
|
+
/**
|
|
1348
|
+
* The repository id
|
|
1349
|
+
*/
|
|
1350
|
+
repo: string;
|
|
1351
|
+
};
|
|
1352
|
+
};
|
|
1353
|
+
type HandleListGitTriggersResponse = ({
|
|
1354
|
+
triggers: Array<GitRepositoryTrigger>;
|
|
1355
|
+
});
|
|
1356
|
+
type HandleListGitTriggersError = ({
|
|
1357
|
+
message: string;
|
|
1358
|
+
});
|
|
1359
|
+
type HandleCreateGitTriggerData = {
|
|
1360
|
+
body: {
|
|
1361
|
+
trigger: ({
|
|
1362
|
+
branches?: Array<(string)> | null;
|
|
1363
|
+
globs?: Array<(string)> | null;
|
|
1364
|
+
event: 'push';
|
|
1365
|
+
});
|
|
1366
|
+
action: ({
|
|
1367
|
+
endpoint: string;
|
|
1368
|
+
action: 'webhook';
|
|
1369
|
+
});
|
|
1370
|
+
};
|
|
1371
|
+
path: {
|
|
1372
|
+
/**
|
|
1373
|
+
* The repository id
|
|
1374
|
+
*/
|
|
1375
|
+
repo: string;
|
|
1376
|
+
};
|
|
1377
|
+
};
|
|
1378
|
+
type HandleCreateGitTriggerResponse = ({
|
|
1379
|
+
triggerId: string;
|
|
1380
|
+
});
|
|
1381
|
+
type HandleCreateGitTriggerError = ({
|
|
1382
|
+
message: string;
|
|
1383
|
+
});
|
|
1384
|
+
type HandleDeleteGitTriggerData = {
|
|
1385
|
+
path: {
|
|
1386
|
+
/**
|
|
1387
|
+
* The trigger id
|
|
1388
|
+
*/
|
|
1389
|
+
trigger: string;
|
|
1390
|
+
};
|
|
1391
|
+
};
|
|
1392
|
+
type HandleDeleteGitTriggerResponse = ({
|
|
1393
|
+
[key: string]: unknown;
|
|
1394
|
+
});
|
|
1395
|
+
type HandleDeleteGitTriggerError = ({
|
|
1396
|
+
message: string;
|
|
1397
|
+
} | {
|
|
1398
|
+
[key: string]: unknown;
|
|
1399
|
+
});
|
|
1400
|
+
type HandleDownloadZipData = {
|
|
1401
|
+
path: {
|
|
1402
|
+
/**
|
|
1403
|
+
* The repository id
|
|
1404
|
+
*/
|
|
1405
|
+
repo: string;
|
|
1406
|
+
};
|
|
1407
|
+
query?: {
|
|
1408
|
+
/**
|
|
1409
|
+
* The git reference (branch name, commit SHA, etc.). Defaults to HEAD.
|
|
1410
|
+
*/
|
|
1411
|
+
ref?: string;
|
|
1412
|
+
};
|
|
1413
|
+
};
|
|
1414
|
+
type HandleDownloadZipResponse = (unknown);
|
|
1415
|
+
type HandleDownloadZipError = ({
|
|
1416
|
+
message: string;
|
|
1417
|
+
});
|
|
1418
|
+
type HandleGetLogsData = {
|
|
1419
|
+
query?: {
|
|
1420
|
+
deploymentId?: (string) | null;
|
|
1421
|
+
domain?: (string) | null;
|
|
1422
|
+
};
|
|
1423
|
+
};
|
|
1424
|
+
type HandleGetLogsResponse = (FreestyleGetLogsResponse);
|
|
1425
|
+
type HandleGetLogsError = unknown;
|
|
1426
|
+
type HandleDeployWebData = {
|
|
1427
|
+
body: FreestyleDeployWebPayload;
|
|
1428
|
+
};
|
|
1429
|
+
type HandleDeployWebResponse = (FreestyleDeployWebSuccessResponseV2);
|
|
1430
|
+
type HandleDeployWebError = (FreestyleDeployWebErrorResponse);
|
|
1431
|
+
type HandleDeployWebV2Data = {
|
|
1432
|
+
body: FreestyleDeployWebPayloadV2;
|
|
1433
|
+
};
|
|
1434
|
+
type HandleDeployWebV2Response = (FreestyleDeployWebSuccessResponseV2);
|
|
1435
|
+
type HandleDeployWebV2Error = (FreestyleDeployWebErrorResponse);
|
|
1436
|
+
type HandleListWebDeploysData = {
|
|
1437
|
+
query: {
|
|
1438
|
+
/**
|
|
1439
|
+
* Maximum number of repositories to return
|
|
1440
|
+
*/
|
|
1441
|
+
limit: number;
|
|
1442
|
+
/**
|
|
1443
|
+
* Offset for the list of repositories
|
|
1444
|
+
*/
|
|
1445
|
+
offset: number;
|
|
1446
|
+
};
|
|
1447
|
+
};
|
|
1448
|
+
type HandleListWebDeploysResponse = ({
|
|
1449
|
+
entries: Array<DeploymentLogEntry>;
|
|
1450
|
+
total: number;
|
|
1451
|
+
offset: number;
|
|
1452
|
+
});
|
|
1453
|
+
type HandleListWebDeploysError = ({
|
|
1454
|
+
message: string;
|
|
1455
|
+
});
|
|
1456
|
+
type HandleGetWebDeployDetailsData = {
|
|
1457
|
+
path: {
|
|
1458
|
+
deployment_id: string;
|
|
1459
|
+
};
|
|
1460
|
+
};
|
|
1461
|
+
|
|
1462
|
+
export type { CreateRepoRequest as $, AccessLevel as A, GitTrigger as B, CreateRepoSource as C, DeploymentSource as D, GitTriggerAction as E, FreestyleExecuteScriptParamsConfiguration as F, GitIdentity as G, HandleBackupCloudstateResponse as H, HandleCreateGitTriggerResponse as I, HandleGetContentsResponse as J, GetGithubSyncResponse as K, ListPermissionResponseSuccess as L, DeploymentBuildOptions as M, AccessibleRepository as N, AccessTokenInfo as O, Behavior as P, BlobEncoding as Q, BlobObject as R, SetDefaultBranchRequest as S, BranchDetails as T, CommitObject as U, CommitParent as V, CommitTree as W, ConfigureGithubSyncRequest as X, CreateDomainMappingRequest as Y, CreateRecordParams as Z, type as _, FreestyleExecuteScriptResultSuccess as a, type4 as a$, CreateRepositoryRequest as a0, type2 as a1, CustomBuildOptions as a2, DeploymentLogEntry as a3, kind as a4, DeploymentState as a5, DevServer as a6, kind2 as a7, DevServerRequest as a8, DevServerStatusRequest as a9, GetDefaultBranchResponse as aA, GitCommitPushRequest as aB, GitContents as aC, type3 as aD, GitContentsDirEntryItem as aE, GithubRepoSyncConfig as aF, GithubSyncConfigResponse as aG, GitReference as aH, GitRepositoryTrigger as aI, event as aJ, action2 as aK, GrantPermissionRequest as aL, InternalServerError as aM, ListRecordsResponse as aN, NetworkPermissionData as aO, ReadFileEphemeralDevServerResponses as aP, ReadFileRequest as aQ, RepositoryInfo as aR, RepositoryMetadata as aS, RevokeGitTokenRequest as aT, SetDefaultBranchResponse as aU, ShutdownDevServerRequest as aV, Signature as aW, TagDetails as aX, TagObject as aY, TagTarget as aZ, TreeEntry as a_, DevServerWatchFilesRequest as aa, DnsRecord as ab, DnsRecordData as ac, DnsRecordKind as ad, DomainVerificationRequest as ae, ExecRequest as af, ExecuteLogEntry as ag, ExecuteRunInfo as ah, ExecuteRunState as ai, FileReadContent as aj, kind3 as ak, FreestyleCloudstateDeployConfiguration as al, FreestyleCloudstateDeployErrorResponse as am, FreestyleDeleteDomainVerificationRequest as an, FreestyleDeployWebErrorResponse as ao, FreestyleDeployWebPayload as ap, FreestyleDeployWebPayloadV2 as aq, FreestyleDomainVerificationRequest as ar, FreestyleExecuteScriptParams as as, FreestyleFile as at, FreestyleGetLogsResponse as au, FreestyleJavaScriptLog as av, FreestyleLogResponseObject as aw, FreestyleNetworkPermission as ax, action as ay, FreestyleVerifyDomainRequest as az, FreestyleDeployWebConfiguration as b, HandleExecuteScriptError as b$, TreeObject as b0, UpdatePermissionRequest as b1, Visibility as b2, WriteFileRequest as b3, HandleDeployCloudstateData as b4, HandleDeployCloudstateResponse as b5, HandleDeployCloudstateError as b6, HandleBackupCloudstateData as b7, HandleBackupCloudstateError as b8, HandleListRecordsData as b9, HandleExecOnEphemeralDevServerData as bA, HandleExecOnEphemeralDevServerResponse as bB, HandleExecOnEphemeralDevServerError as bC, HandleWriteFileFromEphemeralDevServerData as bD, HandleWriteFileFromEphemeralDevServerResponse as bE, HandleWriteFileFromEphemeralDevServerError as bF, HandleReadFileFromEphemeralDevServerData as bG, HandleReadFileFromEphemeralDevServerResponse as bH, HandleReadFileFromEphemeralDevServerError as bI, HandleGitCommitPushData as bJ, HandleGitCommitPushResponse as bK, HandleGitCommitPushError as bL, HandleShutdownDevServerData as bM, HandleShutdownDevServerResponse as bN, HandleShutdownDevServerError as bO, HandleDevServerStatusData as bP, HandleDevServerStatusResponse as bQ, HandleDevServerStatusError as bR, HandleWatchDevServerFilesData as bS, HandleWatchDevServerFilesResponse as bT, HandleWatchDevServerFilesError as bU, HandleListExecuteRunsData as bV, HandleListExecuteRunsError as bW, HandleGetExecuteRunData as bX, HandleGetExecuteRunError as bY, HandleExecuteScriptData as bZ, HandleExecuteScriptResponse as b_, HandleListRecordsResponse as ba, HandleListRecordsError as bb, HandleCreateRecordData as bc, HandleCreateRecordResponse as bd, HandleCreateRecordError as be, HandleDeleteRecordData as bf, HandleDeleteRecordResponse as bg, HandleDeleteRecordError as bh, HandleVerifyWildcardData as bi, HandleVerifyWildcardError as bj, HandleListDomainsError as bk, HandleInsertDomainMappingData as bl, HandleInsertDomainMappingResponse as bm, HandleInsertDomainMappingError as bn, HandleDeleteDomainMappingData as bo, HandleDeleteDomainMappingResponse as bp, HandleDeleteDomainMappingError as bq, HandleListDomainVerificationRequestsError as br, HandleVerifyDomainData as bs, HandleCreateDomainVerificationData as bt, HandleCreateDomainVerificationError as bu, HandleDeleteDomainVerificationData as bv, HandleDeleteDomainVerificationError as bw, HandleEphemeralDevServerData as bx, HandleEphemeralDevServerResponse as by, HandleEphemeralDevServerError as bz, FreestyleDeployWebSuccessResponseV2 as c, HandleGetRefTagResponse as c$, HandleListIdentitiesData as c0, HandleListIdentitiesResponse as c1, HandleListIdentitiesError as c2, HandleCreateIdentityResponse as c3, HandleCreateIdentityError as c4, HandleDeleteIdentityData as c5, HandleDeleteIdentityError as c6, HandleListPermissionsData as c7, HandleListPermissionsResponse as c8, HandleListPermissionsError as c9, HandleGetDefaultBranchResponse as cA, HandleGetDefaultBranchError as cB, HandleSetDefaultBranchData as cC, HandleSetDefaultBranchResponse as cD, HandleSetDefaultBranchError as cE, GetGithubSyncData as cF, GetGithubSyncError as cG, ConfigureGithubSyncData as cH, ConfigureGithubSyncResponse as cI, ConfigureGithubSyncError as cJ, RemoveGithubSyncData as cK, RemoveGithubSyncResponse as cL, RemoveGithubSyncError as cM, HandleDeleteRepoData as cN, HandleDeleteRepoError as cO, HandleGetContentsData as cP, HandleGetContentsError as cQ, HandleGetBlobData as cR, HandleGetBlobResponse as cS, HandleGetBlobError as cT, HandleGetCommitData as cU, HandleGetCommitResponse as cV, HandleGetCommitError as cW, HandleGetRefBranchData as cX, HandleGetRefBranchResponse as cY, HandleGetRefBranchError as cZ, HandleGetRefTagData as c_, HandleDescribePermissionData as ca, HandleDescribePermissionResponse as cb, HandleDescribePermissionError as cc, HandleGrantPermissionData as cd, HandleGrantPermissionError as ce, HandleRevokePermissionData as cf, HandleRevokePermissionResponse as cg, HandleRevokePermissionError as ch, HandleUpdatePermissionData as ci, HandleUpdatePermissionResponse as cj, HandleUpdatePermissionError as ck, HandleListGitTokensData as cl, HandleListGitTokensResponse as cm, HandleListGitTokensError as cn, HandleCreateGitTokenData as co, HandleCreateGitTokenResponse as cp, HandleCreateGitTokenError as cq, HandleRevokeGitTokenData as cr, HandleRevokeGitTokenResponse as cs, HandleRevokeGitTokenError as ct, HandleListRepositoriesData as cu, HandleListRepositoriesError as cv, HandleCreateRepoData as cw, HandleCreateRepoResponse as cx, HandleCreateRepoError as cy, HandleGetDefaultBranchData as cz, FreestyleCloudstateDeployRequest as d, HandleGetRefTagError as d0, HandleGetTagData as d1, HandleGetTagResponse as d2, HandleGetTagError as d3, HandleGetTreeData as d4, HandleGetTreeResponse as d5, HandleGetTreeError as d6, HandleDownloadTarballData as d7, HandleDownloadTarballResponse as d8, HandleDownloadTarballError as d9, HandleListGitTriggersData as da, HandleListGitTriggersError as db, HandleCreateGitTriggerData as dc, HandleCreateGitTriggerError as dd, HandleDeleteGitTriggerData as de, HandleDeleteGitTriggerResponse as df, HandleDeleteGitTriggerError as dg, HandleDownloadZipData as dh, HandleDownloadZipResponse as di, HandleDownloadZipError as dj, HandleGetLogsData as dk, HandleGetLogsError as dl, HandleDeployWebData as dm, HandleDeployWebResponse as dn, HandleDeployWebError as dp, HandleDeployWebV2Data as dq, HandleDeployWebV2Response as dr, HandleDeployWebV2Error as ds, HandleListWebDeploysData as dt, HandleListWebDeploysError as du, HandleGetWebDeployDetailsData as dv, 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, CreateRepoImport as q, CreateRepositoryResponseSuccess as r, HandleListRepositoriesResponse as s, HandleDeleteRepoResponse as t, HandleDeleteIdentityResponse as u, HandleGrantPermissionResponse as v, DescribePermissionResponseSuccess as w, CreatedToken as x, ListGitTokensResponseSuccess as y, HandleListGitTriggersResponse as z };
|