@botpress/api 0.45.2 → 0.45.3
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 +430 -55
- package/dist/src/gen/state.d.ts +38 -0
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +54 -4
package/src/gen/state.ts
CHANGED
|
@@ -2977,6 +2977,21 @@ export const state = {
|
|
|
2977
2977
|
"handle",
|
|
2978
2978
|
"name"
|
|
2979
2979
|
]
|
|
2980
|
+
},
|
|
2981
|
+
"meta": {
|
|
2982
|
+
"type": "object",
|
|
2983
|
+
"properties": {
|
|
2984
|
+
"installs": {
|
|
2985
|
+
"type": "number"
|
|
2986
|
+
},
|
|
2987
|
+
"views": {
|
|
2988
|
+
"type": "number"
|
|
2989
|
+
}
|
|
2990
|
+
},
|
|
2991
|
+
"required": [
|
|
2992
|
+
"installs",
|
|
2993
|
+
"views"
|
|
2994
|
+
]
|
|
2980
2995
|
}
|
|
2981
2996
|
},
|
|
2982
2997
|
"required": [
|
|
@@ -2990,7 +3005,8 @@ export const state = {
|
|
|
2990
3005
|
"iconUrl",
|
|
2991
3006
|
"public",
|
|
2992
3007
|
"verificationStatus",
|
|
2993
|
-
"ownerWorkspace"
|
|
3008
|
+
"ownerWorkspace",
|
|
3009
|
+
"meta"
|
|
2994
3010
|
]
|
|
2995
3011
|
}
|
|
2996
3012
|
},
|
|
@@ -3647,6 +3663,22 @@ export const state = {
|
|
|
3647
3663
|
"name"
|
|
3648
3664
|
],
|
|
3649
3665
|
"additionalProperties": false
|
|
3666
|
+
},
|
|
3667
|
+
"meta": {
|
|
3668
|
+
"type": "object",
|
|
3669
|
+
"properties": {
|
|
3670
|
+
"installs": {
|
|
3671
|
+
"type": "number"
|
|
3672
|
+
},
|
|
3673
|
+
"views": {
|
|
3674
|
+
"type": "number"
|
|
3675
|
+
}
|
|
3676
|
+
},
|
|
3677
|
+
"required": [
|
|
3678
|
+
"installs",
|
|
3679
|
+
"views"
|
|
3680
|
+
],
|
|
3681
|
+
"additionalProperties": false
|
|
3650
3682
|
}
|
|
3651
3683
|
},
|
|
3652
3684
|
"required": [
|
|
@@ -3674,7 +3706,8 @@ export const state = {
|
|
|
3674
3706
|
"public",
|
|
3675
3707
|
"verificationStatus",
|
|
3676
3708
|
"secrets",
|
|
3677
|
-
"ownerWorkspace"
|
|
3709
|
+
"ownerWorkspace",
|
|
3710
|
+
"meta"
|
|
3678
3711
|
],
|
|
3679
3712
|
"additionalProperties": false
|
|
3680
3713
|
}
|
|
@@ -4325,6 +4358,22 @@ export const state = {
|
|
|
4325
4358
|
"name"
|
|
4326
4359
|
],
|
|
4327
4360
|
"additionalProperties": false
|
|
4361
|
+
},
|
|
4362
|
+
"meta": {
|
|
4363
|
+
"type": "object",
|
|
4364
|
+
"properties": {
|
|
4365
|
+
"installs": {
|
|
4366
|
+
"type": "number"
|
|
4367
|
+
},
|
|
4368
|
+
"views": {
|
|
4369
|
+
"type": "number"
|
|
4370
|
+
}
|
|
4371
|
+
},
|
|
4372
|
+
"required": [
|
|
4373
|
+
"installs",
|
|
4374
|
+
"views"
|
|
4375
|
+
],
|
|
4376
|
+
"additionalProperties": false
|
|
4328
4377
|
}
|
|
4329
4378
|
},
|
|
4330
4379
|
"required": [
|
|
@@ -4352,7 +4401,8 @@ export const state = {
|
|
|
4352
4401
|
"public",
|
|
4353
4402
|
"verificationStatus",
|
|
4354
4403
|
"secrets",
|
|
4355
|
-
"ownerWorkspace"
|
|
4404
|
+
"ownerWorkspace",
|
|
4405
|
+
"meta"
|
|
4356
4406
|
],
|
|
4357
4407
|
"additionalProperties": false
|
|
4358
4408
|
}
|
|
@@ -12341,7 +12391,7 @@ export const state = {
|
|
|
12341
12391
|
"title": "Botpress API",
|
|
12342
12392
|
"description": "API for Botpress Cloud",
|
|
12343
12393
|
"server": "https://api.botpress.cloud",
|
|
12344
|
-
"version": "0.45.
|
|
12394
|
+
"version": "0.45.3",
|
|
12345
12395
|
"prefix": "v1"
|
|
12346
12396
|
},
|
|
12347
12397
|
"errors": [
|