@botpress/api 0.15.10 → 0.15.11
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 +53 -25
- package/dist/src/gen/state.d.ts +30 -2
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +37 -7
package/src/gen/state.ts
CHANGED
|
@@ -1567,11 +1567,10 @@ export const state = {
|
|
|
1567
1567
|
additionalProperties: true,
|
|
1568
1568
|
},
|
|
1569
1569
|
result: {
|
|
1570
|
-
|
|
1571
|
-
additionalProperties: true,
|
|
1570
|
+
nullable: true,
|
|
1572
1571
|
},
|
|
1573
1572
|
},
|
|
1574
|
-
required: ["data"
|
|
1573
|
+
required: ["data"],
|
|
1575
1574
|
title: "runVrlResponse",
|
|
1576
1575
|
additionalProperties: false,
|
|
1577
1576
|
},
|
|
@@ -5984,7 +5983,7 @@ export const state = {
|
|
|
5984
5983
|
title: "Botpress API",
|
|
5985
5984
|
description: "API for Botpress Cloud",
|
|
5986
5985
|
server: "https://api.botpress.cloud",
|
|
5987
|
-
version: "0.15.
|
|
5986
|
+
version: "0.15.11",
|
|
5988
5987
|
prefix: "v1",
|
|
5989
5988
|
},
|
|
5990
5989
|
errors: [
|
|
@@ -7720,14 +7719,41 @@ export const state = {
|
|
|
7720
7719
|
description:
|
|
7721
7720
|
'TypeScript typings for the column. Recommended if the type is "object", ex: "\\{ foo: string; bar: number \\}"',
|
|
7722
7721
|
},
|
|
7722
|
+
schema: {
|
|
7723
|
+
type: "object",
|
|
7724
|
+
properties: {},
|
|
7725
|
+
additionalProperties: true,
|
|
7726
|
+
},
|
|
7723
7727
|
},
|
|
7724
|
-
required: ["
|
|
7728
|
+
required: ["name", "type"],
|
|
7725
7729
|
},
|
|
7726
7730
|
maxItems: 20,
|
|
7727
7731
|
description: "Array of columns in the table.",
|
|
7728
7732
|
},
|
|
7733
|
+
schema: {
|
|
7734
|
+
type: "object",
|
|
7735
|
+
additionalProperties: true,
|
|
7736
|
+
description:
|
|
7737
|
+
"Provide an object or a JSON schema to define the columns of the table. A maximum of 20 keys in the object/schema is allowed.",
|
|
7738
|
+
},
|
|
7739
|
+
tags: {
|
|
7740
|
+
type: "object",
|
|
7741
|
+
additionalProperties: {
|
|
7742
|
+
type: "string",
|
|
7743
|
+
},
|
|
7744
|
+
description:
|
|
7745
|
+
"Optional tags to help organize your tables. These should be passed here as an object representing key/value pairs.",
|
|
7746
|
+
},
|
|
7747
|
+
createdAt: {
|
|
7748
|
+
type: "string",
|
|
7749
|
+
description: "Timestamp of table creation.",
|
|
7750
|
+
},
|
|
7751
|
+
updatedAt: {
|
|
7752
|
+
type: "string",
|
|
7753
|
+
description: "Timestamp of the last table update.",
|
|
7754
|
+
},
|
|
7729
7755
|
},
|
|
7730
|
-
required: ["id", "name", "columns"],
|
|
7756
|
+
required: ["id", "name", "columns", "schema"],
|
|
7731
7757
|
additionalProperties: false,
|
|
7732
7758
|
},
|
|
7733
7759
|
},
|
|
@@ -7766,8 +7792,12 @@ export const state = {
|
|
|
7766
7792
|
description:
|
|
7767
7793
|
'TypeScript typings for the column. Recommended if the type is "object", ex: "\\{ foo: string; bar: number \\}"',
|
|
7768
7794
|
},
|
|
7795
|
+
schema: {
|
|
7796
|
+
type: "object",
|
|
7797
|
+
additionalProperties: true,
|
|
7798
|
+
},
|
|
7769
7799
|
},
|
|
7770
|
-
required: ["
|
|
7800
|
+
required: ["name", "type"],
|
|
7771
7801
|
additionalProperties: false,
|
|
7772
7802
|
},
|
|
7773
7803
|
},
|