@arke-institute/sdk 3.6.4 → 3.6.6
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/generated/index.d.cts +37 -22
- package/dist/generated/index.d.ts +37 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/operations/index.cjs +1 -0
- package/dist/operations/index.cjs.map +1 -1
- package/dist/operations/index.js +1 -0
- package/dist/operations/index.js.map +1 -1
- package/openapi/spec.json +181 -23
- package/openapi/version.json +1 -1
- package/package.json +1 -1
package/openapi/spec.json
CHANGED
|
@@ -116,13 +116,13 @@
|
|
|
116
116
|
"type": "http",
|
|
117
117
|
"scheme": "bearer",
|
|
118
118
|
"bearerFormat": "JWT",
|
|
119
|
-
"description": "Supabase JWT token"
|
|
119
|
+
"description": "Supabase JWT token. Use `Authorization: Bearer <jwt>`. Only for JWT tokens from Supabase auth - do NOT use Bearer with API keys."
|
|
120
120
|
},
|
|
121
121
|
"apiKeyAuth": {
|
|
122
122
|
"type": "apiKey",
|
|
123
123
|
"in": "header",
|
|
124
124
|
"name": "Authorization",
|
|
125
|
-
"description": "API Key authentication. Format: `ApiKey
|
|
125
|
+
"description": "API Key authentication. **Important:** Use `Authorization: ApiKey <key>` (NOT Bearer). Format: `ApiKey uk_xxx` (user keys) or `ApiKey ak_xxx` (agent keys). Using Bearer with API keys will fail."
|
|
126
126
|
}
|
|
127
127
|
},
|
|
128
128
|
"parameters": {
|
|
@@ -1120,6 +1120,12 @@
|
|
|
1120
1120
|
"format": "uri",
|
|
1121
1121
|
"description": "URL for collection display image"
|
|
1122
1122
|
},
|
|
1123
|
+
"use_roles_default": {
|
|
1124
|
+
"type": "boolean",
|
|
1125
|
+
"default": true,
|
|
1126
|
+
"description": "Whether to merge with default roles (true) or use only provided roles (false). Public role with *:view is always ensured.",
|
|
1127
|
+
"example": true
|
|
1128
|
+
},
|
|
1123
1129
|
"roles": {
|
|
1124
1130
|
"type": "object",
|
|
1125
1131
|
"additionalProperties": {
|
|
@@ -1128,26 +1134,11 @@
|
|
|
1128
1134
|
"type": "string"
|
|
1129
1135
|
}
|
|
1130
1136
|
},
|
|
1131
|
-
"description": "
|
|
1137
|
+
"description": "Role definitions. When use_roles_default is true (default), these merge with defaults. When false, these replace defaults entirely.",
|
|
1132
1138
|
"example": {
|
|
1133
|
-
"captain": [
|
|
1134
|
-
"*:view",
|
|
1135
|
-
"*:update",
|
|
1136
|
-
"*:create",
|
|
1137
|
-
"collection:manage"
|
|
1138
|
-
],
|
|
1139
|
-
"harpooner": [
|
|
1140
|
-
"*:view",
|
|
1141
|
-
"*:update",
|
|
1142
|
-
"*:create"
|
|
1143
|
-
],
|
|
1144
|
-
"crew": [
|
|
1145
|
-
"*:view",
|
|
1146
|
-
"entity:create"
|
|
1147
|
-
],
|
|
1148
1139
|
"public": [
|
|
1149
|
-
"
|
|
1150
|
-
"
|
|
1140
|
+
"*:view",
|
|
1141
|
+
"*:invoke"
|
|
1151
1142
|
]
|
|
1152
1143
|
}
|
|
1153
1144
|
},
|
|
@@ -2258,6 +2249,11 @@
|
|
|
2258
2249
|
"pattern": "^(?:II[0-9A-HJKMNP-TV-Z]{24}|[FC][0-9A-HJKMNP-TV-Z]{25}|[0-9A-HJKMNP-TV-Z]{26})$",
|
|
2259
2250
|
"description": "Parent collection ID (creates collection relationship)",
|
|
2260
2251
|
"example": "01KDETYWYWM0MJVKM8DK3AEXPY"
|
|
2252
|
+
},
|
|
2253
|
+
"sync_index": {
|
|
2254
|
+
"type": "boolean",
|
|
2255
|
+
"default": false,
|
|
2256
|
+
"description": "Wait for collection index update before returning. Use when checking for duplicates immediately after creation. Adds ~1-5ms latency per collection."
|
|
2261
2257
|
}
|
|
2262
2258
|
},
|
|
2263
2259
|
"required": [
|
|
@@ -8401,6 +8397,9 @@
|
|
|
8401
8397
|
"security": [
|
|
8402
8398
|
{
|
|
8403
8399
|
"bearerAuth": []
|
|
8400
|
+
},
|
|
8401
|
+
{
|
|
8402
|
+
"apiKeyAuth": []
|
|
8404
8403
|
}
|
|
8405
8404
|
],
|
|
8406
8405
|
"responses": {
|
|
@@ -8479,6 +8478,9 @@
|
|
|
8479
8478
|
"security": [
|
|
8480
8479
|
{
|
|
8481
8480
|
"bearerAuth": []
|
|
8481
|
+
},
|
|
8482
|
+
{
|
|
8483
|
+
"apiKeyAuth": []
|
|
8482
8484
|
}
|
|
8483
8485
|
],
|
|
8484
8486
|
"responses": {
|
|
@@ -8717,6 +8719,9 @@
|
|
|
8717
8719
|
"security": [
|
|
8718
8720
|
{
|
|
8719
8721
|
"bearerAuth": []
|
|
8722
|
+
},
|
|
8723
|
+
{
|
|
8724
|
+
"apiKeyAuth": []
|
|
8720
8725
|
}
|
|
8721
8726
|
],
|
|
8722
8727
|
"responses": {
|
|
@@ -8763,6 +8768,9 @@
|
|
|
8763
8768
|
"security": [
|
|
8764
8769
|
{
|
|
8765
8770
|
"bearerAuth": []
|
|
8771
|
+
},
|
|
8772
|
+
{
|
|
8773
|
+
"apiKeyAuth": []
|
|
8766
8774
|
}
|
|
8767
8775
|
],
|
|
8768
8776
|
"requestBody": {
|
|
@@ -8813,6 +8821,9 @@
|
|
|
8813
8821
|
"security": [
|
|
8814
8822
|
{
|
|
8815
8823
|
"bearerAuth": []
|
|
8824
|
+
},
|
|
8825
|
+
{
|
|
8826
|
+
"apiKeyAuth": []
|
|
8816
8827
|
}
|
|
8817
8828
|
],
|
|
8818
8829
|
"responses": {
|
|
@@ -8856,6 +8867,9 @@
|
|
|
8856
8867
|
"security": [
|
|
8857
8868
|
{
|
|
8858
8869
|
"bearerAuth": []
|
|
8870
|
+
},
|
|
8871
|
+
{
|
|
8872
|
+
"apiKeyAuth": []
|
|
8859
8873
|
}
|
|
8860
8874
|
],
|
|
8861
8875
|
"parameters": [
|
|
@@ -9029,6 +9043,9 @@
|
|
|
9029
9043
|
"security": [
|
|
9030
9044
|
{
|
|
9031
9045
|
"bearerAuth": []
|
|
9046
|
+
},
|
|
9047
|
+
{
|
|
9048
|
+
"apiKeyAuth": []
|
|
9032
9049
|
}
|
|
9033
9050
|
],
|
|
9034
9051
|
"requestBody": {
|
|
@@ -9100,13 +9117,16 @@
|
|
|
9100
9117
|
"Collections"
|
|
9101
9118
|
],
|
|
9102
9119
|
"summary": "Create a new collection",
|
|
9103
|
-
"description": "Creates a collection with the authenticated user as owner.\n\n---\n**Permission:** `collection:create` \n**Auth:** required",
|
|
9120
|
+
"description": "Creates a collection with the authenticated user as owner.\n\n**Default Roles:**\n\nBy default (`use_roles_default: true`), collections include these standard roles:\n- `owner`: Full control including collection management\n- `editor`: Can modify entities but not collection settings\n- `viewer`: Read-only access\n- `public`: Public read access (`*:view`)\n\n**Customizing Roles:**\n\nPass custom `roles` to override specific defaults while keeping others. For example, to make entities publicly invokable (for agents):\n```json\n{ \"roles\": { \"public\": [\"*:view\", \"*:invoke\"] } }\n```\n\nSet `use_roles_default: false` to define all roles from scratch.\n\n**Platform Requirement:** The `public` role with `*:view` is always automatically ensured, guaranteeing all collections are publicly readable.\n\n---\n**Permission:** `collection:create` \n**Auth:** required",
|
|
9104
9121
|
"x-arke-action": "collection:create",
|
|
9105
9122
|
"x-arke-auth": "required",
|
|
9106
9123
|
"x-arke-tier": "standard",
|
|
9107
9124
|
"security": [
|
|
9108
9125
|
{
|
|
9109
9126
|
"bearerAuth": []
|
|
9127
|
+
},
|
|
9128
|
+
{
|
|
9129
|
+
"apiKeyAuth": []
|
|
9110
9130
|
}
|
|
9111
9131
|
],
|
|
9112
9132
|
"requestBody": {
|
|
@@ -9257,6 +9277,9 @@
|
|
|
9257
9277
|
"security": [
|
|
9258
9278
|
{
|
|
9259
9279
|
"bearerAuth": []
|
|
9280
|
+
},
|
|
9281
|
+
{
|
|
9282
|
+
"apiKeyAuth": []
|
|
9260
9283
|
}
|
|
9261
9284
|
],
|
|
9262
9285
|
"parameters": [
|
|
@@ -9403,6 +9426,9 @@
|
|
|
9403
9426
|
"security": [
|
|
9404
9427
|
{
|
|
9405
9428
|
"bearerAuth": []
|
|
9429
|
+
},
|
|
9430
|
+
{
|
|
9431
|
+
"apiKeyAuth": []
|
|
9406
9432
|
}
|
|
9407
9433
|
],
|
|
9408
9434
|
"parameters": [
|
|
@@ -9518,6 +9544,9 @@
|
|
|
9518
9544
|
"security": [
|
|
9519
9545
|
{
|
|
9520
9546
|
"bearerAuth": []
|
|
9547
|
+
},
|
|
9548
|
+
{
|
|
9549
|
+
"apiKeyAuth": []
|
|
9521
9550
|
}
|
|
9522
9551
|
],
|
|
9523
9552
|
"parameters": [
|
|
@@ -9643,6 +9672,9 @@
|
|
|
9643
9672
|
"security": [
|
|
9644
9673
|
{
|
|
9645
9674
|
"bearerAuth": []
|
|
9675
|
+
},
|
|
9676
|
+
{
|
|
9677
|
+
"apiKeyAuth": []
|
|
9646
9678
|
}
|
|
9647
9679
|
],
|
|
9648
9680
|
"parameters": [
|
|
@@ -9813,6 +9845,9 @@
|
|
|
9813
9845
|
"security": [
|
|
9814
9846
|
{
|
|
9815
9847
|
"bearerAuth": []
|
|
9848
|
+
},
|
|
9849
|
+
{
|
|
9850
|
+
"apiKeyAuth": []
|
|
9816
9851
|
}
|
|
9817
9852
|
],
|
|
9818
9853
|
"parameters": [
|
|
@@ -9928,6 +9963,9 @@
|
|
|
9928
9963
|
"security": [
|
|
9929
9964
|
{
|
|
9930
9965
|
"bearerAuth": []
|
|
9966
|
+
},
|
|
9967
|
+
{
|
|
9968
|
+
"apiKeyAuth": []
|
|
9931
9969
|
}
|
|
9932
9970
|
],
|
|
9933
9971
|
"parameters": [
|
|
@@ -10057,6 +10095,9 @@
|
|
|
10057
10095
|
"security": [
|
|
10058
10096
|
{
|
|
10059
10097
|
"bearerAuth": []
|
|
10098
|
+
},
|
|
10099
|
+
{
|
|
10100
|
+
"apiKeyAuth": []
|
|
10060
10101
|
}
|
|
10061
10102
|
],
|
|
10062
10103
|
"parameters": [
|
|
@@ -10182,7 +10223,7 @@
|
|
|
10182
10223
|
"Collections"
|
|
10183
10224
|
],
|
|
10184
10225
|
"summary": "List entities in a collection",
|
|
10185
|
-
"description": "Returns entities belonging to this collection
|
|
10226
|
+
"description": "Returns entities belonging to this collection.\n\nSupports pagination and optional type filtering. Results are ordered by creation date (newest first).\n\n**Expansion Modes:**\n\nBy default, returns lightweight summaries (pi, type, label, timestamps).\n\nUse the `expand` parameter to hydrate entity data from storage:\n\n- **`?expand=preview`**: Adds `preview` field with fresh lightweight data (label, truncated description/text, timestamps). ~5-10KB per entity.\n\n- **`?expand=full`**: Adds `entity` field with complete manifest (all properties, relationships, version history). ~20-50KB per entity.\n\n**Performance Note:** Expansion requires fetching each entity from storage. Limited to 100 entities per request. Use smaller `limit` values when expanding.\n\n---\n**Permission:** `collection:view` \n**Auth:** optional",
|
|
10186
10227
|
"x-arke-action": "collection:view",
|
|
10187
10228
|
"x-arke-auth": "optional",
|
|
10188
10229
|
"x-arke-tier": "external",
|
|
@@ -10288,7 +10329,7 @@
|
|
|
10288
10329
|
}
|
|
10289
10330
|
},
|
|
10290
10331
|
"503": {
|
|
10291
|
-
"description": "
|
|
10332
|
+
"description": "Collection index service unavailable"
|
|
10292
10333
|
}
|
|
10293
10334
|
}
|
|
10294
10335
|
}
|
|
@@ -10507,6 +10548,9 @@
|
|
|
10507
10548
|
"security": [
|
|
10508
10549
|
{
|
|
10509
10550
|
"bearerAuth": []
|
|
10551
|
+
},
|
|
10552
|
+
{
|
|
10553
|
+
"apiKeyAuth": []
|
|
10510
10554
|
}
|
|
10511
10555
|
],
|
|
10512
10556
|
"parameters": [
|
|
@@ -10629,6 +10673,9 @@
|
|
|
10629
10673
|
"security": [
|
|
10630
10674
|
{
|
|
10631
10675
|
"bearerAuth": []
|
|
10676
|
+
},
|
|
10677
|
+
{
|
|
10678
|
+
"apiKeyAuth": []
|
|
10632
10679
|
}
|
|
10633
10680
|
],
|
|
10634
10681
|
"parameters": [
|
|
@@ -10885,6 +10932,9 @@
|
|
|
10885
10932
|
"security": [
|
|
10886
10933
|
{
|
|
10887
10934
|
"bearerAuth": []
|
|
10935
|
+
},
|
|
10936
|
+
{
|
|
10937
|
+
"apiKeyAuth": []
|
|
10888
10938
|
}
|
|
10889
10939
|
],
|
|
10890
10940
|
"parameters": [
|
|
@@ -11029,6 +11079,9 @@
|
|
|
11029
11079
|
"security": [
|
|
11030
11080
|
{
|
|
11031
11081
|
"bearerAuth": []
|
|
11082
|
+
},
|
|
11083
|
+
{
|
|
11084
|
+
"apiKeyAuth": []
|
|
11032
11085
|
}
|
|
11033
11086
|
],
|
|
11034
11087
|
"parameters": [
|
|
@@ -11279,6 +11332,9 @@
|
|
|
11279
11332
|
"security": [
|
|
11280
11333
|
{
|
|
11281
11334
|
"bearerAuth": []
|
|
11335
|
+
},
|
|
11336
|
+
{
|
|
11337
|
+
"apiKeyAuth": []
|
|
11282
11338
|
}
|
|
11283
11339
|
],
|
|
11284
11340
|
"parameters": [
|
|
@@ -11412,6 +11468,9 @@
|
|
|
11412
11468
|
"security": [
|
|
11413
11469
|
{
|
|
11414
11470
|
"bearerAuth": []
|
|
11471
|
+
},
|
|
11472
|
+
{
|
|
11473
|
+
"apiKeyAuth": []
|
|
11415
11474
|
}
|
|
11416
11475
|
],
|
|
11417
11476
|
"parameters": [
|
|
@@ -11849,6 +11908,9 @@
|
|
|
11849
11908
|
"security": [
|
|
11850
11909
|
{
|
|
11851
11910
|
"bearerAuth": []
|
|
11911
|
+
},
|
|
11912
|
+
{
|
|
11913
|
+
"apiKeyAuth": []
|
|
11852
11914
|
}
|
|
11853
11915
|
],
|
|
11854
11916
|
"parameters": [
|
|
@@ -11931,6 +11993,9 @@
|
|
|
11931
11993
|
"security": [
|
|
11932
11994
|
{
|
|
11933
11995
|
"bearerAuth": []
|
|
11996
|
+
},
|
|
11997
|
+
{
|
|
11998
|
+
"apiKeyAuth": []
|
|
11934
11999
|
}
|
|
11935
12000
|
],
|
|
11936
12001
|
"parameters": [
|
|
@@ -12168,6 +12233,9 @@
|
|
|
12168
12233
|
"security": [
|
|
12169
12234
|
{
|
|
12170
12235
|
"bearerAuth": []
|
|
12236
|
+
},
|
|
12237
|
+
{
|
|
12238
|
+
"apiKeyAuth": []
|
|
12171
12239
|
}
|
|
12172
12240
|
],
|
|
12173
12241
|
"parameters": [
|
|
@@ -12321,6 +12389,9 @@
|
|
|
12321
12389
|
"security": [
|
|
12322
12390
|
{
|
|
12323
12391
|
"bearerAuth": []
|
|
12392
|
+
},
|
|
12393
|
+
{
|
|
12394
|
+
"apiKeyAuth": []
|
|
12324
12395
|
}
|
|
12325
12396
|
],
|
|
12326
12397
|
"parameters": [
|
|
@@ -12453,6 +12524,9 @@
|
|
|
12453
12524
|
"security": [
|
|
12454
12525
|
{
|
|
12455
12526
|
"bearerAuth": []
|
|
12527
|
+
},
|
|
12528
|
+
{
|
|
12529
|
+
"apiKeyAuth": []
|
|
12456
12530
|
}
|
|
12457
12531
|
],
|
|
12458
12532
|
"parameters": [
|
|
@@ -12568,6 +12642,9 @@
|
|
|
12568
12642
|
"security": [
|
|
12569
12643
|
{
|
|
12570
12644
|
"bearerAuth": []
|
|
12645
|
+
},
|
|
12646
|
+
{
|
|
12647
|
+
"apiKeyAuth": []
|
|
12571
12648
|
}
|
|
12572
12649
|
],
|
|
12573
12650
|
"parameters": [
|
|
@@ -12701,6 +12778,9 @@
|
|
|
12701
12778
|
"security": [
|
|
12702
12779
|
{
|
|
12703
12780
|
"bearerAuth": []
|
|
12781
|
+
},
|
|
12782
|
+
{
|
|
12783
|
+
"apiKeyAuth": []
|
|
12704
12784
|
}
|
|
12705
12785
|
],
|
|
12706
12786
|
"requestBody": {
|
|
@@ -12977,6 +13057,9 @@
|
|
|
12977
13057
|
"security": [
|
|
12978
13058
|
{
|
|
12979
13059
|
"bearerAuth": []
|
|
13060
|
+
},
|
|
13061
|
+
{
|
|
13062
|
+
"apiKeyAuth": []
|
|
12980
13063
|
}
|
|
12981
13064
|
],
|
|
12982
13065
|
"requestBody": {
|
|
@@ -13140,6 +13223,9 @@
|
|
|
13140
13223
|
"security": [
|
|
13141
13224
|
{
|
|
13142
13225
|
"bearerAuth": []
|
|
13226
|
+
},
|
|
13227
|
+
{
|
|
13228
|
+
"apiKeyAuth": []
|
|
13143
13229
|
}
|
|
13144
13230
|
],
|
|
13145
13231
|
"parameters": [
|
|
@@ -13272,6 +13358,9 @@
|
|
|
13272
13358
|
"security": [
|
|
13273
13359
|
{
|
|
13274
13360
|
"bearerAuth": []
|
|
13361
|
+
},
|
|
13362
|
+
{
|
|
13363
|
+
"apiKeyAuth": []
|
|
13275
13364
|
}
|
|
13276
13365
|
],
|
|
13277
13366
|
"parameters": [
|
|
@@ -13397,6 +13486,9 @@
|
|
|
13397
13486
|
"security": [
|
|
13398
13487
|
{
|
|
13399
13488
|
"bearerAuth": []
|
|
13489
|
+
},
|
|
13490
|
+
{
|
|
13491
|
+
"apiKeyAuth": []
|
|
13400
13492
|
}
|
|
13401
13493
|
],
|
|
13402
13494
|
"parameters": [
|
|
@@ -13522,6 +13614,9 @@
|
|
|
13522
13614
|
"security": [
|
|
13523
13615
|
{
|
|
13524
13616
|
"bearerAuth": []
|
|
13617
|
+
},
|
|
13618
|
+
{
|
|
13619
|
+
"apiKeyAuth": []
|
|
13525
13620
|
}
|
|
13526
13621
|
],
|
|
13527
13622
|
"parameters": [
|
|
@@ -13647,6 +13742,9 @@
|
|
|
13647
13742
|
"security": [
|
|
13648
13743
|
{
|
|
13649
13744
|
"bearerAuth": []
|
|
13745
|
+
},
|
|
13746
|
+
{
|
|
13747
|
+
"apiKeyAuth": []
|
|
13650
13748
|
}
|
|
13651
13749
|
],
|
|
13652
13750
|
"parameters": [
|
|
@@ -13760,6 +13858,9 @@
|
|
|
13760
13858
|
"security": [
|
|
13761
13859
|
{
|
|
13762
13860
|
"bearerAuth": []
|
|
13861
|
+
},
|
|
13862
|
+
{
|
|
13863
|
+
"apiKeyAuth": []
|
|
13763
13864
|
}
|
|
13764
13865
|
],
|
|
13765
13866
|
"parameters": [
|
|
@@ -13842,6 +13943,9 @@
|
|
|
13842
13943
|
"security": [
|
|
13843
13944
|
{
|
|
13844
13945
|
"bearerAuth": []
|
|
13946
|
+
},
|
|
13947
|
+
{
|
|
13948
|
+
"apiKeyAuth": []
|
|
13845
13949
|
}
|
|
13846
13950
|
],
|
|
13847
13951
|
"parameters": [
|
|
@@ -13929,6 +14033,9 @@
|
|
|
13929
14033
|
"security": [
|
|
13930
14034
|
{
|
|
13931
14035
|
"bearerAuth": []
|
|
14036
|
+
},
|
|
14037
|
+
{
|
|
14038
|
+
"apiKeyAuth": []
|
|
13932
14039
|
}
|
|
13933
14040
|
],
|
|
13934
14041
|
"requestBody": {
|
|
@@ -14092,6 +14199,9 @@
|
|
|
14092
14199
|
"security": [
|
|
14093
14200
|
{
|
|
14094
14201
|
"bearerAuth": []
|
|
14202
|
+
},
|
|
14203
|
+
{
|
|
14204
|
+
"apiKeyAuth": []
|
|
14095
14205
|
}
|
|
14096
14206
|
],
|
|
14097
14207
|
"parameters": [
|
|
@@ -14224,6 +14334,9 @@
|
|
|
14224
14334
|
"security": [
|
|
14225
14335
|
{
|
|
14226
14336
|
"bearerAuth": []
|
|
14337
|
+
},
|
|
14338
|
+
{
|
|
14339
|
+
"apiKeyAuth": []
|
|
14227
14340
|
}
|
|
14228
14341
|
],
|
|
14229
14342
|
"parameters": [
|
|
@@ -14409,6 +14522,9 @@
|
|
|
14409
14522
|
"security": [
|
|
14410
14523
|
{
|
|
14411
14524
|
"bearerAuth": []
|
|
14525
|
+
},
|
|
14526
|
+
{
|
|
14527
|
+
"apiKeyAuth": []
|
|
14412
14528
|
}
|
|
14413
14529
|
],
|
|
14414
14530
|
"parameters": [
|
|
@@ -14596,6 +14712,9 @@
|
|
|
14596
14712
|
"security": [
|
|
14597
14713
|
{
|
|
14598
14714
|
"bearerAuth": []
|
|
14715
|
+
},
|
|
14716
|
+
{
|
|
14717
|
+
"apiKeyAuth": []
|
|
14599
14718
|
}
|
|
14600
14719
|
],
|
|
14601
14720
|
"parameters": [
|
|
@@ -14675,6 +14794,9 @@
|
|
|
14675
14794
|
"security": [
|
|
14676
14795
|
{
|
|
14677
14796
|
"bearerAuth": []
|
|
14797
|
+
},
|
|
14798
|
+
{
|
|
14799
|
+
"apiKeyAuth": []
|
|
14678
14800
|
}
|
|
14679
14801
|
],
|
|
14680
14802
|
"parameters": [
|
|
@@ -14754,6 +14876,9 @@
|
|
|
14754
14876
|
"security": [
|
|
14755
14877
|
{
|
|
14756
14878
|
"bearerAuth": []
|
|
14879
|
+
},
|
|
14880
|
+
{
|
|
14881
|
+
"apiKeyAuth": []
|
|
14757
14882
|
}
|
|
14758
14883
|
],
|
|
14759
14884
|
"parameters": [
|
|
@@ -14825,6 +14950,9 @@
|
|
|
14825
14950
|
"security": [
|
|
14826
14951
|
{
|
|
14827
14952
|
"bearerAuth": []
|
|
14953
|
+
},
|
|
14954
|
+
{
|
|
14955
|
+
"apiKeyAuth": []
|
|
14828
14956
|
}
|
|
14829
14957
|
],
|
|
14830
14958
|
"requestBody": {
|
|
@@ -14887,6 +15015,9 @@
|
|
|
14887
15015
|
"security": [
|
|
14888
15016
|
{
|
|
14889
15017
|
"bearerAuth": []
|
|
15018
|
+
},
|
|
15019
|
+
{
|
|
15020
|
+
"apiKeyAuth": []
|
|
14890
15021
|
}
|
|
14891
15022
|
],
|
|
14892
15023
|
"requestBody": {
|
|
@@ -15092,6 +15223,9 @@
|
|
|
15092
15223
|
"security": [
|
|
15093
15224
|
{
|
|
15094
15225
|
"bearerAuth": []
|
|
15226
|
+
},
|
|
15227
|
+
{
|
|
15228
|
+
"apiKeyAuth": []
|
|
15095
15229
|
}
|
|
15096
15230
|
],
|
|
15097
15231
|
"requestBody": {
|
|
@@ -15335,6 +15469,9 @@
|
|
|
15335
15469
|
"security": [
|
|
15336
15470
|
{
|
|
15337
15471
|
"bearerAuth": []
|
|
15472
|
+
},
|
|
15473
|
+
{
|
|
15474
|
+
"apiKeyAuth": []
|
|
15338
15475
|
}
|
|
15339
15476
|
],
|
|
15340
15477
|
"requestBody": {
|
|
@@ -15529,6 +15666,9 @@
|
|
|
15529
15666
|
"security": [
|
|
15530
15667
|
{
|
|
15531
15668
|
"bearerAuth": []
|
|
15669
|
+
},
|
|
15670
|
+
{
|
|
15671
|
+
"apiKeyAuth": []
|
|
15532
15672
|
}
|
|
15533
15673
|
],
|
|
15534
15674
|
"requestBody": {
|
|
@@ -15730,6 +15870,9 @@
|
|
|
15730
15870
|
"security": [
|
|
15731
15871
|
{
|
|
15732
15872
|
"bearerAuth": []
|
|
15873
|
+
},
|
|
15874
|
+
{
|
|
15875
|
+
"apiKeyAuth": []
|
|
15733
15876
|
}
|
|
15734
15877
|
],
|
|
15735
15878
|
"requestBody": {
|
|
@@ -15958,6 +16101,9 @@
|
|
|
15958
16101
|
"security": [
|
|
15959
16102
|
{
|
|
15960
16103
|
"bearerAuth": []
|
|
16104
|
+
},
|
|
16105
|
+
{
|
|
16106
|
+
"apiKeyAuth": []
|
|
15961
16107
|
}
|
|
15962
16108
|
],
|
|
15963
16109
|
"requestBody": {
|
|
@@ -16175,6 +16321,9 @@
|
|
|
16175
16321
|
"security": [
|
|
16176
16322
|
{
|
|
16177
16323
|
"bearerAuth": []
|
|
16324
|
+
},
|
|
16325
|
+
{
|
|
16326
|
+
"apiKeyAuth": []
|
|
16178
16327
|
}
|
|
16179
16328
|
],
|
|
16180
16329
|
"requestBody": {
|
|
@@ -16260,6 +16409,9 @@
|
|
|
16260
16409
|
"security": [
|
|
16261
16410
|
{
|
|
16262
16411
|
"bearerAuth": []
|
|
16412
|
+
},
|
|
16413
|
+
{
|
|
16414
|
+
"apiKeyAuth": []
|
|
16263
16415
|
}
|
|
16264
16416
|
],
|
|
16265
16417
|
"responses": {
|
|
@@ -16302,6 +16454,9 @@
|
|
|
16302
16454
|
"security": [
|
|
16303
16455
|
{
|
|
16304
16456
|
"bearerAuth": []
|
|
16457
|
+
},
|
|
16458
|
+
{
|
|
16459
|
+
"apiKeyAuth": []
|
|
16305
16460
|
}
|
|
16306
16461
|
],
|
|
16307
16462
|
"responses": {
|
|
@@ -16368,6 +16523,9 @@
|
|
|
16368
16523
|
"security": [
|
|
16369
16524
|
{
|
|
16370
16525
|
"bearerAuth": []
|
|
16526
|
+
},
|
|
16527
|
+
{
|
|
16528
|
+
"apiKeyAuth": []
|
|
16371
16529
|
}
|
|
16372
16530
|
],
|
|
16373
16531
|
"responses": {
|
package/openapi/version.json
CHANGED