@phala/cloud 0.1.1-beta.2 → 0.1.1-beta.3

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.
@@ -4,18 +4,24 @@ export declare const GetCvmListRequestSchema: z.ZodObject<{
4
4
  page: z.ZodOptional<z.ZodNumber>;
5
5
  page_size: z.ZodOptional<z.ZodNumber>;
6
6
  node_id: z.ZodOptional<z.ZodNumber>;
7
+ teepod_id: z.ZodOptional<z.ZodNumber>;
8
+ user_id: z.ZodOptional<z.ZodString>;
7
9
  }, "strict", z.ZodTypeAny, {
10
+ teepod_id?: number | undefined;
8
11
  page?: number | undefined;
9
12
  page_size?: number | undefined;
13
+ user_id?: string | undefined;
10
14
  node_id?: number | undefined;
11
15
  }, {
16
+ teepod_id?: number | undefined;
12
17
  page?: number | undefined;
13
18
  page_size?: number | undefined;
19
+ user_id?: string | undefined;
14
20
  node_id?: number | undefined;
15
21
  }>;
16
22
  export declare const GetCvmListSchema: z.ZodObject<{
17
23
  items: z.ZodArray<z.ZodObject<{
18
- hosted: z.ZodOptional<z.ZodObject<{
24
+ hosted: z.ZodObject<{
19
25
  id: z.ZodString;
20
26
  name: z.ZodString;
21
27
  status: z.ZodString;
@@ -57,9 +63,9 @@ export declare const GetCvmListSchema: z.ZodObject<{
57
63
  shutdown_progress: string | null;
58
64
  image_version: string | null;
59
65
  configuration?: any;
60
- }>>;
61
- name: z.ZodOptional<z.ZodString>;
62
- managed_user: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodObject<{
66
+ }>;
67
+ name: z.ZodString;
68
+ managed_user: z.ZodNullable<z.ZodObject<{
63
69
  id: z.ZodNumber;
64
70
  username: z.ZodString;
65
71
  }, "strip", z.ZodTypeAny, {
@@ -68,30 +74,30 @@ export declare const GetCvmListSchema: z.ZodObject<{
68
74
  }, {
69
75
  username: string;
70
76
  id: number;
71
- }>>>>;
72
- node: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodObject<{
77
+ }>>;
78
+ node: z.ZodNullable<z.ZodObject<{
73
79
  id: z.ZodNumber;
74
80
  name: z.ZodString;
75
- region_identifier: z.ZodOptional<z.ZodString>;
81
+ region_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
76
82
  }, "strip", z.ZodTypeAny, {
77
83
  name: string;
78
84
  id: number;
79
- region_identifier?: string | undefined;
85
+ region_identifier?: string | null | undefined;
80
86
  }, {
81
87
  name: string;
82
88
  id: number;
83
- region_identifier?: string | undefined;
84
- }>>>>;
85
- listed: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
86
- status: z.ZodOptional<z.ZodString>;
87
- in_progress: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
88
- dapp_dashboard_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
89
- syslog_endpoint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
90
- allow_upgrade: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
91
- project_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
92
- project_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
93
- billing_period: z.ZodOptional<z.ZodNullable<z.ZodString>>;
94
- kms_info: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodObject<{
89
+ region_identifier?: string | null | undefined;
90
+ }>>;
91
+ listed: z.ZodDefault<z.ZodBoolean>;
92
+ status: z.ZodString;
93
+ in_progress: z.ZodDefault<z.ZodBoolean>;
94
+ dapp_dashboard_url: z.ZodNullable<z.ZodString>;
95
+ syslog_endpoint: z.ZodNullable<z.ZodString>;
96
+ allow_upgrade: z.ZodDefault<z.ZodBoolean>;
97
+ project_id: z.ZodNullable<z.ZodString>;
98
+ project_type: z.ZodNullable<z.ZodString>;
99
+ billing_period: z.ZodNullable<z.ZodString>;
100
+ kms_info: z.ZodNullable<z.ZodEffects<z.ZodObject<{
95
101
  id: z.ZodString;
96
102
  slug: z.ZodNullable<z.ZodString>;
97
103
  url: z.ZodString;
@@ -131,12 +137,12 @@ export declare const GetCvmListSchema: z.ZodObject<{
131
137
  chain_id: z.ZodNullable<z.ZodNumber>;
132
138
  kms_contract_address: z.ZodEffects<z.ZodNullable<z.ZodString>, `0x${string}`, string | null>;
133
139
  gateway_app_id: z.ZodEffects<z.ZodNullable<z.ZodString>, `0x${string}`, string | null>;
134
- }, z.ZodTypeAny, "passthrough">>>>;
135
- vcpu: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
136
- memory: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
137
- disk_size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
138
- gateway_domain: z.ZodOptional<z.ZodNullable<z.ZodString>>;
139
- public_urls: z.ZodOptional<z.ZodArray<z.ZodObject<{
140
+ }, z.ZodTypeAny, "passthrough">>>;
141
+ vcpu: z.ZodNullable<z.ZodNumber>;
142
+ memory: z.ZodNullable<z.ZodNumber>;
143
+ disk_size: z.ZodNullable<z.ZodNumber>;
144
+ gateway_domain: z.ZodNullable<z.ZodString>;
145
+ public_urls: z.ZodArray<z.ZodObject<{
140
146
  app: z.ZodString;
141
147
  instance: z.ZodString;
142
148
  }, "strip", z.ZodTypeAny, {
@@ -145,13 +151,13 @@ export declare const GetCvmListSchema: z.ZodObject<{
145
151
  }, {
146
152
  app: string;
147
153
  instance: string;
148
- }>, "many">>;
154
+ }>, "many">;
149
155
  }, "strip", z.ZodTypeAny, {
150
- status?: string | undefined;
151
- name?: string | undefined;
152
- listed?: boolean | undefined;
153
- vcpu?: number | null | undefined;
154
- hosted?: {
156
+ status: string;
157
+ name: string;
158
+ listed: boolean;
159
+ vcpu: number | null;
160
+ hosted: {
155
161
  status: string;
156
162
  name: string;
157
163
  id: string;
@@ -165,24 +171,24 @@ export declare const GetCvmListSchema: z.ZodObject<{
165
171
  shutdown_progress: string | null;
166
172
  image_version: string | null;
167
173
  configuration?: any;
168
- } | undefined;
169
- managed_user?: {
174
+ };
175
+ managed_user: {
170
176
  username: string;
171
177
  id: number;
172
- } | null | undefined;
173
- node?: {
178
+ } | null;
179
+ node: {
174
180
  name: string;
175
181
  id: number;
176
- region_identifier?: string | undefined;
177
- } | null | undefined;
178
- in_progress?: boolean | undefined;
179
- dapp_dashboard_url?: string | null | undefined;
180
- syslog_endpoint?: string | null | undefined;
181
- allow_upgrade?: boolean | undefined;
182
- project_id?: string | null | undefined;
183
- project_type?: string | null | undefined;
184
- billing_period?: string | null | undefined;
185
- kms_info?: z.objectOutputType<{
182
+ region_identifier?: string | null | undefined;
183
+ } | null;
184
+ in_progress: boolean;
185
+ dapp_dashboard_url: string | null;
186
+ syslog_endpoint: string | null;
187
+ allow_upgrade: boolean;
188
+ project_id: string | null;
189
+ project_type: string | null;
190
+ billing_period: string | null;
191
+ kms_info: z.objectOutputType<{
186
192
  id: z.ZodString;
187
193
  slug: z.ZodNullable<z.ZodString>;
188
194
  url: z.ZodString;
@@ -190,20 +196,19 @@ export declare const GetCvmListSchema: z.ZodObject<{
190
196
  chain_id: z.ZodNullable<z.ZodNumber>;
191
197
  kms_contract_address: z.ZodEffects<z.ZodNullable<z.ZodString>, `0x${string}`, string | null>;
192
198
  gateway_app_id: z.ZodEffects<z.ZodNullable<z.ZodString>, `0x${string}`, string | null>;
193
- }, z.ZodTypeAny, "passthrough"> | null | undefined;
194
- memory?: number | null | undefined;
195
- disk_size?: number | null | undefined;
196
- gateway_domain?: string | null | undefined;
197
- public_urls?: {
199
+ }, z.ZodTypeAny, "passthrough"> | null;
200
+ memory: number | null;
201
+ disk_size: number | null;
202
+ gateway_domain: string | null;
203
+ public_urls: {
198
204
  app: string;
199
205
  instance: string;
200
- }[] | undefined;
206
+ }[];
201
207
  }, {
202
- status?: string | undefined;
203
- name?: string | undefined;
204
- listed?: boolean | undefined;
205
- vcpu?: number | null | undefined;
206
- hosted?: {
208
+ status: string;
209
+ name: string;
210
+ vcpu: number | null;
211
+ hosted: {
207
212
  status: string;
208
213
  name: string;
209
214
  id: string;
@@ -217,24 +222,22 @@ export declare const GetCvmListSchema: z.ZodObject<{
217
222
  shutdown_progress: string | null;
218
223
  image_version: string | null;
219
224
  configuration?: any;
220
- } | undefined;
221
- managed_user?: {
225
+ };
226
+ managed_user: {
222
227
  username: string;
223
228
  id: number;
224
- } | null | undefined;
225
- node?: {
229
+ } | null;
230
+ node: {
226
231
  name: string;
227
232
  id: number;
228
- region_identifier?: string | undefined;
229
- } | null | undefined;
230
- in_progress?: boolean | undefined;
231
- dapp_dashboard_url?: string | null | undefined;
232
- syslog_endpoint?: string | null | undefined;
233
- allow_upgrade?: boolean | undefined;
234
- project_id?: string | null | undefined;
235
- project_type?: string | null | undefined;
236
- billing_period?: string | null | undefined;
237
- kms_info?: z.objectInputType<{
233
+ region_identifier?: string | null | undefined;
234
+ } | null;
235
+ dapp_dashboard_url: string | null;
236
+ syslog_endpoint: string | null;
237
+ project_id: string | null;
238
+ project_type: string | null;
239
+ billing_period: string | null;
240
+ kms_info: z.objectInputType<{
238
241
  id: z.ZodString;
239
242
  slug: z.ZodNullable<z.ZodString>;
240
243
  url: z.ZodString;
@@ -242,14 +245,17 @@ export declare const GetCvmListSchema: z.ZodObject<{
242
245
  chain_id: z.ZodNullable<z.ZodNumber>;
243
246
  kms_contract_address: z.ZodEffects<z.ZodNullable<z.ZodString>, `0x${string}`, string | null>;
244
247
  gateway_app_id: z.ZodEffects<z.ZodNullable<z.ZodString>, `0x${string}`, string | null>;
245
- }, z.ZodTypeAny, "passthrough"> | null | undefined;
246
- memory?: number | null | undefined;
247
- disk_size?: number | null | undefined;
248
- gateway_domain?: string | null | undefined;
249
- public_urls?: {
248
+ }, z.ZodTypeAny, "passthrough"> | null;
249
+ memory: number | null;
250
+ disk_size: number | null;
251
+ gateway_domain: string | null;
252
+ public_urls: {
250
253
  app: string;
251
254
  instance: string;
252
- }[] | undefined;
255
+ }[];
256
+ listed?: boolean | undefined;
257
+ in_progress?: boolean | undefined;
258
+ allow_upgrade?: boolean | undefined;
253
259
  }>, "many">;
254
260
  total: z.ZodNumber;
255
261
  page: z.ZodNumber;
@@ -259,11 +265,11 @@ export declare const GetCvmListSchema: z.ZodObject<{
259
265
  page: number;
260
266
  page_size: number;
261
267
  items: {
262
- status?: string | undefined;
263
- name?: string | undefined;
264
- listed?: boolean | undefined;
265
- vcpu?: number | null | undefined;
266
- hosted?: {
268
+ status: string;
269
+ name: string;
270
+ listed: boolean;
271
+ vcpu: number | null;
272
+ hosted: {
267
273
  status: string;
268
274
  name: string;
269
275
  id: string;
@@ -277,24 +283,24 @@ export declare const GetCvmListSchema: z.ZodObject<{
277
283
  shutdown_progress: string | null;
278
284
  image_version: string | null;
279
285
  configuration?: any;
280
- } | undefined;
281
- managed_user?: {
286
+ };
287
+ managed_user: {
282
288
  username: string;
283
289
  id: number;
284
- } | null | undefined;
285
- node?: {
290
+ } | null;
291
+ node: {
286
292
  name: string;
287
293
  id: number;
288
- region_identifier?: string | undefined;
289
- } | null | undefined;
290
- in_progress?: boolean | undefined;
291
- dapp_dashboard_url?: string | null | undefined;
292
- syslog_endpoint?: string | null | undefined;
293
- allow_upgrade?: boolean | undefined;
294
- project_id?: string | null | undefined;
295
- project_type?: string | null | undefined;
296
- billing_period?: string | null | undefined;
297
- kms_info?: z.objectOutputType<{
294
+ region_identifier?: string | null | undefined;
295
+ } | null;
296
+ in_progress: boolean;
297
+ dapp_dashboard_url: string | null;
298
+ syslog_endpoint: string | null;
299
+ allow_upgrade: boolean;
300
+ project_id: string | null;
301
+ project_type: string | null;
302
+ billing_period: string | null;
303
+ kms_info: z.objectOutputType<{
298
304
  id: z.ZodString;
299
305
  slug: z.ZodNullable<z.ZodString>;
300
306
  url: z.ZodString;
@@ -302,14 +308,14 @@ export declare const GetCvmListSchema: z.ZodObject<{
302
308
  chain_id: z.ZodNullable<z.ZodNumber>;
303
309
  kms_contract_address: z.ZodEffects<z.ZodNullable<z.ZodString>, `0x${string}`, string | null>;
304
310
  gateway_app_id: z.ZodEffects<z.ZodNullable<z.ZodString>, `0x${string}`, string | null>;
305
- }, z.ZodTypeAny, "passthrough"> | null | undefined;
306
- memory?: number | null | undefined;
307
- disk_size?: number | null | undefined;
308
- gateway_domain?: string | null | undefined;
309
- public_urls?: {
311
+ }, z.ZodTypeAny, "passthrough"> | null;
312
+ memory: number | null;
313
+ disk_size: number | null;
314
+ gateway_domain: string | null;
315
+ public_urls: {
310
316
  app: string;
311
317
  instance: string;
312
- }[] | undefined;
318
+ }[];
313
319
  }[];
314
320
  total: number;
315
321
  pages: number;
@@ -317,11 +323,10 @@ export declare const GetCvmListSchema: z.ZodObject<{
317
323
  page: number;
318
324
  page_size: number;
319
325
  items: {
320
- status?: string | undefined;
321
- name?: string | undefined;
322
- listed?: boolean | undefined;
323
- vcpu?: number | null | undefined;
324
- hosted?: {
326
+ status: string;
327
+ name: string;
328
+ vcpu: number | null;
329
+ hosted: {
325
330
  status: string;
326
331
  name: string;
327
332
  id: string;
@@ -335,24 +340,22 @@ export declare const GetCvmListSchema: z.ZodObject<{
335
340
  shutdown_progress: string | null;
336
341
  image_version: string | null;
337
342
  configuration?: any;
338
- } | undefined;
339
- managed_user?: {
343
+ };
344
+ managed_user: {
340
345
  username: string;
341
346
  id: number;
342
- } | null | undefined;
343
- node?: {
347
+ } | null;
348
+ node: {
344
349
  name: string;
345
350
  id: number;
346
- region_identifier?: string | undefined;
347
- } | null | undefined;
348
- in_progress?: boolean | undefined;
349
- dapp_dashboard_url?: string | null | undefined;
350
- syslog_endpoint?: string | null | undefined;
351
- allow_upgrade?: boolean | undefined;
352
- project_id?: string | null | undefined;
353
- project_type?: string | null | undefined;
354
- billing_period?: string | null | undefined;
355
- kms_info?: z.objectInputType<{
351
+ region_identifier?: string | null | undefined;
352
+ } | null;
353
+ dapp_dashboard_url: string | null;
354
+ syslog_endpoint: string | null;
355
+ project_id: string | null;
356
+ project_type: string | null;
357
+ billing_period: string | null;
358
+ kms_info: z.objectInputType<{
356
359
  id: z.ZodString;
357
360
  slug: z.ZodNullable<z.ZodString>;
358
361
  url: z.ZodString;
@@ -360,14 +363,17 @@ export declare const GetCvmListSchema: z.ZodObject<{
360
363
  chain_id: z.ZodNullable<z.ZodNumber>;
361
364
  kms_contract_address: z.ZodEffects<z.ZodNullable<z.ZodString>, `0x${string}`, string | null>;
362
365
  gateway_app_id: z.ZodEffects<z.ZodNullable<z.ZodString>, `0x${string}`, string | null>;
363
- }, z.ZodTypeAny, "passthrough"> | null | undefined;
364
- memory?: number | null | undefined;
365
- disk_size?: number | null | undefined;
366
- gateway_domain?: string | null | undefined;
367
- public_urls?: {
366
+ }, z.ZodTypeAny, "passthrough"> | null;
367
+ memory: number | null;
368
+ disk_size: number | null;
369
+ gateway_domain: string | null;
370
+ public_urls: {
368
371
  app: string;
369
372
  instance: string;
370
- }[] | undefined;
373
+ }[];
374
+ listed?: boolean | undefined;
375
+ in_progress?: boolean | undefined;
376
+ allow_upgrade?: boolean | undefined;
371
377
  }[];
372
378
  total: number;
373
379
  pages: number;
@@ -398,18 +404,20 @@ export type GetCvmListResponse = z.infer<typeof GetCvmListSchema>;
398
404
  */
399
405
  declare const getCvmList: {
400
406
  (client: Client, params?: {
407
+ teepod_id?: number | undefined;
401
408
  page?: number | undefined;
402
409
  page_size?: number | undefined;
410
+ user_id?: string | undefined;
403
411
  node_id?: number | undefined;
404
412
  } | undefined): Promise<{
405
413
  page: number;
406
414
  page_size: number;
407
415
  items: {
408
- status?: string | undefined;
409
- name?: string | undefined;
410
- listed?: boolean | undefined;
411
- vcpu?: number | null | undefined;
412
- hosted?: {
416
+ status: string;
417
+ name: string;
418
+ listed: boolean;
419
+ vcpu: number | null;
420
+ hosted: {
413
421
  status: string;
414
422
  name: string;
415
423
  id: string;
@@ -423,24 +431,24 @@ declare const getCvmList: {
423
431
  shutdown_progress: string | null;
424
432
  image_version: string | null;
425
433
  configuration?: any;
426
- } | undefined;
427
- managed_user?: {
434
+ };
435
+ managed_user: {
428
436
  username: string;
429
437
  id: number;
430
- } | null | undefined;
431
- node?: {
438
+ } | null;
439
+ node: {
432
440
  name: string;
433
441
  id: number;
434
- region_identifier?: string | undefined;
435
- } | null | undefined;
436
- in_progress?: boolean | undefined;
437
- dapp_dashboard_url?: string | null | undefined;
438
- syslog_endpoint?: string | null | undefined;
439
- allow_upgrade?: boolean | undefined;
440
- project_id?: string | null | undefined;
441
- project_type?: string | null | undefined;
442
- billing_period?: string | null | undefined;
443
- kms_info?: z.objectOutputType<{
442
+ region_identifier?: string | null | undefined;
443
+ } | null;
444
+ in_progress: boolean;
445
+ dapp_dashboard_url: string | null;
446
+ syslog_endpoint: string | null;
447
+ allow_upgrade: boolean;
448
+ project_id: string | null;
449
+ project_type: string | null;
450
+ billing_period: string | null;
451
+ kms_info: z.objectOutputType<{
444
452
  id: z.ZodString;
445
453
  slug: z.ZodNullable<z.ZodString>;
446
454
  url: z.ZodString;
@@ -448,46 +456,52 @@ declare const getCvmList: {
448
456
  chain_id: z.ZodNullable<z.ZodNumber>;
449
457
  kms_contract_address: z.ZodEffects<z.ZodNullable<z.ZodString>, `0x${string}`, string | null>;
450
458
  gateway_app_id: z.ZodEffects<z.ZodNullable<z.ZodString>, `0x${string}`, string | null>;
451
- }, z.ZodTypeAny, "passthrough"> | null | undefined;
452
- memory?: number | null | undefined;
453
- disk_size?: number | null | undefined;
454
- gateway_domain?: string | null | undefined;
455
- public_urls?: {
459
+ }, z.ZodTypeAny, "passthrough"> | null;
460
+ memory: number | null;
461
+ disk_size: number | null;
462
+ gateway_domain: string | null;
463
+ public_urls: {
456
464
  app: string;
457
465
  instance: string;
458
- }[] | undefined;
466
+ }[];
459
467
  }[];
460
468
  total: number;
461
469
  pages: number;
462
470
  }>;
463
471
  <T extends z.ZodTypeAny>(client: Client, params?: {
472
+ teepod_id?: number | undefined;
464
473
  page?: number | undefined;
465
474
  page_size?: number | undefined;
475
+ user_id?: string | undefined;
466
476
  node_id?: number | undefined;
467
477
  } | undefined, parameters?: {
468
478
  schema: T;
469
479
  } | undefined): Promise<z.TypeOf<T>>;
470
480
  (client: Client, params?: {
481
+ teepod_id?: number | undefined;
471
482
  page?: number | undefined;
472
483
  page_size?: number | undefined;
484
+ user_id?: string | undefined;
473
485
  node_id?: number | undefined;
474
486
  } | undefined, parameters?: {
475
487
  schema: false;
476
488
  } | undefined): Promise<unknown>;
477
489
  }, safeGetCvmList: {
478
490
  (client: Client, params?: {
491
+ teepod_id?: number | undefined;
479
492
  page?: number | undefined;
480
493
  page_size?: number | undefined;
494
+ user_id?: string | undefined;
481
495
  node_id?: number | undefined;
482
496
  } | undefined): Promise<import("../..").SafeResult<{
483
497
  page: number;
484
498
  page_size: number;
485
499
  items: {
486
- status?: string | undefined;
487
- name?: string | undefined;
488
- listed?: boolean | undefined;
489
- vcpu?: number | null | undefined;
490
- hosted?: {
500
+ status: string;
501
+ name: string;
502
+ listed: boolean;
503
+ vcpu: number | null;
504
+ hosted: {
491
505
  status: string;
492
506
  name: string;
493
507
  id: string;
@@ -501,24 +515,24 @@ declare const getCvmList: {
501
515
  shutdown_progress: string | null;
502
516
  image_version: string | null;
503
517
  configuration?: any;
504
- } | undefined;
505
- managed_user?: {
518
+ };
519
+ managed_user: {
506
520
  username: string;
507
521
  id: number;
508
- } | null | undefined;
509
- node?: {
522
+ } | null;
523
+ node: {
510
524
  name: string;
511
525
  id: number;
512
- region_identifier?: string | undefined;
513
- } | null | undefined;
514
- in_progress?: boolean | undefined;
515
- dapp_dashboard_url?: string | null | undefined;
516
- syslog_endpoint?: string | null | undefined;
517
- allow_upgrade?: boolean | undefined;
518
- project_id?: string | null | undefined;
519
- project_type?: string | null | undefined;
520
- billing_period?: string | null | undefined;
521
- kms_info?: z.objectOutputType<{
526
+ region_identifier?: string | null | undefined;
527
+ } | null;
528
+ in_progress: boolean;
529
+ dapp_dashboard_url: string | null;
530
+ syslog_endpoint: string | null;
531
+ allow_upgrade: boolean;
532
+ project_id: string | null;
533
+ project_type: string | null;
534
+ billing_period: string | null;
535
+ kms_info: z.objectOutputType<{
522
536
  id: z.ZodString;
523
537
  slug: z.ZodNullable<z.ZodString>;
524
538
  url: z.ZodString;
@@ -526,28 +540,32 @@ declare const getCvmList: {
526
540
  chain_id: z.ZodNullable<z.ZodNumber>;
527
541
  kms_contract_address: z.ZodEffects<z.ZodNullable<z.ZodString>, `0x${string}`, string | null>;
528
542
  gateway_app_id: z.ZodEffects<z.ZodNullable<z.ZodString>, `0x${string}`, string | null>;
529
- }, z.ZodTypeAny, "passthrough"> | null | undefined;
530
- memory?: number | null | undefined;
531
- disk_size?: number | null | undefined;
532
- gateway_domain?: string | null | undefined;
533
- public_urls?: {
543
+ }, z.ZodTypeAny, "passthrough"> | null;
544
+ memory: number | null;
545
+ disk_size: number | null;
546
+ gateway_domain: string | null;
547
+ public_urls: {
534
548
  app: string;
535
549
  instance: string;
536
- }[] | undefined;
550
+ }[];
537
551
  }[];
538
552
  total: number;
539
553
  pages: number;
540
554
  }>>;
541
555
  <T extends z.ZodTypeAny>(client: Client, params?: {
556
+ teepod_id?: number | undefined;
542
557
  page?: number | undefined;
543
558
  page_size?: number | undefined;
559
+ user_id?: string | undefined;
544
560
  node_id?: number | undefined;
545
561
  } | undefined, parameters?: {
546
562
  schema: T;
547
563
  } | undefined): Promise<import("../..").SafeResult<z.TypeOf<T>>>;
548
564
  (client: Client, params?: {
565
+ teepod_id?: number | undefined;
549
566
  page?: number | undefined;
550
567
  page_size?: number | undefined;
568
+ user_id?: string | undefined;
551
569
  node_id?: number | undefined;
552
570
  } | undefined, parameters?: {
553
571
  schema: false;