freestyle-sandboxes 0.0.94 → 0.0.95
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ai/inde.d.cts +1 -1
- package/dist/ai/inde.d.mts +1 -1
- package/dist/ai/index.d.cts +1 -1
- package/dist/ai/index.d.mts +1 -1
- package/dist/inde.d.cts +5 -4
- package/dist/inde.d.mts +5 -4
- package/dist/index.cjs +4 -2
- package/dist/index.d.cts +5 -4
- package/dist/index.d.mts +5 -4
- package/dist/index.mjs +4 -2
- package/dist/langgraph/inde.d.cts +1 -1
- package/dist/langgraph/inde.d.mts +1 -1
- package/dist/langgraph/index.d.cts +1 -1
- package/dist/langgraph/index.d.mts +1 -1
- package/dist/mastra/inde.d.cts +1 -1
- package/dist/mastra/inde.d.mts +1 -1
- package/dist/mastra/index.d.cts +1 -1
- package/dist/mastra/index.d.mts +1 -1
- package/dist/{types.gen--Oxc46AH.d.ts → types.gen-DKjMRuu5.d.ts} +335 -23
- package/dist/utils/inde.d.cts +1 -1
- package/dist/utils/inde.d.mts +1 -1
- package/dist/utils/index.d.cts +1 -1
- package/dist/utils/index.d.mts +1 -1
- package/openapi/sdk.gen.ts +234 -1
- package/openapi/types.gen.ts +382 -22
- package/openapi.json +1 -1
- package/package.json +1 -1
- package/src/index.ts +4 -1
- package/dist/index-BBXyg0JQ.cjs +0 -3253
- package/dist/index-BQHqnjZK.mjs +0 -3231
- package/dist/index-CEEa9WHp.cjs +0 -3238
- package/dist/index-D1ulQeJR.mjs +0 -3247
- package/dist/index-DCF70Xbq.mjs +0 -3246
- package/dist/index-H7UNEAjs.cjs +0 -3254
- package/dist/index.d-CXx1AdyW.d.ts +0 -4210
- package/dist/types.gen-1sd31qLV.d.ts +0 -172
- package/dist/types.gen-627pxroW.d.ts +0 -830
- package/dist/types.gen-BCdfx7yt.d.ts +0 -760
- package/dist/types.gen-BVXmFV7d.d.ts +0 -1299
- package/dist/types.gen-BWwhCgTX.d.ts +0 -1462
- package/dist/types.gen-BaMKzqxQ.d.ts +0 -233
- package/dist/types.gen-BbekD8Sd.d.ts +0 -1119
- package/dist/types.gen-BpWMzgc3.d.ts +0 -1493
- package/dist/types.gen-BqN1t03N.d.ts +0 -842
- package/dist/types.gen-BtK6PMQy.d.ts +0 -195
- package/dist/types.gen-BuhQ5LpB.d.ts +0 -764
- package/dist/types.gen-BzRtj_TA.d.ts +0 -725
- package/dist/types.gen-C03gaIPq.d.ts +0 -297
- package/dist/types.gen-CG8tIO9M.d.ts +0 -1493
- package/dist/types.gen-CIf3ciN7.d.ts +0 -807
- package/dist/types.gen-CMuCas4r.d.ts +0 -183
- package/dist/types.gen-CWa4Mw0J.d.ts +0 -1493
- package/dist/types.gen-CZUnqmzP.d.ts +0 -789
- package/dist/types.gen-CnEkmbco.d.ts +0 -314
- package/dist/types.gen-DDYpuDzZ.d.ts +0 -764
- package/dist/types.gen-DHmdEOOa.d.ts +0 -172
- package/dist/types.gen-DLYohMJT.d.ts +0 -382
- package/dist/types.gen-DbTb_SrD.d.ts +0 -156
- package/dist/types.gen-DkFlXKTr.d.ts +0 -1354
- package/dist/types.gen-DkQ-Dbs1.d.ts +0 -764
- package/dist/types.gen-DyY7Deri.d.ts +0 -138
- package/dist/types.gen-MBZCvIhE.d.ts +0 -311
- package/dist/types.gen-YhJAHBw8.d.ts +0 -233
- package/dist/types.gen-cCnnhnB6.d.ts +0 -182
- package/dist/types.gen-mg_JNXrq.d.ts +0 -830
- package/dist/types.gen-uDTr6v-7.d.ts +0 -731
|
@@ -119,6 +119,9 @@ type CreateRecordParams = {
|
|
|
119
119
|
domain: string;
|
|
120
120
|
record: DnsRecordData;
|
|
121
121
|
};
|
|
122
|
+
type CreateRecordResponse = {
|
|
123
|
+
record: DnsRecord;
|
|
124
|
+
};
|
|
122
125
|
type CreateRepoImport = {
|
|
123
126
|
/**
|
|
124
127
|
* A map of file names to their contents.
|
|
@@ -178,6 +181,7 @@ type CreateRepositoryRequest = {
|
|
|
178
181
|
* Import static content with an initial commit. Cannot be used with `source`.
|
|
179
182
|
*/
|
|
180
183
|
import?: CreateRepoImport;
|
|
184
|
+
devServers?: DevServerConfiguration;
|
|
181
185
|
};
|
|
182
186
|
type CreateRepositoryResponseSuccess = {
|
|
183
187
|
repoId: string;
|
|
@@ -187,6 +191,33 @@ type CreateRepoSource = {
|
|
|
187
191
|
branch?: (string) | null;
|
|
188
192
|
depth?: (number) | null;
|
|
189
193
|
};
|
|
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
|
+
};
|
|
190
221
|
type CustomBuildOptions = {
|
|
191
222
|
command?: (string) | null;
|
|
192
223
|
envVars?: {
|
|
@@ -194,6 +225,9 @@ type CustomBuildOptions = {
|
|
|
194
225
|
} | null;
|
|
195
226
|
outDir?: (string) | null;
|
|
196
227
|
};
|
|
228
|
+
type DeleteRecordResponse = {
|
|
229
|
+
message: string;
|
|
230
|
+
};
|
|
197
231
|
type DeploymentBuildOptions = (CustomBuildOptions) | boolean;
|
|
198
232
|
type DeploymentLogEntry = {
|
|
199
233
|
deploymentId: string;
|
|
@@ -234,22 +268,31 @@ type DevServer = {
|
|
|
234
268
|
kind: 'repo';
|
|
235
269
|
};
|
|
236
270
|
type kind2 = 'repo';
|
|
237
|
-
type
|
|
271
|
+
type DevServerConfiguration = {
|
|
238
272
|
devCommand?: (string) | null;
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
* @deprecated
|
|
242
|
-
*/
|
|
243
|
-
baseId?: (string) | null;
|
|
273
|
+
installCommand?: (string) | null;
|
|
274
|
+
timeout?: (number) | null;
|
|
244
275
|
envVars?: {
|
|
245
276
|
[key: string]: (string);
|
|
246
277
|
} | null;
|
|
247
|
-
|
|
248
|
-
|
|
278
|
+
ports?: Array<PortConfig> | null;
|
|
279
|
+
preset?: (null | DevServerPreset);
|
|
280
|
+
};
|
|
281
|
+
type DevServerLogsRequest = {
|
|
282
|
+
devServer: DevServer;
|
|
249
283
|
/**
|
|
250
|
-
*
|
|
284
|
+
* Number of log lines to return per page (default 200)
|
|
251
285
|
*/
|
|
252
|
-
|
|
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;
|
|
253
296
|
/**
|
|
254
297
|
* @deprecated
|
|
255
298
|
*/
|
|
@@ -259,11 +302,14 @@ type DevServerRequest = {
|
|
|
259
302
|
*/
|
|
260
303
|
repo?: (string) | null;
|
|
261
304
|
gitRef?: (string) | null;
|
|
305
|
+
preDevCommandOnce?: (string) | null;
|
|
262
306
|
/**
|
|
263
|
-
*
|
|
264
|
-
* Only ports 8081 and 443 can be configured externally for now. Any target port is allowed.
|
|
307
|
+
* @deprecated
|
|
265
308
|
*/
|
|
266
|
-
|
|
309
|
+
baseId?: (string) | null;
|
|
310
|
+
};
|
|
311
|
+
type DevServerRestartRequest = {
|
|
312
|
+
devServer: DevServer;
|
|
267
313
|
};
|
|
268
314
|
type DevServerStatusRequest = {
|
|
269
315
|
devServer: DevServer;
|
|
@@ -294,6 +340,10 @@ type DomainVerificationRequest = {
|
|
|
294
340
|
verificationCode: string;
|
|
295
341
|
createdAt: string;
|
|
296
342
|
};
|
|
343
|
+
type ExecAwaitRequest = {
|
|
344
|
+
command: string;
|
|
345
|
+
terminal?: (string) | null;
|
|
346
|
+
};
|
|
297
347
|
type ExecRequest = {
|
|
298
348
|
devServer: DevServer;
|
|
299
349
|
command: string;
|
|
@@ -329,6 +379,33 @@ type FileReadContent = {
|
|
|
329
379
|
kind: 'directory';
|
|
330
380
|
};
|
|
331
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
|
+
};
|
|
332
409
|
type FreestyleCloudstateDeployConfiguration = {
|
|
333
410
|
/**
|
|
334
411
|
* ID of the project to deploy, if not provided will create a new project
|
|
@@ -665,6 +742,10 @@ type PortConfig = {
|
|
|
665
742
|
port: number;
|
|
666
743
|
targetPort: number;
|
|
667
744
|
};
|
|
745
|
+
type PortMapping = {
|
|
746
|
+
port: number;
|
|
747
|
+
targetPort: number;
|
|
748
|
+
};
|
|
668
749
|
type ReadFileEphemeralDevServerResponses = {
|
|
669
750
|
id: string;
|
|
670
751
|
isNew: boolean;
|
|
@@ -680,7 +761,7 @@ type ReadFileEphemeralDevServerResponses = {
|
|
|
680
761
|
id: string;
|
|
681
762
|
isNew: boolean;
|
|
682
763
|
} | InternalServerError;
|
|
683
|
-
type
|
|
764
|
+
type RepositoryInfoRaw = {
|
|
684
765
|
id: string;
|
|
685
766
|
name?: (string) | null;
|
|
686
767
|
accountId: string;
|
|
@@ -696,6 +777,9 @@ type RepositoryMetadata = {
|
|
|
696
777
|
};
|
|
697
778
|
defaultBranch: string;
|
|
698
779
|
};
|
|
780
|
+
type ResizeVmRequest = {
|
|
781
|
+
sizeMb: number;
|
|
782
|
+
};
|
|
699
783
|
type RevokeGitTokenRequest = {
|
|
700
784
|
tokenId: string;
|
|
701
785
|
};
|
|
@@ -719,6 +803,11 @@ type Signature = {
|
|
|
719
803
|
name: string;
|
|
720
804
|
email: string;
|
|
721
805
|
};
|
|
806
|
+
type StartVmRequest = {
|
|
807
|
+
idleTimeoutSeconds?: (number) | null;
|
|
808
|
+
readySignalTimeoutSeconds?: (number) | null;
|
|
809
|
+
waitForReadySignal?: (boolean) | null;
|
|
810
|
+
};
|
|
722
811
|
type TagDetails = {
|
|
723
812
|
name: string;
|
|
724
813
|
target: string;
|
|
@@ -775,10 +864,30 @@ type TreeObject = {
|
|
|
775
864
|
*/
|
|
776
865
|
sha: string;
|
|
777
866
|
};
|
|
867
|
+
type UpdateDevServerConfigRequest = DevServerConfiguration & {
|
|
868
|
+
branch?: (string) | null;
|
|
869
|
+
};
|
|
778
870
|
type UpdatePermissionRequest = {
|
|
779
871
|
permission: AccessLevel;
|
|
780
872
|
};
|
|
781
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';
|
|
888
|
+
type WriteFileRequest = {
|
|
889
|
+
content: string;
|
|
890
|
+
};
|
|
782
891
|
type HandleDeployCloudstateData = {
|
|
783
892
|
body: FreestyleCloudstateDeployRequest;
|
|
784
893
|
};
|
|
@@ -803,10 +912,11 @@ type HandleListRecordsError = ({
|
|
|
803
912
|
type HandleCreateRecordData = {
|
|
804
913
|
body: CreateRecordParams;
|
|
805
914
|
};
|
|
806
|
-
type HandleCreateRecordResponse = (
|
|
807
|
-
record: DnsRecord;
|
|
808
|
-
});
|
|
915
|
+
type HandleCreateRecordResponse = (CreateRecordResponse);
|
|
809
916
|
type HandleCreateRecordError = ({
|
|
917
|
+
domain: string;
|
|
918
|
+
account_id: string;
|
|
919
|
+
} | {
|
|
810
920
|
message: string;
|
|
811
921
|
});
|
|
812
922
|
type HandleDeleteRecordData = {
|
|
@@ -815,11 +925,13 @@ type HandleDeleteRecordData = {
|
|
|
815
925
|
record: DnsRecord;
|
|
816
926
|
};
|
|
817
927
|
};
|
|
818
|
-
type HandleDeleteRecordResponse = (
|
|
819
|
-
message: string;
|
|
820
|
-
});
|
|
928
|
+
type HandleDeleteRecordResponse = (DeleteRecordResponse);
|
|
821
929
|
type HandleDeleteRecordError = ({
|
|
822
|
-
|
|
930
|
+
domain: string;
|
|
931
|
+
account_id: string;
|
|
932
|
+
} | {
|
|
933
|
+
domain: string;
|
|
934
|
+
name: string;
|
|
823
935
|
});
|
|
824
936
|
type HandleVerifyWildcardData = {
|
|
825
937
|
path: {
|
|
@@ -929,6 +1041,8 @@ type HandleEphemeralDevServerResponse = ({
|
|
|
929
1041
|
installCommandRunning: boolean;
|
|
930
1042
|
mcpEphemeralUrl?: (string) | null;
|
|
931
1043
|
ephemeralUrl?: (string) | null;
|
|
1044
|
+
vmId?: (string) | null;
|
|
1045
|
+
baseId?: (string) | null;
|
|
932
1046
|
});
|
|
933
1047
|
type HandleEphemeralDevServerError = (InternalServerError);
|
|
934
1048
|
type HandleExecOnEphemeralDevServerData = {
|
|
@@ -986,6 +1100,20 @@ type HandleGitCommitPushResponse = ({
|
|
|
986
1100
|
isNew: boolean;
|
|
987
1101
|
});
|
|
988
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);
|
|
989
1117
|
type HandleShutdownDevServerData = {
|
|
990
1118
|
body: ShutdownDevServerRequest;
|
|
991
1119
|
};
|
|
@@ -1216,6 +1344,7 @@ type HandleCreateRepoData = {
|
|
|
1216
1344
|
* Import static content with an initial commit. Cannot be used with `source`.
|
|
1217
1345
|
*/
|
|
1218
1346
|
import?: CreateRepoImport;
|
|
1347
|
+
devServers?: DevServerConfiguration;
|
|
1219
1348
|
};
|
|
1220
1349
|
};
|
|
1221
1350
|
type HandleCreateRepoResponse = (CreateRepositoryResponseSuccess);
|
|
@@ -1243,6 +1372,49 @@ type HandleSetDefaultBranchData = {
|
|
|
1243
1372
|
};
|
|
1244
1373
|
type HandleSetDefaultBranchResponse = (SetDefaultBranchResponse);
|
|
1245
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);
|
|
1246
1418
|
type GetGithubSyncData = {
|
|
1247
1419
|
path: {
|
|
1248
1420
|
/**
|
|
@@ -1282,7 +1454,7 @@ type HandleGetRepoInfoData = {
|
|
|
1282
1454
|
repo: string;
|
|
1283
1455
|
};
|
|
1284
1456
|
};
|
|
1285
|
-
type HandleGetRepoInfoResponse = (
|
|
1457
|
+
type HandleGetRepoInfoResponse = (RepositoryInfoRaw);
|
|
1286
1458
|
type HandleGetRepoInfoError = (unknown);
|
|
1287
1459
|
type HandleDeleteRepoData = {
|
|
1288
1460
|
path: {
|
|
@@ -1547,6 +1719,146 @@ type HandleGetLogsData = {
|
|
|
1547
1719
|
};
|
|
1548
1720
|
type HandleGetLogsResponse = (FreestyleGetLogsResponse);
|
|
1549
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
|
+
};
|
|
1550
1862
|
type HandleDeployWebData = {
|
|
1551
1863
|
body: FreestyleDeployWebPayload;
|
|
1552
1864
|
};
|
|
@@ -1583,4 +1895,4 @@ type HandleGetWebDeployDetailsData = {
|
|
|
1583
1895
|
};
|
|
1584
1896
|
};
|
|
1585
1897
|
|
|
1586
|
-
export type { CommitTree 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, CommitList as Y, CommitObject as Z, CommitParent as _, FreestyleExecuteScriptResultSuccess as a, Signature as a$, ConfigureGithubSyncRequest as a0, CreateDomainMappingRequest as a1, CreateRecordParams as a2, type as a3, CreateRepoRequest as a4, CreateRepositoryRequest 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, type2 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, PortConfig as aU, ReadFileEphemeralDevServerResponses 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, HandleGetExecuteRunData as b$, TagDetails as b0, TagObject as b1, TagTarget as b2, TreeEntry as b3, type3 as b4, TreeObject as b5, UpdatePermissionRequest as b6, Visibility as b7, HandleDeployCloudstateData as b8, HandleDeployCloudstateResponse as b9, HandleDeleteDomainVerificationError as bA, HandleEphemeralDevServerData as bB, HandleEphemeralDevServerResponse as bC, HandleEphemeralDevServerError as bD, HandleExecOnEphemeralDevServerData as bE, HandleExecOnEphemeralDevServerResponse as bF, HandleExecOnEphemeralDevServerError as bG, HandleWriteFileFromEphemeralDevServerData as bH, HandleWriteFileFromEphemeralDevServerResponse as bI, HandleWriteFileFromEphemeralDevServerError as bJ, HandleReadFileFromEphemeralDevServerData as bK, HandleReadFileFromEphemeralDevServerResponse as bL, HandleReadFileFromEphemeralDevServerError as bM, HandleGitCommitPushData as bN, HandleGitCommitPushResponse as bO, HandleGitCommitPushError as bP, HandleShutdownDevServerData as bQ, HandleShutdownDevServerResponse as bR, HandleShutdownDevServerError as bS, HandleDevServerStatusData as bT, HandleDevServerStatusResponse as bU, HandleDevServerStatusError as bV, HandleWatchDevServerFilesData as bW, HandleWatchDevServerFilesResponse as bX, HandleWatchDevServerFilesError as bY, HandleListExecuteRunsData as bZ, HandleListExecuteRunsError 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, HandleVerifyWildcardData as bm, HandleVerifyWildcardError as bn, HandleListDomainsData as bo, HandleListDomainsError as bp, HandleListDomainMappingsError as bq, HandleInsertDomainMappingData as br, HandleInsertDomainMappingError as bs, HandleDeleteDomainMappingData as bt, HandleDeleteDomainMappingError as bu, HandleListDomainVerificationRequestsError as bv, HandleVerifyDomainData as bw, HandleCreateDomainVerificationData as bx, HandleCreateDomainVerificationError as by, HandleDeleteDomainVerificationData as bz, FreestyleDeployWebSuccessResponseV2 as c, HandleListCommitsData as c$, HandleGetExecuteRunError as c0, HandleExecuteScriptData as c1, HandleExecuteScriptResponse as c2, HandleExecuteScriptError as c3, HandleListIdentitiesData as c4, HandleListIdentitiesResponse as c5, HandleListIdentitiesError as c6, HandleCreateIdentityResponse as c7, HandleCreateIdentityError as c8, HandleDeleteIdentityData as c9, HandleCreateRepoData as cA, HandleCreateRepoResponse as cB, HandleCreateRepoError as cC, HandleGetDefaultBranchData as cD, HandleGetDefaultBranchResponse as cE, HandleGetDefaultBranchError as cF, HandleSetDefaultBranchData as cG, HandleSetDefaultBranchResponse as cH, HandleSetDefaultBranchError as cI, GetGithubSyncData as cJ, GetGithubSyncError as cK, ConfigureGithubSyncData as cL, ConfigureGithubSyncResponse as cM, ConfigureGithubSyncError as cN, RemoveGithubSyncData as cO, RemoveGithubSyncResponse as cP, RemoveGithubSyncError as cQ, HandleGetRepoInfoData as cR, HandleGetRepoInfoResponse as cS, HandleGetRepoInfoError as cT, HandleDeleteRepoData as cU, HandleDeleteRepoError as cV, HandleGetContentsData as cW, HandleGetContentsError as cX, HandleGetBlobData as cY, HandleGetBlobResponse as cZ, HandleGetBlobError as c_, HandleDeleteIdentityError as ca, HandleListPermissionsData as cb, HandleListPermissionsResponse as cc, HandleListPermissionsError as cd, HandleDescribePermissionData as ce, HandleDescribePermissionResponse as cf, HandleDescribePermissionError as cg, HandleGrantPermissionData as ch, HandleGrantPermissionError as ci, HandleRevokePermissionData as cj, HandleRevokePermissionResponse as ck, HandleRevokePermissionError as cl, HandleUpdatePermissionData as cm, HandleUpdatePermissionResponse as cn, HandleUpdatePermissionError as co, HandleListGitTokensData as cp, HandleListGitTokensResponse as cq, HandleListGitTokensError as cr, HandleCreateGitTokenData as cs, HandleCreateGitTokenResponse as ct, HandleCreateGitTokenError as cu, HandleRevokeGitTokenData as cv, HandleRevokeGitTokenResponse as cw, HandleRevokeGitTokenError as cx, HandleListRepositoriesData as cy, HandleListRepositoriesError as cz, FreestyleCloudstateDeployRequest as d, HandleListCommitsResponse as d0, HandleListCommitsError as d1, HandleGetCommitData as d2, HandleGetCommitResponse as d3, HandleGetCommitError as d4, HandleGetRefBranchData as d5, HandleGetRefBranchResponse as d6, HandleGetRefBranchError as d7, HandleGetRefTagData as d8, HandleGetRefTagResponse as d9, HandleDeployWebV2Data as dA, HandleDeployWebV2Response as dB, HandleDeployWebV2Error as dC, HandleListWebDeploysData as dD, HandleListWebDeploysError as dE, HandleGetWebDeployDetailsData as dF, HandleGetRefTagError as da, HandleGetTagData as db, HandleGetTagResponse as dc, HandleGetTagError as dd, HandleGetTreeData as de, HandleGetTreeResponse as df, HandleGetTreeError as dg, HandleDownloadTarballData as dh, HandleDownloadTarballResponse as di, HandleDownloadTarballError as dj, HandleListGitTriggersData as dk, HandleListGitTriggersError as dl, HandleCreateGitTriggerData as dm, HandleCreateGitTriggerError as dn, HandleDeleteGitTriggerData as dp, HandleDeleteGitTriggerResponse as dq, HandleDeleteGitTriggerError as dr, HandleDownloadZipData as ds, HandleDownloadZipResponse as dt, HandleDownloadZipError as du, HandleGetLogsData as dv, HandleGetLogsError as dw, HandleDeployWebData as dx, HandleDeployWebResponse as dy, HandleDeployWebError 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 };
|
package/dist/utils/inde.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { D as DeploymentSource } from '../types.gen
|
|
1
|
+
import { D as DeploymentSource } from '../types.gen-DKjMRuu5.js';
|
|
2
2
|
|
|
3
3
|
declare const prepareDirForDeployment: (directory: string) => Promise<DeploymentSource>;
|
|
4
4
|
declare const prepareDirForDeploymentSync: (directory: string) => DeploymentSource;
|
package/dist/utils/inde.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { D as DeploymentSource } from '../types.gen
|
|
1
|
+
import { D as DeploymentSource } from '../types.gen-DKjMRuu5.js';
|
|
2
2
|
|
|
3
3
|
declare const prepareDirForDeployment: (directory: string) => Promise<DeploymentSource>;
|
|
4
4
|
declare const prepareDirForDeploymentSync: (directory: string) => DeploymentSource;
|
package/dist/utils/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { D as DeploymentSource } from '../types.gen
|
|
1
|
+
import { D as DeploymentSource } from '../types.gen-DKjMRuu5.js';
|
|
2
2
|
|
|
3
3
|
declare const prepareDirForDeployment: (directory: string) => Promise<DeploymentSource>;
|
|
4
4
|
declare const prepareDirForDeploymentSync: (directory: string) => DeploymentSource;
|
package/dist/utils/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { D as DeploymentSource } from '../types.gen
|
|
1
|
+
import { D as DeploymentSource } from '../types.gen-DKjMRuu5.js';
|
|
2
2
|
|
|
3
3
|
declare const prepareDirForDeployment: (directory: string) => Promise<DeploymentSource>;
|
|
4
4
|
declare const prepareDirForDeploymentSync: (directory: string) => DeploymentSource;
|