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