@botpress/api 0.19.2 → 0.19.4
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.js +107 -195
- package/dist/src/gen/state.d.ts +75 -179
- package/package.json +1 -1
- package/src/gen/metadata.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +107 -195
package/src/gen/state.ts
CHANGED
|
@@ -2348,6 +2348,10 @@ export const state = {
|
|
|
2348
2348
|
"type": "string",
|
|
2349
2349
|
"description": "URL of the icon of the integration. This is the icon that will be displayed in the UI"
|
|
2350
2350
|
},
|
|
2351
|
+
"public": {
|
|
2352
|
+
"type": "boolean",
|
|
2353
|
+
"description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
|
|
2354
|
+
},
|
|
2351
2355
|
"ownerWorkspace": {
|
|
2352
2356
|
"type": "object",
|
|
2353
2357
|
"properties": {
|
|
@@ -2378,6 +2382,7 @@ export const state = {
|
|
|
2378
2382
|
"title",
|
|
2379
2383
|
"description",
|
|
2380
2384
|
"iconUrl",
|
|
2385
|
+
"public",
|
|
2381
2386
|
"ownerWorkspace"
|
|
2382
2387
|
]
|
|
2383
2388
|
}
|
|
@@ -2835,6 +2840,10 @@ export const state = {
|
|
|
2835
2840
|
"type": "string",
|
|
2836
2841
|
"description": "URL of the readme of the integration. This is the readme that will be displayed in the UI"
|
|
2837
2842
|
},
|
|
2843
|
+
"public": {
|
|
2844
|
+
"type": "boolean",
|
|
2845
|
+
"description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
|
|
2846
|
+
},
|
|
2838
2847
|
"secrets": {
|
|
2839
2848
|
"type": "array",
|
|
2840
2849
|
"items": {
|
|
@@ -2883,6 +2892,7 @@ export const state = {
|
|
|
2883
2892
|
"description",
|
|
2884
2893
|
"iconUrl",
|
|
2885
2894
|
"readmeUrl",
|
|
2895
|
+
"public",
|
|
2886
2896
|
"secrets",
|
|
2887
2897
|
"ownerWorkspace"
|
|
2888
2898
|
],
|
|
@@ -3335,6 +3345,10 @@ export const state = {
|
|
|
3335
3345
|
"type": "string",
|
|
3336
3346
|
"description": "URL of the readme of the integration. This is the readme that will be displayed in the UI"
|
|
3337
3347
|
},
|
|
3348
|
+
"public": {
|
|
3349
|
+
"type": "boolean",
|
|
3350
|
+
"description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
|
|
3351
|
+
},
|
|
3338
3352
|
"secrets": {
|
|
3339
3353
|
"type": "array",
|
|
3340
3354
|
"items": {
|
|
@@ -3383,6 +3397,7 @@ export const state = {
|
|
|
3383
3397
|
"description",
|
|
3384
3398
|
"iconUrl",
|
|
3385
3399
|
"readmeUrl",
|
|
3400
|
+
"public",
|
|
3386
3401
|
"secrets",
|
|
3387
3402
|
"ownerWorkspace"
|
|
3388
3403
|
],
|
|
@@ -5858,7 +5873,7 @@ export const state = {
|
|
|
5858
5873
|
"type": "string",
|
|
5859
5874
|
"minLength": 1,
|
|
5860
5875
|
"maxLength": 64,
|
|
5861
|
-
"pattern": "^[0-9a-z][a-z0-9-]+[0-9a-z]$"
|
|
5876
|
+
"pattern": "^[0-9a-z][a-z0-9-_]+[0-9a-z]$"
|
|
5862
5877
|
}
|
|
5863
5878
|
},
|
|
5864
5879
|
"additionalProperties": false,
|
|
@@ -7077,6 +7092,10 @@ export const state = {
|
|
|
7077
7092
|
"type": "string",
|
|
7078
7093
|
"maxLength": 256,
|
|
7079
7094
|
"description": "Description of the integration. This is the description that will be displayed in the UI"
|
|
7095
|
+
},
|
|
7096
|
+
"public": {
|
|
7097
|
+
"type": "boolean",
|
|
7098
|
+
"description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
|
|
7080
7099
|
}
|
|
7081
7100
|
},
|
|
7082
7101
|
"required": [
|
|
@@ -7500,6 +7519,10 @@ export const state = {
|
|
|
7500
7519
|
"url": {
|
|
7501
7520
|
"type": "string",
|
|
7502
7521
|
"description": "URL of the integration; Only available for dev integrations"
|
|
7522
|
+
},
|
|
7523
|
+
"public": {
|
|
7524
|
+
"type": "boolean",
|
|
7525
|
+
"description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
|
|
7503
7526
|
}
|
|
7504
7527
|
},
|
|
7505
7528
|
"title": "updateIntegrationBody",
|
|
@@ -7602,6 +7625,10 @@ export const state = {
|
|
|
7602
7625
|
"iconUrl": {
|
|
7603
7626
|
"type": "string",
|
|
7604
7627
|
"description": "URL of the icon of the integration. This is the icon that will be displayed in the UI"
|
|
7628
|
+
},
|
|
7629
|
+
"public": {
|
|
7630
|
+
"type": "boolean",
|
|
7631
|
+
"description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
|
|
7605
7632
|
}
|
|
7606
7633
|
},
|
|
7607
7634
|
"required": [
|
|
@@ -7612,7 +7639,8 @@ export const state = {
|
|
|
7612
7639
|
"updatedAt",
|
|
7613
7640
|
"title",
|
|
7614
7641
|
"description",
|
|
7615
|
-
"iconUrl"
|
|
7642
|
+
"iconUrl",
|
|
7643
|
+
"public"
|
|
7616
7644
|
]
|
|
7617
7645
|
}
|
|
7618
7646
|
},
|
|
@@ -8064,7 +8092,7 @@ export const state = {
|
|
|
8064
8092
|
}
|
|
8065
8093
|
},
|
|
8066
8094
|
"parameters": {
|
|
8067
|
-
"x-
|
|
8095
|
+
"x-name": {
|
|
8068
8096
|
"type": "string",
|
|
8069
8097
|
"description": "File name",
|
|
8070
8098
|
"in": "header",
|
|
@@ -8077,7 +8105,7 @@ export const state = {
|
|
|
8077
8105
|
},
|
|
8078
8106
|
"x-access-policies": {
|
|
8079
8107
|
"type": "string",
|
|
8080
|
-
"description": "File access policies",
|
|
8108
|
+
"description": "File access policies, comma-separated. Add \"public_content\" to allow public access to the file content. Add \"integrations\" to allo read, search and list operations for any integration installed in the bot.",
|
|
8081
8109
|
"in": "header"
|
|
8082
8110
|
},
|
|
8083
8111
|
"x-index": {
|
|
@@ -8087,37 +8115,13 @@ export const state = {
|
|
|
8087
8115
|
},
|
|
8088
8116
|
"Content-Type": {
|
|
8089
8117
|
"type": "string",
|
|
8090
|
-
"description": "File content type",
|
|
8118
|
+
"description": "File content type. If omitted, the content type will be inferred from the file extension. If a type cannot be inferred, the default is \"application/octet-stream\".",
|
|
8091
8119
|
"in": "header"
|
|
8092
8120
|
},
|
|
8093
8121
|
"Content-Length": {
|
|
8094
8122
|
"type": "string",
|
|
8095
8123
|
"description": "File content length",
|
|
8096
8124
|
"in": "header"
|
|
8097
|
-
},
|
|
8098
|
-
"x-bot-id": {
|
|
8099
|
-
"in": "header",
|
|
8100
|
-
"description": "Bot id",
|
|
8101
|
-
"type": "string",
|
|
8102
|
-
"required": true
|
|
8103
|
-
},
|
|
8104
|
-
"x-integration-id": {
|
|
8105
|
-
"in": "header",
|
|
8106
|
-
"description": "Integration id",
|
|
8107
|
-
"type": "string",
|
|
8108
|
-
"required": false
|
|
8109
|
-
},
|
|
8110
|
-
"x-user-id": {
|
|
8111
|
-
"in": "header",
|
|
8112
|
-
"description": "User id",
|
|
8113
|
-
"type": "string",
|
|
8114
|
-
"required": false
|
|
8115
|
-
},
|
|
8116
|
-
"x-user-role": {
|
|
8117
|
-
"in": "header",
|
|
8118
|
-
"description": "User role",
|
|
8119
|
-
"type": "string",
|
|
8120
|
-
"required": false
|
|
8121
8125
|
}
|
|
8122
8126
|
},
|
|
8123
8127
|
"contentType": "*/*",
|
|
@@ -8136,13 +8140,16 @@ export const state = {
|
|
|
8136
8140
|
"botId": {
|
|
8137
8141
|
"type": "string"
|
|
8138
8142
|
},
|
|
8139
|
-
"
|
|
8143
|
+
"name": {
|
|
8140
8144
|
"type": "string"
|
|
8141
8145
|
},
|
|
8142
|
-
"
|
|
8146
|
+
"size": {
|
|
8143
8147
|
"type": "number",
|
|
8144
8148
|
"nullable": true
|
|
8145
8149
|
},
|
|
8150
|
+
"contentType": {
|
|
8151
|
+
"type": "string"
|
|
8152
|
+
},
|
|
8146
8153
|
"tags": {
|
|
8147
8154
|
"type": "object",
|
|
8148
8155
|
"additionalProperties": {
|
|
@@ -8179,8 +8186,9 @@ export const state = {
|
|
|
8179
8186
|
"required": [
|
|
8180
8187
|
"id",
|
|
8181
8188
|
"botId",
|
|
8182
|
-
"
|
|
8183
|
-
"
|
|
8189
|
+
"name",
|
|
8190
|
+
"size",
|
|
8191
|
+
"contentType",
|
|
8184
8192
|
"tags",
|
|
8185
8193
|
"createdAt",
|
|
8186
8194
|
"updatedAt",
|
|
@@ -8208,30 +8216,6 @@ export const state = {
|
|
|
8208
8216
|
"type": "string",
|
|
8209
8217
|
"description": "File ID",
|
|
8210
8218
|
"in": "path"
|
|
8211
|
-
},
|
|
8212
|
-
"x-bot-id": {
|
|
8213
|
-
"in": "header",
|
|
8214
|
-
"description": "Bot id",
|
|
8215
|
-
"type": "string",
|
|
8216
|
-
"required": true
|
|
8217
|
-
},
|
|
8218
|
-
"x-integration-id": {
|
|
8219
|
-
"in": "header",
|
|
8220
|
-
"description": "Integration id",
|
|
8221
|
-
"type": "string",
|
|
8222
|
-
"required": false
|
|
8223
|
-
},
|
|
8224
|
-
"x-user-id": {
|
|
8225
|
-
"in": "header",
|
|
8226
|
-
"description": "User id",
|
|
8227
|
-
"type": "string",
|
|
8228
|
-
"required": false
|
|
8229
|
-
},
|
|
8230
|
-
"x-user-role": {
|
|
8231
|
-
"in": "header",
|
|
8232
|
-
"description": "User role",
|
|
8233
|
-
"type": "string",
|
|
8234
|
-
"required": false
|
|
8235
8219
|
}
|
|
8236
8220
|
},
|
|
8237
8221
|
"response": {
|
|
@@ -8255,39 +8239,21 @@ export const state = {
|
|
|
8255
8239
|
"description": "Provide the `meta.nextToken` value provided in the last API response to retrieve the next page of results",
|
|
8256
8240
|
"type": "string"
|
|
8257
8241
|
},
|
|
8258
|
-
"x-bot-id": {
|
|
8259
|
-
"in": "header",
|
|
8260
|
-
"description": "Bot id",
|
|
8261
|
-
"type": "string",
|
|
8262
|
-
"required": true
|
|
8263
|
-
},
|
|
8264
|
-
"x-integration-id": {
|
|
8265
|
-
"in": "header",
|
|
8266
|
-
"description": "Integration id",
|
|
8267
|
-
"type": "string",
|
|
8268
|
-
"required": false
|
|
8269
|
-
},
|
|
8270
|
-
"x-user-id": {
|
|
8271
|
-
"in": "header",
|
|
8272
|
-
"description": "User id",
|
|
8273
|
-
"type": "string",
|
|
8274
|
-
"required": false
|
|
8275
|
-
},
|
|
8276
|
-
"x-user-role": {
|
|
8277
|
-
"in": "header",
|
|
8278
|
-
"description": "User role",
|
|
8279
|
-
"type": "string",
|
|
8280
|
-
"required": false
|
|
8281
|
-
},
|
|
8282
8242
|
"botId": {
|
|
8283
8243
|
"type": "string",
|
|
8284
8244
|
"description": "Bot ID",
|
|
8285
8245
|
"in": "path"
|
|
8286
8246
|
},
|
|
8287
8247
|
"tags": {
|
|
8288
|
-
"type": "string",
|
|
8289
8248
|
"in": "query",
|
|
8290
|
-
"description": "
|
|
8249
|
+
"description": "Filter by tags",
|
|
8250
|
+
"type": "object",
|
|
8251
|
+
"schema": {
|
|
8252
|
+
"type": "object",
|
|
8253
|
+
"additionalProperties": {
|
|
8254
|
+
"type": "string"
|
|
8255
|
+
}
|
|
8256
|
+
}
|
|
8291
8257
|
}
|
|
8292
8258
|
},
|
|
8293
8259
|
"response": {
|
|
@@ -8306,13 +8272,24 @@ export const state = {
|
|
|
8306
8272
|
"botId": {
|
|
8307
8273
|
"type": "string"
|
|
8308
8274
|
},
|
|
8309
|
-
"
|
|
8275
|
+
"name": {
|
|
8310
8276
|
"type": "string"
|
|
8311
8277
|
},
|
|
8312
|
-
"
|
|
8278
|
+
"size": {
|
|
8313
8279
|
"type": "number",
|
|
8314
8280
|
"nullable": true
|
|
8315
8281
|
},
|
|
8282
|
+
"contentType": {
|
|
8283
|
+
"type": "string"
|
|
8284
|
+
},
|
|
8285
|
+
"tags": {
|
|
8286
|
+
"type": "object",
|
|
8287
|
+
"additionalProperties": {
|
|
8288
|
+
"type": "string",
|
|
8289
|
+
"maxLength": 1000
|
|
8290
|
+
},
|
|
8291
|
+
"description": "Set of tags that you can attach to a file. Individual keys can be unset by setting them to a `null` value."
|
|
8292
|
+
},
|
|
8316
8293
|
"createdAt": {
|
|
8317
8294
|
"type": "string"
|
|
8318
8295
|
},
|
|
@@ -8341,8 +8318,10 @@ export const state = {
|
|
|
8341
8318
|
"required": [
|
|
8342
8319
|
"id",
|
|
8343
8320
|
"botId",
|
|
8344
|
-
"
|
|
8345
|
-
"
|
|
8321
|
+
"name",
|
|
8322
|
+
"size",
|
|
8323
|
+
"contentType",
|
|
8324
|
+
"tags",
|
|
8346
8325
|
"createdAt",
|
|
8347
8326
|
"updatedAt",
|
|
8348
8327
|
"accessPolicies"
|
|
@@ -8380,30 +8359,6 @@ export const state = {
|
|
|
8380
8359
|
"type": "string",
|
|
8381
8360
|
"description": "File ID",
|
|
8382
8361
|
"in": "path"
|
|
8383
|
-
},
|
|
8384
|
-
"x-bot-id": {
|
|
8385
|
-
"in": "header",
|
|
8386
|
-
"description": "Bot id",
|
|
8387
|
-
"type": "string",
|
|
8388
|
-
"required": true
|
|
8389
|
-
},
|
|
8390
|
-
"x-integration-id": {
|
|
8391
|
-
"in": "header",
|
|
8392
|
-
"description": "Integration id",
|
|
8393
|
-
"type": "string",
|
|
8394
|
-
"required": false
|
|
8395
|
-
},
|
|
8396
|
-
"x-user-id": {
|
|
8397
|
-
"in": "header",
|
|
8398
|
-
"description": "User id",
|
|
8399
|
-
"type": "string",
|
|
8400
|
-
"required": false
|
|
8401
|
-
},
|
|
8402
|
-
"x-user-role": {
|
|
8403
|
-
"in": "header",
|
|
8404
|
-
"description": "User role",
|
|
8405
|
-
"type": "string",
|
|
8406
|
-
"required": false
|
|
8407
8362
|
}
|
|
8408
8363
|
},
|
|
8409
8364
|
"response": {
|
|
@@ -8420,13 +8375,16 @@ export const state = {
|
|
|
8420
8375
|
"botId": {
|
|
8421
8376
|
"type": "string"
|
|
8422
8377
|
},
|
|
8423
|
-
"
|
|
8378
|
+
"name": {
|
|
8424
8379
|
"type": "string"
|
|
8425
8380
|
},
|
|
8426
|
-
"
|
|
8381
|
+
"size": {
|
|
8427
8382
|
"type": "number",
|
|
8428
8383
|
"nullable": true
|
|
8429
8384
|
},
|
|
8385
|
+
"contentType": {
|
|
8386
|
+
"type": "string"
|
|
8387
|
+
},
|
|
8430
8388
|
"tags": {
|
|
8431
8389
|
"type": "object",
|
|
8432
8390
|
"additionalProperties": {
|
|
@@ -8463,8 +8421,9 @@ export const state = {
|
|
|
8463
8421
|
"required": [
|
|
8464
8422
|
"id",
|
|
8465
8423
|
"botId",
|
|
8466
|
-
"
|
|
8467
|
-
"
|
|
8424
|
+
"name",
|
|
8425
|
+
"size",
|
|
8426
|
+
"contentType",
|
|
8468
8427
|
"tags",
|
|
8469
8428
|
"createdAt",
|
|
8470
8429
|
"updatedAt",
|
|
@@ -8492,30 +8451,6 @@ export const state = {
|
|
|
8492
8451
|
"type": "string",
|
|
8493
8452
|
"description": "File ID",
|
|
8494
8453
|
"in": "path"
|
|
8495
|
-
},
|
|
8496
|
-
"x-bot-id": {
|
|
8497
|
-
"in": "header",
|
|
8498
|
-
"description": "Bot id",
|
|
8499
|
-
"type": "string",
|
|
8500
|
-
"required": true
|
|
8501
|
-
},
|
|
8502
|
-
"x-integration-id": {
|
|
8503
|
-
"in": "header",
|
|
8504
|
-
"description": "Integration id",
|
|
8505
|
-
"type": "string",
|
|
8506
|
-
"required": false
|
|
8507
|
-
},
|
|
8508
|
-
"x-user-id": {
|
|
8509
|
-
"in": "header",
|
|
8510
|
-
"description": "User id",
|
|
8511
|
-
"type": "string",
|
|
8512
|
-
"required": false
|
|
8513
|
-
},
|
|
8514
|
-
"x-user-role": {
|
|
8515
|
-
"in": "header",
|
|
8516
|
-
"description": "User role",
|
|
8517
|
-
"type": "string",
|
|
8518
|
-
"required": false
|
|
8519
8454
|
}
|
|
8520
8455
|
},
|
|
8521
8456
|
"response": {
|
|
@@ -8547,30 +8482,6 @@ export const state = {
|
|
|
8547
8482
|
"type": "string",
|
|
8548
8483
|
"description": "File ID",
|
|
8549
8484
|
"in": "path"
|
|
8550
|
-
},
|
|
8551
|
-
"x-bot-id": {
|
|
8552
|
-
"in": "header",
|
|
8553
|
-
"description": "Bot id",
|
|
8554
|
-
"type": "string",
|
|
8555
|
-
"required": true
|
|
8556
|
-
},
|
|
8557
|
-
"x-integration-id": {
|
|
8558
|
-
"in": "header",
|
|
8559
|
-
"description": "Integration id",
|
|
8560
|
-
"type": "string",
|
|
8561
|
-
"required": false
|
|
8562
|
-
},
|
|
8563
|
-
"x-user-id": {
|
|
8564
|
-
"in": "header",
|
|
8565
|
-
"description": "User id",
|
|
8566
|
-
"type": "string",
|
|
8567
|
-
"required": false
|
|
8568
|
-
},
|
|
8569
|
-
"x-user-role": {
|
|
8570
|
-
"in": "header",
|
|
8571
|
-
"description": "User role",
|
|
8572
|
-
"type": "string",
|
|
8573
|
-
"required": false
|
|
8574
8485
|
}
|
|
8575
8486
|
},
|
|
8576
8487
|
"requestBody": {
|
|
@@ -8623,39 +8534,21 @@ export const state = {
|
|
|
8623
8534
|
"method": "get",
|
|
8624
8535
|
"section": "files",
|
|
8625
8536
|
"parameters": {
|
|
8626
|
-
"x-bot-id": {
|
|
8627
|
-
"in": "header",
|
|
8628
|
-
"description": "Bot id",
|
|
8629
|
-
"type": "string",
|
|
8630
|
-
"required": true
|
|
8631
|
-
},
|
|
8632
|
-
"x-integration-id": {
|
|
8633
|
-
"in": "header",
|
|
8634
|
-
"description": "Integration id",
|
|
8635
|
-
"type": "string",
|
|
8636
|
-
"required": false
|
|
8637
|
-
},
|
|
8638
|
-
"x-user-id": {
|
|
8639
|
-
"in": "header",
|
|
8640
|
-
"description": "User id",
|
|
8641
|
-
"type": "string",
|
|
8642
|
-
"required": false
|
|
8643
|
-
},
|
|
8644
|
-
"x-user-role": {
|
|
8645
|
-
"in": "header",
|
|
8646
|
-
"description": "User role",
|
|
8647
|
-
"type": "string",
|
|
8648
|
-
"required": false
|
|
8649
|
-
},
|
|
8650
8537
|
"botId": {
|
|
8651
8538
|
"type": "string",
|
|
8652
8539
|
"description": "Bot ID",
|
|
8653
8540
|
"in": "path"
|
|
8654
8541
|
},
|
|
8655
8542
|
"tags": {
|
|
8656
|
-
"type": "string",
|
|
8657
8543
|
"in": "query",
|
|
8658
|
-
"description": "
|
|
8544
|
+
"description": "Filter by tags",
|
|
8545
|
+
"type": "object",
|
|
8546
|
+
"schema": {
|
|
8547
|
+
"type": "object",
|
|
8548
|
+
"additionalProperties": {
|
|
8549
|
+
"type": "string"
|
|
8550
|
+
}
|
|
8551
|
+
}
|
|
8659
8552
|
},
|
|
8660
8553
|
"query": {
|
|
8661
8554
|
"in": "query",
|
|
@@ -9422,7 +9315,7 @@ export const state = {
|
|
|
9422
9315
|
"title": "Botpress API",
|
|
9423
9316
|
"description": "API for Botpress Cloud",
|
|
9424
9317
|
"server": "https://api.botpress.cloud",
|
|
9425
|
-
"version": "0.19.
|
|
9318
|
+
"version": "0.19.4",
|
|
9426
9319
|
"prefix": "v1"
|
|
9427
9320
|
},
|
|
9428
9321
|
"errors": [
|
|
@@ -9535,6 +9428,11 @@ export const state = {
|
|
|
9535
9428
|
"status": 413,
|
|
9536
9429
|
"type": "LimitExceeded",
|
|
9537
9430
|
"description": "The request exceeds the allowed limit. Limits are a hard limit that cannot be increased."
|
|
9431
|
+
},
|
|
9432
|
+
{
|
|
9433
|
+
"status": 400,
|
|
9434
|
+
"type": "BreakingChanges",
|
|
9435
|
+
"description": "Request payload contains breaking changes which is not allowed for this resource without a version increment."
|
|
9538
9436
|
}
|
|
9539
9437
|
],
|
|
9540
9438
|
"refs": {
|
|
@@ -9836,6 +9734,10 @@ export const state = {
|
|
|
9836
9734
|
"iconUrl": {
|
|
9837
9735
|
"type": "string",
|
|
9838
9736
|
"description": "URL of the icon of the integration. This is the icon that will be displayed in the UI"
|
|
9737
|
+
},
|
|
9738
|
+
"public": {
|
|
9739
|
+
"type": "boolean",
|
|
9740
|
+
"description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
|
|
9839
9741
|
}
|
|
9840
9742
|
},
|
|
9841
9743
|
"required": [
|
|
@@ -9852,7 +9754,8 @@ export const state = {
|
|
|
9852
9754
|
"updatedAt",
|
|
9853
9755
|
"title",
|
|
9854
9756
|
"description",
|
|
9855
|
-
"iconUrl"
|
|
9757
|
+
"iconUrl",
|
|
9758
|
+
"public"
|
|
9856
9759
|
],
|
|
9857
9760
|
"additionalProperties": false
|
|
9858
9761
|
},
|
|
@@ -10642,6 +10545,10 @@ export const state = {
|
|
|
10642
10545
|
"type": "string",
|
|
10643
10546
|
"description": "URL of the readme of the integration. This is the readme that will be displayed in the UI"
|
|
10644
10547
|
},
|
|
10548
|
+
"public": {
|
|
10549
|
+
"type": "boolean",
|
|
10550
|
+
"description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
|
|
10551
|
+
},
|
|
10645
10552
|
"secrets": {
|
|
10646
10553
|
"type": "array",
|
|
10647
10554
|
"items": {
|
|
@@ -10669,6 +10576,7 @@ export const state = {
|
|
|
10669
10576
|
"description",
|
|
10670
10577
|
"iconUrl",
|
|
10671
10578
|
"readmeUrl",
|
|
10579
|
+
"public",
|
|
10672
10580
|
"secrets"
|
|
10673
10581
|
],
|
|
10674
10582
|
"additionalProperties": false
|
|
@@ -11715,13 +11623,16 @@ export const state = {
|
|
|
11715
11623
|
"botId": {
|
|
11716
11624
|
"type": "string"
|
|
11717
11625
|
},
|
|
11718
|
-
"
|
|
11626
|
+
"name": {
|
|
11719
11627
|
"type": "string"
|
|
11720
11628
|
},
|
|
11721
|
-
"
|
|
11629
|
+
"size": {
|
|
11722
11630
|
"type": "number",
|
|
11723
11631
|
"nullable": true
|
|
11724
11632
|
},
|
|
11633
|
+
"contentType": {
|
|
11634
|
+
"type": "string"
|
|
11635
|
+
},
|
|
11725
11636
|
"tags": {
|
|
11726
11637
|
"type": "object",
|
|
11727
11638
|
"additionalProperties": {
|
|
@@ -11758,8 +11669,9 @@ export const state = {
|
|
|
11758
11669
|
"required": [
|
|
11759
11670
|
"id",
|
|
11760
11671
|
"botId",
|
|
11761
|
-
"
|
|
11762
|
-
"
|
|
11672
|
+
"name",
|
|
11673
|
+
"size",
|
|
11674
|
+
"contentType",
|
|
11763
11675
|
"tags",
|
|
11764
11676
|
"createdAt",
|
|
11765
11677
|
"updatedAt",
|