qovery-typescript-axios 1.1.940 → 1.1.941
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/api.ts +51 -2
- package/dist/api.d.ts +51 -2
- package/dist/esm/api.d.ts +51 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -268,11 +268,11 @@ export interface AgenticWorkflowProjectRepository {
|
|
|
268
268
|
*/
|
|
269
269
|
'branch': string;
|
|
270
270
|
/**
|
|
271
|
-
*
|
|
271
|
+
* Qovery git token id used to clone the repository. Omit it (or send null) for a public repository, which is cloned without credentials.
|
|
272
272
|
* @type {string}
|
|
273
273
|
* @memberof AgenticWorkflowProjectRepository
|
|
274
274
|
*/
|
|
275
|
-
'git_token_id'
|
|
275
|
+
'git_token_id'?: string | null;
|
|
276
276
|
}
|
|
277
277
|
/**
|
|
278
278
|
*
|
|
@@ -346,6 +346,43 @@ export interface AgenticWorkflowRequest {
|
|
|
346
346
|
* @memberof AgenticWorkflowRequest
|
|
347
347
|
*/
|
|
348
348
|
'governance'?: AgenticWorkflowGovernance;
|
|
349
|
+
/**
|
|
350
|
+
*
|
|
351
|
+
* @type {AgenticWorkflowResources}
|
|
352
|
+
* @memberof AgenticWorkflowRequest
|
|
353
|
+
*/
|
|
354
|
+
'resources'?: AgenticWorkflowResources;
|
|
355
|
+
}
|
|
356
|
+
/**
|
|
357
|
+
*
|
|
358
|
+
* @export
|
|
359
|
+
* @interface AgenticWorkflowResources
|
|
360
|
+
*/
|
|
361
|
+
export interface AgenticWorkflowResources {
|
|
362
|
+
/**
|
|
363
|
+
* CPU allocated to the workflow, in milli CPU. Used as both request and limit.
|
|
364
|
+
* @type {number}
|
|
365
|
+
* @memberof AgenticWorkflowResources
|
|
366
|
+
*/
|
|
367
|
+
'cpu_milli': number;
|
|
368
|
+
/**
|
|
369
|
+
* RAM allocated to the workflow, in MiB. Used as both request and limit.
|
|
370
|
+
* @type {number}
|
|
371
|
+
* @memberof AgenticWorkflowResources
|
|
372
|
+
*/
|
|
373
|
+
'ram_mib': number;
|
|
374
|
+
/**
|
|
375
|
+
* Number of GPUs. Accepted and stored, but not yet applied by the engine.
|
|
376
|
+
* @type {number}
|
|
377
|
+
* @memberof AgenticWorkflowResources
|
|
378
|
+
*/
|
|
379
|
+
'gpu': number;
|
|
380
|
+
/**
|
|
381
|
+
* Storage size in GiB. Accepted and stored, but not yet applied by the engine.
|
|
382
|
+
* @type {number}
|
|
383
|
+
* @memberof AgenticWorkflowResources
|
|
384
|
+
*/
|
|
385
|
+
'storage_gib': number;
|
|
349
386
|
}
|
|
350
387
|
/**
|
|
351
388
|
*
|
|
@@ -455,12 +492,24 @@ export interface AgenticWorkflowResponse {
|
|
|
455
492
|
* @memberof AgenticWorkflowResponse
|
|
456
493
|
*/
|
|
457
494
|
'governance': AgenticWorkflowGovernance;
|
|
495
|
+
/**
|
|
496
|
+
*
|
|
497
|
+
* @type {AgenticWorkflowResources}
|
|
498
|
+
* @memberof AgenticWorkflowResponse
|
|
499
|
+
*/
|
|
500
|
+
'resources': AgenticWorkflowResources;
|
|
458
501
|
/**
|
|
459
502
|
*
|
|
460
503
|
* @type {AgenticWorkflowWebhook}
|
|
461
504
|
* @memberof AgenticWorkflowResponse
|
|
462
505
|
*/
|
|
463
506
|
'webhook': AgenticWorkflowWebhook;
|
|
507
|
+
/**
|
|
508
|
+
* Icon URI representing the agentic workflow.
|
|
509
|
+
* @type {string}
|
|
510
|
+
* @memberof AgenticWorkflowResponse
|
|
511
|
+
*/
|
|
512
|
+
'icon_uri'?: string;
|
|
464
513
|
}
|
|
465
514
|
|
|
466
515
|
|
package/dist/api.d.ts
CHANGED
|
@@ -242,11 +242,11 @@ export interface AgenticWorkflowProjectRepository {
|
|
|
242
242
|
*/
|
|
243
243
|
'branch': string;
|
|
244
244
|
/**
|
|
245
|
-
*
|
|
245
|
+
* Qovery git token id used to clone the repository. Omit it (or send null) for a public repository, which is cloned without credentials.
|
|
246
246
|
* @type {string}
|
|
247
247
|
* @memberof AgenticWorkflowProjectRepository
|
|
248
248
|
*/
|
|
249
|
-
'git_token_id'
|
|
249
|
+
'git_token_id'?: string | null;
|
|
250
250
|
}
|
|
251
251
|
/**
|
|
252
252
|
*
|
|
@@ -320,6 +320,43 @@ export interface AgenticWorkflowRequest {
|
|
|
320
320
|
* @memberof AgenticWorkflowRequest
|
|
321
321
|
*/
|
|
322
322
|
'governance'?: AgenticWorkflowGovernance;
|
|
323
|
+
/**
|
|
324
|
+
*
|
|
325
|
+
* @type {AgenticWorkflowResources}
|
|
326
|
+
* @memberof AgenticWorkflowRequest
|
|
327
|
+
*/
|
|
328
|
+
'resources'?: AgenticWorkflowResources;
|
|
329
|
+
}
|
|
330
|
+
/**
|
|
331
|
+
*
|
|
332
|
+
* @export
|
|
333
|
+
* @interface AgenticWorkflowResources
|
|
334
|
+
*/
|
|
335
|
+
export interface AgenticWorkflowResources {
|
|
336
|
+
/**
|
|
337
|
+
* CPU allocated to the workflow, in milli CPU. Used as both request and limit.
|
|
338
|
+
* @type {number}
|
|
339
|
+
* @memberof AgenticWorkflowResources
|
|
340
|
+
*/
|
|
341
|
+
'cpu_milli': number;
|
|
342
|
+
/**
|
|
343
|
+
* RAM allocated to the workflow, in MiB. Used as both request and limit.
|
|
344
|
+
* @type {number}
|
|
345
|
+
* @memberof AgenticWorkflowResources
|
|
346
|
+
*/
|
|
347
|
+
'ram_mib': number;
|
|
348
|
+
/**
|
|
349
|
+
* Number of GPUs. Accepted and stored, but not yet applied by the engine.
|
|
350
|
+
* @type {number}
|
|
351
|
+
* @memberof AgenticWorkflowResources
|
|
352
|
+
*/
|
|
353
|
+
'gpu': number;
|
|
354
|
+
/**
|
|
355
|
+
* Storage size in GiB. Accepted and stored, but not yet applied by the engine.
|
|
356
|
+
* @type {number}
|
|
357
|
+
* @memberof AgenticWorkflowResources
|
|
358
|
+
*/
|
|
359
|
+
'storage_gib': number;
|
|
323
360
|
}
|
|
324
361
|
/**
|
|
325
362
|
*
|
|
@@ -429,12 +466,24 @@ export interface AgenticWorkflowResponse {
|
|
|
429
466
|
* @memberof AgenticWorkflowResponse
|
|
430
467
|
*/
|
|
431
468
|
'governance': AgenticWorkflowGovernance;
|
|
469
|
+
/**
|
|
470
|
+
*
|
|
471
|
+
* @type {AgenticWorkflowResources}
|
|
472
|
+
* @memberof AgenticWorkflowResponse
|
|
473
|
+
*/
|
|
474
|
+
'resources': AgenticWorkflowResources;
|
|
432
475
|
/**
|
|
433
476
|
*
|
|
434
477
|
* @type {AgenticWorkflowWebhook}
|
|
435
478
|
* @memberof AgenticWorkflowResponse
|
|
436
479
|
*/
|
|
437
480
|
'webhook': AgenticWorkflowWebhook;
|
|
481
|
+
/**
|
|
482
|
+
* Icon URI representing the agentic workflow.
|
|
483
|
+
* @type {string}
|
|
484
|
+
* @memberof AgenticWorkflowResponse
|
|
485
|
+
*/
|
|
486
|
+
'icon_uri'?: string;
|
|
438
487
|
}
|
|
439
488
|
/**
|
|
440
489
|
*
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -242,11 +242,11 @@ export interface AgenticWorkflowProjectRepository {
|
|
|
242
242
|
*/
|
|
243
243
|
'branch': string;
|
|
244
244
|
/**
|
|
245
|
-
*
|
|
245
|
+
* Qovery git token id used to clone the repository. Omit it (or send null) for a public repository, which is cloned without credentials.
|
|
246
246
|
* @type {string}
|
|
247
247
|
* @memberof AgenticWorkflowProjectRepository
|
|
248
248
|
*/
|
|
249
|
-
'git_token_id'
|
|
249
|
+
'git_token_id'?: string | null;
|
|
250
250
|
}
|
|
251
251
|
/**
|
|
252
252
|
*
|
|
@@ -320,6 +320,43 @@ export interface AgenticWorkflowRequest {
|
|
|
320
320
|
* @memberof AgenticWorkflowRequest
|
|
321
321
|
*/
|
|
322
322
|
'governance'?: AgenticWorkflowGovernance;
|
|
323
|
+
/**
|
|
324
|
+
*
|
|
325
|
+
* @type {AgenticWorkflowResources}
|
|
326
|
+
* @memberof AgenticWorkflowRequest
|
|
327
|
+
*/
|
|
328
|
+
'resources'?: AgenticWorkflowResources;
|
|
329
|
+
}
|
|
330
|
+
/**
|
|
331
|
+
*
|
|
332
|
+
* @export
|
|
333
|
+
* @interface AgenticWorkflowResources
|
|
334
|
+
*/
|
|
335
|
+
export interface AgenticWorkflowResources {
|
|
336
|
+
/**
|
|
337
|
+
* CPU allocated to the workflow, in milli CPU. Used as both request and limit.
|
|
338
|
+
* @type {number}
|
|
339
|
+
* @memberof AgenticWorkflowResources
|
|
340
|
+
*/
|
|
341
|
+
'cpu_milli': number;
|
|
342
|
+
/**
|
|
343
|
+
* RAM allocated to the workflow, in MiB. Used as both request and limit.
|
|
344
|
+
* @type {number}
|
|
345
|
+
* @memberof AgenticWorkflowResources
|
|
346
|
+
*/
|
|
347
|
+
'ram_mib': number;
|
|
348
|
+
/**
|
|
349
|
+
* Number of GPUs. Accepted and stored, but not yet applied by the engine.
|
|
350
|
+
* @type {number}
|
|
351
|
+
* @memberof AgenticWorkflowResources
|
|
352
|
+
*/
|
|
353
|
+
'gpu': number;
|
|
354
|
+
/**
|
|
355
|
+
* Storage size in GiB. Accepted and stored, but not yet applied by the engine.
|
|
356
|
+
* @type {number}
|
|
357
|
+
* @memberof AgenticWorkflowResources
|
|
358
|
+
*/
|
|
359
|
+
'storage_gib': number;
|
|
323
360
|
}
|
|
324
361
|
/**
|
|
325
362
|
*
|
|
@@ -429,12 +466,24 @@ export interface AgenticWorkflowResponse {
|
|
|
429
466
|
* @memberof AgenticWorkflowResponse
|
|
430
467
|
*/
|
|
431
468
|
'governance': AgenticWorkflowGovernance;
|
|
469
|
+
/**
|
|
470
|
+
*
|
|
471
|
+
* @type {AgenticWorkflowResources}
|
|
472
|
+
* @memberof AgenticWorkflowResponse
|
|
473
|
+
*/
|
|
474
|
+
'resources': AgenticWorkflowResources;
|
|
432
475
|
/**
|
|
433
476
|
*
|
|
434
477
|
* @type {AgenticWorkflowWebhook}
|
|
435
478
|
* @memberof AgenticWorkflowResponse
|
|
436
479
|
*/
|
|
437
480
|
'webhook': AgenticWorkflowWebhook;
|
|
481
|
+
/**
|
|
482
|
+
* Icon URI representing the agentic workflow.
|
|
483
|
+
* @type {string}
|
|
484
|
+
* @memberof AgenticWorkflowResponse
|
|
485
|
+
*/
|
|
486
|
+
'icon_uri'?: string;
|
|
438
487
|
}
|
|
439
488
|
/**
|
|
440
489
|
*
|