@botpress/api 0.27.14 → 0.27.15
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 +15 -5
- package/dist/src/gen/state.d.ts +10 -2
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +15 -5
package/dist/index.js
CHANGED
|
@@ -281654,15 +281654,20 @@ var state = {
|
|
|
281654
281654
|
"type": "number",
|
|
281655
281655
|
"description": "The total number of rows present in the table."
|
|
281656
281656
|
},
|
|
281657
|
-
"
|
|
281657
|
+
"stale": {
|
|
281658
281658
|
"type": "number",
|
|
281659
281659
|
"description": "The number of stale rows that are waiting to be processed"
|
|
281660
|
+
},
|
|
281661
|
+
"indexing": {
|
|
281662
|
+
"type": "number",
|
|
281663
|
+
"description": "The number of rows that are waiting to be indexed (for search)"
|
|
281660
281664
|
}
|
|
281661
281665
|
},
|
|
281662
281666
|
"required": [
|
|
281663
281667
|
"table",
|
|
281664
281668
|
"rows",
|
|
281665
|
-
"
|
|
281669
|
+
"stale",
|
|
281670
|
+
"indexing"
|
|
281666
281671
|
],
|
|
281667
281672
|
"title": "getTableResponse",
|
|
281668
281673
|
"additionalProperties": false
|
|
@@ -281738,16 +281743,21 @@ var state = {
|
|
|
281738
281743
|
"type": "number",
|
|
281739
281744
|
"description": "The total number of rows present in the table."
|
|
281740
281745
|
},
|
|
281741
|
-
"
|
|
281746
|
+
"stale": {
|
|
281742
281747
|
"type": "number",
|
|
281743
281748
|
"description": "The number of stale rows that are waiting to be processed"
|
|
281749
|
+
},
|
|
281750
|
+
"indexing": {
|
|
281751
|
+
"type": "number",
|
|
281752
|
+
"description": "The number of rows that are waiting to be indexed (for search)"
|
|
281744
281753
|
}
|
|
281745
281754
|
},
|
|
281746
281755
|
"required": [
|
|
281747
281756
|
"table",
|
|
281748
281757
|
"created",
|
|
281749
281758
|
"rows",
|
|
281750
|
-
"
|
|
281759
|
+
"stale",
|
|
281760
|
+
"indexing"
|
|
281751
281761
|
],
|
|
281752
281762
|
"title": "getOrCreateTableResponse",
|
|
281753
281763
|
"additionalProperties": false
|
|
@@ -282481,7 +282491,7 @@ var state = {
|
|
|
282481
282491
|
"title": "Botpress API",
|
|
282482
282492
|
"description": "API for Botpress Cloud",
|
|
282483
282493
|
"server": "https://api.botpress.cloud",
|
|
282484
|
-
"version": "0.27.
|
|
282494
|
+
"version": "0.27.15",
|
|
282485
282495
|
"prefix": "v1"
|
|
282486
282496
|
},
|
|
282487
282497
|
"errors": [
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -7748,7 +7748,11 @@ export declare const state: {
|
|
|
7748
7748
|
type: "number";
|
|
7749
7749
|
description: string;
|
|
7750
7750
|
};
|
|
7751
|
-
|
|
7751
|
+
stale: {
|
|
7752
|
+
type: "number";
|
|
7753
|
+
description: string;
|
|
7754
|
+
};
|
|
7755
|
+
indexing: {
|
|
7752
7756
|
type: "number";
|
|
7753
7757
|
description: string;
|
|
7754
7758
|
};
|
|
@@ -7826,7 +7830,11 @@ export declare const state: {
|
|
|
7826
7830
|
type: "number";
|
|
7827
7831
|
description: string;
|
|
7828
7832
|
};
|
|
7829
|
-
|
|
7833
|
+
stale: {
|
|
7834
|
+
type: "number";
|
|
7835
|
+
description: string;
|
|
7836
|
+
};
|
|
7837
|
+
indexing: {
|
|
7830
7838
|
type: "number";
|
|
7831
7839
|
description: string;
|
|
7832
7840
|
};
|