@botpress/api 1.9.0 → 1.10.0
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 +300 -12
- package/dist/src/gen/admin/state.d.ts +92 -0
- package/dist/src/gen/files/state.d.ts +23 -0
- package/dist/src/gen/runtime/state.d.ts +23 -0
- package/dist/src/gen/state.d.ts +92 -0
- package/dist/src/gen/tables/state.d.ts +23 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +105 -3
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +30 -2
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +30 -2
- package/src/gen/state.ts +105 -3
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +30 -2
package/dist/index.js
CHANGED
|
@@ -284644,7 +284644,7 @@ var state = {
|
|
|
284644
284644
|
"title": "Botpress API",
|
|
284645
284645
|
"description": "API for Botpress Cloud",
|
|
284646
284646
|
"server": "https://api.botpress.cloud",
|
|
284647
|
-
"version": "1.
|
|
284647
|
+
"version": "1.10.0",
|
|
284648
284648
|
"prefix": "v1"
|
|
284649
284649
|
},
|
|
284650
284650
|
"errors": [
|
|
@@ -286292,6 +286292,29 @@ var state = {
|
|
|
286292
286292
|
],
|
|
286293
286293
|
"description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
|
|
286294
286294
|
"additionalProperties": false
|
|
286295
|
+
},
|
|
286296
|
+
"title": {
|
|
286297
|
+
"type": "string",
|
|
286298
|
+
"minLength": 1,
|
|
286299
|
+
"maxLength": 64,
|
|
286300
|
+
"description": "Title of the interface. This is the name that will be displayed in the UI"
|
|
286301
|
+
},
|
|
286302
|
+
"description": {
|
|
286303
|
+
"type": "string",
|
|
286304
|
+
"maxLength": 256,
|
|
286305
|
+
"description": "Description of the interface. This is the description that will be displayed in the UI"
|
|
286306
|
+
},
|
|
286307
|
+
"iconUrl": {
|
|
286308
|
+
"type": "string",
|
|
286309
|
+
"description": "URL of the icon of the interface. This is the icon that will be displayed in the UI"
|
|
286310
|
+
},
|
|
286311
|
+
"readmeUrl": {
|
|
286312
|
+
"type": "string",
|
|
286313
|
+
"description": "URL of the readme of the interface. This is the readme that will be displayed in the UI"
|
|
286314
|
+
},
|
|
286315
|
+
"public": {
|
|
286316
|
+
"type": "boolean",
|
|
286317
|
+
"description": "Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version."
|
|
286295
286318
|
}
|
|
286296
286319
|
},
|
|
286297
286320
|
"required": [
|
|
@@ -286303,7 +286326,12 @@ var state = {
|
|
|
286303
286326
|
"entities",
|
|
286304
286327
|
"events",
|
|
286305
286328
|
"actions",
|
|
286306
|
-
"channels"
|
|
286329
|
+
"channels",
|
|
286330
|
+
"title",
|
|
286331
|
+
"description",
|
|
286332
|
+
"iconUrl",
|
|
286333
|
+
"readmeUrl",
|
|
286334
|
+
"public"
|
|
286307
286335
|
],
|
|
286308
286336
|
"additionalProperties": false
|
|
286309
286337
|
}
|
|
@@ -298516,6 +298544,29 @@ var state2 = {
|
|
|
298516
298544
|
],
|
|
298517
298545
|
"description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
|
|
298518
298546
|
"additionalProperties": false
|
|
298547
|
+
},
|
|
298548
|
+
"icon": {
|
|
298549
|
+
"type": "string",
|
|
298550
|
+
"description": "Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes."
|
|
298551
|
+
},
|
|
298552
|
+
"readme": {
|
|
298553
|
+
"type": "string",
|
|
298554
|
+
"description": "Base64 encoded markdown of the interface readme. The readme is specific to each interface versions."
|
|
298555
|
+
},
|
|
298556
|
+
"title": {
|
|
298557
|
+
"type": "string",
|
|
298558
|
+
"minLength": 1,
|
|
298559
|
+
"maxLength": 64,
|
|
298560
|
+
"description": "Title of the interface. This is the name that will be displayed in the UI"
|
|
298561
|
+
},
|
|
298562
|
+
"description": {
|
|
298563
|
+
"type": "string",
|
|
298564
|
+
"maxLength": 256,
|
|
298565
|
+
"description": "Description of the interface. This is the description that will be displayed in the UI"
|
|
298566
|
+
},
|
|
298567
|
+
"public": {
|
|
298568
|
+
"type": "boolean",
|
|
298569
|
+
"description": "Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version."
|
|
298519
298570
|
}
|
|
298520
298571
|
},
|
|
298521
298572
|
"required": [
|
|
@@ -298812,6 +298863,29 @@ var state2 = {
|
|
|
298812
298863
|
"description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
|
|
298813
298864
|
"nullable": true,
|
|
298814
298865
|
"additionalProperties": false
|
|
298866
|
+
},
|
|
298867
|
+
"icon": {
|
|
298868
|
+
"type": "string",
|
|
298869
|
+
"description": "Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes."
|
|
298870
|
+
},
|
|
298871
|
+
"readme": {
|
|
298872
|
+
"type": "string",
|
|
298873
|
+
"description": "Base64 encoded markdown of the interface readme. The readme is specific to each interface versions."
|
|
298874
|
+
},
|
|
298875
|
+
"title": {
|
|
298876
|
+
"type": "string",
|
|
298877
|
+
"minLength": 1,
|
|
298878
|
+
"maxLength": 64,
|
|
298879
|
+
"description": "Title of the interface. This is the name that will be displayed in the UI"
|
|
298880
|
+
},
|
|
298881
|
+
"description": {
|
|
298882
|
+
"type": "string",
|
|
298883
|
+
"maxLength": 256,
|
|
298884
|
+
"description": "Description of the interface. This is the description that will be displayed in the UI"
|
|
298885
|
+
},
|
|
298886
|
+
"public": {
|
|
298887
|
+
"type": "boolean",
|
|
298888
|
+
"description": "Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version."
|
|
298815
298889
|
}
|
|
298816
298890
|
},
|
|
298817
298891
|
"title": "updateInterfaceBody",
|
|
@@ -298911,6 +298985,29 @@ var state2 = {
|
|
|
298911
298985
|
"type": "string",
|
|
298912
298986
|
"maxLength": 200,
|
|
298913
298987
|
"description": "Version of the [Interface](#schema_interface)"
|
|
298988
|
+
},
|
|
298989
|
+
"title": {
|
|
298990
|
+
"type": "string",
|
|
298991
|
+
"minLength": 1,
|
|
298992
|
+
"maxLength": 64,
|
|
298993
|
+
"description": "Title of the interface. This is the name that will be displayed in the UI"
|
|
298994
|
+
},
|
|
298995
|
+
"description": {
|
|
298996
|
+
"type": "string",
|
|
298997
|
+
"maxLength": 256,
|
|
298998
|
+
"description": "Description of the interface. This is the description that will be displayed in the UI"
|
|
298999
|
+
},
|
|
299000
|
+
"iconUrl": {
|
|
299001
|
+
"type": "string",
|
|
299002
|
+
"description": "URL of the icon of the interface. This is the icon that will be displayed in the UI"
|
|
299003
|
+
},
|
|
299004
|
+
"readmeUrl": {
|
|
299005
|
+
"type": "string",
|
|
299006
|
+
"description": "URL of the readme of the interface. This is the readme that will be displayed in the UI"
|
|
299007
|
+
},
|
|
299008
|
+
"public": {
|
|
299009
|
+
"type": "boolean",
|
|
299010
|
+
"description": "Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version."
|
|
298914
299011
|
}
|
|
298915
299012
|
},
|
|
298916
299013
|
"required": [
|
|
@@ -298918,7 +299015,12 @@ var state2 = {
|
|
|
298918
299015
|
"createdAt",
|
|
298919
299016
|
"updatedAt",
|
|
298920
299017
|
"name",
|
|
298921
|
-
"version"
|
|
299018
|
+
"version",
|
|
299019
|
+
"title",
|
|
299020
|
+
"description",
|
|
299021
|
+
"iconUrl",
|
|
299022
|
+
"readmeUrl",
|
|
299023
|
+
"public"
|
|
298922
299024
|
]
|
|
298923
299025
|
}
|
|
298924
299026
|
},
|
|
@@ -300361,7 +300463,7 @@ var state2 = {
|
|
|
300361
300463
|
"title": "Botpress API",
|
|
300362
300464
|
"description": "API for Botpress Cloud",
|
|
300363
300465
|
"server": "https://api.botpress.cloud",
|
|
300364
|
-
"version": "1.
|
|
300466
|
+
"version": "1.10.0",
|
|
300365
300467
|
"prefix": "v1"
|
|
300366
300468
|
},
|
|
300367
300469
|
"errors": [
|
|
@@ -302064,6 +302166,29 @@ var state2 = {
|
|
|
302064
302166
|
],
|
|
302065
302167
|
"description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
|
|
302066
302168
|
"additionalProperties": false
|
|
302169
|
+
},
|
|
302170
|
+
"title": {
|
|
302171
|
+
"type": "string",
|
|
302172
|
+
"minLength": 1,
|
|
302173
|
+
"maxLength": 64,
|
|
302174
|
+
"description": "Title of the interface. This is the name that will be displayed in the UI"
|
|
302175
|
+
},
|
|
302176
|
+
"description": {
|
|
302177
|
+
"type": "string",
|
|
302178
|
+
"maxLength": 256,
|
|
302179
|
+
"description": "Description of the interface. This is the description that will be displayed in the UI"
|
|
302180
|
+
},
|
|
302181
|
+
"iconUrl": {
|
|
302182
|
+
"type": "string",
|
|
302183
|
+
"description": "URL of the icon of the interface. This is the icon that will be displayed in the UI"
|
|
302184
|
+
},
|
|
302185
|
+
"readmeUrl": {
|
|
302186
|
+
"type": "string",
|
|
302187
|
+
"description": "URL of the readme of the interface. This is the readme that will be displayed in the UI"
|
|
302188
|
+
},
|
|
302189
|
+
"public": {
|
|
302190
|
+
"type": "boolean",
|
|
302191
|
+
"description": "Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version."
|
|
302067
302192
|
}
|
|
302068
302193
|
},
|
|
302069
302194
|
"required": [
|
|
@@ -302075,7 +302200,12 @@ var state2 = {
|
|
|
302075
302200
|
"entities",
|
|
302076
302201
|
"events",
|
|
302077
302202
|
"actions",
|
|
302078
|
-
"channels"
|
|
302203
|
+
"channels",
|
|
302204
|
+
"title",
|
|
302205
|
+
"description",
|
|
302206
|
+
"iconUrl",
|
|
302207
|
+
"readmeUrl",
|
|
302208
|
+
"public"
|
|
302079
302209
|
],
|
|
302080
302210
|
"additionalProperties": false
|
|
302081
302211
|
}
|
|
@@ -305773,7 +305903,7 @@ var state3 = {
|
|
|
305773
305903
|
"title": "Botpress API",
|
|
305774
305904
|
"description": "API for Botpress Cloud",
|
|
305775
305905
|
"server": "https://api.botpress.cloud",
|
|
305776
|
-
"version": "1.
|
|
305906
|
+
"version": "1.10.0",
|
|
305777
305907
|
"prefix": "v1"
|
|
305778
305908
|
},
|
|
305779
305909
|
"errors": [
|
|
@@ -307372,6 +307502,29 @@ var state3 = {
|
|
|
307372
307502
|
],
|
|
307373
307503
|
"description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
|
|
307374
307504
|
"additionalProperties": false
|
|
307505
|
+
},
|
|
307506
|
+
"title": {
|
|
307507
|
+
"type": "string",
|
|
307508
|
+
"minLength": 1,
|
|
307509
|
+
"maxLength": 64,
|
|
307510
|
+
"description": "Title of the interface. This is the name that will be displayed in the UI"
|
|
307511
|
+
},
|
|
307512
|
+
"description": {
|
|
307513
|
+
"type": "string",
|
|
307514
|
+
"maxLength": 256,
|
|
307515
|
+
"description": "Description of the interface. This is the description that will be displayed in the UI"
|
|
307516
|
+
},
|
|
307517
|
+
"iconUrl": {
|
|
307518
|
+
"type": "string",
|
|
307519
|
+
"description": "URL of the icon of the interface. This is the icon that will be displayed in the UI"
|
|
307520
|
+
},
|
|
307521
|
+
"readmeUrl": {
|
|
307522
|
+
"type": "string",
|
|
307523
|
+
"description": "URL of the readme of the interface. This is the readme that will be displayed in the UI"
|
|
307524
|
+
},
|
|
307525
|
+
"public": {
|
|
307526
|
+
"type": "boolean",
|
|
307527
|
+
"description": "Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version."
|
|
307375
307528
|
}
|
|
307376
307529
|
},
|
|
307377
307530
|
"required": [
|
|
@@ -307383,7 +307536,12 @@ var state3 = {
|
|
|
307383
307536
|
"entities",
|
|
307384
307537
|
"events",
|
|
307385
307538
|
"actions",
|
|
307386
|
-
"channels"
|
|
307539
|
+
"channels",
|
|
307540
|
+
"title",
|
|
307541
|
+
"description",
|
|
307542
|
+
"iconUrl",
|
|
307543
|
+
"readmeUrl",
|
|
307544
|
+
"public"
|
|
307387
307545
|
],
|
|
307388
307546
|
"additionalProperties": false
|
|
307389
307547
|
}
|
|
@@ -310632,7 +310790,7 @@ var state4 = {
|
|
|
310632
310790
|
"title": "Botpress API",
|
|
310633
310791
|
"description": "API for Botpress Cloud",
|
|
310634
310792
|
"server": "https://api.botpress.cloud",
|
|
310635
|
-
"version": "1.
|
|
310793
|
+
"version": "1.10.0",
|
|
310636
310794
|
"prefix": "v1"
|
|
310637
310795
|
},
|
|
310638
310796
|
"errors": [
|
|
@@ -312240,6 +312398,29 @@ var state4 = {
|
|
|
312240
312398
|
],
|
|
312241
312399
|
"description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
|
|
312242
312400
|
"additionalProperties": false
|
|
312401
|
+
},
|
|
312402
|
+
"title": {
|
|
312403
|
+
"type": "string",
|
|
312404
|
+
"minLength": 1,
|
|
312405
|
+
"maxLength": 64,
|
|
312406
|
+
"description": "Title of the interface. This is the name that will be displayed in the UI"
|
|
312407
|
+
},
|
|
312408
|
+
"description": {
|
|
312409
|
+
"type": "string",
|
|
312410
|
+
"maxLength": 256,
|
|
312411
|
+
"description": "Description of the interface. This is the description that will be displayed in the UI"
|
|
312412
|
+
},
|
|
312413
|
+
"iconUrl": {
|
|
312414
|
+
"type": "string",
|
|
312415
|
+
"description": "URL of the icon of the interface. This is the icon that will be displayed in the UI"
|
|
312416
|
+
},
|
|
312417
|
+
"readmeUrl": {
|
|
312418
|
+
"type": "string",
|
|
312419
|
+
"description": "URL of the readme of the interface. This is the readme that will be displayed in the UI"
|
|
312420
|
+
},
|
|
312421
|
+
"public": {
|
|
312422
|
+
"type": "boolean",
|
|
312423
|
+
"description": "Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version."
|
|
312243
312424
|
}
|
|
312244
312425
|
},
|
|
312245
312426
|
"required": [
|
|
@@ -312251,7 +312432,12 @@ var state4 = {
|
|
|
312251
312432
|
"entities",
|
|
312252
312433
|
"events",
|
|
312253
312434
|
"actions",
|
|
312254
|
-
"channels"
|
|
312435
|
+
"channels",
|
|
312436
|
+
"title",
|
|
312437
|
+
"description",
|
|
312438
|
+
"iconUrl",
|
|
312439
|
+
"readmeUrl",
|
|
312440
|
+
"public"
|
|
312255
312441
|
],
|
|
312256
312442
|
"additionalProperties": false
|
|
312257
312443
|
}
|
|
@@ -327027,6 +327213,29 @@ var state5 = {
|
|
|
327027
327213
|
],
|
|
327028
327214
|
"description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
|
|
327029
327215
|
"additionalProperties": false
|
|
327216
|
+
},
|
|
327217
|
+
"icon": {
|
|
327218
|
+
"type": "string",
|
|
327219
|
+
"description": "Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes."
|
|
327220
|
+
},
|
|
327221
|
+
"readme": {
|
|
327222
|
+
"type": "string",
|
|
327223
|
+
"description": "Base64 encoded markdown of the interface readme. The readme is specific to each interface versions."
|
|
327224
|
+
},
|
|
327225
|
+
"title": {
|
|
327226
|
+
"type": "string",
|
|
327227
|
+
"minLength": 1,
|
|
327228
|
+
"maxLength": 64,
|
|
327229
|
+
"description": "Title of the interface. This is the name that will be displayed in the UI"
|
|
327230
|
+
},
|
|
327231
|
+
"description": {
|
|
327232
|
+
"type": "string",
|
|
327233
|
+
"maxLength": 256,
|
|
327234
|
+
"description": "Description of the interface. This is the description that will be displayed in the UI"
|
|
327235
|
+
},
|
|
327236
|
+
"public": {
|
|
327237
|
+
"type": "boolean",
|
|
327238
|
+
"description": "Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version."
|
|
327030
327239
|
}
|
|
327031
327240
|
},
|
|
327032
327241
|
"required": [
|
|
@@ -327323,6 +327532,29 @@ var state5 = {
|
|
|
327323
327532
|
"description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
|
|
327324
327533
|
"nullable": true,
|
|
327325
327534
|
"additionalProperties": false
|
|
327535
|
+
},
|
|
327536
|
+
"icon": {
|
|
327537
|
+
"type": "string",
|
|
327538
|
+
"description": "Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes."
|
|
327539
|
+
},
|
|
327540
|
+
"readme": {
|
|
327541
|
+
"type": "string",
|
|
327542
|
+
"description": "Base64 encoded markdown of the interface readme. The readme is specific to each interface versions."
|
|
327543
|
+
},
|
|
327544
|
+
"title": {
|
|
327545
|
+
"type": "string",
|
|
327546
|
+
"minLength": 1,
|
|
327547
|
+
"maxLength": 64,
|
|
327548
|
+
"description": "Title of the interface. This is the name that will be displayed in the UI"
|
|
327549
|
+
},
|
|
327550
|
+
"description": {
|
|
327551
|
+
"type": "string",
|
|
327552
|
+
"maxLength": 256,
|
|
327553
|
+
"description": "Description of the interface. This is the description that will be displayed in the UI"
|
|
327554
|
+
},
|
|
327555
|
+
"public": {
|
|
327556
|
+
"type": "boolean",
|
|
327557
|
+
"description": "Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version."
|
|
327326
327558
|
}
|
|
327327
327559
|
},
|
|
327328
327560
|
"title": "updateInterfaceBody",
|
|
@@ -327422,6 +327654,29 @@ var state5 = {
|
|
|
327422
327654
|
"type": "string",
|
|
327423
327655
|
"maxLength": 200,
|
|
327424
327656
|
"description": "Version of the [Interface](#schema_interface)"
|
|
327657
|
+
},
|
|
327658
|
+
"title": {
|
|
327659
|
+
"type": "string",
|
|
327660
|
+
"minLength": 1,
|
|
327661
|
+
"maxLength": 64,
|
|
327662
|
+
"description": "Title of the interface. This is the name that will be displayed in the UI"
|
|
327663
|
+
},
|
|
327664
|
+
"description": {
|
|
327665
|
+
"type": "string",
|
|
327666
|
+
"maxLength": 256,
|
|
327667
|
+
"description": "Description of the interface. This is the description that will be displayed in the UI"
|
|
327668
|
+
},
|
|
327669
|
+
"iconUrl": {
|
|
327670
|
+
"type": "string",
|
|
327671
|
+
"description": "URL of the icon of the interface. This is the icon that will be displayed in the UI"
|
|
327672
|
+
},
|
|
327673
|
+
"readmeUrl": {
|
|
327674
|
+
"type": "string",
|
|
327675
|
+
"description": "URL of the readme of the interface. This is the readme that will be displayed in the UI"
|
|
327676
|
+
},
|
|
327677
|
+
"public": {
|
|
327678
|
+
"type": "boolean",
|
|
327679
|
+
"description": "Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version."
|
|
327425
327680
|
}
|
|
327426
327681
|
},
|
|
327427
327682
|
"required": [
|
|
@@ -327429,7 +327684,12 @@ var state5 = {
|
|
|
327429
327684
|
"createdAt",
|
|
327430
327685
|
"updatedAt",
|
|
327431
327686
|
"name",
|
|
327432
|
-
"version"
|
|
327687
|
+
"version",
|
|
327688
|
+
"title",
|
|
327689
|
+
"description",
|
|
327690
|
+
"iconUrl",
|
|
327691
|
+
"readmeUrl",
|
|
327692
|
+
"public"
|
|
327433
327693
|
]
|
|
327434
327694
|
}
|
|
327435
327695
|
},
|
|
@@ -331647,7 +331907,7 @@ var state5 = {
|
|
|
331647
331907
|
"title": "Botpress API",
|
|
331648
331908
|
"description": "API for Botpress Cloud",
|
|
331649
331909
|
"server": "https://api.botpress.cloud",
|
|
331650
|
-
"version": "1.
|
|
331910
|
+
"version": "1.10.0",
|
|
331651
331911
|
"prefix": "v1"
|
|
331652
331912
|
},
|
|
331653
331913
|
"errors": [
|
|
@@ -333465,6 +333725,29 @@ var state5 = {
|
|
|
333465
333725
|
],
|
|
333466
333726
|
"description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
|
|
333467
333727
|
"additionalProperties": false
|
|
333728
|
+
},
|
|
333729
|
+
"title": {
|
|
333730
|
+
"type": "string",
|
|
333731
|
+
"minLength": 1,
|
|
333732
|
+
"maxLength": 64,
|
|
333733
|
+
"description": "Title of the interface. This is the name that will be displayed in the UI"
|
|
333734
|
+
},
|
|
333735
|
+
"description": {
|
|
333736
|
+
"type": "string",
|
|
333737
|
+
"maxLength": 256,
|
|
333738
|
+
"description": "Description of the interface. This is the description that will be displayed in the UI"
|
|
333739
|
+
},
|
|
333740
|
+
"iconUrl": {
|
|
333741
|
+
"type": "string",
|
|
333742
|
+
"description": "URL of the icon of the interface. This is the icon that will be displayed in the UI"
|
|
333743
|
+
},
|
|
333744
|
+
"readmeUrl": {
|
|
333745
|
+
"type": "string",
|
|
333746
|
+
"description": "URL of the readme of the interface. This is the readme that will be displayed in the UI"
|
|
333747
|
+
},
|
|
333748
|
+
"public": {
|
|
333749
|
+
"type": "boolean",
|
|
333750
|
+
"description": "Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version."
|
|
333468
333751
|
}
|
|
333469
333752
|
},
|
|
333470
333753
|
"required": [
|
|
@@ -333476,7 +333759,12 @@ var state5 = {
|
|
|
333476
333759
|
"entities",
|
|
333477
333760
|
"events",
|
|
333478
333761
|
"actions",
|
|
333479
|
-
"channels"
|
|
333762
|
+
"channels",
|
|
333763
|
+
"title",
|
|
333764
|
+
"description",
|
|
333765
|
+
"iconUrl",
|
|
333766
|
+
"readmeUrl",
|
|
333767
|
+
"public"
|
|
333480
333768
|
],
|
|
333481
333769
|
"additionalProperties": false
|
|
333482
333770
|
}
|
|
@@ -8919,6 +8919,29 @@ export declare const state: {
|
|
|
8919
8919
|
description: string;
|
|
8920
8920
|
additionalProperties: false;
|
|
8921
8921
|
};
|
|
8922
|
+
icon: {
|
|
8923
|
+
type: "string";
|
|
8924
|
+
description: string;
|
|
8925
|
+
};
|
|
8926
|
+
readme: {
|
|
8927
|
+
type: "string";
|
|
8928
|
+
description: string;
|
|
8929
|
+
};
|
|
8930
|
+
title: {
|
|
8931
|
+
type: "string";
|
|
8932
|
+
minLength: number;
|
|
8933
|
+
maxLength: number;
|
|
8934
|
+
description: string;
|
|
8935
|
+
};
|
|
8936
|
+
description: {
|
|
8937
|
+
type: "string";
|
|
8938
|
+
maxLength: number;
|
|
8939
|
+
description: string;
|
|
8940
|
+
};
|
|
8941
|
+
public: {
|
|
8942
|
+
type: "boolean";
|
|
8943
|
+
description: string;
|
|
8944
|
+
};
|
|
8922
8945
|
};
|
|
8923
8946
|
required: string[];
|
|
8924
8947
|
title: string;
|
|
@@ -9190,6 +9213,29 @@ export declare const state: {
|
|
|
9190
9213
|
nullable: true;
|
|
9191
9214
|
additionalProperties: false;
|
|
9192
9215
|
};
|
|
9216
|
+
icon: {
|
|
9217
|
+
type: "string";
|
|
9218
|
+
description: string;
|
|
9219
|
+
};
|
|
9220
|
+
readme: {
|
|
9221
|
+
type: "string";
|
|
9222
|
+
description: string;
|
|
9223
|
+
};
|
|
9224
|
+
title: {
|
|
9225
|
+
type: "string";
|
|
9226
|
+
minLength: number;
|
|
9227
|
+
maxLength: number;
|
|
9228
|
+
description: string;
|
|
9229
|
+
};
|
|
9230
|
+
description: {
|
|
9231
|
+
type: "string";
|
|
9232
|
+
maxLength: number;
|
|
9233
|
+
description: string;
|
|
9234
|
+
};
|
|
9235
|
+
public: {
|
|
9236
|
+
type: "boolean";
|
|
9237
|
+
description: string;
|
|
9238
|
+
};
|
|
9193
9239
|
};
|
|
9194
9240
|
title: string;
|
|
9195
9241
|
additionalProperties: false;
|
|
@@ -9287,6 +9333,29 @@ export declare const state: {
|
|
|
9287
9333
|
maxLength: number;
|
|
9288
9334
|
description: string;
|
|
9289
9335
|
};
|
|
9336
|
+
title: {
|
|
9337
|
+
type: "string";
|
|
9338
|
+
minLength: number;
|
|
9339
|
+
maxLength: number;
|
|
9340
|
+
description: string;
|
|
9341
|
+
};
|
|
9342
|
+
description: {
|
|
9343
|
+
type: "string";
|
|
9344
|
+
maxLength: number;
|
|
9345
|
+
description: string;
|
|
9346
|
+
};
|
|
9347
|
+
iconUrl: {
|
|
9348
|
+
type: "string";
|
|
9349
|
+
description: string;
|
|
9350
|
+
};
|
|
9351
|
+
readmeUrl: {
|
|
9352
|
+
type: "string";
|
|
9353
|
+
description: string;
|
|
9354
|
+
};
|
|
9355
|
+
public: {
|
|
9356
|
+
type: "boolean";
|
|
9357
|
+
description: string;
|
|
9358
|
+
};
|
|
9290
9359
|
};
|
|
9291
9360
|
required: string[];
|
|
9292
9361
|
};
|
|
@@ -11974,6 +12043,29 @@ export declare const state: {
|
|
|
11974
12043
|
description: string;
|
|
11975
12044
|
additionalProperties: false;
|
|
11976
12045
|
};
|
|
12046
|
+
title: {
|
|
12047
|
+
type: "string";
|
|
12048
|
+
minLength: number;
|
|
12049
|
+
maxLength: number;
|
|
12050
|
+
description: string;
|
|
12051
|
+
};
|
|
12052
|
+
description: {
|
|
12053
|
+
type: "string";
|
|
12054
|
+
maxLength: number;
|
|
12055
|
+
description: string;
|
|
12056
|
+
};
|
|
12057
|
+
iconUrl: {
|
|
12058
|
+
type: "string";
|
|
12059
|
+
description: string;
|
|
12060
|
+
};
|
|
12061
|
+
readmeUrl: {
|
|
12062
|
+
type: "string";
|
|
12063
|
+
description: string;
|
|
12064
|
+
};
|
|
12065
|
+
public: {
|
|
12066
|
+
type: "boolean";
|
|
12067
|
+
description: string;
|
|
12068
|
+
};
|
|
11977
12069
|
};
|
|
11978
12070
|
required: string[];
|
|
11979
12071
|
additionalProperties: false;
|
|
@@ -2650,6 +2650,29 @@ export declare const state: {
|
|
|
2650
2650
|
description: string;
|
|
2651
2651
|
additionalProperties: false;
|
|
2652
2652
|
};
|
|
2653
|
+
title: {
|
|
2654
|
+
type: "string";
|
|
2655
|
+
minLength: number;
|
|
2656
|
+
maxLength: number;
|
|
2657
|
+
description: string;
|
|
2658
|
+
};
|
|
2659
|
+
description: {
|
|
2660
|
+
type: "string";
|
|
2661
|
+
maxLength: number;
|
|
2662
|
+
description: string;
|
|
2663
|
+
};
|
|
2664
|
+
iconUrl: {
|
|
2665
|
+
type: "string";
|
|
2666
|
+
description: string;
|
|
2667
|
+
};
|
|
2668
|
+
readmeUrl: {
|
|
2669
|
+
type: "string";
|
|
2670
|
+
description: string;
|
|
2671
|
+
};
|
|
2672
|
+
public: {
|
|
2673
|
+
type: "boolean";
|
|
2674
|
+
description: string;
|
|
2675
|
+
};
|
|
2653
2676
|
};
|
|
2654
2677
|
required: string[];
|
|
2655
2678
|
additionalProperties: false;
|
|
@@ -3727,6 +3727,29 @@ export declare const state: {
|
|
|
3727
3727
|
description: string;
|
|
3728
3728
|
additionalProperties: false;
|
|
3729
3729
|
};
|
|
3730
|
+
title: {
|
|
3731
|
+
type: "string";
|
|
3732
|
+
minLength: number;
|
|
3733
|
+
maxLength: number;
|
|
3734
|
+
description: string;
|
|
3735
|
+
};
|
|
3736
|
+
description: {
|
|
3737
|
+
type: "string";
|
|
3738
|
+
maxLength: number;
|
|
3739
|
+
description: string;
|
|
3740
|
+
};
|
|
3741
|
+
iconUrl: {
|
|
3742
|
+
type: "string";
|
|
3743
|
+
description: string;
|
|
3744
|
+
};
|
|
3745
|
+
readmeUrl: {
|
|
3746
|
+
type: "string";
|
|
3747
|
+
description: string;
|
|
3748
|
+
};
|
|
3749
|
+
public: {
|
|
3750
|
+
type: "boolean";
|
|
3751
|
+
description: string;
|
|
3752
|
+
};
|
|
3730
3753
|
};
|
|
3731
3754
|
required: string[];
|
|
3732
3755
|
additionalProperties: false;
|