@soat/cli 0.15.12 → 0.15.13
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/index.mjs +290 -26
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -13,7 +13,7 @@ import { load } from "js-yaml";
|
|
|
13
13
|
import * as os from "node:os";
|
|
14
14
|
|
|
15
15
|
//#region package.json
|
|
16
|
-
var version = "0.15.
|
|
16
|
+
var version = "0.15.13";
|
|
17
17
|
|
|
18
18
|
//#endregion
|
|
19
19
|
//#region src/cli-wrappers/wrappers/formations.ts
|
|
@@ -593,13 +593,25 @@ var routes = {
|
|
|
593
593
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/agents",
|
|
594
594
|
httpMethod: "get",
|
|
595
595
|
pathParams: [],
|
|
596
|
-
queryParams: ["project_id"],
|
|
596
|
+
queryParams: ["project_id", "limit", "offset"],
|
|
597
597
|
flags: [{
|
|
598
598
|
"name": "project_id",
|
|
599
599
|
"description": "Project public ID to filter by",
|
|
600
600
|
"required": false,
|
|
601
601
|
"type": "string",
|
|
602
602
|
"in": "query"
|
|
603
|
+
}, {
|
|
604
|
+
"name": "limit",
|
|
605
|
+
"description": "Maximum number of results to return",
|
|
606
|
+
"required": false,
|
|
607
|
+
"type": "integer",
|
|
608
|
+
"in": "query"
|
|
609
|
+
}, {
|
|
610
|
+
"name": "offset",
|
|
611
|
+
"description": "Number of results to skip",
|
|
612
|
+
"required": false,
|
|
613
|
+
"type": "integer",
|
|
614
|
+
"in": "query"
|
|
603
615
|
}]
|
|
604
616
|
},
|
|
605
617
|
"create-agent": {
|
|
@@ -1361,8 +1373,20 @@ var routes = {
|
|
|
1361
1373
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/api-keys",
|
|
1362
1374
|
httpMethod: "get",
|
|
1363
1375
|
pathParams: [],
|
|
1364
|
-
queryParams: [],
|
|
1365
|
-
flags: [
|
|
1376
|
+
queryParams: ["limit", "offset"],
|
|
1377
|
+
flags: [{
|
|
1378
|
+
"name": "limit",
|
|
1379
|
+
"description": "Maximum number of results to return",
|
|
1380
|
+
"required": false,
|
|
1381
|
+
"type": "integer",
|
|
1382
|
+
"in": "query"
|
|
1383
|
+
}, {
|
|
1384
|
+
"name": "offset",
|
|
1385
|
+
"description": "Number of results to skip",
|
|
1386
|
+
"required": false,
|
|
1387
|
+
"type": "integer",
|
|
1388
|
+
"in": "query"
|
|
1389
|
+
}]
|
|
1366
1390
|
},
|
|
1367
1391
|
"create-api-key": {
|
|
1368
1392
|
serviceClass: "APIKeys",
|
|
@@ -1465,7 +1489,7 @@ var routes = {
|
|
|
1465
1489
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/approvals",
|
|
1466
1490
|
httpMethod: "get",
|
|
1467
1491
|
pathParams: [],
|
|
1468
|
-
queryParams: ["project_id", "status", "origin", "expires_before"],
|
|
1492
|
+
queryParams: ["project_id", "status", "origin", "expires_before", "limit", "offset"],
|
|
1469
1493
|
flags: [{
|
|
1470
1494
|
"name": "project_id",
|
|
1471
1495
|
"description": "Project ID (required if not using project key auth)",
|
|
@@ -1490,6 +1514,18 @@ var routes = {
|
|
|
1490
1514
|
"required": false,
|
|
1491
1515
|
"type": "string",
|
|
1492
1516
|
"in": "query"
|
|
1517
|
+
}, {
|
|
1518
|
+
"name": "limit",
|
|
1519
|
+
"description": "Maximum number of results to return",
|
|
1520
|
+
"required": false,
|
|
1521
|
+
"type": "integer",
|
|
1522
|
+
"in": "query"
|
|
1523
|
+
}, {
|
|
1524
|
+
"name": "offset",
|
|
1525
|
+
"description": "Number of results to skip",
|
|
1526
|
+
"required": false,
|
|
1527
|
+
"type": "integer",
|
|
1528
|
+
"in": "query"
|
|
1493
1529
|
}]
|
|
1494
1530
|
},
|
|
1495
1531
|
"get-approval": {
|
|
@@ -1639,13 +1675,25 @@ var routes = {
|
|
|
1639
1675
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/chats",
|
|
1640
1676
|
httpMethod: "get",
|
|
1641
1677
|
pathParams: [],
|
|
1642
|
-
queryParams: ["project_id"],
|
|
1678
|
+
queryParams: ["project_id", "limit", "offset"],
|
|
1643
1679
|
flags: [{
|
|
1644
1680
|
"name": "project_id",
|
|
1645
1681
|
"description": "Project public ID to filter by",
|
|
1646
1682
|
"required": false,
|
|
1647
1683
|
"type": "string",
|
|
1648
1684
|
"in": "query"
|
|
1685
|
+
}, {
|
|
1686
|
+
"name": "limit",
|
|
1687
|
+
"description": "Maximum number of results to return",
|
|
1688
|
+
"required": false,
|
|
1689
|
+
"type": "integer",
|
|
1690
|
+
"in": "query"
|
|
1691
|
+
}, {
|
|
1692
|
+
"name": "offset",
|
|
1693
|
+
"description": "Number of results to skip",
|
|
1694
|
+
"required": false,
|
|
1695
|
+
"type": "integer",
|
|
1696
|
+
"in": "query"
|
|
1649
1697
|
}]
|
|
1650
1698
|
},
|
|
1651
1699
|
"create-chat": {
|
|
@@ -2755,7 +2803,7 @@ var routes = {
|
|
|
2755
2803
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/exceptions",
|
|
2756
2804
|
httpMethod: "get",
|
|
2757
2805
|
pathParams: [],
|
|
2758
|
-
queryParams: ["project_id", "status", "severity", "kind"],
|
|
2806
|
+
queryParams: ["project_id", "status", "severity", "kind", "limit", "offset"],
|
|
2759
2807
|
flags: [{
|
|
2760
2808
|
"name": "project_id",
|
|
2761
2809
|
"description": "Project ID (required if not using project key auth)",
|
|
@@ -2780,6 +2828,18 @@ var routes = {
|
|
|
2780
2828
|
"required": false,
|
|
2781
2829
|
"type": "string",
|
|
2782
2830
|
"in": "query"
|
|
2831
|
+
}, {
|
|
2832
|
+
"name": "limit",
|
|
2833
|
+
"description": "Maximum number of results to return",
|
|
2834
|
+
"required": false,
|
|
2835
|
+
"type": "integer",
|
|
2836
|
+
"in": "query"
|
|
2837
|
+
}, {
|
|
2838
|
+
"name": "offset",
|
|
2839
|
+
"description": "Number of results to skip",
|
|
2840
|
+
"required": false,
|
|
2841
|
+
"type": "integer",
|
|
2842
|
+
"in": "query"
|
|
2783
2843
|
}]
|
|
2784
2844
|
},
|
|
2785
2845
|
"get-exception": {
|
|
@@ -3249,13 +3309,25 @@ var routes = {
|
|
|
3249
3309
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/formations",
|
|
3250
3310
|
httpMethod: "get",
|
|
3251
3311
|
pathParams: [],
|
|
3252
|
-
queryParams: ["project_id"],
|
|
3312
|
+
queryParams: ["project_id", "limit", "offset"],
|
|
3253
3313
|
flags: [{
|
|
3254
3314
|
"name": "project_id",
|
|
3255
3315
|
"description": "Project ID (required if not using project key auth)",
|
|
3256
3316
|
"required": false,
|
|
3257
3317
|
"type": "string",
|
|
3258
3318
|
"in": "query"
|
|
3319
|
+
}, {
|
|
3320
|
+
"name": "limit",
|
|
3321
|
+
"description": "Maximum number of results to return",
|
|
3322
|
+
"required": false,
|
|
3323
|
+
"type": "integer",
|
|
3324
|
+
"in": "query"
|
|
3325
|
+
}, {
|
|
3326
|
+
"name": "offset",
|
|
3327
|
+
"description": "Number of results to skip",
|
|
3328
|
+
"required": false,
|
|
3329
|
+
"type": "integer",
|
|
3330
|
+
"in": "query"
|
|
3259
3331
|
}]
|
|
3260
3332
|
},
|
|
3261
3333
|
"create-formation": {
|
|
@@ -3371,13 +3443,25 @@ var routes = {
|
|
|
3371
3443
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/formations",
|
|
3372
3444
|
httpMethod: "get",
|
|
3373
3445
|
pathParams: ["formation_id"],
|
|
3374
|
-
queryParams: [],
|
|
3446
|
+
queryParams: ["limit", "offset"],
|
|
3375
3447
|
flags: [{
|
|
3376
3448
|
"name": "formation_id",
|
|
3377
3449
|
"description": "",
|
|
3378
3450
|
"required": true,
|
|
3379
3451
|
"type": "string",
|
|
3380
3452
|
"in": "path"
|
|
3453
|
+
}, {
|
|
3454
|
+
"name": "limit",
|
|
3455
|
+
"description": "Maximum number of results to return",
|
|
3456
|
+
"required": false,
|
|
3457
|
+
"type": "integer",
|
|
3458
|
+
"in": "query"
|
|
3459
|
+
}, {
|
|
3460
|
+
"name": "offset",
|
|
3461
|
+
"description": "Number of results to skip",
|
|
3462
|
+
"required": false,
|
|
3463
|
+
"type": "integer",
|
|
3464
|
+
"in": "query"
|
|
3381
3465
|
}]
|
|
3382
3466
|
},
|
|
3383
3467
|
"list-generations": {
|
|
@@ -3471,13 +3555,25 @@ var routes = {
|
|
|
3471
3555
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/guardrails",
|
|
3472
3556
|
httpMethod: "get",
|
|
3473
3557
|
pathParams: [],
|
|
3474
|
-
queryParams: ["project_id"],
|
|
3558
|
+
queryParams: ["project_id", "limit", "offset"],
|
|
3475
3559
|
flags: [{
|
|
3476
3560
|
"name": "project_id",
|
|
3477
3561
|
"description": "Project public ID to filter by",
|
|
3478
3562
|
"required": false,
|
|
3479
3563
|
"type": "string",
|
|
3480
3564
|
"in": "query"
|
|
3565
|
+
}, {
|
|
3566
|
+
"name": "limit",
|
|
3567
|
+
"description": "Maximum number of results to return",
|
|
3568
|
+
"required": false,
|
|
3569
|
+
"type": "integer",
|
|
3570
|
+
"in": "query"
|
|
3571
|
+
}, {
|
|
3572
|
+
"name": "offset",
|
|
3573
|
+
"description": "Number of results to skip",
|
|
3574
|
+
"required": false,
|
|
3575
|
+
"type": "integer",
|
|
3576
|
+
"in": "query"
|
|
3481
3577
|
}]
|
|
3482
3578
|
},
|
|
3483
3579
|
"create-guardrail": {
|
|
@@ -3949,7 +4045,7 @@ var routes = {
|
|
|
3949
4045
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/memories",
|
|
3950
4046
|
httpMethod: "get",
|
|
3951
4047
|
pathParams: [],
|
|
3952
|
-
queryParams: ["project_id", "tags"],
|
|
4048
|
+
queryParams: ["project_id", "tags", "limit", "offset"],
|
|
3953
4049
|
flags: [{
|
|
3954
4050
|
"name": "project_id",
|
|
3955
4051
|
"description": "Project ID (required if not using project key auth)",
|
|
@@ -3962,6 +4058,18 @@ var routes = {
|
|
|
3962
4058
|
"required": false,
|
|
3963
4059
|
"type": "array",
|
|
3964
4060
|
"in": "query"
|
|
4061
|
+
}, {
|
|
4062
|
+
"name": "limit",
|
|
4063
|
+
"description": "Maximum number of results to return",
|
|
4064
|
+
"required": false,
|
|
4065
|
+
"type": "integer",
|
|
4066
|
+
"in": "query"
|
|
4067
|
+
}, {
|
|
4068
|
+
"name": "offset",
|
|
4069
|
+
"description": "Number of results to skip",
|
|
4070
|
+
"required": false,
|
|
4071
|
+
"type": "integer",
|
|
4072
|
+
"in": "query"
|
|
3965
4073
|
}]
|
|
3966
4074
|
},
|
|
3967
4075
|
"create-memory": {
|
|
@@ -4071,13 +4179,25 @@ var routes = {
|
|
|
4071
4179
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/memoryEntries",
|
|
4072
4180
|
httpMethod: "get",
|
|
4073
4181
|
pathParams: [],
|
|
4074
|
-
queryParams: ["memory_id"],
|
|
4182
|
+
queryParams: ["memory_id", "limit", "offset"],
|
|
4075
4183
|
flags: [{
|
|
4076
4184
|
"name": "memory_id",
|
|
4077
4185
|
"description": "Memory container to list entries from (mem_...)",
|
|
4078
4186
|
"required": true,
|
|
4079
4187
|
"type": "string",
|
|
4080
4188
|
"in": "query"
|
|
4189
|
+
}, {
|
|
4190
|
+
"name": "limit",
|
|
4191
|
+
"description": "Maximum number of results to return",
|
|
4192
|
+
"required": false,
|
|
4193
|
+
"type": "integer",
|
|
4194
|
+
"in": "query"
|
|
4195
|
+
}, {
|
|
4196
|
+
"name": "offset",
|
|
4197
|
+
"description": "Number of results to skip",
|
|
4198
|
+
"required": false,
|
|
4199
|
+
"type": "integer",
|
|
4200
|
+
"in": "query"
|
|
4081
4201
|
}]
|
|
4082
4202
|
},
|
|
4083
4203
|
"create-memory-entry": {
|
|
@@ -4205,13 +4325,25 @@ var routes = {
|
|
|
4205
4325
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/orchestrations",
|
|
4206
4326
|
httpMethod: "get",
|
|
4207
4327
|
pathParams: [],
|
|
4208
|
-
queryParams: ["project_id"],
|
|
4328
|
+
queryParams: ["project_id", "limit", "offset"],
|
|
4209
4329
|
flags: [{
|
|
4210
4330
|
"name": "project_id",
|
|
4211
4331
|
"description": "Filter by project public ID",
|
|
4212
4332
|
"required": false,
|
|
4213
4333
|
"type": "string",
|
|
4214
4334
|
"in": "query"
|
|
4335
|
+
}, {
|
|
4336
|
+
"name": "limit",
|
|
4337
|
+
"description": "Maximum number of results to return",
|
|
4338
|
+
"required": false,
|
|
4339
|
+
"type": "integer",
|
|
4340
|
+
"in": "query"
|
|
4341
|
+
}, {
|
|
4342
|
+
"name": "offset",
|
|
4343
|
+
"description": "Number of results to skip",
|
|
4344
|
+
"required": false,
|
|
4345
|
+
"type": "integer",
|
|
4346
|
+
"in": "query"
|
|
4215
4347
|
}]
|
|
4216
4348
|
},
|
|
4217
4349
|
"create-orchestration": {
|
|
@@ -4395,13 +4527,25 @@ var routes = {
|
|
|
4395
4527
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/orchestrations",
|
|
4396
4528
|
httpMethod: "get",
|
|
4397
4529
|
pathParams: [],
|
|
4398
|
-
queryParams: ["orchestration_id"],
|
|
4530
|
+
queryParams: ["orchestration_id", "limit", "offset"],
|
|
4399
4531
|
flags: [{
|
|
4400
4532
|
"name": "orchestration_id",
|
|
4401
4533
|
"description": "Filter by orchestration public ID (orch_...)",
|
|
4402
4534
|
"required": false,
|
|
4403
4535
|
"type": "string",
|
|
4404
4536
|
"in": "query"
|
|
4537
|
+
}, {
|
|
4538
|
+
"name": "limit",
|
|
4539
|
+
"description": "Maximum number of results to return",
|
|
4540
|
+
"required": false,
|
|
4541
|
+
"type": "integer",
|
|
4542
|
+
"in": "query"
|
|
4543
|
+
}, {
|
|
4544
|
+
"name": "offset",
|
|
4545
|
+
"description": "Number of results to skip",
|
|
4546
|
+
"required": false,
|
|
4547
|
+
"type": "integer",
|
|
4548
|
+
"in": "query"
|
|
4405
4549
|
}]
|
|
4406
4550
|
},
|
|
4407
4551
|
"start-orchestration-run": {
|
|
@@ -4515,13 +4659,25 @@ var routes = {
|
|
|
4515
4659
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/policies",
|
|
4516
4660
|
httpMethod: "get",
|
|
4517
4661
|
pathParams: [],
|
|
4518
|
-
queryParams: ["user_id"],
|
|
4662
|
+
queryParams: ["user_id", "limit", "offset"],
|
|
4519
4663
|
flags: [{
|
|
4520
4664
|
"name": "user_id",
|
|
4521
4665
|
"description": "Return only policies attached to this user (user_...)",
|
|
4522
4666
|
"required": false,
|
|
4523
4667
|
"type": "string",
|
|
4524
4668
|
"in": "query"
|
|
4669
|
+
}, {
|
|
4670
|
+
"name": "limit",
|
|
4671
|
+
"description": "Maximum number of results to return",
|
|
4672
|
+
"required": false,
|
|
4673
|
+
"type": "integer",
|
|
4674
|
+
"in": "query"
|
|
4675
|
+
}, {
|
|
4676
|
+
"name": "offset",
|
|
4677
|
+
"description": "Number of results to skip",
|
|
4678
|
+
"required": false,
|
|
4679
|
+
"type": "integer",
|
|
4680
|
+
"in": "query"
|
|
4525
4681
|
}]
|
|
4526
4682
|
},
|
|
4527
4683
|
"create-policy": {
|
|
@@ -4625,8 +4781,20 @@ var routes = {
|
|
|
4625
4781
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/projects",
|
|
4626
4782
|
httpMethod: "get",
|
|
4627
4783
|
pathParams: [],
|
|
4628
|
-
queryParams: [],
|
|
4629
|
-
flags: [
|
|
4784
|
+
queryParams: ["limit", "offset"],
|
|
4785
|
+
flags: [{
|
|
4786
|
+
"name": "limit",
|
|
4787
|
+
"description": "Maximum number of results to return",
|
|
4788
|
+
"required": false,
|
|
4789
|
+
"type": "integer",
|
|
4790
|
+
"in": "query"
|
|
4791
|
+
}, {
|
|
4792
|
+
"name": "offset",
|
|
4793
|
+
"description": "Number of results to skip",
|
|
4794
|
+
"required": false,
|
|
4795
|
+
"type": "integer",
|
|
4796
|
+
"in": "query"
|
|
4797
|
+
}]
|
|
4630
4798
|
},
|
|
4631
4799
|
"create-project": {
|
|
4632
4800
|
serviceClass: "Projects",
|
|
@@ -4761,13 +4929,25 @@ var routes = {
|
|
|
4761
4929
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/quotas",
|
|
4762
4930
|
httpMethod: "get",
|
|
4763
4931
|
pathParams: [],
|
|
4764
|
-
queryParams: ["project_id"],
|
|
4932
|
+
queryParams: ["project_id", "limit", "offset"],
|
|
4765
4933
|
flags: [{
|
|
4766
4934
|
"name": "project_id",
|
|
4767
4935
|
"description": "Project ID (required if not using project key auth)",
|
|
4768
4936
|
"required": false,
|
|
4769
4937
|
"type": "string",
|
|
4770
4938
|
"in": "query"
|
|
4939
|
+
}, {
|
|
4940
|
+
"name": "limit",
|
|
4941
|
+
"description": "Maximum number of results to return",
|
|
4942
|
+
"required": false,
|
|
4943
|
+
"type": "integer",
|
|
4944
|
+
"in": "query"
|
|
4945
|
+
}, {
|
|
4946
|
+
"name": "offset",
|
|
4947
|
+
"description": "Number of results to skip",
|
|
4948
|
+
"required": false,
|
|
4949
|
+
"type": "integer",
|
|
4950
|
+
"in": "query"
|
|
4771
4951
|
}]
|
|
4772
4952
|
},
|
|
4773
4953
|
"create-quota": {
|
|
@@ -5331,7 +5511,7 @@ var routes = {
|
|
|
5331
5511
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/tasks",
|
|
5332
5512
|
httpMethod: "get",
|
|
5333
5513
|
pathParams: [],
|
|
5334
|
-
queryParams: ["project_id", "workflow_id", "state", "status", "assignee"],
|
|
5514
|
+
queryParams: ["project_id", "workflow_id", "state", "status", "assignee", "limit", "offset"],
|
|
5335
5515
|
flags: [{
|
|
5336
5516
|
"name": "project_id",
|
|
5337
5517
|
"description": "",
|
|
@@ -5362,6 +5542,18 @@ var routes = {
|
|
|
5362
5542
|
"required": false,
|
|
5363
5543
|
"type": "string",
|
|
5364
5544
|
"in": "query"
|
|
5545
|
+
}, {
|
|
5546
|
+
"name": "limit",
|
|
5547
|
+
"description": "Maximum number of results to return",
|
|
5548
|
+
"required": false,
|
|
5549
|
+
"type": "integer",
|
|
5550
|
+
"in": "query"
|
|
5551
|
+
}, {
|
|
5552
|
+
"name": "offset",
|
|
5553
|
+
"description": "Number of results to skip",
|
|
5554
|
+
"required": false,
|
|
5555
|
+
"type": "integer",
|
|
5556
|
+
"in": "query"
|
|
5365
5557
|
}]
|
|
5366
5558
|
},
|
|
5367
5559
|
"create-task": {
|
|
@@ -5521,13 +5713,25 @@ var routes = {
|
|
|
5521
5713
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/tools",
|
|
5522
5714
|
httpMethod: "get",
|
|
5523
5715
|
pathParams: [],
|
|
5524
|
-
queryParams: ["project_id"],
|
|
5716
|
+
queryParams: ["project_id", "limit", "offset"],
|
|
5525
5717
|
flags: [{
|
|
5526
5718
|
"name": "project_id",
|
|
5527
5719
|
"description": "Project public ID to filter by",
|
|
5528
5720
|
"required": false,
|
|
5529
5721
|
"type": "string",
|
|
5530
5722
|
"in": "query"
|
|
5723
|
+
}, {
|
|
5724
|
+
"name": "limit",
|
|
5725
|
+
"description": "Maximum number of results to return",
|
|
5726
|
+
"required": false,
|
|
5727
|
+
"type": "integer",
|
|
5728
|
+
"in": "query"
|
|
5729
|
+
}, {
|
|
5730
|
+
"name": "offset",
|
|
5731
|
+
"description": "Number of results to skip",
|
|
5732
|
+
"required": false,
|
|
5733
|
+
"type": "integer",
|
|
5734
|
+
"in": "query"
|
|
5531
5735
|
}]
|
|
5532
5736
|
},
|
|
5533
5737
|
"create-tool": {
|
|
@@ -5851,7 +6055,7 @@ var routes = {
|
|
|
5851
6055
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/triggers",
|
|
5852
6056
|
httpMethod: "get",
|
|
5853
6057
|
pathParams: [],
|
|
5854
|
-
queryParams: ["project_id", "type", "target_type"],
|
|
6058
|
+
queryParams: ["project_id", "type", "target_type", "limit", "offset"],
|
|
5855
6059
|
flags: [{
|
|
5856
6060
|
"name": "project_id",
|
|
5857
6061
|
"description": "",
|
|
@@ -5870,6 +6074,18 @@ var routes = {
|
|
|
5870
6074
|
"required": false,
|
|
5871
6075
|
"type": "string",
|
|
5872
6076
|
"in": "query"
|
|
6077
|
+
}, {
|
|
6078
|
+
"name": "limit",
|
|
6079
|
+
"description": "Maximum number of results to return",
|
|
6080
|
+
"required": false,
|
|
6081
|
+
"type": "integer",
|
|
6082
|
+
"in": "query"
|
|
6083
|
+
}, {
|
|
6084
|
+
"name": "offset",
|
|
6085
|
+
"description": "Number of results to skip",
|
|
6086
|
+
"required": false,
|
|
6087
|
+
"type": "integer",
|
|
6088
|
+
"in": "query"
|
|
5873
6089
|
}]
|
|
5874
6090
|
},
|
|
5875
6091
|
"create-trigger": {
|
|
@@ -6247,13 +6463,25 @@ var routes = {
|
|
|
6247
6463
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/usage",
|
|
6248
6464
|
httpMethod: "get",
|
|
6249
6465
|
pathParams: [],
|
|
6250
|
-
queryParams: ["project_id"],
|
|
6466
|
+
queryParams: ["project_id", "limit", "offset"],
|
|
6251
6467
|
flags: [{
|
|
6252
6468
|
"name": "project_id",
|
|
6253
6469
|
"description": "Filter by project public ID",
|
|
6254
6470
|
"required": false,
|
|
6255
6471
|
"type": "string",
|
|
6256
6472
|
"in": "query"
|
|
6473
|
+
}, {
|
|
6474
|
+
"name": "limit",
|
|
6475
|
+
"description": "Maximum number of results to return",
|
|
6476
|
+
"required": false,
|
|
6477
|
+
"type": "integer",
|
|
6478
|
+
"in": "query"
|
|
6479
|
+
}, {
|
|
6480
|
+
"name": "offset",
|
|
6481
|
+
"description": "Number of results to skip",
|
|
6482
|
+
"required": false,
|
|
6483
|
+
"type": "integer",
|
|
6484
|
+
"in": "query"
|
|
6257
6485
|
}]
|
|
6258
6486
|
},
|
|
6259
6487
|
"create-usage-threshold": {
|
|
@@ -6371,8 +6599,20 @@ var routes = {
|
|
|
6371
6599
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/users",
|
|
6372
6600
|
httpMethod: "get",
|
|
6373
6601
|
pathParams: [],
|
|
6374
|
-
queryParams: [],
|
|
6375
|
-
flags: [
|
|
6602
|
+
queryParams: ["limit", "offset"],
|
|
6603
|
+
flags: [{
|
|
6604
|
+
"name": "limit",
|
|
6605
|
+
"description": "Maximum number of results to return",
|
|
6606
|
+
"required": false,
|
|
6607
|
+
"type": "integer",
|
|
6608
|
+
"in": "query"
|
|
6609
|
+
}, {
|
|
6610
|
+
"name": "offset",
|
|
6611
|
+
"description": "Number of results to skip",
|
|
6612
|
+
"required": false,
|
|
6613
|
+
"type": "integer",
|
|
6614
|
+
"in": "query"
|
|
6615
|
+
}]
|
|
6376
6616
|
},
|
|
6377
6617
|
"create-user": {
|
|
6378
6618
|
serviceClass: "Users",
|
|
@@ -6507,13 +6747,25 @@ var routes = {
|
|
|
6507
6747
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/webhooks",
|
|
6508
6748
|
httpMethod: "get",
|
|
6509
6749
|
pathParams: [],
|
|
6510
|
-
queryParams: ["project_id"],
|
|
6750
|
+
queryParams: ["project_id", "limit", "offset"],
|
|
6511
6751
|
flags: [{
|
|
6512
6752
|
"name": "project_id",
|
|
6513
6753
|
"description": "",
|
|
6514
6754
|
"required": false,
|
|
6515
6755
|
"type": "string",
|
|
6516
6756
|
"in": "query"
|
|
6757
|
+
}, {
|
|
6758
|
+
"name": "limit",
|
|
6759
|
+
"description": "Maximum number of results to return",
|
|
6760
|
+
"required": false,
|
|
6761
|
+
"type": "integer",
|
|
6762
|
+
"in": "query"
|
|
6763
|
+
}, {
|
|
6764
|
+
"name": "offset",
|
|
6765
|
+
"description": "Number of results to skip",
|
|
6766
|
+
"required": false,
|
|
6767
|
+
"type": "integer",
|
|
6768
|
+
"in": "query"
|
|
6517
6769
|
}]
|
|
6518
6770
|
},
|
|
6519
6771
|
"create-webhook": {
|
|
@@ -6729,13 +6981,25 @@ var routes = {
|
|
|
6729
6981
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/workflows",
|
|
6730
6982
|
httpMethod: "get",
|
|
6731
6983
|
pathParams: [],
|
|
6732
|
-
queryParams: ["project_id"],
|
|
6984
|
+
queryParams: ["project_id", "limit", "offset"],
|
|
6733
6985
|
flags: [{
|
|
6734
6986
|
"name": "project_id",
|
|
6735
6987
|
"description": "",
|
|
6736
6988
|
"required": false,
|
|
6737
6989
|
"type": "string",
|
|
6738
6990
|
"in": "query"
|
|
6991
|
+
}, {
|
|
6992
|
+
"name": "limit",
|
|
6993
|
+
"description": "Maximum number of results to return",
|
|
6994
|
+
"required": false,
|
|
6995
|
+
"type": "integer",
|
|
6996
|
+
"in": "query"
|
|
6997
|
+
}, {
|
|
6998
|
+
"name": "offset",
|
|
6999
|
+
"description": "Number of results to skip",
|
|
7000
|
+
"required": false,
|
|
7001
|
+
"type": "integer",
|
|
7002
|
+
"in": "query"
|
|
6739
7003
|
}]
|
|
6740
7004
|
},
|
|
6741
7005
|
"create-workflow": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soat/cli",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@inquirer/input": "^5.1.2",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"@ttoss/logger": "^0.8.19",
|
|
9
9
|
"commander": "^15.0.0",
|
|
10
10
|
"js-yaml": "^5.2.1",
|
|
11
|
-
"@soat/sdk": "0.15.
|
|
11
|
+
"@soat/sdk": "0.15.13"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@ttoss/config": "^1.37.17",
|