@agentuity/sandbox 3.0.12 → 3.1.1

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 (122) hide show
  1. package/AGENTS.md +3 -3
  2. package/dist/api-reference.d.ts +1221 -0
  3. package/dist/api-reference.d.ts.map +1 -0
  4. package/dist/api-reference.js +1046 -0
  5. package/dist/api-reference.js.map +1 -0
  6. package/dist/base64.d.ts +2 -0
  7. package/dist/base64.d.ts.map +1 -0
  8. package/dist/base64.js +14 -0
  9. package/dist/base64.js.map +1 -0
  10. package/dist/client.d.ts +431 -0
  11. package/dist/client.d.ts.map +1 -0
  12. package/dist/client.js +632 -0
  13. package/dist/client.js.map +1 -0
  14. package/dist/create.d.ts +203 -0
  15. package/dist/create.d.ts.map +1 -0
  16. package/dist/create.js +235 -0
  17. package/dist/create.js.map +1 -0
  18. package/dist/destroy.d.ts +23 -0
  19. package/dist/destroy.d.ts.map +1 -0
  20. package/dist/destroy.js +30 -0
  21. package/dist/destroy.js.map +1 -0
  22. package/dist/disk-checkpoint.d.ts +108 -0
  23. package/dist/disk-checkpoint.d.ts.map +1 -0
  24. package/dist/disk-checkpoint.js +124 -0
  25. package/dist/disk-checkpoint.js.map +1 -0
  26. package/dist/events.d.ts +56 -0
  27. package/dist/events.d.ts.map +1 -0
  28. package/dist/events.js +54 -0
  29. package/dist/events.js.map +1 -0
  30. package/dist/execute.d.ts +99 -0
  31. package/dist/execute.d.ts.map +1 -0
  32. package/dist/execute.js +138 -0
  33. package/dist/execute.js.map +1 -0
  34. package/dist/execution.d.ts +150 -0
  35. package/dist/execution.d.ts.map +1 -0
  36. package/dist/execution.js +120 -0
  37. package/dist/execution.js.map +1 -0
  38. package/dist/files.d.ts +283 -0
  39. package/dist/files.d.ts.map +1 -0
  40. package/dist/files.js +471 -0
  41. package/dist/files.js.map +1 -0
  42. package/dist/get.d.ts +288 -0
  43. package/dist/get.d.ts.map +1 -0
  44. package/dist/get.js +256 -0
  45. package/dist/get.js.map +1 -0
  46. package/dist/getStatus.d.ts +23 -0
  47. package/dist/getStatus.d.ts.map +1 -0
  48. package/dist/getStatus.js +53 -0
  49. package/dist/getStatus.js.map +1 -0
  50. package/dist/index.d.ts +42 -1
  51. package/dist/index.d.ts.map +1 -1
  52. package/dist/index.js +22 -1
  53. package/dist/index.js.map +1 -1
  54. package/dist/job.d.ts +227 -0
  55. package/dist/job.d.ts.map +1 -0
  56. package/dist/job.js +109 -0
  57. package/dist/job.js.map +1 -0
  58. package/dist/list.d.ts +330 -0
  59. package/dist/list.d.ts.map +1 -0
  60. package/dist/list.js +209 -0
  61. package/dist/list.js.map +1 -0
  62. package/dist/pause.d.ts +39 -0
  63. package/dist/pause.d.ts.map +1 -0
  64. package/dist/pause.js +48 -0
  65. package/dist/pause.js.map +1 -0
  66. package/dist/resolve.d.ts +75 -0
  67. package/dist/resolve.d.ts.map +1 -0
  68. package/dist/resolve.js +76 -0
  69. package/dist/resolve.js.map +1 -0
  70. package/dist/resume.d.ts +23 -0
  71. package/dist/resume.d.ts.map +1 -0
  72. package/dist/resume.js +30 -0
  73. package/dist/resume.js.map +1 -0
  74. package/dist/run.d.ts +73 -0
  75. package/dist/run.d.ts.map +1 -0
  76. package/dist/run.js +568 -0
  77. package/dist/run.js.map +1 -0
  78. package/dist/runtime.d.ts +94 -0
  79. package/dist/runtime.d.ts.map +1 -0
  80. package/dist/runtime.js +82 -0
  81. package/dist/runtime.js.map +1 -0
  82. package/dist/snapshot-build.d.ts +48 -0
  83. package/dist/snapshot-build.d.ts.map +1 -0
  84. package/dist/snapshot-build.js +72 -0
  85. package/dist/snapshot-build.js.map +1 -0
  86. package/dist/snapshot.d.ts +596 -0
  87. package/dist/snapshot.d.ts.map +1 -0
  88. package/dist/snapshot.js +612 -0
  89. package/dist/snapshot.js.map +1 -0
  90. package/dist/types.d.ts +1010 -0
  91. package/dist/types.d.ts.map +1 -0
  92. package/dist/types.js +853 -0
  93. package/dist/types.js.map +1 -0
  94. package/dist/util.d.ts +296 -0
  95. package/dist/util.d.ts.map +1 -0
  96. package/dist/util.js +234 -0
  97. package/dist/util.js.map +1 -0
  98. package/package.json +7 -2
  99. package/src/api-reference.ts +1094 -0
  100. package/src/base64.ts +14 -0
  101. package/src/client.ts +998 -0
  102. package/src/create.ts +273 -0
  103. package/src/destroy.ts +43 -0
  104. package/src/disk-checkpoint.ts +184 -0
  105. package/src/events.ts +72 -0
  106. package/src/execute.ts +167 -0
  107. package/src/execution.ts +152 -0
  108. package/src/files.ts +637 -0
  109. package/src/get.ts +291 -0
  110. package/src/getStatus.ts +72 -0
  111. package/src/index.ts +252 -18
  112. package/src/job.ts +161 -0
  113. package/src/list.ts +239 -0
  114. package/src/pause.ts +75 -0
  115. package/src/resolve.ts +96 -0
  116. package/src/resume.ts +41 -0
  117. package/src/run.ts +783 -0
  118. package/src/runtime.ts +106 -0
  119. package/src/snapshot-build.ts +94 -0
  120. package/src/snapshot.ts +791 -0
  121. package/src/types.ts +1033 -0
  122. package/src/util.ts +280 -0
@@ -0,0 +1,1221 @@
1
+ declare const service: {
2
+ name: string;
3
+ slug: string;
4
+ description: string;
5
+ hasPublicEndpoints: boolean;
6
+ endpoints: ({
7
+ id: string;
8
+ title: string;
9
+ sectionTitle: string;
10
+ method: string;
11
+ path: string;
12
+ description: string;
13
+ pathParams: never[];
14
+ queryParams: {
15
+ name: string;
16
+ type: string;
17
+ description: string;
18
+ required: boolean;
19
+ }[];
20
+ requestBody: {
21
+ description: string;
22
+ fields: {
23
+ schema: import("zod").ZodObject<{
24
+ projectId: import("zod").ZodOptional<import("zod").ZodString>;
25
+ runtime: import("zod").ZodOptional<import("zod").ZodString>;
26
+ runtimeId: import("zod").ZodOptional<import("zod").ZodString>;
27
+ name: import("zod").ZodOptional<import("zod").ZodString>;
28
+ description: import("zod").ZodOptional<import("zod").ZodString>;
29
+ resources: import("zod").ZodOptional<import("zod").ZodObject<{
30
+ memory: import("zod").ZodOptional<import("zod").ZodString>;
31
+ cpu: import("zod").ZodOptional<import("zod").ZodString>;
32
+ disk: import("zod").ZodOptional<import("zod").ZodString>;
33
+ }, import("zod/v4/core").$strip>>;
34
+ env: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
35
+ network: import("zod").ZodOptional<import("zod").ZodObject<{
36
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
37
+ port: import("zod").ZodOptional<import("zod").ZodNumber>;
38
+ }, import("zod/v4/core").$strip>>;
39
+ stream: import("zod").ZodOptional<import("zod").ZodObject<{
40
+ stdout: import("zod").ZodOptional<import("zod").ZodString>;
41
+ stderr: import("zod").ZodOptional<import("zod").ZodString>;
42
+ stdin: import("zod").ZodOptional<import("zod").ZodString>;
43
+ timestamps: import("zod").ZodOptional<import("zod").ZodBoolean>;
44
+ }, import("zod/v4/core").$strip>>;
45
+ timeout: import("zod").ZodOptional<import("zod").ZodObject<{
46
+ idle: import("zod").ZodOptional<import("zod").ZodString>;
47
+ execution: import("zod").ZodOptional<import("zod").ZodString>;
48
+ paused: import("zod").ZodOptional<import("zod").ZodString>;
49
+ }, import("zod/v4/core").$strip>>;
50
+ command: import("zod").ZodOptional<import("zod").ZodObject<{
51
+ exec: import("zod").ZodArray<import("zod").ZodString>;
52
+ files: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
53
+ path: import("zod").ZodString;
54
+ content: import("zod").ZodString;
55
+ }, import("zod/v4/core").$strip>>>;
56
+ mode: import("zod").ZodOptional<import("zod").ZodEnum<{
57
+ interactive: "interactive";
58
+ oneshot: "oneshot";
59
+ }>>;
60
+ }, import("zod/v4/core").$strip>>;
61
+ files: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
62
+ path: import("zod").ZodString;
63
+ content: import("zod").ZodString;
64
+ }, import("zod/v4/core").$strip>>>;
65
+ snapshot: import("zod").ZodOptional<import("zod").ZodString>;
66
+ dependencies: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
67
+ packages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
68
+ metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
69
+ scopes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
70
+ }, import("zod/v4/core").$strip>;
71
+ omit?: undefined;
72
+ };
73
+ };
74
+ responseDescription: string;
75
+ responseFields: {
76
+ schema: import("zod").ZodObject<{
77
+ sandboxId: import("zod").ZodString;
78
+ status: import("zod").ZodEnum<{
79
+ creating: "creating";
80
+ failed: "failed";
81
+ idle: "idle";
82
+ paused: "paused";
83
+ running: "running";
84
+ stopping: "stopping";
85
+ suspended: "suspended";
86
+ terminated: "terminated";
87
+ }>;
88
+ executionId: import("zod").ZodOptional<import("zod").ZodString>;
89
+ url: import("zod").ZodOptional<import("zod").ZodString>;
90
+ stdoutStreamId: import("zod").ZodOptional<import("zod").ZodString>;
91
+ stdoutStreamUrl: import("zod").ZodOptional<import("zod").ZodString>;
92
+ stderrStreamId: import("zod").ZodOptional<import("zod").ZodString>;
93
+ stderrStreamUrl: import("zod").ZodOptional<import("zod").ZodString>;
94
+ auditStreamId: import("zod").ZodOptional<import("zod").ZodString>;
95
+ auditStreamUrl: import("zod").ZodOptional<import("zod").ZodString>;
96
+ }, import("zod/v4/core").$strip>;
97
+ stripRequired?: undefined;
98
+ };
99
+ statuses: {
100
+ code: number;
101
+ description: string;
102
+ }[];
103
+ examplePath: string;
104
+ exampleBody: {
105
+ name: string;
106
+ runtime: string;
107
+ resources: {
108
+ memory: number;
109
+ };
110
+ env: {
111
+ NODE_ENV: string;
112
+ OLD_VAR?: undefined;
113
+ };
114
+ command?: undefined;
115
+ recursive?: undefined;
116
+ path?: undefined;
117
+ tag?: undefined;
118
+ sizeBytes?: undefined;
119
+ fileCount?: undefined;
120
+ files?: undefined;
121
+ };
122
+ exampleHeaders?: undefined;
123
+ } | {
124
+ id: string;
125
+ title: string;
126
+ sectionTitle: string;
127
+ method: string;
128
+ path: string;
129
+ description: string;
130
+ pathParams: never[];
131
+ queryParams: {
132
+ name: string;
133
+ type: string;
134
+ description: string;
135
+ required: boolean;
136
+ }[];
137
+ requestBody: null;
138
+ responseDescription: string;
139
+ responseFields: {
140
+ schema: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
141
+ success: import("zod").ZodLiteral<false>;
142
+ message: import("zod").ZodString;
143
+ code: import("zod").ZodOptional<import("zod").ZodString>;
144
+ }, import("zod/v4/core").$strip>, import("zod").ZodObject<{
145
+ success: import("zod").ZodLiteral<true>;
146
+ data: import("zod").ZodObject<{
147
+ sandboxes: import("zod").ZodArray<import("zod").ZodObject<{
148
+ sandboxId: import("zod").ZodString;
149
+ identifier: import("zod").ZodOptional<import("zod").ZodString>;
150
+ name: import("zod").ZodOptional<import("zod").ZodString>;
151
+ description: import("zod").ZodOptional<import("zod").ZodString>;
152
+ status: import("zod").ZodEnum<{
153
+ creating: "creating";
154
+ deleted: "deleted";
155
+ failed: "failed";
156
+ idle: "idle";
157
+ paused: "paused";
158
+ running: "running";
159
+ stopping: "stopping";
160
+ suspended: "suspended";
161
+ terminated: "terminated";
162
+ }>;
163
+ mode: import("zod").ZodOptional<import("zod").ZodString>;
164
+ createdAt: import("zod").ZodString;
165
+ region: import("zod").ZodOptional<import("zod").ZodString>;
166
+ runtime: import("zod").ZodOptional<import("zod").ZodObject<{
167
+ id: import("zod").ZodString;
168
+ name: import("zod").ZodString;
169
+ iconUrl: import("zod").ZodOptional<import("zod").ZodString>;
170
+ brandColor: import("zod").ZodOptional<import("zod").ZodString>;
171
+ tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
172
+ }, import("zod/v4/core").$strip>>;
173
+ snapshot: import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
174
+ id: import("zod").ZodString;
175
+ name: import("zod").ZodOptional<import("zod").ZodString>;
176
+ tag: import("zod").ZodOptional<import("zod").ZodString>;
177
+ fullName: import("zod").ZodOptional<import("zod").ZodString>;
178
+ public: import("zod").ZodLiteral<true>;
179
+ org: import("zod").ZodObject<{
180
+ id: import("zod").ZodString;
181
+ name: import("zod").ZodString;
182
+ slug: import("zod").ZodOptional<import("zod").ZodString>;
183
+ }, import("zod/v4/core").$strip>;
184
+ }, import("zod/v4/core").$strip>, import("zod").ZodObject<{
185
+ id: import("zod").ZodString;
186
+ name: import("zod").ZodOptional<import("zod").ZodString>;
187
+ tag: import("zod").ZodOptional<import("zod").ZodString>;
188
+ fullName: import("zod").ZodOptional<import("zod").ZodString>;
189
+ public: import("zod").ZodLiteral<false>;
190
+ user: import("zod").ZodObject<{
191
+ id: import("zod").ZodString;
192
+ firstName: import("zod").ZodOptional<import("zod").ZodString>;
193
+ lastName: import("zod").ZodOptional<import("zod").ZodString>;
194
+ }, import("zod/v4/core").$strip>;
195
+ }, import("zod/v4/core").$strip>]>>;
196
+ executions: import("zod").ZodNumber;
197
+ stdoutStreamUrl: import("zod").ZodOptional<import("zod").ZodString>;
198
+ stderrStreamUrl: import("zod").ZodOptional<import("zod").ZodString>;
199
+ auditStreamId: import("zod").ZodOptional<import("zod").ZodString>;
200
+ auditStreamUrl: import("zod").ZodOptional<import("zod").ZodString>;
201
+ networkEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
202
+ networkPort: import("zod").ZodOptional<import("zod").ZodNumber>;
203
+ url: import("zod").ZodOptional<import("zod").ZodString>;
204
+ org: import("zod").ZodObject<{
205
+ id: import("zod").ZodString;
206
+ name: import("zod").ZodString;
207
+ }, import("zod/v4/core").$strip>;
208
+ timeout: import("zod").ZodOptional<import("zod").ZodObject<{
209
+ idle: import("zod").ZodOptional<import("zod").ZodString>;
210
+ execution: import("zod").ZodOptional<import("zod").ZodString>;
211
+ paused: import("zod").ZodOptional<import("zod").ZodString>;
212
+ }, import("zod/v4/core").$strip>>;
213
+ command: import("zod").ZodOptional<import("zod").ZodObject<{
214
+ exec: import("zod").ZodArray<import("zod").ZodString>;
215
+ mode: import("zod").ZodOptional<import("zod").ZodEnum<{
216
+ interactive: "interactive";
217
+ oneshot: "oneshot";
218
+ }>>;
219
+ }, import("zod/v4/core").$strip>>;
220
+ }, import("zod/v4/core").$strip>>;
221
+ total: import("zod").ZodNumber;
222
+ }, import("zod/v4/core").$strip>;
223
+ }, import("zod/v4/core").$strip>], "success">;
224
+ stripRequired?: undefined;
225
+ };
226
+ statuses: {
227
+ code: number;
228
+ description: string;
229
+ }[];
230
+ examplePath: string;
231
+ exampleHeaders?: undefined;
232
+ exampleBody?: undefined;
233
+ } | {
234
+ id: string;
235
+ title: string;
236
+ sectionTitle: string;
237
+ method: string;
238
+ path: string;
239
+ description: string;
240
+ pathParams: {
241
+ name: string;
242
+ type: string;
243
+ description: string;
244
+ required: boolean;
245
+ }[];
246
+ queryParams: {
247
+ name: string;
248
+ type: string;
249
+ description: string;
250
+ required: boolean;
251
+ }[];
252
+ requestBody: null;
253
+ responseDescription: string;
254
+ statuses: {
255
+ code: number;
256
+ description: string;
257
+ }[];
258
+ examplePath: string;
259
+ exampleHeaders?: undefined;
260
+ exampleBody?: undefined;
261
+ responseFields?: undefined;
262
+ } | {
263
+ id: string;
264
+ title: string;
265
+ sectionTitle: string;
266
+ method: string;
267
+ path: string;
268
+ description: string;
269
+ pathParams: {
270
+ name: string;
271
+ type: string;
272
+ description: string;
273
+ required: boolean;
274
+ }[];
275
+ queryParams: {
276
+ name: string;
277
+ type: string;
278
+ description: string;
279
+ required: boolean;
280
+ }[];
281
+ requestBody: null;
282
+ responseDescription: string;
283
+ responseFields: {
284
+ schema: import("zod").ZodObject<{
285
+ sandboxId: import("zod").ZodString;
286
+ status: import("zod").ZodString;
287
+ exitCode: import("zod").ZodOptional<import("zod").ZodNumber>;
288
+ }, import("zod/v4/core").$strip>;
289
+ stripRequired: boolean;
290
+ };
291
+ statuses: {
292
+ code: number;
293
+ description: string;
294
+ }[];
295
+ examplePath: string;
296
+ exampleHeaders?: undefined;
297
+ exampleBody?: undefined;
298
+ } | {
299
+ id: string;
300
+ title: string;
301
+ sectionTitle: string;
302
+ method: string;
303
+ path: string;
304
+ description: string;
305
+ pathParams: {
306
+ name: string;
307
+ type: string;
308
+ description: string;
309
+ required: boolean;
310
+ }[];
311
+ queryParams: {
312
+ name: string;
313
+ type: string;
314
+ description: string;
315
+ required: boolean;
316
+ }[];
317
+ requestBody: {
318
+ description: string;
319
+ fields: {
320
+ schema: import("zod").ZodObject<{
321
+ env: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodNullable<import("zod").ZodString>>;
322
+ }, import("zod/v4/core").$strip>;
323
+ omit?: undefined;
324
+ };
325
+ };
326
+ responseDescription: string;
327
+ responseFields: {
328
+ schema: import("zod").ZodObject<{
329
+ env: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>;
330
+ }, import("zod/v4/core").$strip>;
331
+ stripRequired: boolean;
332
+ };
333
+ statuses: {
334
+ code: number;
335
+ description: string;
336
+ }[];
337
+ examplePath: string;
338
+ exampleBody: {
339
+ resources?: undefined;
340
+ env: {
341
+ NODE_ENV: string;
342
+ OLD_VAR: null;
343
+ };
344
+ command?: undefined;
345
+ recursive?: undefined;
346
+ path?: undefined;
347
+ runtime?: undefined;
348
+ tag?: undefined;
349
+ sizeBytes?: undefined;
350
+ fileCount?: undefined;
351
+ files?: undefined;
352
+ name?: undefined;
353
+ };
354
+ exampleHeaders?: undefined;
355
+ } | {
356
+ id: string;
357
+ title: string;
358
+ sectionTitle: string;
359
+ method: string;
360
+ path: string;
361
+ description: string;
362
+ pathParams: {
363
+ name: string;
364
+ type: string;
365
+ description: string;
366
+ required: boolean;
367
+ }[];
368
+ queryParams: {
369
+ name: string;
370
+ type: string;
371
+ description: string;
372
+ required: boolean;
373
+ }[];
374
+ requestBody: {
375
+ description: string;
376
+ fields: {
377
+ schema: import("zod").ZodObject<{
378
+ command: import("zod").ZodArray<import("zod").ZodString>;
379
+ files: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
380
+ path: import("zod").ZodString;
381
+ content: import("zod").ZodString;
382
+ }, import("zod/v4/core").$strip>>>;
383
+ timeout: import("zod").ZodOptional<import("zod").ZodString>;
384
+ stream: import("zod").ZodOptional<import("zod").ZodObject<{
385
+ stdout: import("zod").ZodOptional<import("zod").ZodString>;
386
+ stderr: import("zod").ZodOptional<import("zod").ZodString>;
387
+ timestamps: import("zod").ZodOptional<import("zod").ZodBoolean>;
388
+ }, import("zod/v4/core").$strip>>;
389
+ }, import("zod/v4/core").$strip>;
390
+ omit?: undefined;
391
+ };
392
+ };
393
+ responseDescription: string;
394
+ responseFields: {
395
+ schema: import("zod").ZodObject<{
396
+ executionId: import("zod").ZodString;
397
+ status: import("zod").ZodEnum<{
398
+ cancelled: "cancelled";
399
+ completed: "completed";
400
+ failed: "failed";
401
+ queued: "queued";
402
+ running: "running";
403
+ timeout: "timeout";
404
+ }>;
405
+ exitCode: import("zod").ZodOptional<import("zod").ZodNumber>;
406
+ durationMs: import("zod").ZodOptional<import("zod").ZodNumber>;
407
+ stdoutStreamUrl: import("zod").ZodOptional<import("zod").ZodString>;
408
+ stderrStreamUrl: import("zod").ZodOptional<import("zod").ZodString>;
409
+ outputTruncated: import("zod").ZodOptional<import("zod").ZodBoolean>;
410
+ }, import("zod/v4/core").$strip>;
411
+ stripRequired?: undefined;
412
+ };
413
+ statuses: {
414
+ code: number;
415
+ description: string;
416
+ }[];
417
+ examplePath: string;
418
+ exampleBody: {
419
+ resources?: undefined;
420
+ env?: undefined;
421
+ command: string[];
422
+ recursive?: undefined;
423
+ path?: undefined;
424
+ runtime?: undefined;
425
+ tag?: undefined;
426
+ sizeBytes?: undefined;
427
+ fileCount?: undefined;
428
+ files?: undefined;
429
+ name?: undefined;
430
+ };
431
+ exampleHeaders?: undefined;
432
+ } | {
433
+ id: string;
434
+ title: string;
435
+ sectionTitle: string;
436
+ method: string;
437
+ path: string;
438
+ description: string;
439
+ pathParams: {
440
+ name: string;
441
+ type: string;
442
+ description: string;
443
+ required: boolean;
444
+ }[];
445
+ queryParams: {
446
+ name: string;
447
+ type: string;
448
+ description: string;
449
+ required: boolean;
450
+ }[];
451
+ requestBody: null;
452
+ responseDescription: string;
453
+ responseFields: {
454
+ schema: import("zod").ZodObject<{
455
+ events: import("zod").ZodArray<import("zod").ZodObject<{
456
+ eventId: import("zod").ZodString;
457
+ sandboxId: import("zod").ZodString;
458
+ type: import("zod").ZodString;
459
+ event: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>;
460
+ createdAt: import("zod").ZodString;
461
+ }, import("zod/v4/core").$strip>>;
462
+ }, import("zod/v4/core").$strip>;
463
+ stripRequired?: undefined;
464
+ };
465
+ statuses: {
466
+ code: number;
467
+ description: string;
468
+ }[];
469
+ examplePath: string;
470
+ exampleHeaders?: undefined;
471
+ exampleBody?: undefined;
472
+ } | {
473
+ id: string;
474
+ title: string;
475
+ sectionTitle: string;
476
+ method: string;
477
+ path: string;
478
+ description: string;
479
+ pathParams: {
480
+ name: string;
481
+ type: string;
482
+ description: string;
483
+ required: boolean;
484
+ }[];
485
+ queryParams: {
486
+ name: string;
487
+ type: string;
488
+ description: string;
489
+ required: boolean;
490
+ }[];
491
+ requestBody: {
492
+ description: string;
493
+ fields: {
494
+ schema: import("zod").ZodObject<{
495
+ files: import("zod").ZodArray<import("zod").ZodObject<{
496
+ path: import("zod").ZodString;
497
+ content: import("zod").ZodString;
498
+ }, import("zod/v4/core").$strip>>;
499
+ }, import("zod/v4/core").$strip>;
500
+ omit?: undefined;
501
+ };
502
+ };
503
+ responseDescription: string;
504
+ responseFields: {
505
+ schema: import("zod").ZodObject<{
506
+ filesWritten: import("zod").ZodNumber;
507
+ }, import("zod/v4/core").$strip>;
508
+ stripRequired?: undefined;
509
+ };
510
+ statuses: {
511
+ code: number;
512
+ description: string;
513
+ }[];
514
+ examplePath: string;
515
+ exampleBody: {
516
+ resources?: undefined;
517
+ env?: undefined;
518
+ command?: undefined;
519
+ files: {
520
+ path: string;
521
+ content: string;
522
+ }[];
523
+ recursive?: undefined;
524
+ path?: undefined;
525
+ runtime?: undefined;
526
+ tag?: undefined;
527
+ sizeBytes?: undefined;
528
+ fileCount?: undefined;
529
+ name?: undefined;
530
+ };
531
+ exampleHeaders?: undefined;
532
+ } | {
533
+ id: string;
534
+ title: string;
535
+ sectionTitle: string;
536
+ method: string;
537
+ path: string;
538
+ description: string;
539
+ pathParams: {
540
+ name: string;
541
+ type: string;
542
+ description: string;
543
+ required: boolean;
544
+ }[];
545
+ queryParams: {
546
+ name: string;
547
+ type: string;
548
+ description: string;
549
+ required: boolean;
550
+ }[];
551
+ requestBody: {
552
+ description: string;
553
+ fields: {
554
+ schema: import("zod").ZodObject<{
555
+ path: import("zod").ZodString;
556
+ recursive: import("zod").ZodOptional<import("zod").ZodBoolean>;
557
+ }, import("zod/v4/core").$strip>;
558
+ omit?: undefined;
559
+ };
560
+ };
561
+ responseDescription: string;
562
+ statuses: {
563
+ code: number;
564
+ description: string;
565
+ }[];
566
+ examplePath: string;
567
+ exampleBody: {
568
+ resources?: undefined;
569
+ env?: undefined;
570
+ command?: undefined;
571
+ path: string;
572
+ recursive: boolean;
573
+ runtime?: undefined;
574
+ tag?: undefined;
575
+ sizeBytes?: undefined;
576
+ fileCount?: undefined;
577
+ files?: undefined;
578
+ name?: undefined;
579
+ };
580
+ exampleHeaders?: undefined;
581
+ responseFields?: undefined;
582
+ } | {
583
+ id: string;
584
+ title: string;
585
+ sectionTitle: string;
586
+ method: string;
587
+ path: string;
588
+ description: string;
589
+ pathParams: {
590
+ name: string;
591
+ type: string;
592
+ description: string;
593
+ required: boolean;
594
+ }[];
595
+ queryParams: {
596
+ name: string;
597
+ type: string;
598
+ description: string;
599
+ required: boolean;
600
+ }[];
601
+ requestBody: {
602
+ description: string;
603
+ fields: {
604
+ schema: import("zod").ZodObject<{
605
+ path: import("zod").ZodString;
606
+ }, import("zod/v4/core").$strip>;
607
+ omit?: undefined;
608
+ };
609
+ };
610
+ responseDescription: string;
611
+ statuses: {
612
+ code: number;
613
+ description: string;
614
+ }[];
615
+ examplePath: string;
616
+ exampleBody: {
617
+ resources?: undefined;
618
+ env?: undefined;
619
+ command?: undefined;
620
+ recursive?: undefined;
621
+ path: string;
622
+ runtime?: undefined;
623
+ tag?: undefined;
624
+ sizeBytes?: undefined;
625
+ fileCount?: undefined;
626
+ files?: undefined;
627
+ name?: undefined;
628
+ };
629
+ exampleHeaders?: undefined;
630
+ responseFields?: undefined;
631
+ } | {
632
+ id: string;
633
+ title: string;
634
+ sectionTitle: string;
635
+ method: string;
636
+ path: string;
637
+ description: string;
638
+ pathParams: {
639
+ name: string;
640
+ type: string;
641
+ description: string;
642
+ required: boolean;
643
+ }[];
644
+ queryParams: {
645
+ name: string;
646
+ type: string;
647
+ description: string;
648
+ required: boolean;
649
+ }[];
650
+ requestBody: null;
651
+ responseDescription: string;
652
+ responseFields: {
653
+ schema: import("zod").ZodObject<{
654
+ files: import("zod").ZodArray<import("zod").ZodObject<{
655
+ path: import("zod").ZodString;
656
+ size: import("zod").ZodNumber;
657
+ isDir: import("zod").ZodBoolean;
658
+ isSymlink: import("zod").ZodOptional<import("zod").ZodBoolean>;
659
+ linkTarget: import("zod").ZodOptional<import("zod").ZodString>;
660
+ mode: import("zod").ZodString;
661
+ modTime: import("zod").ZodString;
662
+ }, import("zod/v4/core").$strip>>;
663
+ }, import("zod/v4/core").$strip>;
664
+ stripRequired?: undefined;
665
+ };
666
+ statuses: {
667
+ code: number;
668
+ description: string;
669
+ }[];
670
+ examplePath: string;
671
+ exampleHeaders?: undefined;
672
+ exampleBody?: undefined;
673
+ } | {
674
+ id: string;
675
+ title: string;
676
+ sectionTitle: string;
677
+ method: string;
678
+ path: string;
679
+ description: string;
680
+ pathParams: {
681
+ name: string;
682
+ type: string;
683
+ description: string;
684
+ required: boolean;
685
+ }[];
686
+ queryParams: {
687
+ name: string;
688
+ type: string;
689
+ description: string;
690
+ required: boolean;
691
+ }[];
692
+ requestBody: null;
693
+ responseDescription: string;
694
+ statuses: {
695
+ code: number;
696
+ description: string;
697
+ }[];
698
+ examplePath: string;
699
+ exampleHeaders: {
700
+ 'Content-Type': string;
701
+ };
702
+ exampleBody: string;
703
+ responseFields?: undefined;
704
+ } | {
705
+ exampleHeaders?: undefined;
706
+ id: string;
707
+ title: string;
708
+ sectionTitle: string;
709
+ method: string;
710
+ path: string;
711
+ description: string;
712
+ pathParams: {
713
+ name: string;
714
+ type: string;
715
+ description: string;
716
+ required: boolean;
717
+ }[];
718
+ queryParams: {
719
+ name: string;
720
+ type: string;
721
+ description: string;
722
+ required: boolean;
723
+ }[];
724
+ requestBody: {
725
+ description: string;
726
+ fields: {
727
+ schema: import("zod").ZodObject<{
728
+ name: import("zod").ZodOptional<import("zod").ZodString>;
729
+ description: import("zod").ZodOptional<import("zod").ZodString>;
730
+ tag: import("zod").ZodOptional<import("zod").ZodString>;
731
+ public: import("zod").ZodOptional<import("zod").ZodBoolean>;
732
+ }, import("zod/v4/core").$strip>;
733
+ omit?: undefined;
734
+ };
735
+ };
736
+ responseDescription: string;
737
+ statuses: {
738
+ code: number;
739
+ description: string;
740
+ }[];
741
+ examplePath: string;
742
+ exampleBody: {
743
+ resources?: undefined;
744
+ env?: undefined;
745
+ command?: undefined;
746
+ recursive?: undefined;
747
+ path?: undefined;
748
+ name: string;
749
+ tag: string;
750
+ runtime?: undefined;
751
+ sizeBytes?: undefined;
752
+ fileCount?: undefined;
753
+ files?: undefined;
754
+ };
755
+ responseFields?: undefined;
756
+ } | {
757
+ exampleHeaders?: undefined;
758
+ id: string;
759
+ title: string;
760
+ sectionTitle: string;
761
+ method: string;
762
+ path: string;
763
+ description: string;
764
+ pathParams: never[];
765
+ queryParams: {
766
+ name: string;
767
+ type: string;
768
+ description: string;
769
+ required: boolean;
770
+ }[];
771
+ requestBody: null;
772
+ responseDescription: string;
773
+ responseFields: {
774
+ schema: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
775
+ success: import("zod").ZodLiteral<false>;
776
+ message: import("zod").ZodString;
777
+ code: import("zod").ZodOptional<import("zod").ZodString>;
778
+ }, import("zod/v4/core").$strip>, import("zod").ZodObject<{
779
+ success: import("zod").ZodLiteral<true>;
780
+ data: import("zod").ZodObject<{
781
+ snapshots: import("zod").ZodArray<import("zod").ZodObject<{
782
+ snapshotId: import("zod").ZodString;
783
+ runtimeId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
784
+ name: import("zod").ZodString;
785
+ fullName: import("zod").ZodOptional<import("zod").ZodString>;
786
+ description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
787
+ message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
788
+ tag: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
789
+ sizeBytes: import("zod").ZodNumber;
790
+ fileCount: import("zod").ZodNumber;
791
+ parentSnapshotId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
792
+ public: import("zod").ZodOptional<import("zod").ZodBoolean>;
793
+ orgName: import("zod").ZodOptional<import("zod").ZodString>;
794
+ orgSlug: import("zod").ZodOptional<import("zod").ZodString>;
795
+ org: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
796
+ id: import("zod").ZodString;
797
+ name: import("zod").ZodString;
798
+ slug: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
799
+ }, import("zod/v4/core").$strip>>>;
800
+ user: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
801
+ id: import("zod").ZodString;
802
+ firstName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
803
+ lastName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
804
+ }, import("zod/v4/core").$strip>>>;
805
+ createdAt: import("zod").ZodString;
806
+ downloadUrl: import("zod").ZodOptional<import("zod").ZodString>;
807
+ files: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
808
+ path: import("zod").ZodString;
809
+ size: import("zod").ZodNumber;
810
+ sha256: import("zod").ZodString;
811
+ contentType: import("zod").ZodString;
812
+ mode: import("zod").ZodNumber;
813
+ }, import("zod/v4/core").$strip>>>>;
814
+ userMetadata: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>>;
815
+ }, import("zod/v4/core").$strip>>;
816
+ total: import("zod").ZodNumber;
817
+ }, import("zod/v4/core").$strip>;
818
+ }, import("zod/v4/core").$strip>], "success">;
819
+ stripRequired?: undefined;
820
+ };
821
+ statuses: {
822
+ code: number;
823
+ description: string;
824
+ }[];
825
+ examplePath: string;
826
+ exampleBody?: undefined;
827
+ } | {
828
+ exampleHeaders?: undefined;
829
+ id: string;
830
+ title: string;
831
+ sectionTitle: string;
832
+ method: string;
833
+ path: string;
834
+ description: string;
835
+ pathParams: {
836
+ name: string;
837
+ type: string;
838
+ description: string;
839
+ required: boolean;
840
+ }[];
841
+ queryParams: {
842
+ name: string;
843
+ type: string;
844
+ description: string;
845
+ required: boolean;
846
+ }[];
847
+ requestBody: {
848
+ description: string;
849
+ fields: {
850
+ schema: import("zod").ZodObject<{
851
+ tag: import("zod").ZodNullable<import("zod").ZodString>;
852
+ }, import("zod/v4/core").$strip>;
853
+ omit?: undefined;
854
+ };
855
+ };
856
+ responseDescription: string;
857
+ statuses: {
858
+ code: number;
859
+ description: string;
860
+ }[];
861
+ examplePath: string;
862
+ exampleBody: {
863
+ resources?: undefined;
864
+ env?: undefined;
865
+ command?: undefined;
866
+ recursive?: undefined;
867
+ path?: undefined;
868
+ tag: string;
869
+ runtime?: undefined;
870
+ sizeBytes?: undefined;
871
+ fileCount?: undefined;
872
+ files?: undefined;
873
+ name?: undefined;
874
+ };
875
+ responseFields?: undefined;
876
+ } | {
877
+ exampleHeaders?: undefined;
878
+ id: string;
879
+ title: string;
880
+ sectionTitle: string;
881
+ method: string;
882
+ path: string;
883
+ description: string;
884
+ pathParams: never[];
885
+ queryParams: {
886
+ name: string;
887
+ type: string;
888
+ description: string;
889
+ required: boolean;
890
+ }[];
891
+ requestBody: null;
892
+ responseDescription: string;
893
+ responseFields: {
894
+ schema: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
895
+ success: import("zod").ZodLiteral<false>;
896
+ message: import("zod").ZodString;
897
+ code: import("zod").ZodOptional<import("zod").ZodString>;
898
+ }, import("zod/v4/core").$strip>, import("zod").ZodObject<{
899
+ success: import("zod").ZodLiteral<true>;
900
+ data: import("zod").ZodObject<{
901
+ snapshots: import("zod").ZodArray<import("zod").ZodObject<{
902
+ snapshotId: import("zod").ZodString;
903
+ runtimeId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
904
+ name: import("zod").ZodString;
905
+ fullName: import("zod").ZodOptional<import("zod").ZodString>;
906
+ description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
907
+ message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
908
+ tag: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
909
+ sizeBytes: import("zod").ZodNumber;
910
+ fileCount: import("zod").ZodNumber;
911
+ parentSnapshotId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
912
+ public: import("zod").ZodOptional<import("zod").ZodBoolean>;
913
+ orgName: import("zod").ZodOptional<import("zod").ZodString>;
914
+ orgSlug: import("zod").ZodOptional<import("zod").ZodString>;
915
+ org: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
916
+ id: import("zod").ZodString;
917
+ name: import("zod").ZodString;
918
+ slug: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
919
+ }, import("zod/v4/core").$strip>>>;
920
+ user: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
921
+ id: import("zod").ZodString;
922
+ firstName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
923
+ lastName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
924
+ }, import("zod/v4/core").$strip>>>;
925
+ createdAt: import("zod").ZodString;
926
+ downloadUrl: import("zod").ZodOptional<import("zod").ZodString>;
927
+ files: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
928
+ path: import("zod").ZodString;
929
+ size: import("zod").ZodNumber;
930
+ sha256: import("zod").ZodString;
931
+ contentType: import("zod").ZodString;
932
+ mode: import("zod").ZodNumber;
933
+ }, import("zod/v4/core").$strip>>>>;
934
+ userMetadata: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>>;
935
+ }, import("zod/v4/core").$strip>>;
936
+ total: import("zod").ZodNumber;
937
+ }, import("zod/v4/core").$strip>;
938
+ }, import("zod/v4/core").$strip>], "success">;
939
+ stripRequired: boolean;
940
+ };
941
+ statuses: {
942
+ code: number;
943
+ description: string;
944
+ }[];
945
+ examplePath: string;
946
+ exampleBody?: undefined;
947
+ } | {
948
+ exampleHeaders?: undefined;
949
+ id: string;
950
+ title: string;
951
+ sectionTitle: string;
952
+ method: string;
953
+ path: string;
954
+ description: string;
955
+ pathParams: never[];
956
+ queryParams: {
957
+ name: string;
958
+ type: string;
959
+ description: string;
960
+ required: boolean;
961
+ }[];
962
+ requestBody: {
963
+ description: string;
964
+ fields: {
965
+ schema: import("zod").ZodObject<{
966
+ runtime: import("zod").ZodString;
967
+ name: import("zod").ZodOptional<import("zod").ZodString>;
968
+ tag: import("zod").ZodOptional<import("zod").ZodString>;
969
+ description: import("zod").ZodOptional<import("zod").ZodString>;
970
+ contentHash: import("zod").ZodOptional<import("zod").ZodString>;
971
+ force: import("zod").ZodOptional<import("zod").ZodBoolean>;
972
+ encrypt: import("zod").ZodOptional<import("zod").ZodBoolean>;
973
+ public: import("zod").ZodOptional<import("zod").ZodBoolean>;
974
+ }, import("zod/v4/core").$strip>;
975
+ omit?: undefined;
976
+ };
977
+ };
978
+ responseDescription: string;
979
+ responseFields: {
980
+ schema: import("zod").ZodObject<{
981
+ snapshotId: import("zod").ZodOptional<import("zod").ZodString>;
982
+ uploadUrl: import("zod").ZodOptional<import("zod").ZodString>;
983
+ publicKey: import("zod").ZodOptional<import("zod").ZodString>;
984
+ unchanged: import("zod").ZodOptional<import("zod").ZodBoolean>;
985
+ existingId: import("zod").ZodOptional<import("zod").ZodString>;
986
+ existingName: import("zod").ZodOptional<import("zod").ZodString>;
987
+ existingTag: import("zod").ZodOptional<import("zod").ZodString>;
988
+ }, import("zod/v4/core").$strip>;
989
+ stripRequired: boolean;
990
+ };
991
+ statuses: {
992
+ code: number;
993
+ description: string;
994
+ }[];
995
+ examplePath: string;
996
+ exampleBody: {
997
+ resources?: undefined;
998
+ env?: undefined;
999
+ command?: undefined;
1000
+ recursive?: undefined;
1001
+ path?: undefined;
1002
+ runtime: string;
1003
+ name: string;
1004
+ tag: string;
1005
+ sizeBytes?: undefined;
1006
+ fileCount?: undefined;
1007
+ files?: undefined;
1008
+ };
1009
+ } | {
1010
+ exampleHeaders?: undefined;
1011
+ id: string;
1012
+ title: string;
1013
+ sectionTitle: string;
1014
+ method: string;
1015
+ path: string;
1016
+ description: string;
1017
+ pathParams: {
1018
+ name: string;
1019
+ type: string;
1020
+ description: string;
1021
+ required: boolean;
1022
+ }[];
1023
+ queryParams: {
1024
+ name: string;
1025
+ type: string;
1026
+ description: string;
1027
+ required: boolean;
1028
+ }[];
1029
+ requestBody: {
1030
+ description: string;
1031
+ fields: {
1032
+ schema: import("zod").ZodObject<{
1033
+ sizeBytes: import("zod").ZodNumber;
1034
+ fileCount: import("zod").ZodNumber;
1035
+ files: import("zod").ZodArray<import("zod").ZodObject<{
1036
+ path: import("zod").ZodString;
1037
+ size: import("zod").ZodNumber;
1038
+ sha256: import("zod").ZodString;
1039
+ contentType: import("zod").ZodString;
1040
+ mode: import("zod").ZodNumber;
1041
+ }, import("zod/v4/core").$strip>>;
1042
+ dependencies: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
1043
+ packages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
1044
+ env: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
1045
+ metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
1046
+ }, import("zod/v4/core").$strip>;
1047
+ omit?: undefined;
1048
+ };
1049
+ };
1050
+ responseDescription: string;
1051
+ statuses: {
1052
+ code: number;
1053
+ description: string;
1054
+ }[];
1055
+ examplePath: string;
1056
+ exampleBody: {
1057
+ resources?: undefined;
1058
+ env?: undefined;
1059
+ command?: undefined;
1060
+ recursive?: undefined;
1061
+ path?: undefined;
1062
+ runtime?: undefined;
1063
+ tag?: undefined;
1064
+ sizeBytes: number;
1065
+ fileCount: number;
1066
+ files: {
1067
+ path: string;
1068
+ size: number;
1069
+ }[];
1070
+ name?: undefined;
1071
+ };
1072
+ responseFields?: undefined;
1073
+ } | {
1074
+ exampleHeaders?: undefined;
1075
+ id: string;
1076
+ title: string;
1077
+ sectionTitle: string;
1078
+ method: string;
1079
+ path: string;
1080
+ description: string;
1081
+ pathParams: {
1082
+ name: string;
1083
+ type: string;
1084
+ description: string;
1085
+ required: boolean;
1086
+ }[];
1087
+ queryParams: {
1088
+ name: string;
1089
+ type: string;
1090
+ description: string;
1091
+ required: boolean;
1092
+ }[];
1093
+ requestBody: {
1094
+ description: string;
1095
+ fields: {
1096
+ schema: import("zod").ZodObject<{
1097
+ sandboxId: import("zod").ZodString;
1098
+ name: import("zod").ZodString;
1099
+ orgId: import("zod").ZodOptional<import("zod").ZodString>;
1100
+ }, import("zod/v4/core").$strip>;
1101
+ omit: string[];
1102
+ };
1103
+ };
1104
+ responseDescription: string;
1105
+ responseFields: {
1106
+ stripRequired?: undefined;
1107
+ schema: import("zod").ZodObject<{
1108
+ id: import("zod").ZodString;
1109
+ name: import("zod").ZodString;
1110
+ createdAt: import("zod").ZodString;
1111
+ parent: import("zod").ZodString;
1112
+ }, import("zod/v4/core").$strip>;
1113
+ };
1114
+ statuses: {
1115
+ code: number;
1116
+ description: string;
1117
+ }[];
1118
+ examplePath: string;
1119
+ exampleBody: {
1120
+ resources?: undefined;
1121
+ env?: undefined;
1122
+ command?: undefined;
1123
+ recursive?: undefined;
1124
+ path?: undefined;
1125
+ runtime?: undefined;
1126
+ tag?: undefined;
1127
+ sizeBytes?: undefined;
1128
+ fileCount?: undefined;
1129
+ files?: undefined;
1130
+ name: string;
1131
+ };
1132
+ } | {
1133
+ exampleHeaders?: undefined;
1134
+ exampleBody?: undefined;
1135
+ id: string;
1136
+ title: string;
1137
+ sectionTitle: string;
1138
+ method: string;
1139
+ path: string;
1140
+ description: string;
1141
+ pathParams: never[];
1142
+ queryParams: {
1143
+ name: string;
1144
+ type: string;
1145
+ description: string;
1146
+ required: boolean;
1147
+ }[];
1148
+ requestBody: null;
1149
+ responseDescription: string;
1150
+ responseFields: {
1151
+ stripRequired?: undefined;
1152
+ schema: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
1153
+ success: import("zod").ZodLiteral<false>;
1154
+ message: import("zod").ZodString;
1155
+ code: import("zod").ZodOptional<import("zod").ZodString>;
1156
+ }, import("zod/v4/core").$strip>, import("zod").ZodObject<{
1157
+ success: import("zod").ZodLiteral<true>;
1158
+ data: import("zod").ZodObject<{
1159
+ runtimes: import("zod").ZodArray<import("zod").ZodObject<{
1160
+ id: import("zod").ZodString;
1161
+ name: import("zod").ZodString;
1162
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1163
+ iconUrl: import("zod").ZodOptional<import("zod").ZodString>;
1164
+ brandColor: import("zod").ZodOptional<import("zod").ZodString>;
1165
+ url: import("zod").ZodOptional<import("zod").ZodString>;
1166
+ tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
1167
+ requirements: import("zod").ZodOptional<import("zod").ZodObject<{
1168
+ memory: import("zod").ZodOptional<import("zod").ZodString>;
1169
+ cpu: import("zod").ZodOptional<import("zod").ZodString>;
1170
+ disk: import("zod").ZodOptional<import("zod").ZodString>;
1171
+ networkEnabled: import("zod").ZodBoolean;
1172
+ }, import("zod/v4/core").$strip>>;
1173
+ readme: import("zod").ZodOptional<import("zod").ZodString>;
1174
+ }, import("zod/v4/core").$strip>>;
1175
+ total: import("zod").ZodNumber;
1176
+ }, import("zod/v4/core").$strip>;
1177
+ }, import("zod/v4/core").$strip>], "success">;
1178
+ };
1179
+ statuses: {
1180
+ code: number;
1181
+ description: string;
1182
+ }[];
1183
+ examplePath: string;
1184
+ } | {
1185
+ exampleHeaders?: undefined;
1186
+ exampleBody?: undefined;
1187
+ id: string;
1188
+ title: string;
1189
+ sectionTitle: string;
1190
+ method: string;
1191
+ path: string;
1192
+ description: string;
1193
+ pathParams: {
1194
+ name: string;
1195
+ type: string;
1196
+ description: string;
1197
+ required: boolean;
1198
+ }[];
1199
+ queryParams: never[];
1200
+ requestBody: null;
1201
+ responseDescription: string;
1202
+ responseFields: {
1203
+ stripRequired?: undefined;
1204
+ schema: import("zod").ZodObject<{
1205
+ id: import("zod").ZodString;
1206
+ name: import("zod").ZodNullable<import("zod").ZodString>;
1207
+ region: import("zod").ZodString;
1208
+ status: import("zod").ZodString;
1209
+ orgId: import("zod").ZodString;
1210
+ projectId: import("zod").ZodNullable<import("zod").ZodString>;
1211
+ }, import("zod/v4/core").$strip>;
1212
+ };
1213
+ statuses: {
1214
+ code: number;
1215
+ description: string;
1216
+ }[];
1217
+ examplePath: string;
1218
+ })[];
1219
+ };
1220
+ export default service;
1221
+ //# sourceMappingURL=api-reference.d.ts.map