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.
Files changed (65) hide show
  1. package/dist/ai/inde.d.cts +1 -1
  2. package/dist/ai/inde.d.mts +1 -1
  3. package/dist/ai/index.d.cts +1 -1
  4. package/dist/ai/index.d.mts +1 -1
  5. package/dist/inde.d.cts +16 -6
  6. package/dist/inde.d.mts +16 -6
  7. package/dist/index.cjs +19 -8
  8. package/dist/index.d.cts +16 -6
  9. package/dist/index.d.mts +16 -6
  10. package/dist/index.mjs +19 -8
  11. package/dist/langgraph/inde.d.cts +1 -1
  12. package/dist/langgraph/inde.d.mts +1 -1
  13. package/dist/langgraph/index.d.cts +1 -1
  14. package/dist/langgraph/index.d.mts +1 -1
  15. package/dist/mastra/inde.d.cts +1 -1
  16. package/dist/mastra/inde.d.mts +1 -1
  17. package/dist/mastra/index.d.cts +1 -1
  18. package/dist/mastra/index.d.mts +1 -1
  19. package/dist/{types.gen-CG8tIO9M.d.ts → types.gen-DKjMRuu5.d.ts} +448 -43
  20. package/dist/utils/inde.d.cts +1 -1
  21. package/dist/utils/inde.d.mts +1 -1
  22. package/dist/utils/index.d.cts +1 -1
  23. package/dist/utils/index.d.mts +1 -1
  24. package/openapi/sdk.gen.ts +234 -1
  25. package/openapi/types.gen.ts +389 -19
  26. package/openapi.json +1 -1
  27. package/package.json +1 -1
  28. package/src/index.ts +22 -1
  29. package/dist/index-BBXyg0JQ.cjs +0 -3253
  30. package/dist/index-BQHqnjZK.mjs +0 -3231
  31. package/dist/index-CEEa9WHp.cjs +0 -3238
  32. package/dist/index-D1ulQeJR.mjs +0 -3247
  33. package/dist/index-DCF70Xbq.mjs +0 -3246
  34. package/dist/index-H7UNEAjs.cjs +0 -3254
  35. package/dist/index.d-CXx1AdyW.d.ts +0 -4210
  36. package/dist/types.gen-1sd31qLV.d.ts +0 -172
  37. package/dist/types.gen-627pxroW.d.ts +0 -830
  38. package/dist/types.gen-BCdfx7yt.d.ts +0 -760
  39. package/dist/types.gen-BVXmFV7d.d.ts +0 -1299
  40. package/dist/types.gen-BWwhCgTX.d.ts +0 -1462
  41. package/dist/types.gen-BaMKzqxQ.d.ts +0 -233
  42. package/dist/types.gen-BbekD8Sd.d.ts +0 -1119
  43. package/dist/types.gen-BpWMzgc3.d.ts +0 -1493
  44. package/dist/types.gen-BqN1t03N.d.ts +0 -842
  45. package/dist/types.gen-BtK6PMQy.d.ts +0 -195
  46. package/dist/types.gen-BuhQ5LpB.d.ts +0 -764
  47. package/dist/types.gen-BzRtj_TA.d.ts +0 -725
  48. package/dist/types.gen-C03gaIPq.d.ts +0 -297
  49. package/dist/types.gen-CIf3ciN7.d.ts +0 -807
  50. package/dist/types.gen-CMuCas4r.d.ts +0 -183
  51. package/dist/types.gen-CWa4Mw0J.d.ts +0 -1493
  52. package/dist/types.gen-CZUnqmzP.d.ts +0 -789
  53. package/dist/types.gen-CnEkmbco.d.ts +0 -314
  54. package/dist/types.gen-DDYpuDzZ.d.ts +0 -764
  55. package/dist/types.gen-DHmdEOOa.d.ts +0 -172
  56. package/dist/types.gen-DLYohMJT.d.ts +0 -382
  57. package/dist/types.gen-DbTb_SrD.d.ts +0 -156
  58. package/dist/types.gen-DkFlXKTr.d.ts +0 -1354
  59. package/dist/types.gen-DkQ-Dbs1.d.ts +0 -764
  60. package/dist/types.gen-DyY7Deri.d.ts +0 -138
  61. package/dist/types.gen-MBZCvIhE.d.ts +0 -311
  62. package/dist/types.gen-YhJAHBw8.d.ts +0 -233
  63. package/dist/types.gen-cCnnhnB6.d.ts +0 -182
  64. package/dist/types.gen-mg_JNXrq.d.ts +0 -830
  65. package/dist/types.gen-uDTr6v-7.d.ts +0 -731
@@ -1,1493 +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
- /**
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
- type FreestyleSandboxDomainMapping = {
489
- id: string;
490
- domain: string;
491
- deploymentId: string;
492
- ownershipId: string;
493
- createdAt: string;
494
- };
495
- /**
496
- * Verify a domain verification request, can either be done for a domain, or for a specific request
497
- */
498
- type FreestyleVerifyDomainRequest = {
499
- domain: string;
500
- } | {
501
- id: string;
502
- };
503
- type GetDefaultBranchResponse = {
504
- defaultBranch: string;
505
- };
506
- type GitCommitPushRequest = {
507
- devServer: DevServer;
508
- message: string;
509
- };
510
- type GitContents = {
511
- name: string;
512
- path: string;
513
- /**
514
- * The hash / object ID of the file.
515
- */
516
- sha: string;
517
- size: number;
518
- /**
519
- * Base64-encoded content.
520
- */
521
- content: string;
522
- type: 'file';
523
- } | {
524
- name: string;
525
- path: string;
526
- /**
527
- * The hash / object ID of the directory.
528
- */
529
- sha: string;
530
- entries: Array<GitContentsDirEntryItem>;
531
- type: 'dir';
532
- };
533
- type type3 = 'file';
534
- type GitContentsDirEntryItem = {
535
- name: string;
536
- path: string;
537
- /**
538
- * The hash / object ID of the file.
539
- */
540
- sha: string;
541
- size: number;
542
- type: 'file';
543
- } | {
544
- name: string;
545
- path: string;
546
- /**
547
- * The hash / object ID of the directory.
548
- */
549
- sha: string;
550
- entries: Array<({
551
- [key: string]: unknown;
552
- })>;
553
- type: 'dir';
554
- };
555
- type GithubRepoSyncConfig = {
556
- freestyleRepoId: string;
557
- accountId: string;
558
- installationId: number;
559
- githubRepoId: number;
560
- githubRepoName: string;
561
- createdAt: string;
562
- };
563
- type GithubSyncConfigResponse = {
564
- githubRepoName: string;
565
- };
566
- type GitIdentity = {
567
- id: string;
568
- managed: boolean;
569
- };
570
- /**
571
- * A reference to a Git object
572
- */
573
- type GitReference = {
574
- /**
575
- * The name of the ref (e.g., "refs/heads/main" or "refs/tags/v1.0.0")
576
- */
577
- name: string;
578
- /**
579
- * The SHA-1 hash of the Git object this reference points to
580
- */
581
- sha: string;
582
- };
583
- type GitRepositoryTrigger = {
584
- repositoryId: string;
585
- trigger: ({
586
- branches?: Array<(string)> | null;
587
- globs?: Array<(string)> | null;
588
- event: 'push';
589
- });
590
- action: ({
591
- endpoint: string;
592
- action: 'webhook';
593
- });
594
- managed: boolean;
595
- id: string;
596
- createdAt: string;
597
- };
598
- type event = 'push';
599
- type action2 = 'webhook';
600
- type GitTrigger = {
601
- branches?: Array<(string)> | null;
602
- globs?: Array<(string)> | null;
603
- event: 'push';
604
- };
605
- type GitTriggerAction = {
606
- endpoint: string;
607
- action: 'webhook';
608
- };
609
- type GrantPermissionRequest = {
610
- permission: AccessLevel;
611
- };
612
- type InternalServerError = string;
613
- type ListGitTokensResponseSuccess = {
614
- tokens: Array<AccessTokenInfo>;
615
- };
616
- type ListPermissionResponseSuccess = {
617
- repositories: Array<AccessibleRepository>;
618
- };
619
- type ListRecordsResponse = {
620
- records: Array<DnsRecord>;
621
- };
622
- type NetworkPermissionData = {
623
- query: string;
624
- behavior?: Behavior;
625
- };
626
- type ReadFileEphemeralDevServerResponses = {
627
- id: string;
628
- isNew: boolean;
629
- content: ({
630
- content: string;
631
- encoding: string;
632
- kind: 'file';
633
- } | {
634
- files: Array<(string)>;
635
- kind: 'directory';
636
- });
637
- } | {
638
- id: string;
639
- isNew: boolean;
640
- } | InternalServerError;
641
- type ReadFileRequest = {
642
- devServer: DevServer;
643
- encoding?: string;
644
- };
645
- type RepositoryInfo = {
646
- id: string;
647
- name?: (string) | null;
648
- accountId: string;
649
- visibility: Visibility;
650
- defaultBranch: string;
651
- };
652
- type RepositoryMetadata = {
653
- branches: {
654
- [key: string]: BranchDetails;
655
- };
656
- tags: {
657
- [key: string]: TagDetails;
658
- };
659
- defaultBranch: string;
660
- };
661
- type RevokeGitTokenRequest = {
662
- tokenId: string;
663
- };
664
- type SetDefaultBranchRequest = {
665
- defaultBranch: string;
666
- };
667
- type SetDefaultBranchResponse = {
668
- [key: string]: unknown;
669
- };
670
- type ShutdownDevServerRequest = {
671
- /**
672
- * The dev server to shutdown
673
- */
674
- devServer: DevServer;
675
- };
676
- type Signature = {
677
- /**
678
- * The date marker for this signature
679
- */
680
- date: string;
681
- name: string;
682
- email: string;
683
- };
684
- type TagDetails = {
685
- name: string;
686
- target: string;
687
- message?: (string) | null;
688
- };
689
- /**
690
- * Tag object
691
- */
692
- type TagObject = {
693
- /**
694
- * The tag name
695
- */
696
- name: string;
697
- tagger?: (null | Signature);
698
- /**
699
- * The tag message
700
- */
701
- message?: (string) | null;
702
- /**
703
- * The object this tag points to
704
- */
705
- target: TagTarget;
706
- /**
707
- * The tag's hash ID
708
- */
709
- sha: string;
710
- };
711
- type TagTarget = {
712
- /**
713
- * The target object's hash ID
714
- */
715
- sha: string;
716
- };
717
- type TreeEntry = {
718
- path: string;
719
- sha: string;
720
- type: 'blob';
721
- } | {
722
- path: string;
723
- sha: string;
724
- type: 'tree';
725
- };
726
- type type4 = 'blob';
727
- /**
728
- * Tree object
729
- */
730
- type TreeObject = {
731
- /**
732
- * The tree's entries
733
- */
734
- tree: Array<TreeEntry>;
735
- /**
736
- * The tree's hash ID
737
- */
738
- sha: string;
739
- };
740
- type UpdatePermissionRequest = {
741
- permission: AccessLevel;
742
- };
743
- type Visibility = 'public' | 'private';
744
- type WriteFileRequest = {
745
- devServer: DevServer;
746
- content: string;
747
- encoding?: string;
748
- };
749
- type HandleDeployCloudstateData = {
750
- body: FreestyleCloudstateDeployRequest;
751
- };
752
- type HandleDeployCloudstateResponse = (FreestyleCloudstateDeploySuccessResponse);
753
- type HandleDeployCloudstateError = (FreestyleCloudstateDeployErrorResponse);
754
- type HandleBackupCloudstateData = {
755
- path: {
756
- id: string;
757
- };
758
- };
759
- type HandleBackupCloudstateResponse = (Array<(number)>);
760
- type HandleBackupCloudstateError = (unknown);
761
- type HandleListRecordsData = {
762
- query: {
763
- domain: string;
764
- };
765
- };
766
- type HandleListRecordsResponse = (ListRecordsResponse);
767
- type HandleListRecordsError = ({
768
- message: string;
769
- });
770
- type HandleCreateRecordData = {
771
- body: CreateRecordParams;
772
- };
773
- type HandleCreateRecordResponse = ({
774
- record: DnsRecord;
775
- });
776
- type HandleCreateRecordError = ({
777
- message: string;
778
- });
779
- type HandleDeleteRecordData = {
780
- query: {
781
- domain: string;
782
- record: DnsRecord;
783
- };
784
- };
785
- type HandleDeleteRecordResponse = ({
786
- message: string;
787
- });
788
- type HandleDeleteRecordError = ({
789
- message: string;
790
- });
791
- type HandleListDomainMappingsData = {
792
- query?: {
793
- domain?: (string) | null;
794
- domainOwnership?: (string) | null;
795
- limit?: (number) | null;
796
- offset?: (number) | null;
797
- };
798
- };
799
- type HandleListDomainMappingsResponse = (Array<FreestyleSandboxDomainMapping>);
800
- type HandleListDomainMappingsError = (unknown);
801
- type HandleVerifyWildcardData = {
802
- path: {
803
- domain: string;
804
- };
805
- };
806
- type HandleVerifyWildcardResponse = ({
807
- domain: string;
808
- });
809
- type HandleVerifyWildcardError = ({
810
- message: string;
811
- });
812
- type HandleListDomainsData = {
813
- query?: {
814
- implicitlyOwned?: (boolean) | null;
815
- limit?: (number) | null;
816
- offset?: (number) | null;
817
- };
818
- };
819
- type HandleListDomainsResponse = (Array<{
820
- domain: string;
821
- accountId: string;
822
- createdAt: string;
823
- id: string;
824
- verifiedDns: boolean;
825
- implicitlyOwned: boolean;
826
- deployToDomain: boolean;
827
- manageDns: boolean;
828
- deployToSubdomains: boolean;
829
- }>);
830
- type HandleListDomainsError = ({
831
- message: string;
832
- });
833
- type HandleInsertDomainMappingData = {
834
- body: CreateDomainMappingRequest;
835
- path: {
836
- domain: string;
837
- };
838
- };
839
- type HandleInsertDomainMappingResponse = (unknown);
840
- type HandleInsertDomainMappingError = ({
841
- message: string;
842
- });
843
- type HandleDeleteDomainMappingData = {
844
- path: {
845
- domain: string;
846
- };
847
- };
848
- type HandleDeleteDomainMappingResponse = (unknown);
849
- type HandleDeleteDomainMappingError = ({
850
- message: string;
851
- });
852
- type HandleListDomainVerificationRequestsResponse = (Array<{
853
- verificationCode: string;
854
- domain: string;
855
- createdAt: string;
856
- }>);
857
- type HandleListDomainVerificationRequestsError = ({
858
- message: string;
859
- });
860
- type HandleVerifyDomainData = {
861
- body: FreestyleVerifyDomainRequest;
862
- };
863
- type HandleVerifyDomainResponse = ({
864
- domain: string;
865
- });
866
- type HandleVerifyDomainError = ({
867
- message: string;
868
- });
869
- type HandleCreateDomainVerificationData = {
870
- body: FreestyleDomainVerificationRequest;
871
- };
872
- type HandleCreateDomainVerificationResponse = (DomainVerificationRequest);
873
- type HandleCreateDomainVerificationError = ({
874
- message: string;
875
- });
876
- type HandleDeleteDomainVerificationData = {
877
- body: FreestyleDeleteDomainVerificationRequest;
878
- };
879
- type HandleDeleteDomainVerificationResponse = ({
880
- verificationCode: string;
881
- domain: string;
882
- });
883
- type HandleDeleteDomainVerificationError = ({
884
- message: string;
885
- });
886
- type HandleEphemeralDevServerData = {
887
- body: DevServerRequest;
888
- };
889
- type HandleEphemeralDevServerResponse = ({
890
- /**
891
- * @deprecated
892
- */
893
- url: string;
894
- isNew: boolean;
895
- devCommandRunning: boolean;
896
- installCommandRunning: boolean;
897
- mcpEphemeralUrl?: (string) | null;
898
- ephemeralUrl?: (string) | null;
899
- });
900
- type HandleEphemeralDevServerError = (InternalServerError);
901
- type HandleExecOnEphemeralDevServerData = {
902
- body: ExecRequest;
903
- };
904
- type HandleExecOnEphemeralDevServerResponse = ({
905
- id: string;
906
- isNew: boolean;
907
- stdout?: Array<(string)> | null;
908
- stderr?: Array<(string)> | null;
909
- });
910
- type HandleExecOnEphemeralDevServerError = (InternalServerError);
911
- type HandleWriteFileFromEphemeralDevServerData = {
912
- body: WriteFileRequest;
913
- };
914
- type HandleWriteFileFromEphemeralDevServerResponse = ({
915
- id: string;
916
- isNew: boolean;
917
- });
918
- type HandleWriteFileFromEphemeralDevServerError = (InternalServerError);
919
- type HandleReadFileFromEphemeralDevServerData = {
920
- body: ReadFileRequest;
921
- };
922
- type HandleReadFileFromEphemeralDevServerResponse = ({
923
- id: string;
924
- isNew: boolean;
925
- content: ({
926
- content: string;
927
- encoding: string;
928
- kind: 'file';
929
- } | {
930
- files: Array<(string)>;
931
- kind: 'directory';
932
- });
933
- });
934
- type HandleReadFileFromEphemeralDevServerError = ({
935
- id: string;
936
- isNew: boolean;
937
- } | InternalServerError);
938
- type HandleGitCommitPushData = {
939
- body: GitCommitPushRequest;
940
- };
941
- type HandleGitCommitPushResponse = ({
942
- id: string;
943
- isNew: boolean;
944
- });
945
- type HandleGitCommitPushError = (InternalServerError);
946
- type HandleShutdownDevServerData = {
947
- body: ShutdownDevServerRequest;
948
- };
949
- type HandleShutdownDevServerResponse = ({
950
- success: boolean;
951
- message: string;
952
- });
953
- type HandleShutdownDevServerError = ({
954
- message: string;
955
- } | InternalServerError);
956
- type HandleDevServerStatusData = {
957
- body: DevServerStatusRequest;
958
- };
959
- type HandleDevServerStatusResponse = ({
960
- installing: boolean;
961
- devRunning: boolean;
962
- });
963
- type HandleDevServerStatusError = (InternalServerError);
964
- type HandleWatchDevServerFilesData = {
965
- body: DevServerWatchFilesRequest;
966
- };
967
- type HandleWatchDevServerFilesResponse = (string);
968
- type HandleWatchDevServerFilesError = unknown;
969
- type HandleListExecuteRunsData = {
970
- query?: {
971
- limit?: (number) | null;
972
- offset?: (number) | null;
973
- };
974
- };
975
- type HandleListExecuteRunsResponse = ({
976
- entries: Array<ExecuteLogEntry>;
977
- total: number;
978
- offset: number;
979
- });
980
- type HandleListExecuteRunsError = ({
981
- message: string;
982
- });
983
- type HandleGetExecuteRunData = {
984
- path: {
985
- deployment: string;
986
- };
987
- };
988
- type HandleGetExecuteRunResponse = ({
989
- metadata: ExecuteLogEntry;
990
- code: ExecuteRunInfo;
991
- });
992
- type HandleGetExecuteRunError = ({
993
- message: string;
994
- });
995
- type HandleExecuteScriptData = {
996
- body: FreestyleExecuteScriptParams;
997
- };
998
- type HandleExecuteScriptResponse = ({
999
- /**
1000
- * The return value of the default export of the script
1001
- */
1002
- result: unknown;
1003
- logs: Array<FreestyleJavaScriptLog>;
1004
- });
1005
- type HandleExecuteScriptError = ({
1006
- error: string;
1007
- logs?: Array<FreestyleJavaScriptLog> | null;
1008
- });
1009
- type HandleListIdentitiesData = {
1010
- query?: {
1011
- includeManaged?: (boolean) | null;
1012
- limit?: (number) | null;
1013
- offset?: (number) | null;
1014
- };
1015
- };
1016
- type HandleListIdentitiesResponse = ({
1017
- identities: Array<GitIdentity>;
1018
- offset: number;
1019
- total: number;
1020
- });
1021
- type HandleListIdentitiesError = ({
1022
- message: string;
1023
- });
1024
- type HandleCreateIdentityResponse = (GitIdentity);
1025
- type HandleCreateIdentityError = ({
1026
- message: string;
1027
- });
1028
- type HandleDeleteIdentityData = {
1029
- path: {
1030
- identity: string;
1031
- };
1032
- };
1033
- type HandleDeleteIdentityResponse = ({
1034
- [key: string]: unknown;
1035
- });
1036
- type HandleDeleteIdentityError = ({
1037
- message: string;
1038
- });
1039
- type HandleListPermissionsData = {
1040
- path: {
1041
- identity: string;
1042
- };
1043
- query?: {
1044
- /**
1045
- * Maximum number of repositories to return
1046
- */
1047
- limit?: number;
1048
- /**
1049
- * Offset for the list of repositories
1050
- */
1051
- offset?: number;
1052
- };
1053
- };
1054
- type HandleListPermissionsResponse = (ListPermissionResponseSuccess);
1055
- type HandleListPermissionsError = ({
1056
- message: string;
1057
- });
1058
- type HandleDescribePermissionData = {
1059
- path: {
1060
- identity: string;
1061
- repo: string;
1062
- };
1063
- };
1064
- type HandleDescribePermissionResponse = (DescribePermissionResponseSuccess);
1065
- type HandleDescribePermissionError = ({
1066
- message: string;
1067
- });
1068
- type HandleGrantPermissionData = {
1069
- body: GrantPermissionRequest;
1070
- path: {
1071
- identity: string;
1072
- repo: string;
1073
- };
1074
- };
1075
- type HandleGrantPermissionResponse = ({
1076
- [key: string]: unknown;
1077
- });
1078
- type HandleGrantPermissionError = ({
1079
- message: string;
1080
- });
1081
- type HandleRevokePermissionData = {
1082
- path: {
1083
- identity: string;
1084
- repo: string;
1085
- };
1086
- };
1087
- type HandleRevokePermissionResponse = ({
1088
- [key: string]: unknown;
1089
- });
1090
- type HandleRevokePermissionError = ({
1091
- message: string;
1092
- });
1093
- type HandleUpdatePermissionData = {
1094
- body: UpdatePermissionRequest;
1095
- path: {
1096
- identity: string;
1097
- repo: string;
1098
- };
1099
- };
1100
- type HandleUpdatePermissionResponse = ({
1101
- [key: string]: unknown;
1102
- });
1103
- type HandleUpdatePermissionError = ({
1104
- message: string;
1105
- });
1106
- type HandleListGitTokensData = {
1107
- path: {
1108
- identity: string;
1109
- };
1110
- };
1111
- type HandleListGitTokensResponse = (ListGitTokensResponseSuccess);
1112
- type HandleListGitTokensError = ({
1113
- message: string;
1114
- });
1115
- type HandleCreateGitTokenData = {
1116
- path: {
1117
- identity: string;
1118
- };
1119
- };
1120
- type HandleCreateGitTokenResponse = (CreatedToken);
1121
- type HandleCreateGitTokenError = ({
1122
- message: string;
1123
- });
1124
- type HandleRevokeGitTokenData = {
1125
- body: RevokeGitTokenRequest;
1126
- path: {
1127
- identity: string;
1128
- };
1129
- };
1130
- type HandleRevokeGitTokenResponse = ({
1131
- [key: string]: unknown;
1132
- });
1133
- type HandleRevokeGitTokenError = ({
1134
- message: string;
1135
- });
1136
- type HandleListRepositoriesData = {
1137
- query?: {
1138
- /**
1139
- * Maximum number of repositories to return
1140
- */
1141
- limit?: number;
1142
- /**
1143
- * Offset for the list of repositories
1144
- */
1145
- offset?: number;
1146
- };
1147
- };
1148
- type HandleListRepositoriesResponse = ({
1149
- repositories: Array<RepositoryMetadata>;
1150
- total: number;
1151
- offset: number;
1152
- });
1153
- type HandleListRepositoriesError = ({
1154
- message: string;
1155
- });
1156
- type HandleCreateRepoData = {
1157
- body: {
1158
- /**
1159
- * This name is not visible to users, and is only accessible to you via API and in the
1160
- * dashboard. Mostly useful for observability.
1161
- */
1162
- name?: (string) | null;
1163
- public?: boolean;
1164
- /**
1165
- * The default branch name for the repository. Defaults to "main" if not specified.
1166
- */
1167
- defaultBranch?: (string) | null;
1168
- source?: CreateRepoSource;
1169
- import?: CreateRepoImport;
1170
- };
1171
- };
1172
- type HandleCreateRepoResponse = (CreateRepositoryResponseSuccess);
1173
- type HandleCreateRepoError = ({
1174
- message: string;
1175
- });
1176
- type HandleGetDefaultBranchData = {
1177
- path: {
1178
- /**
1179
- * The repository ID
1180
- */
1181
- repo_id: string;
1182
- };
1183
- };
1184
- type HandleGetDefaultBranchResponse = (GetDefaultBranchResponse);
1185
- type HandleGetDefaultBranchError = unknown;
1186
- type HandleSetDefaultBranchData = {
1187
- body: SetDefaultBranchRequest;
1188
- path: {
1189
- /**
1190
- * The repository ID
1191
- */
1192
- repo_id: string;
1193
- };
1194
- };
1195
- type HandleSetDefaultBranchResponse = (SetDefaultBranchResponse);
1196
- type HandleSetDefaultBranchError = unknown;
1197
- type GetGithubSyncData = {
1198
- path: {
1199
- /**
1200
- * Repository ID
1201
- */
1202
- repo_id: string;
1203
- };
1204
- };
1205
- type GetGithubSyncResponse = (GithubSyncConfigResponse);
1206
- type GetGithubSyncError = (unknown);
1207
- type ConfigureGithubSyncData = {
1208
- body: ConfigureGithubSyncRequest;
1209
- path: {
1210
- /**
1211
- * Repository ID
1212
- */
1213
- repo_id: string;
1214
- };
1215
- };
1216
- type ConfigureGithubSyncResponse = (unknown);
1217
- type ConfigureGithubSyncError = (unknown);
1218
- type RemoveGithubSyncData = {
1219
- path: {
1220
- /**
1221
- * Repository ID
1222
- */
1223
- repo_id: string;
1224
- };
1225
- };
1226
- type RemoveGithubSyncResponse = (unknown);
1227
- type RemoveGithubSyncError = (unknown);
1228
- type HandleDeleteRepoData = {
1229
- path: {
1230
- /**
1231
- * The repository id
1232
- */
1233
- repo: string;
1234
- };
1235
- };
1236
- type HandleDeleteRepoResponse = ({
1237
- [key: string]: unknown;
1238
- });
1239
- type HandleDeleteRepoError = ({
1240
- message: string;
1241
- } | {
1242
- [key: string]: unknown;
1243
- });
1244
- type HandleGetContentsData = {
1245
- path: {
1246
- /**
1247
- * The path to the file or directory. Empty for root.
1248
- */
1249
- '*path': (string) | null;
1250
- /**
1251
- * The repository ID.
1252
- */
1253
- repo: string;
1254
- };
1255
- query?: {
1256
- /**
1257
- * The git reference (branch name, commit SHA, etc.). Defaults to HEAD.
1258
- */
1259
- ref?: string;
1260
- };
1261
- };
1262
- type HandleGetContentsResponse = (GitContents);
1263
- type HandleGetContentsError = ({
1264
- message: string;
1265
- });
1266
- type HandleGetBlobData = {
1267
- path: {
1268
- /**
1269
- * The repository id
1270
- */
1271
- repo: string;
1272
- };
1273
- };
1274
- type HandleGetBlobResponse = (BlobObject);
1275
- type HandleGetBlobError = ({
1276
- message: string;
1277
- });
1278
- type HandleGetCommitData = {
1279
- path: {
1280
- /**
1281
- * The object's hash
1282
- */
1283
- hash: string;
1284
- /**
1285
- * The repository id
1286
- */
1287
- repo: string;
1288
- };
1289
- };
1290
- type HandleGetCommitResponse = (CommitObject);
1291
- type HandleGetCommitError = ({
1292
- message: string;
1293
- });
1294
- type HandleGetRefBranchData = {
1295
- path: {
1296
- /**
1297
- * The branch's name
1298
- */
1299
- branch: string;
1300
- /**
1301
- * The repository id
1302
- */
1303
- repo: string;
1304
- };
1305
- };
1306
- type HandleGetRefBranchResponse = (GitReference);
1307
- type HandleGetRefBranchError = (unknown | {
1308
- message: string;
1309
- });
1310
- type HandleGetRefTagData = {
1311
- path: {
1312
- /**
1313
- * The repository id
1314
- */
1315
- repo: string;
1316
- /**
1317
- * The tag's name
1318
- */
1319
- tag: string;
1320
- };
1321
- };
1322
- type HandleGetRefTagResponse = (GitReference);
1323
- type HandleGetRefTagError = (unknown | {
1324
- message: string;
1325
- });
1326
- type HandleGetTagData = {
1327
- path: {
1328
- /**
1329
- * The object's hash
1330
- */
1331
- hash: string;
1332
- /**
1333
- * The repository id
1334
- */
1335
- repo: string;
1336
- };
1337
- };
1338
- type HandleGetTagResponse = (TagObject);
1339
- type HandleGetTagError = ({
1340
- message: string;
1341
- });
1342
- type HandleGetTreeData = {
1343
- path: {
1344
- /**
1345
- * The object's hash
1346
- */
1347
- hash: string;
1348
- /**
1349
- * The repository id
1350
- */
1351
- repo: string;
1352
- };
1353
- };
1354
- type HandleGetTreeResponse = (TreeObject);
1355
- type HandleGetTreeError = ({
1356
- message: string;
1357
- });
1358
- type HandleDownloadTarballData = {
1359
- path: {
1360
- /**
1361
- * The repository id
1362
- */
1363
- repo: string;
1364
- };
1365
- query?: {
1366
- /**
1367
- * The git reference (branch name, commit SHA, etc.). Defaults to HEAD.
1368
- */
1369
- ref?: string;
1370
- };
1371
- };
1372
- type HandleDownloadTarballResponse = (unknown);
1373
- type HandleDownloadTarballError = ({
1374
- message: string;
1375
- });
1376
- type HandleListGitTriggersData = {
1377
- path: {
1378
- /**
1379
- * The repository id
1380
- */
1381
- repo: string;
1382
- };
1383
- };
1384
- type HandleListGitTriggersResponse = ({
1385
- triggers: Array<GitRepositoryTrigger>;
1386
- });
1387
- type HandleListGitTriggersError = ({
1388
- message: string;
1389
- });
1390
- type HandleCreateGitTriggerData = {
1391
- body: {
1392
- trigger: ({
1393
- branches?: Array<(string)> | null;
1394
- globs?: Array<(string)> | null;
1395
- event: 'push';
1396
- });
1397
- action: ({
1398
- endpoint: string;
1399
- action: 'webhook';
1400
- });
1401
- };
1402
- path: {
1403
- /**
1404
- * The repository id
1405
- */
1406
- repo: string;
1407
- };
1408
- };
1409
- type HandleCreateGitTriggerResponse = ({
1410
- triggerId: string;
1411
- });
1412
- type HandleCreateGitTriggerError = ({
1413
- message: string;
1414
- });
1415
- type HandleDeleteGitTriggerData = {
1416
- path: {
1417
- /**
1418
- * The trigger id
1419
- */
1420
- trigger: string;
1421
- };
1422
- };
1423
- type HandleDeleteGitTriggerResponse = ({
1424
- [key: string]: unknown;
1425
- });
1426
- type HandleDeleteGitTriggerError = ({
1427
- message: string;
1428
- } | {
1429
- [key: string]: unknown;
1430
- });
1431
- type HandleDownloadZipData = {
1432
- path: {
1433
- /**
1434
- * The repository id
1435
- */
1436
- repo: string;
1437
- };
1438
- query?: {
1439
- /**
1440
- * The git reference (branch name, commit SHA, etc.). Defaults to HEAD.
1441
- */
1442
- ref?: string;
1443
- };
1444
- };
1445
- type HandleDownloadZipResponse = (unknown);
1446
- type HandleDownloadZipError = ({
1447
- message: string;
1448
- });
1449
- type HandleGetLogsData = {
1450
- query?: {
1451
- deploymentId?: (string) | null;
1452
- domain?: (string) | null;
1453
- };
1454
- };
1455
- type HandleGetLogsResponse = (FreestyleGetLogsResponse);
1456
- type HandleGetLogsError = unknown;
1457
- type HandleDeployWebData = {
1458
- body: FreestyleDeployWebPayload;
1459
- };
1460
- type HandleDeployWebResponse = (FreestyleDeployWebSuccessResponseV2);
1461
- type HandleDeployWebError = (FreestyleDeployWebErrorResponse);
1462
- type HandleDeployWebV2Data = {
1463
- body: FreestyleDeployWebPayloadV2;
1464
- };
1465
- type HandleDeployWebV2Response = (FreestyleDeployWebSuccessResponseV2);
1466
- type HandleDeployWebV2Error = (FreestyleDeployWebErrorResponse);
1467
- type HandleListWebDeploysData = {
1468
- query: {
1469
- /**
1470
- * Maximum number of repositories to return
1471
- */
1472
- limit: number;
1473
- /**
1474
- * Offset for the list of repositories
1475
- */
1476
- offset: number;
1477
- };
1478
- };
1479
- type HandleListWebDeploysResponse = ({
1480
- entries: Array<DeploymentLogEntry>;
1481
- total: number;
1482
- offset: number;
1483
- });
1484
- type HandleListWebDeploysError = ({
1485
- message: string;
1486
- });
1487
- type HandleGetWebDeployDetailsData = {
1488
- path: {
1489
- deployment_id: string;
1490
- };
1491
- };
1492
-
1493
- export type { CreateDomainMappingRequest as $, AccessLevel as A, CreatedToken as B, CreateRepoSource as C, DeploymentSource as D, ListGitTokensResponseSuccess as E, FreestyleExecuteScriptParamsConfiguration as F, GitIdentity as G, HandleBackupCloudstateResponse as H, HandleListGitTriggersResponse as I, GitTrigger as J, GitTriggerAction as K, ListPermissionResponseSuccess as L, HandleCreateGitTriggerResponse as M, HandleGetContentsResponse as N, GetGithubSyncResponse as O, DeploymentBuildOptions as P, AccessibleRepository as Q, AccessTokenInfo as R, SetDefaultBranchRequest as S, Behavior as T, BlobEncoding as U, BlobObject as V, BranchDetails as W, CommitObject as X, CommitParent as Y, CommitTree as Z, ConfigureGithubSyncRequest as _, FreestyleExecuteScriptResultSuccess as a, TagDetails as a$, CreateRecordParams as a0, type as a1, CreateRepoRequest as a2, CreateRepositoryRequest as a3, type2 as a4, CustomBuildOptions as a5, DeploymentLogEntry as a6, kind as a7, DeploymentState as a8, DevServer as a9, FreestyleNetworkPermission as aA, action as aB, FreestyleSandboxDomainMapping as aC, FreestyleVerifyDomainRequest as aD, GetDefaultBranchResponse as aE, GitCommitPushRequest as aF, GitContents as aG, type3 as aH, GitContentsDirEntryItem as aI, GithubRepoSyncConfig as aJ, GithubSyncConfigResponse as aK, GitReference as aL, GitRepositoryTrigger as aM, event as aN, action2 as aO, GrantPermissionRequest as aP, InternalServerError as aQ, ListRecordsResponse as aR, NetworkPermissionData as aS, ReadFileEphemeralDevServerResponses as aT, ReadFileRequest as aU, RepositoryInfo as aV, RepositoryMetadata as aW, RevokeGitTokenRequest as aX, SetDefaultBranchResponse as aY, ShutdownDevServerRequest as aZ, Signature as a_, kind2 as aa, DevServerRequest as ab, DevServerStatusRequest as ac, DevServerWatchFilesRequest as ad, DnsRecord as ae, DnsRecordData as af, DnsRecordKind as ag, DomainVerificationRequest as ah, ExecRequest as ai, ExecuteLogEntry as aj, ExecuteRunInfo as ak, ExecuteRunState as al, FileReadContent as am, kind3 as an, FreestyleCloudstateDeployConfiguration as ao, FreestyleCloudstateDeployErrorResponse as ap, FreestyleDeleteDomainVerificationRequest as aq, FreestyleDeployWebErrorResponse as ar, FreestyleDeployWebPayload as as, FreestyleDeployWebPayloadV2 as at, FreestyleDomainVerificationRequest as au, FreestyleExecuteScriptParams as av, FreestyleFile as aw, FreestyleGetLogsResponse as ax, FreestyleJavaScriptLog as ay, FreestyleLogResponseObject as az, FreestyleDeployWebConfiguration as b, HandleListExecuteRunsError as b$, TagObject as b0, TagTarget as b1, TreeEntry as b2, type4 as b3, TreeObject as b4, UpdatePermissionRequest as b5, Visibility as b6, WriteFileRequest as b7, HandleDeployCloudstateData as b8, HandleDeployCloudstateResponse as b9, HandleDeleteDomainVerificationData as bA, HandleDeleteDomainVerificationError as bB, HandleEphemeralDevServerData as bC, HandleEphemeralDevServerResponse as bD, HandleEphemeralDevServerError as bE, HandleExecOnEphemeralDevServerData as bF, HandleExecOnEphemeralDevServerResponse as bG, HandleExecOnEphemeralDevServerError as bH, HandleWriteFileFromEphemeralDevServerData as bI, HandleWriteFileFromEphemeralDevServerResponse as bJ, HandleWriteFileFromEphemeralDevServerError as bK, HandleReadFileFromEphemeralDevServerData as bL, HandleReadFileFromEphemeralDevServerResponse as bM, HandleReadFileFromEphemeralDevServerError as bN, HandleGitCommitPushData as bO, HandleGitCommitPushResponse as bP, HandleGitCommitPushError as bQ, HandleShutdownDevServerData as bR, HandleShutdownDevServerResponse as bS, HandleShutdownDevServerError as bT, HandleDevServerStatusData as bU, HandleDevServerStatusResponse as bV, HandleDevServerStatusError as bW, HandleWatchDevServerFilesData as bX, HandleWatchDevServerFilesResponse as bY, HandleWatchDevServerFilesError as bZ, HandleListExecuteRunsData as b_, HandleDeployCloudstateError as ba, HandleBackupCloudstateData as bb, HandleBackupCloudstateError as bc, HandleListRecordsData as bd, HandleListRecordsResponse as be, HandleListRecordsError as bf, HandleCreateRecordData as bg, HandleCreateRecordResponse as bh, HandleCreateRecordError as bi, HandleDeleteRecordData as bj, HandleDeleteRecordResponse as bk, HandleDeleteRecordError as bl, HandleListDomainMappingsData as bm, HandleListDomainMappingsError as bn, HandleVerifyWildcardData as bo, HandleVerifyWildcardError as bp, HandleListDomainsData as bq, HandleListDomainsError as br, HandleInsertDomainMappingData as bs, HandleInsertDomainMappingError as bt, HandleDeleteDomainMappingData as bu, HandleDeleteDomainMappingError as bv, HandleListDomainVerificationRequestsError as bw, HandleVerifyDomainData as bx, HandleCreateDomainVerificationData as by, HandleCreateDomainVerificationError as bz, FreestyleDeployWebSuccessResponseV2 as c, HandleGetCommitError as c$, HandleGetExecuteRunData as c0, HandleGetExecuteRunError as c1, HandleExecuteScriptData as c2, HandleExecuteScriptResponse as c3, HandleExecuteScriptError as c4, HandleListIdentitiesData as c5, HandleListIdentitiesResponse as c6, HandleListIdentitiesError as c7, HandleCreateIdentityResponse as c8, HandleCreateIdentityError as c9, HandleListRepositoriesError as cA, HandleCreateRepoData as cB, HandleCreateRepoResponse as cC, HandleCreateRepoError as cD, HandleGetDefaultBranchData as cE, HandleGetDefaultBranchResponse as cF, HandleGetDefaultBranchError as cG, HandleSetDefaultBranchData as cH, HandleSetDefaultBranchResponse as cI, HandleSetDefaultBranchError as cJ, GetGithubSyncData as cK, GetGithubSyncError as cL, ConfigureGithubSyncData as cM, ConfigureGithubSyncResponse as cN, ConfigureGithubSyncError as cO, RemoveGithubSyncData as cP, RemoveGithubSyncResponse as cQ, RemoveGithubSyncError as cR, HandleDeleteRepoData as cS, HandleDeleteRepoError as cT, HandleGetContentsData as cU, HandleGetContentsError as cV, HandleGetBlobData as cW, HandleGetBlobResponse as cX, HandleGetBlobError as cY, HandleGetCommitData as cZ, HandleGetCommitResponse as c_, HandleDeleteIdentityData as ca, HandleDeleteIdentityError as cb, HandleListPermissionsData as cc, HandleListPermissionsResponse as cd, HandleListPermissionsError as ce, HandleDescribePermissionData as cf, HandleDescribePermissionResponse as cg, HandleDescribePermissionError as ch, HandleGrantPermissionData as ci, HandleGrantPermissionError as cj, HandleRevokePermissionData as ck, HandleRevokePermissionResponse as cl, HandleRevokePermissionError as cm, HandleUpdatePermissionData as cn, HandleUpdatePermissionResponse as co, HandleUpdatePermissionError as cp, HandleListGitTokensData as cq, HandleListGitTokensResponse as cr, HandleListGitTokensError as cs, HandleCreateGitTokenData as ct, HandleCreateGitTokenResponse as cu, HandleCreateGitTokenError as cv, HandleRevokeGitTokenData as cw, HandleRevokeGitTokenResponse as cx, HandleRevokeGitTokenError as cy, HandleListRepositoriesData as cz, FreestyleCloudstateDeployRequest as d, HandleGetRefBranchData as d0, HandleGetRefBranchResponse as d1, HandleGetRefBranchError as d2, HandleGetRefTagData as d3, HandleGetRefTagResponse as d4, HandleGetRefTagError as d5, HandleGetTagData as d6, HandleGetTagResponse as d7, HandleGetTagError as d8, HandleGetTreeData as d9, HandleGetWebDeployDetailsData as dA, HandleGetTreeResponse as da, HandleGetTreeError as db, HandleDownloadTarballData as dc, HandleDownloadTarballResponse as dd, HandleDownloadTarballError as de, HandleListGitTriggersData as df, HandleListGitTriggersError as dg, HandleCreateGitTriggerData as dh, HandleCreateGitTriggerError as di, HandleDeleteGitTriggerData as dj, HandleDeleteGitTriggerResponse as dk, HandleDeleteGitTriggerError as dl, HandleDownloadZipData as dm, HandleDownloadZipResponse as dn, HandleDownloadZipError as dp, HandleGetLogsData as dq, HandleGetLogsError as dr, HandleDeployWebData as ds, HandleDeployWebResponse as dt, HandleDeployWebError as du, HandleDeployWebV2Data as dv, HandleDeployWebV2Response as dw, HandleDeployWebV2Error as dx, HandleListWebDeploysData as dy, HandleListWebDeploysError as dz, 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, HandleInsertDomainMappingResponse as q, HandleDeleteDomainMappingResponse as r, HandleListDomainMappingsResponse as s, CreateRepoImport as t, CreateRepositoryResponseSuccess as u, HandleListRepositoriesResponse as v, HandleDeleteRepoResponse as w, HandleDeleteIdentityResponse as x, HandleGrantPermissionResponse as y, DescribePermissionResponseSuccess as z };