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
@@ -39,6 +39,28 @@ type BranchDetails = {
39
39
  name: string;
40
40
  target?: (string) | null;
41
41
  };
42
+ type CommitList = {
43
+ /**
44
+ * List of commits
45
+ */
46
+ commits: Array<CommitObject>;
47
+ /**
48
+ * Number of commits returned in this page
49
+ */
50
+ count: number;
51
+ /**
52
+ * Number of commits skipped (offset)
53
+ */
54
+ offset: number;
55
+ /**
56
+ * Maximum number of commits requested (limit)
57
+ */
58
+ limit: number;
59
+ /**
60
+ * Total number of commits available in the branch
61
+ */
62
+ total: number;
63
+ };
42
64
  /**
43
65
  * Commit object
44
66
  */
@@ -97,35 +119,41 @@ type CreateRecordParams = {
97
119
  domain: string;
98
120
  record: DnsRecordData;
99
121
  };
122
+ type CreateRecordResponse = {
123
+ record: DnsRecord;
124
+ };
100
125
  type CreateRepoImport = {
126
+ /**
127
+ * A map of file names to their contents.
128
+ */
101
129
  files: {
102
130
  [key: string]: (string);
103
131
  };
104
- commit_message: string;
105
- author_name?: (string) | null;
106
- author_email?: (string) | null;
132
+ commitMessage: string;
133
+ authorName?: (string) | null;
134
+ authorEmail?: (string) | null;
107
135
  type: 'files';
108
136
  } | {
109
137
  url: string;
110
138
  dir?: (string) | null;
111
- commit_message: string;
112
- author_name?: (string) | null;
113
- author_email?: (string) | null;
139
+ commitMessage: string;
140
+ authorName?: (string) | null;
141
+ authorEmail?: (string) | null;
114
142
  type: 'tar';
115
143
  } | {
116
144
  url: string;
117
145
  dir?: (string) | null;
118
- commit_message: string;
119
- author_name?: (string) | null;
120
- author_email?: (string) | null;
146
+ commitMessage: string;
147
+ authorName?: (string) | null;
148
+ authorEmail?: (string) | null;
121
149
  type: 'zip';
122
150
  } | {
123
151
  url: string;
124
152
  branch?: (string) | null;
125
153
  dir?: (string) | null;
126
- commit_message: string;
127
- author_name?: (string) | null;
128
- author_email?: (string) | null;
154
+ commitMessage: string;
155
+ authorName?: (string) | null;
156
+ authorEmail?: (string) | null;
129
157
  type: 'git';
130
158
  };
131
159
  type type = 'files';
@@ -145,8 +173,15 @@ type CreateRepositoryRequest = {
145
173
  * The default branch name for the repository. Defaults to "main" if not specified.
146
174
  */
147
175
  defaultBranch?: (string) | null;
176
+ /**
177
+ * Fork from another Git repository. Cannot be used with `import`.
178
+ */
148
179
  source?: CreateRepoSource;
180
+ /**
181
+ * Import static content with an initial commit. Cannot be used with `source`.
182
+ */
149
183
  import?: CreateRepoImport;
184
+ devServers?: DevServerConfiguration;
150
185
  };
151
186
  type CreateRepositoryResponseSuccess = {
152
187
  repoId: string;
@@ -155,9 +190,34 @@ type CreateRepoSource = {
155
190
  url: string;
156
191
  branch?: (string) | null;
157
192
  depth?: (number) | null;
158
- type: 'git';
159
193
  };
160
- type type2 = 'git';
194
+ type CreateVmRequest = {
195
+ idleTimeoutSeconds?: (number) | null;
196
+ /**
197
+ * Optional list of ports to expose externally. If not provided, port 3000
198
+ * will be exposed on port 443 by default. Pass an empty array to disable
199
+ * external ports. Only ports 8081 and 443 can be configured externally for
200
+ * now. Any target port is allowed.
201
+ */
202
+ ports?: Array<PortMapping> | null;
203
+ /**
204
+ * Whether the api request should wait for the VM to be ready before
205
+ * returning. By default, the VM is considered ready when the serial
206
+ * console is ready for login.
207
+ */
208
+ waitForReadySignal?: (boolean) | null;
209
+ /**
210
+ * How long to wait for the ready signal before timing out. Defaults to 120
211
+ * seconds if not provided.
212
+ */
213
+ readySignalTimeoutSeconds?: (number) | null;
214
+ /**
215
+ * Optional working directory for the VM. File system and shell commands
216
+ * will be executed in this directory.
217
+ */
218
+ workdir?: (string) | null;
219
+ persistence?: (null | VmPersistence);
220
+ };
161
221
  type CustomBuildOptions = {
162
222
  command?: (string) | null;
163
223
  envVars?: {
@@ -165,6 +225,9 @@ type CustomBuildOptions = {
165
225
  } | null;
166
226
  outDir?: (string) | null;
167
227
  };
228
+ type DeleteRecordResponse = {
229
+ message: string;
230
+ };
168
231
  type DeploymentBuildOptions = (CustomBuildOptions) | boolean;
169
232
  type DeploymentLogEntry = {
170
233
  deploymentId: string;
@@ -201,22 +264,35 @@ type DescribePermissionResponseSuccess = {
201
264
  };
202
265
  type DevServer = {
203
266
  repoId: string;
267
+ gitRef?: (string) | null;
204
268
  kind: 'repo';
205
269
  };
206
270
  type kind2 = 'repo';
207
- type DevServerRequest = {
271
+ type DevServerConfiguration = {
208
272
  devCommand?: (string) | null;
209
- preDevCommandOnce?: (string) | null;
210
- baseId?: (string) | null;
273
+ installCommand?: (string) | null;
274
+ timeout?: (number) | null;
211
275
  envVars?: {
212
276
  [key: string]: (string);
213
277
  } | null;
214
- repoId?: (string) | null;
215
- computeClass?: (string) | null;
278
+ ports?: Array<PortConfig> | null;
279
+ preset?: (null | DevServerPreset);
280
+ };
281
+ type DevServerLogsRequest = {
282
+ devServer: DevServer;
216
283
  /**
217
- * Timeout in seconds
284
+ * Number of log lines to return per page (default 200)
218
285
  */
219
- timeout?: (number) | null;
286
+ count?: (number) | null;
287
+ /**
288
+ * 1-based page index. page=1 returns the most recent lines (default 1)
289
+ */
290
+ page?: (number) | null;
291
+ };
292
+ type DevServerPreset = 'auto' | 'nextJs' | 'vite' | 'expo';
293
+ type DevServerRequest = DevServerConfiguration & {
294
+ repoId?: (string) | null;
295
+ computeClass?: (string) | null;
220
296
  /**
221
297
  * @deprecated
222
298
  */
@@ -226,6 +302,14 @@ type DevServerRequest = {
226
302
  */
227
303
  repo?: (string) | null;
228
304
  gitRef?: (string) | null;
305
+ preDevCommandOnce?: (string) | null;
306
+ /**
307
+ * @deprecated
308
+ */
309
+ baseId?: (string) | null;
310
+ };
311
+ type DevServerRestartRequest = {
312
+ devServer: DevServer;
229
313
  };
230
314
  type DevServerStatusRequest = {
231
315
  devServer: DevServer;
@@ -256,6 +340,10 @@ type DomainVerificationRequest = {
256
340
  verificationCode: string;
257
341
  createdAt: string;
258
342
  };
343
+ type ExecAwaitRequest = {
344
+ command: string;
345
+ terminal?: (string) | null;
346
+ };
259
347
  type ExecRequest = {
260
348
  devServer: DevServer;
261
349
  command: string;
@@ -291,6 +379,33 @@ type FileReadContent = {
291
379
  kind: 'directory';
292
380
  };
293
381
  type kind3 = 'file';
382
+ type ForkVmRequest = {
383
+ idleTimeoutSeconds?: (number) | null;
384
+ /**
385
+ * Optional list of ports to expose externally. If not provided, port 3000
386
+ * will be exposed on port 443 by default. Pass an empty array to disable
387
+ * external ports. Only ports 8081 and 443 can be configured externally for
388
+ * now. Any target port is allowed.
389
+ */
390
+ ports?: Array<PortMapping> | null;
391
+ /**
392
+ * Whether the api request should wait for the VM to be ready before
393
+ * returning. By default, the VM is considered ready when the serial
394
+ * console is ready for login.
395
+ */
396
+ readySignalTimeoutSeconds?: (number) | null;
397
+ /**
398
+ * How long to wait for the ready signal before timing out. Defaults to 120
399
+ * seconds if not provided.
400
+ */
401
+ waitForReadySignal?: (boolean) | null;
402
+ /**
403
+ * Optional working directory for the VM. File system and shell commands
404
+ * will be executed in this directory.
405
+ */
406
+ workdir?: (string) | null;
407
+ persistence?: (null | VmPersistence);
408
+ };
294
409
  type FreestyleCloudstateDeployConfiguration = {
295
410
  /**
296
411
  * ID of the project to deploy, if not provided will create a new project
@@ -327,7 +442,7 @@ type FreestyleDeleteDomainVerificationRequest = {
327
442
  };
328
443
  type FreestyleDeployWebConfiguration = {
329
444
  /**
330
- * The entrypoint file for the website
445
+ * The entrypoint file for the website, if none is provided, we will try to automatically detect it.
331
446
  */
332
447
  entrypoint?: (string) | null;
333
448
  /**
@@ -530,7 +645,7 @@ type GitContents = {
530
645
  entries: Array<GitContentsDirEntryItem>;
531
646
  type: 'dir';
532
647
  };
533
- type type3 = 'file';
648
+ type type2 = 'file';
534
649
  type GitContentsDirEntryItem = {
535
650
  name: string;
536
651
  path: string;
@@ -623,6 +738,14 @@ type NetworkPermissionData = {
623
738
  query: string;
624
739
  behavior?: Behavior;
625
740
  };
741
+ type PortConfig = {
742
+ port: number;
743
+ targetPort: number;
744
+ };
745
+ type PortMapping = {
746
+ port: number;
747
+ targetPort: number;
748
+ };
626
749
  type ReadFileEphemeralDevServerResponses = {
627
750
  id: string;
628
751
  isNew: boolean;
@@ -638,11 +761,7 @@ type ReadFileEphemeralDevServerResponses = {
638
761
  id: string;
639
762
  isNew: boolean;
640
763
  } | InternalServerError;
641
- type ReadFileRequest = {
642
- devServer: DevServer;
643
- encoding?: string;
644
- };
645
- type RepositoryInfo = {
764
+ type RepositoryInfoRaw = {
646
765
  id: string;
647
766
  name?: (string) | null;
648
767
  accountId: string;
@@ -658,6 +777,9 @@ type RepositoryMetadata = {
658
777
  };
659
778
  defaultBranch: string;
660
779
  };
780
+ type ResizeVmRequest = {
781
+ sizeMb: number;
782
+ };
661
783
  type RevokeGitTokenRequest = {
662
784
  tokenId: string;
663
785
  };
@@ -681,6 +803,11 @@ type Signature = {
681
803
  name: string;
682
804
  email: string;
683
805
  };
806
+ type StartVmRequest = {
807
+ idleTimeoutSeconds?: (number) | null;
808
+ readySignalTimeoutSeconds?: (number) | null;
809
+ waitForReadySignal?: (boolean) | null;
810
+ };
684
811
  type TagDetails = {
685
812
  name: string;
686
813
  target: string;
@@ -723,7 +850,7 @@ type TreeEntry = {
723
850
  sha: string;
724
851
  type: 'tree';
725
852
  };
726
- type type4 = 'blob';
853
+ type type3 = 'blob';
727
854
  /**
728
855
  * Tree object
729
856
  */
@@ -737,14 +864,29 @@ type TreeObject = {
737
864
  */
738
865
  sha: string;
739
866
  };
867
+ type UpdateDevServerConfigRequest = DevServerConfiguration & {
868
+ branch?: (string) | null;
869
+ };
740
870
  type UpdatePermissionRequest = {
741
871
  permission: AccessLevel;
742
872
  };
743
873
  type Visibility = 'public' | 'private';
874
+ type VmPersistence = {
875
+ /**
876
+ * Priority for eviction when storage quota is reached. Higher values
877
+ * mean the VM is less likely to be evicted. Range is 0-10, default is
878
+ * 5.
879
+ */
880
+ priority?: (number) | null;
881
+ type: 'sticky';
882
+ } | {
883
+ type: 'ephemeral';
884
+ } | {
885
+ type: 'persistent';
886
+ };
887
+ type type4 = 'sticky';
744
888
  type WriteFileRequest = {
745
- devServer: DevServer;
746
889
  content: string;
747
- encoding?: string;
748
890
  };
749
891
  type HandleDeployCloudstateData = {
750
892
  body: FreestyleCloudstateDeployRequest;
@@ -770,10 +912,11 @@ type HandleListRecordsError = ({
770
912
  type HandleCreateRecordData = {
771
913
  body: CreateRecordParams;
772
914
  };
773
- type HandleCreateRecordResponse = ({
774
- record: DnsRecord;
775
- });
915
+ type HandleCreateRecordResponse = (CreateRecordResponse);
776
916
  type HandleCreateRecordError = ({
917
+ domain: string;
918
+ account_id: string;
919
+ } | {
777
920
  message: string;
778
921
  });
779
922
  type HandleDeleteRecordData = {
@@ -782,11 +925,13 @@ type HandleDeleteRecordData = {
782
925
  record: DnsRecord;
783
926
  };
784
927
  };
785
- type HandleDeleteRecordResponse = ({
786
- message: string;
787
- });
928
+ type HandleDeleteRecordResponse = (DeleteRecordResponse);
788
929
  type HandleDeleteRecordError = ({
789
- message: string;
930
+ domain: string;
931
+ account_id: string;
932
+ } | {
933
+ domain: string;
934
+ name: string;
790
935
  });
791
936
  type HandleVerifyWildcardData = {
792
937
  path: {
@@ -896,6 +1041,8 @@ type HandleEphemeralDevServerResponse = ({
896
1041
  installCommandRunning: boolean;
897
1042
  mcpEphemeralUrl?: (string) | null;
898
1043
  ephemeralUrl?: (string) | null;
1044
+ vmId?: (string) | null;
1045
+ baseId?: (string) | null;
899
1046
  });
900
1047
  type HandleEphemeralDevServerError = (InternalServerError);
901
1048
  type HandleExecOnEphemeralDevServerData = {
@@ -909,7 +1056,12 @@ type HandleExecOnEphemeralDevServerResponse = ({
909
1056
  });
910
1057
  type HandleExecOnEphemeralDevServerError = (InternalServerError);
911
1058
  type HandleWriteFileFromEphemeralDevServerData = {
912
- body: WriteFileRequest;
1059
+ path: {
1060
+ /**
1061
+ * The path to the file to read from the dev server
1062
+ */
1063
+ filepath: string;
1064
+ };
913
1065
  };
914
1066
  type HandleWriteFileFromEphemeralDevServerResponse = ({
915
1067
  id: string;
@@ -917,7 +1069,12 @@ type HandleWriteFileFromEphemeralDevServerResponse = ({
917
1069
  });
918
1070
  type HandleWriteFileFromEphemeralDevServerError = (InternalServerError);
919
1071
  type HandleReadFileFromEphemeralDevServerData = {
920
- body: ReadFileRequest;
1072
+ path: {
1073
+ /**
1074
+ * The path to the file to read from the dev server
1075
+ */
1076
+ filepath: string;
1077
+ };
921
1078
  };
922
1079
  type HandleReadFileFromEphemeralDevServerResponse = ({
923
1080
  id: string;
@@ -943,6 +1100,20 @@ type HandleGitCommitPushResponse = ({
943
1100
  isNew: boolean;
944
1101
  });
945
1102
  type HandleGitCommitPushError = (InternalServerError);
1103
+ type HandleDevServerLogsData = {
1104
+ body: DevServerLogsRequest;
1105
+ };
1106
+ type HandleDevServerLogsResponse = ({
1107
+ logs: Array<(string)>;
1108
+ });
1109
+ type HandleDevServerLogsError = (InternalServerError);
1110
+ type HandleDevServerRestartData = {
1111
+ body: DevServerRestartRequest;
1112
+ };
1113
+ type HandleDevServerRestartResponse = ({
1114
+ restarted: boolean;
1115
+ });
1116
+ type HandleDevServerRestartError = (InternalServerError);
946
1117
  type HandleShutdownDevServerData = {
947
1118
  body: ShutdownDevServerRequest;
948
1119
  };
@@ -987,7 +1158,7 @@ type HandleGetExecuteRunData = {
987
1158
  };
988
1159
  type HandleGetExecuteRunResponse = ({
989
1160
  metadata: ExecuteLogEntry;
990
- code: ExecuteRunInfo;
1161
+ code?: (null | ExecuteRunInfo);
991
1162
  });
992
1163
  type HandleGetExecuteRunError = ({
993
1164
  message: string;
@@ -1165,8 +1336,15 @@ type HandleCreateRepoData = {
1165
1336
  * The default branch name for the repository. Defaults to "main" if not specified.
1166
1337
  */
1167
1338
  defaultBranch?: (string) | null;
1339
+ /**
1340
+ * Fork from another Git repository. Cannot be used with `import`.
1341
+ */
1168
1342
  source?: CreateRepoSource;
1343
+ /**
1344
+ * Import static content with an initial commit. Cannot be used with `source`.
1345
+ */
1169
1346
  import?: CreateRepoImport;
1347
+ devServers?: DevServerConfiguration;
1170
1348
  };
1171
1349
  };
1172
1350
  type HandleCreateRepoResponse = (CreateRepositoryResponseSuccess);
@@ -1194,6 +1372,49 @@ type HandleSetDefaultBranchData = {
1194
1372
  };
1195
1373
  type HandleSetDefaultBranchResponse = (SetDefaultBranchResponse);
1196
1374
  type HandleSetDefaultBranchError = unknown;
1375
+ type GetDevServerConfigurationData = {
1376
+ path: {
1377
+ /**
1378
+ * Repository ID
1379
+ */
1380
+ repo_id: string;
1381
+ };
1382
+ query: {
1383
+ /**
1384
+ * Git branch name
1385
+ */
1386
+ branch: string;
1387
+ };
1388
+ };
1389
+ type GetDevServerConfigurationResponse = (DevServerConfiguration);
1390
+ type GetDevServerConfigurationError = (unknown);
1391
+ type UpdateDevServerConfigurationData = {
1392
+ body: UpdateDevServerConfigRequest;
1393
+ path: {
1394
+ /**
1395
+ * Repository ID
1396
+ */
1397
+ repo_id: string;
1398
+ };
1399
+ };
1400
+ type UpdateDevServerConfigurationResponse = (unknown);
1401
+ type UpdateDevServerConfigurationError = (unknown);
1402
+ type DeleteDevServerConfigurationData = {
1403
+ path: {
1404
+ /**
1405
+ * Repository ID
1406
+ */
1407
+ repo_id: string;
1408
+ };
1409
+ query: {
1410
+ /**
1411
+ * Git branch name (optional, defaults to repository default branch)
1412
+ */
1413
+ branch: string;
1414
+ };
1415
+ };
1416
+ type DeleteDevServerConfigurationResponse = (void);
1417
+ type DeleteDevServerConfigurationError = (unknown);
1197
1418
  type GetGithubSyncData = {
1198
1419
  path: {
1199
1420
  /**
@@ -1225,6 +1446,16 @@ type RemoveGithubSyncData = {
1225
1446
  };
1226
1447
  type RemoveGithubSyncResponse = (unknown);
1227
1448
  type RemoveGithubSyncError = (unknown);
1449
+ type HandleGetRepoInfoData = {
1450
+ path: {
1451
+ /**
1452
+ * The repository id
1453
+ */
1454
+ repo: string;
1455
+ };
1456
+ };
1457
+ type HandleGetRepoInfoResponse = (RepositoryInfoRaw);
1458
+ type HandleGetRepoInfoError = (unknown);
1228
1459
  type HandleDeleteRepoData = {
1229
1460
  path: {
1230
1461
  /**
@@ -1246,7 +1477,7 @@ type HandleGetContentsData = {
1246
1477
  /**
1247
1478
  * The path to the file or directory. Empty for root.
1248
1479
  */
1249
- '*path': (string) | null;
1480
+ path: (string) | null;
1250
1481
  /**
1251
1482
  * The repository ID.
1252
1483
  */
@@ -1265,6 +1496,10 @@ type HandleGetContentsError = ({
1265
1496
  });
1266
1497
  type HandleGetBlobData = {
1267
1498
  path: {
1499
+ /**
1500
+ * The object's hash
1501
+ */
1502
+ hash: string;
1268
1503
  /**
1269
1504
  * The repository id
1270
1505
  */
@@ -1275,6 +1510,32 @@ type HandleGetBlobResponse = (BlobObject);
1275
1510
  type HandleGetBlobError = ({
1276
1511
  message: string;
1277
1512
  });
1513
+ type HandleListCommitsData = {
1514
+ path: {
1515
+ /**
1516
+ * The repository id
1517
+ */
1518
+ repo: string;
1519
+ };
1520
+ query?: {
1521
+ /**
1522
+ * Branch name (defaults to HEAD)
1523
+ */
1524
+ branch?: (string) | null;
1525
+ /**
1526
+ * Maximum number of commits to return (default: 50, max: 500)
1527
+ */
1528
+ limit?: (number) | null;
1529
+ /**
1530
+ * Number of commits to skip (default: 0)
1531
+ */
1532
+ offset?: (number) | null;
1533
+ };
1534
+ };
1535
+ type HandleListCommitsResponse = (CommitList);
1536
+ type HandleListCommitsError = ({
1537
+ message: string;
1538
+ });
1278
1539
  type HandleGetCommitData = {
1279
1540
  path: {
1280
1541
  /**
@@ -1414,6 +1675,10 @@ type HandleCreateGitTriggerError = ({
1414
1675
  });
1415
1676
  type HandleDeleteGitTriggerData = {
1416
1677
  path: {
1678
+ /**
1679
+ * The repository id
1680
+ */
1681
+ repo: string;
1417
1682
  /**
1418
1683
  * The trigger id
1419
1684
  */
@@ -1454,6 +1719,146 @@ type HandleGetLogsData = {
1454
1719
  };
1455
1720
  type HandleGetLogsResponse = (FreestyleGetLogsResponse);
1456
1721
  type HandleGetLogsError = unknown;
1722
+ type CreateVmData = {
1723
+ body: CreateVmRequest;
1724
+ };
1725
+ type ResizeVmData = {
1726
+ body: ResizeVmRequest;
1727
+ path: {
1728
+ id: string;
1729
+ };
1730
+ };
1731
+ type GetVmData = {
1732
+ path: {
1733
+ vm_id: string;
1734
+ };
1735
+ };
1736
+ type DeleteVmData = {
1737
+ path: {
1738
+ /**
1739
+ * The ID of the VM to delete
1740
+ */
1741
+ vm_id: string;
1742
+ };
1743
+ };
1744
+ type WaitVmData = {
1745
+ path: {
1746
+ /**
1747
+ * The ID of the VM to wait for
1748
+ */
1749
+ vm_id: string;
1750
+ };
1751
+ };
1752
+ type ExecAwaitData = {
1753
+ body: ExecAwaitRequest;
1754
+ path: {
1755
+ /**
1756
+ * The ID of the VM to execute the command in
1757
+ */
1758
+ vm_id: string;
1759
+ };
1760
+ };
1761
+ type GetFileData = {
1762
+ path: {
1763
+ /**
1764
+ * The path of the file to get
1765
+ */
1766
+ filepath: string;
1767
+ /**
1768
+ * The ID of the VM to get the file from
1769
+ */
1770
+ vm_id: string;
1771
+ };
1772
+ };
1773
+ type PutFileData = {
1774
+ body: WriteFileRequest;
1775
+ path: {
1776
+ /**
1777
+ * The path of the file to put
1778
+ */
1779
+ filepath: string;
1780
+ /**
1781
+ * The ID of the VM to put the file to
1782
+ */
1783
+ vm_id: string;
1784
+ };
1785
+ };
1786
+ type ForkVmData = {
1787
+ body: ForkVmRequest;
1788
+ path: {
1789
+ vm_id: string;
1790
+ };
1791
+ };
1792
+ type OptimizeVmData = {
1793
+ path: {
1794
+ /**
1795
+ * The ID of the VM to optimize
1796
+ */
1797
+ vm_id: string;
1798
+ };
1799
+ };
1800
+ type StartVmData = {
1801
+ body: StartVmRequest;
1802
+ path: {
1803
+ vm_id: string;
1804
+ };
1805
+ };
1806
+ type StopVmData = {
1807
+ path: {
1808
+ /**
1809
+ * The ID of the VM to stop
1810
+ */
1811
+ vm_id: string;
1812
+ };
1813
+ };
1814
+ type SuspendVmData = {
1815
+ path: {
1816
+ /**
1817
+ * The ID of the VM to suspend
1818
+ */
1819
+ vm_id: string;
1820
+ };
1821
+ };
1822
+ type ListTerminalsData = {
1823
+ path: {
1824
+ /**
1825
+ * The ID of the VM
1826
+ */
1827
+ vm_id: string;
1828
+ };
1829
+ };
1830
+ type GetTerminalLogsData = {
1831
+ path: {
1832
+ /**
1833
+ * The ID of the terminal session
1834
+ */
1835
+ terminal_id: string;
1836
+ /**
1837
+ * The ID of the VM
1838
+ */
1839
+ vm_id: string;
1840
+ };
1841
+ };
1842
+ type GetTerminalXtermData = {
1843
+ path: {
1844
+ /**
1845
+ * The ID of the terminal session
1846
+ */
1847
+ terminal_id: string;
1848
+ /**
1849
+ * The ID of the VM
1850
+ */
1851
+ vm_id: string;
1852
+ };
1853
+ };
1854
+ type WatchFilesData = {
1855
+ path: {
1856
+ /**
1857
+ * The ID of the VM to watch files for
1858
+ */
1859
+ vm_id: string;
1860
+ };
1861
+ };
1457
1862
  type HandleDeployWebData = {
1458
1863
  body: FreestyleDeployWebPayload;
1459
1864
  };
@@ -1490,4 +1895,4 @@ type HandleGetWebDeployDetailsData = {
1490
1895
  };
1491
1896
  };
1492
1897
 
1493
- export type { ConfigureGithubSyncRequest 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, HandleListDomainMappingsData as Q, AccessibleRepository as R, SetDefaultBranchRequest as S, AccessTokenInfo as T, Behavior as U, BlobEncoding as V, BlobObject as W, BranchDetails as X, CommitObject as Y, CommitParent as Z, CommitTree as _, FreestyleExecuteScriptResultSuccess as a, Signature as a$, CreateDomainMappingRequest as a0, CreateRecordParams as a1, type as a2, CreateRepoRequest as a3, CreateRepositoryRequest as a4, type2 as a5, CustomBuildOptions as a6, DeploymentLogEntry as a7, kind as a8, DeploymentState as a9, FreestyleLogResponseObject as aA, FreestyleNetworkPermission as aB, action as aC, FreestyleSandboxDomainMapping as aD, FreestyleVerifyDomainRequest as aE, GetDefaultBranchResponse as aF, GitCommitPushRequest as aG, GitContents as aH, type3 as aI, GitContentsDirEntryItem as aJ, GithubRepoSyncConfig as aK, GithubSyncConfigResponse as aL, GitReference as aM, GitRepositoryTrigger as aN, event as aO, action2 as aP, GrantPermissionRequest as aQ, InternalServerError as aR, ListRecordsResponse as aS, NetworkPermissionData as aT, ReadFileEphemeralDevServerResponses as aU, ReadFileRequest as aV, RepositoryInfo as aW, RepositoryMetadata as aX, RevokeGitTokenRequest as aY, SetDefaultBranchResponse as aZ, ShutdownDevServerRequest as a_, DevServer as aa, kind2 as ab, DevServerRequest as ac, DevServerStatusRequest as ad, DevServerWatchFilesRequest as ae, DnsRecord as af, DnsRecordData as ag, DnsRecordKind as ah, DomainVerificationRequest as ai, ExecRequest as aj, ExecuteLogEntry as ak, ExecuteRunInfo as al, ExecuteRunState as am, FileReadContent as an, kind3 as ao, FreestyleCloudstateDeployConfiguration as ap, FreestyleCloudstateDeployErrorResponse as aq, FreestyleDeleteDomainVerificationRequest as ar, FreestyleDeployWebErrorResponse as as, FreestyleDeployWebPayload as at, FreestyleDeployWebPayloadV2 as au, FreestyleDomainVerificationRequest as av, FreestyleExecuteScriptParams as aw, FreestyleFile as ax, FreestyleGetLogsResponse as ay, FreestyleJavaScriptLog as az, FreestyleDeployWebConfiguration as b, HandleListExecuteRunsError as b$, TagDetails as b0, TagObject as b1, TagTarget as b2, TreeEntry as b3, type4 as b4, TreeObject as b5, UpdatePermissionRequest as b6, Visibility as b7, WriteFileRequest as b8, HandleDeployCloudstateData 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_, HandleDeployCloudstateResponse as ba, HandleDeployCloudstateError as bb, HandleBackupCloudstateData as bc, HandleBackupCloudstateError as bd, HandleListRecordsData as be, HandleListRecordsResponse as bf, HandleListRecordsError as bg, HandleCreateRecordData as bh, HandleCreateRecordResponse as bi, HandleCreateRecordError as bj, HandleDeleteRecordData as bk, HandleDeleteRecordResponse as bl, HandleDeleteRecordError as bm, HandleVerifyWildcardData as bn, HandleVerifyWildcardError as bo, HandleListDomainsData as bp, HandleListDomainsError as bq, HandleListDomainMappingsError 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 };
1898
+ export type { CommitParent as $, AccessLevel as A, DescribePermissionResponseSuccess as B, CreateRepoSource as C, DeploymentSource as D, CreatedToken as E, FreestyleExecuteScriptParamsConfiguration as F, GitIdentity as G, HandleBackupCloudstateResponse as H, ListGitTokensResponseSuccess as I, HandleListGitTriggersResponse as J, GitTrigger as K, ListPermissionResponseSuccess as L, GitTriggerAction as M, HandleCreateGitTriggerResponse as N, HandleGetContentsResponse as O, GetGithubSyncResponse as P, DeploymentBuildOptions as Q, HandleListDomainMappingsData as R, SetDefaultBranchRequest as S, AccessibleRepository as T, AccessTokenInfo as U, Behavior as V, BlobEncoding as W, BlobObject as X, BranchDetails as Y, CommitList as Z, CommitObject as _, FreestyleExecuteScriptResultSuccess as a, ListRecordsResponse as a$, CommitTree as a0, ConfigureGithubSyncRequest as a1, CreateDomainMappingRequest as a2, CreateRecordParams as a3, CreateRecordResponse as a4, type as a5, CreateRepoRequest as a6, CreateRepositoryRequest as a7, CreateVmRequest as a8, CustomBuildOptions as a9, FreestyleDeleteDomainVerificationRequest as aA, FreestyleDeployWebErrorResponse as aB, FreestyleDeployWebPayload as aC, FreestyleDeployWebPayloadV2 as aD, FreestyleDomainVerificationRequest as aE, FreestyleExecuteScriptParams as aF, FreestyleFile as aG, FreestyleGetLogsResponse as aH, FreestyleJavaScriptLog as aI, FreestyleLogResponseObject as aJ, FreestyleNetworkPermission as aK, action as aL, FreestyleSandboxDomainMapping as aM, FreestyleVerifyDomainRequest as aN, GetDefaultBranchResponse as aO, GitCommitPushRequest as aP, GitContents as aQ, type2 as aR, GitContentsDirEntryItem as aS, GithubRepoSyncConfig as aT, GithubSyncConfigResponse as aU, GitReference as aV, GitRepositoryTrigger as aW, event as aX, action2 as aY, GrantPermissionRequest as aZ, InternalServerError as a_, DeleteRecordResponse as aa, DeploymentLogEntry as ab, kind as ac, DeploymentState as ad, DevServer as ae, kind2 as af, DevServerLogsRequest as ag, DevServerPreset as ah, DevServerRequest as ai, DevServerRestartRequest as aj, DevServerStatusRequest as ak, DevServerWatchFilesRequest as al, DnsRecord as am, DnsRecordData as an, DnsRecordKind as ao, DomainVerificationRequest as ap, ExecAwaitRequest as aq, ExecRequest as ar, ExecuteLogEntry as as, ExecuteRunInfo as at, ExecuteRunState as au, FileReadContent as av, kind3 as aw, ForkVmRequest as ax, FreestyleCloudstateDeployConfiguration as ay, FreestyleCloudstateDeployErrorResponse as az, FreestyleDeployWebConfiguration as b, HandleReadFileFromEphemeralDevServerResponse as b$, NetworkPermissionData as b0, PortConfig as b1, PortMapping as b2, ReadFileEphemeralDevServerResponses as b3, RepositoryInfoRaw as b4, RepositoryMetadata as b5, ResizeVmRequest as b6, RevokeGitTokenRequest as b7, SetDefaultBranchResponse as b8, ShutdownDevServerRequest as b9, HandleDeleteRecordResponse as bA, HandleDeleteRecordError as bB, HandleVerifyWildcardData as bC, HandleVerifyWildcardError as bD, HandleListDomainsData as bE, HandleListDomainsError as bF, HandleListDomainMappingsError as bG, HandleInsertDomainMappingData as bH, HandleInsertDomainMappingError as bI, HandleDeleteDomainMappingData as bJ, HandleDeleteDomainMappingError as bK, HandleListDomainVerificationRequestsError as bL, HandleVerifyDomainData as bM, HandleCreateDomainVerificationData as bN, HandleCreateDomainVerificationError as bO, HandleDeleteDomainVerificationData as bP, HandleDeleteDomainVerificationError as bQ, HandleEphemeralDevServerData as bR, HandleEphemeralDevServerResponse as bS, HandleEphemeralDevServerError as bT, HandleExecOnEphemeralDevServerData as bU, HandleExecOnEphemeralDevServerResponse as bV, HandleExecOnEphemeralDevServerError as bW, HandleWriteFileFromEphemeralDevServerData as bX, HandleWriteFileFromEphemeralDevServerResponse as bY, HandleWriteFileFromEphemeralDevServerError as bZ, HandleReadFileFromEphemeralDevServerData as b_, Signature as ba, StartVmRequest as bb, TagDetails as bc, TagObject as bd, TagTarget as be, TreeEntry as bf, type3 as bg, TreeObject as bh, UpdateDevServerConfigRequest as bi, UpdatePermissionRequest as bj, Visibility as bk, VmPersistence as bl, type4 as bm, WriteFileRequest as bn, HandleDeployCloudstateData as bo, HandleDeployCloudstateResponse as bp, HandleDeployCloudstateError as bq, HandleBackupCloudstateData as br, HandleBackupCloudstateError as bs, HandleListRecordsData as bt, HandleListRecordsResponse as bu, HandleListRecordsError as bv, HandleCreateRecordData as bw, HandleCreateRecordResponse as bx, HandleCreateRecordError as by, HandleDeleteRecordData as bz, FreestyleDeployWebSuccessResponseV2 as c, HandleGetDefaultBranchError as c$, HandleReadFileFromEphemeralDevServerError as c0, HandleGitCommitPushData as c1, HandleGitCommitPushResponse as c2, HandleGitCommitPushError as c3, HandleDevServerLogsData as c4, HandleDevServerLogsResponse as c5, HandleDevServerLogsError as c6, HandleDevServerRestartData as c7, HandleDevServerRestartResponse as c8, HandleDevServerRestartError as c9, HandleDescribePermissionData as cA, HandleDescribePermissionResponse as cB, HandleDescribePermissionError as cC, HandleGrantPermissionData as cD, HandleGrantPermissionError as cE, HandleRevokePermissionData as cF, HandleRevokePermissionResponse as cG, HandleRevokePermissionError as cH, HandleUpdatePermissionData as cI, HandleUpdatePermissionResponse as cJ, HandleUpdatePermissionError as cK, HandleListGitTokensData as cL, HandleListGitTokensResponse as cM, HandleListGitTokensError as cN, HandleCreateGitTokenData as cO, HandleCreateGitTokenResponse as cP, HandleCreateGitTokenError as cQ, HandleRevokeGitTokenData as cR, HandleRevokeGitTokenResponse as cS, HandleRevokeGitTokenError as cT, HandleListRepositoriesData as cU, HandleListRepositoriesError as cV, HandleCreateRepoData as cW, HandleCreateRepoResponse as cX, HandleCreateRepoError as cY, HandleGetDefaultBranchData as cZ, HandleGetDefaultBranchResponse as c_, HandleShutdownDevServerData as ca, HandleShutdownDevServerResponse as cb, HandleShutdownDevServerError as cc, HandleDevServerStatusData as cd, HandleDevServerStatusResponse as ce, HandleDevServerStatusError as cf, HandleWatchDevServerFilesData as cg, HandleWatchDevServerFilesResponse as ch, HandleWatchDevServerFilesError as ci, HandleListExecuteRunsData as cj, HandleListExecuteRunsError as ck, HandleGetExecuteRunData as cl, HandleGetExecuteRunError as cm, HandleExecuteScriptData as cn, HandleExecuteScriptResponse as co, HandleExecuteScriptError as cp, HandleListIdentitiesData as cq, HandleListIdentitiesResponse as cr, HandleListIdentitiesError as cs, HandleCreateIdentityResponse as ct, HandleCreateIdentityError as cu, HandleDeleteIdentityData as cv, HandleDeleteIdentityError as cw, HandleListPermissionsData as cx, HandleListPermissionsResponse as cy, HandleListPermissionsError as cz, FreestyleCloudstateDeployRequest as d, HandleGetLogsError as d$, HandleSetDefaultBranchData as d0, HandleSetDefaultBranchResponse as d1, HandleSetDefaultBranchError as d2, GetDevServerConfigurationData as d3, GetDevServerConfigurationResponse as d4, GetDevServerConfigurationError as d5, UpdateDevServerConfigurationData as d6, UpdateDevServerConfigurationResponse as d7, UpdateDevServerConfigurationError as d8, DeleteDevServerConfigurationData as d9, HandleGetCommitError as dA, HandleGetRefBranchData as dB, HandleGetRefBranchResponse as dC, HandleGetRefBranchError as dD, HandleGetRefTagData as dE, HandleGetRefTagResponse as dF, HandleGetRefTagError as dG, HandleGetTagData as dH, HandleGetTagResponse as dI, HandleGetTagError as dJ, HandleGetTreeData as dK, HandleGetTreeResponse as dL, HandleGetTreeError as dM, HandleDownloadTarballData as dN, HandleDownloadTarballResponse as dO, HandleDownloadTarballError as dP, HandleListGitTriggersData as dQ, HandleListGitTriggersError as dR, HandleCreateGitTriggerData as dS, HandleCreateGitTriggerError as dT, HandleDeleteGitTriggerData as dU, HandleDeleteGitTriggerResponse as dV, HandleDeleteGitTriggerError as dW, HandleDownloadZipData as dX, HandleDownloadZipResponse as dY, HandleDownloadZipError as dZ, HandleGetLogsData as d_, DeleteDevServerConfigurationResponse as da, DeleteDevServerConfigurationError as db, GetGithubSyncData as dc, GetGithubSyncError as dd, ConfigureGithubSyncData as de, ConfigureGithubSyncResponse as df, ConfigureGithubSyncError as dg, RemoveGithubSyncData as dh, RemoveGithubSyncResponse as di, RemoveGithubSyncError as dj, HandleGetRepoInfoData as dk, HandleGetRepoInfoResponse as dl, HandleGetRepoInfoError as dm, HandleDeleteRepoData as dn, HandleDeleteRepoError as dp, HandleGetContentsData as dq, HandleGetContentsError as dr, HandleGetBlobData as ds, HandleGetBlobResponse as dt, HandleGetBlobError as du, HandleListCommitsData as dv, HandleListCommitsResponse as dw, HandleListCommitsError as dx, HandleGetCommitData as dy, HandleGetCommitResponse as dz, FreestyleCloudstateDeploySuccessResponse as e, CreateVmData as e0, ResizeVmData as e1, GetVmData as e2, DeleteVmData as e3, WaitVmData as e4, ExecAwaitData as e5, GetFileData as e6, PutFileData as e7, ForkVmData as e8, OptimizeVmData as e9, StartVmData as ea, StopVmData as eb, SuspendVmData as ec, ListTerminalsData as ed, GetTerminalLogsData as ee, GetTerminalXtermData as ef, WatchFilesData as eg, HandleDeployWebData as eh, HandleDeployWebResponse as ei, HandleDeployWebError as ej, HandleDeployWebV2Data as ek, HandleDeployWebV2Response as el, HandleDeployWebV2Error as em, HandleListWebDeploysData as en, HandleListWebDeploysError as eo, HandleGetWebDeployDetailsData as ep, 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, DevServerConfiguration as t, CreateRepoImport as u, CreateRepositoryResponseSuccess as v, HandleListRepositoriesResponse as w, HandleDeleteRepoResponse as x, HandleDeleteIdentityResponse as y, HandleGrantPermissionResponse as z };