@botpress/api 1.16.0 → 1.17.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 +361 -9
- package/dist/src/gen/admin/state.d.ts +140 -0
- package/dist/src/gen/files/state.d.ts +24 -0
- package/dist/src/gen/runtime/state.d.ts +24 -0
- package/dist/src/gen/state.d.ts +140 -0
- package/dist/src/gen/tables/state.d.ts +24 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +143 -3
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +25 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +25 -1
- package/src/gen/state.ts +143 -3
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +25 -1
package/src/gen/admin/state.ts
CHANGED
|
@@ -1254,6 +1254,14 @@ export const state = {
|
|
|
1254
1254
|
"additionalProperties": false
|
|
1255
1255
|
}
|
|
1256
1256
|
},
|
|
1257
|
+
"attributes": {
|
|
1258
|
+
"type": "object",
|
|
1259
|
+
"additionalProperties": {
|
|
1260
|
+
"type": "string",
|
|
1261
|
+
"maxLength": 200
|
|
1262
|
+
},
|
|
1263
|
+
"description": "Optional attributes"
|
|
1264
|
+
},
|
|
1257
1265
|
"dev": {
|
|
1258
1266
|
"type": "boolean",
|
|
1259
1267
|
"description": "Indicates if the integration is a development integration; Dev integrations run locally"
|
|
@@ -1987,6 +1995,14 @@ export const state = {
|
|
|
1987
1995
|
"additionalProperties": false
|
|
1988
1996
|
}
|
|
1989
1997
|
},
|
|
1998
|
+
"attributes": {
|
|
1999
|
+
"type": "object",
|
|
2000
|
+
"additionalProperties": {
|
|
2001
|
+
"type": "string",
|
|
2002
|
+
"maxLength": 200
|
|
2003
|
+
},
|
|
2004
|
+
"description": "Optional attributes"
|
|
2005
|
+
},
|
|
1990
2006
|
"dev": {
|
|
1991
2007
|
"type": "boolean",
|
|
1992
2008
|
"description": "Indicates if the integration is a development integration; Dev integrations run locally"
|
|
@@ -2559,6 +2575,14 @@ export const state = {
|
|
|
2559
2575
|
"description": "Conversation object configuration",
|
|
2560
2576
|
"additionalProperties": false
|
|
2561
2577
|
},
|
|
2578
|
+
"attributes": {
|
|
2579
|
+
"type": "object",
|
|
2580
|
+
"additionalProperties": {
|
|
2581
|
+
"type": "string",
|
|
2582
|
+
"maxLength": 200
|
|
2583
|
+
},
|
|
2584
|
+
"description": "Optional attributes"
|
|
2585
|
+
},
|
|
2562
2586
|
"title": {
|
|
2563
2587
|
"type": "string",
|
|
2564
2588
|
"minLength": 1,
|
|
@@ -2949,6 +2973,14 @@ export const state = {
|
|
|
2949
2973
|
"description": "Conversation object configuration",
|
|
2950
2974
|
"additionalProperties": false
|
|
2951
2975
|
},
|
|
2976
|
+
"attributes": {
|
|
2977
|
+
"type": "object",
|
|
2978
|
+
"additionalProperties": {
|
|
2979
|
+
"type": "string",
|
|
2980
|
+
"maxLength": 200
|
|
2981
|
+
},
|
|
2982
|
+
"description": "Optional attributes"
|
|
2983
|
+
},
|
|
2952
2984
|
"title": {
|
|
2953
2985
|
"type": "string",
|
|
2954
2986
|
"minLength": 1,
|
|
@@ -3399,6 +3431,14 @@ export const state = {
|
|
|
3399
3431
|
"description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
|
|
3400
3432
|
"additionalProperties": false
|
|
3401
3433
|
},
|
|
3434
|
+
"attributes": {
|
|
3435
|
+
"type": "object",
|
|
3436
|
+
"additionalProperties": {
|
|
3437
|
+
"type": "string",
|
|
3438
|
+
"maxLength": 200
|
|
3439
|
+
},
|
|
3440
|
+
"description": "Optional attributes"
|
|
3441
|
+
},
|
|
3402
3442
|
"title": {
|
|
3403
3443
|
"type": "string",
|
|
3404
3444
|
"minLength": 1,
|
|
@@ -3689,6 +3729,14 @@ export const state = {
|
|
|
3689
3729
|
"description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
|
|
3690
3730
|
"additionalProperties": false
|
|
3691
3731
|
},
|
|
3732
|
+
"attributes": {
|
|
3733
|
+
"type": "object",
|
|
3734
|
+
"additionalProperties": {
|
|
3735
|
+
"type": "string",
|
|
3736
|
+
"maxLength": 200
|
|
3737
|
+
},
|
|
3738
|
+
"description": "Optional attributes"
|
|
3739
|
+
},
|
|
3692
3740
|
"title": {
|
|
3693
3741
|
"type": "string",
|
|
3694
3742
|
"minLength": 1,
|
|
@@ -4040,7 +4088,7 @@ export const state = {
|
|
|
4040
4088
|
"type": "string",
|
|
4041
4089
|
"maxLength": 500
|
|
4042
4090
|
},
|
|
4043
|
-
"description": "
|
|
4091
|
+
"description": "Optional attributes of the [Bot](#schema_bot)"
|
|
4044
4092
|
},
|
|
4045
4093
|
"code": {
|
|
4046
4094
|
"type": "string",
|
|
@@ -4152,7 +4200,7 @@ export const state = {
|
|
|
4152
4200
|
"type": "string",
|
|
4153
4201
|
"maxLength": 500
|
|
4154
4202
|
},
|
|
4155
|
-
"description": "
|
|
4203
|
+
"description": "Optional attributes of the [Bot](#schema_bot)"
|
|
4156
4204
|
},
|
|
4157
4205
|
"blocked": {
|
|
4158
4206
|
"type": "boolean"
|
|
@@ -8111,6 +8159,14 @@ export const state = {
|
|
|
8111
8159
|
"additionalProperties": false
|
|
8112
8160
|
}
|
|
8113
8161
|
},
|
|
8162
|
+
"attributes": {
|
|
8163
|
+
"type": "object",
|
|
8164
|
+
"additionalProperties": {
|
|
8165
|
+
"type": "string",
|
|
8166
|
+
"maxLength": 200
|
|
8167
|
+
},
|
|
8168
|
+
"description": "Optional attributes"
|
|
8169
|
+
},
|
|
8114
8170
|
"identifier": {
|
|
8115
8171
|
"type": "object",
|
|
8116
8172
|
"properties": {
|
|
@@ -8693,6 +8749,14 @@ export const state = {
|
|
|
8693
8749
|
"additionalProperties": false
|
|
8694
8750
|
}
|
|
8695
8751
|
},
|
|
8752
|
+
"attributes": {
|
|
8753
|
+
"type": "object",
|
|
8754
|
+
"additionalProperties": {
|
|
8755
|
+
"type": "string",
|
|
8756
|
+
"maxLength": 200
|
|
8757
|
+
},
|
|
8758
|
+
"description": "Optional attributes"
|
|
8759
|
+
},
|
|
8696
8760
|
"identifier": {
|
|
8697
8761
|
"type": "object",
|
|
8698
8762
|
"properties": {
|
|
@@ -9549,6 +9613,15 @@ export const state = {
|
|
|
9549
9613
|
},
|
|
9550
9614
|
"additionalProperties": false
|
|
9551
9615
|
},
|
|
9616
|
+
"attributes": {
|
|
9617
|
+
"type": "object",
|
|
9618
|
+
"additionalProperties": {
|
|
9619
|
+
"type": "string",
|
|
9620
|
+
"maxLength": 200,
|
|
9621
|
+
"nullable": true
|
|
9622
|
+
},
|
|
9623
|
+
"description": "Optional attributes. Set attributes to null to remove them"
|
|
9624
|
+
},
|
|
9552
9625
|
"secrets": {
|
|
9553
9626
|
"type": "object",
|
|
9554
9627
|
"additionalProperties": {
|
|
@@ -10148,6 +10221,15 @@ export const state = {
|
|
|
10148
10221
|
},
|
|
10149
10222
|
"additionalProperties": false
|
|
10150
10223
|
},
|
|
10224
|
+
"attributes": {
|
|
10225
|
+
"type": "object",
|
|
10226
|
+
"additionalProperties": {
|
|
10227
|
+
"type": "string",
|
|
10228
|
+
"maxLength": 200,
|
|
10229
|
+
"nullable": true
|
|
10230
|
+
},
|
|
10231
|
+
"description": "Optional attributes. Set attributes to null to remove them"
|
|
10232
|
+
},
|
|
10151
10233
|
"secrets": {
|
|
10152
10234
|
"type": "object",
|
|
10153
10235
|
"additionalProperties": {
|
|
@@ -10885,6 +10967,14 @@ export const state = {
|
|
|
10885
10967
|
"description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
|
|
10886
10968
|
"additionalProperties": false
|
|
10887
10969
|
},
|
|
10970
|
+
"attributes": {
|
|
10971
|
+
"type": "object",
|
|
10972
|
+
"additionalProperties": {
|
|
10973
|
+
"type": "string",
|
|
10974
|
+
"maxLength": 200
|
|
10975
|
+
},
|
|
10976
|
+
"description": "Optional attributes"
|
|
10977
|
+
},
|
|
10888
10978
|
"icon": {
|
|
10889
10979
|
"type": "string",
|
|
10890
10980
|
"description": "Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes."
|
|
@@ -11204,6 +11294,15 @@ export const state = {
|
|
|
11204
11294
|
"nullable": true,
|
|
11205
11295
|
"additionalProperties": false
|
|
11206
11296
|
},
|
|
11297
|
+
"attributes": {
|
|
11298
|
+
"type": "object",
|
|
11299
|
+
"additionalProperties": {
|
|
11300
|
+
"type": "string",
|
|
11301
|
+
"maxLength": 200,
|
|
11302
|
+
"nullable": true
|
|
11303
|
+
},
|
|
11304
|
+
"description": "Optional attributes. Set attributes to null to remove them"
|
|
11305
|
+
},
|
|
11207
11306
|
"icon": {
|
|
11208
11307
|
"type": "string",
|
|
11209
11308
|
"description": "Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes."
|
|
@@ -11663,6 +11762,14 @@ export const state = {
|
|
|
11663
11762
|
},
|
|
11664
11763
|
"additionalProperties": false
|
|
11665
11764
|
},
|
|
11765
|
+
"attributes": {
|
|
11766
|
+
"type": "object",
|
|
11767
|
+
"additionalProperties": {
|
|
11768
|
+
"type": "string",
|
|
11769
|
+
"maxLength": 200
|
|
11770
|
+
},
|
|
11771
|
+
"description": "Optional attributes"
|
|
11772
|
+
},
|
|
11666
11773
|
"code": {
|
|
11667
11774
|
"type": "object",
|
|
11668
11775
|
"properties": {
|
|
@@ -12073,6 +12180,15 @@ export const state = {
|
|
|
12073
12180
|
},
|
|
12074
12181
|
"additionalProperties": false
|
|
12075
12182
|
},
|
|
12183
|
+
"attributes": {
|
|
12184
|
+
"type": "object",
|
|
12185
|
+
"additionalProperties": {
|
|
12186
|
+
"type": "string",
|
|
12187
|
+
"maxLength": 200,
|
|
12188
|
+
"nullable": true
|
|
12189
|
+
},
|
|
12190
|
+
"description": "Optional attributes. Set attributes to null to remove them"
|
|
12191
|
+
},
|
|
12076
12192
|
"code": {
|
|
12077
12193
|
"type": "object",
|
|
12078
12194
|
"properties": {
|
|
@@ -12838,7 +12954,7 @@ export const state = {
|
|
|
12838
12954
|
"title": "Botpress API",
|
|
12839
12955
|
"description": "API for Botpress Cloud",
|
|
12840
12956
|
"server": "https://api.botpress.cloud",
|
|
12841
|
-
"version": "1.
|
|
12957
|
+
"version": "1.17.0",
|
|
12842
12958
|
"prefix": "v1"
|
|
12843
12959
|
},
|
|
12844
12960
|
"errors": [
|
|
@@ -14346,6 +14462,14 @@ export const state = {
|
|
|
14346
14462
|
"additionalProperties": false
|
|
14347
14463
|
}
|
|
14348
14464
|
},
|
|
14465
|
+
"attributes": {
|
|
14466
|
+
"type": "object",
|
|
14467
|
+
"additionalProperties": {
|
|
14468
|
+
"type": "string",
|
|
14469
|
+
"maxLength": 200
|
|
14470
|
+
},
|
|
14471
|
+
"description": "Optional attributes"
|
|
14472
|
+
},
|
|
14349
14473
|
"dev": {
|
|
14350
14474
|
"type": "boolean",
|
|
14351
14475
|
"description": "Indicates if the integration is a development integration; Dev integrations run locally"
|
|
@@ -14635,6 +14759,14 @@ export const state = {
|
|
|
14635
14759
|
"description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
|
|
14636
14760
|
"additionalProperties": false
|
|
14637
14761
|
},
|
|
14762
|
+
"attributes": {
|
|
14763
|
+
"type": "object",
|
|
14764
|
+
"additionalProperties": {
|
|
14765
|
+
"type": "string",
|
|
14766
|
+
"maxLength": 200
|
|
14767
|
+
},
|
|
14768
|
+
"description": "Optional attributes"
|
|
14769
|
+
},
|
|
14638
14770
|
"title": {
|
|
14639
14771
|
"type": "string",
|
|
14640
14772
|
"minLength": 1,
|
|
@@ -14990,6 +15122,14 @@ export const state = {
|
|
|
14990
15122
|
"description": "Conversation object configuration",
|
|
14991
15123
|
"additionalProperties": false
|
|
14992
15124
|
},
|
|
15125
|
+
"attributes": {
|
|
15126
|
+
"type": "object",
|
|
15127
|
+
"additionalProperties": {
|
|
15128
|
+
"type": "string",
|
|
15129
|
+
"maxLength": 200
|
|
15130
|
+
},
|
|
15131
|
+
"description": "Optional attributes"
|
|
15132
|
+
},
|
|
14993
15133
|
"title": {
|
|
14994
15134
|
"type": "string",
|
|
14995
15135
|
"minLength": 1,
|