@botpress/api 1.40.0 → 1.42.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/.turbo/turbo-openapi.log +5 -5
- package/dist/index.js +2033 -659
- package/dist/src/gen/admin/state.d.ts +5 -0
- package/dist/src/gen/files/state.d.ts +5 -0
- package/dist/src/gen/runtime/state.d.ts +13 -0
- package/dist/src/gen/state.d.ts +13 -0
- package/dist/src/gen/tables/state.d.ts +5 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +8 -1
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +8 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +24 -3
- package/src/gen/state.ts +24 -3
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +8 -1
package/src/gen/runtime/state.ts
CHANGED
|
@@ -735,6 +735,12 @@ export const state = {
|
|
|
735
735
|
},
|
|
736
736
|
"description": "Schedule the Message to be sent at a specific time. Either dateTime or delay must be provided.",
|
|
737
737
|
"additionalProperties": false
|
|
738
|
+
},
|
|
739
|
+
"origin": {
|
|
740
|
+
"type": "string",
|
|
741
|
+
"enum": [
|
|
742
|
+
"synthetic"
|
|
743
|
+
]
|
|
738
744
|
}
|
|
739
745
|
},
|
|
740
746
|
"required": [
|
|
@@ -825,6 +831,12 @@ export const state = {
|
|
|
825
831
|
"description": "Schedule the Message to be sent at a specific time. Either dateTime or delay must be provided.",
|
|
826
832
|
"additionalProperties": false
|
|
827
833
|
},
|
|
834
|
+
"origin": {
|
|
835
|
+
"type": "string",
|
|
836
|
+
"enum": [
|
|
837
|
+
"synthetic"
|
|
838
|
+
]
|
|
839
|
+
},
|
|
828
840
|
"discriminateByTags": {
|
|
829
841
|
"type": "array",
|
|
830
842
|
"items": {
|
|
@@ -2157,7 +2169,8 @@ export const state = {
|
|
|
2157
2169
|
"type": "string",
|
|
2158
2170
|
"enum": [
|
|
2159
2171
|
"pending",
|
|
2160
|
-
"in_progress"
|
|
2172
|
+
"in_progress",
|
|
2173
|
+
"listening"
|
|
2161
2174
|
]
|
|
2162
2175
|
},
|
|
2163
2176
|
"eventId": {
|
|
@@ -2465,7 +2478,8 @@ export const state = {
|
|
|
2465
2478
|
"type": "string",
|
|
2466
2479
|
"enum": [
|
|
2467
2480
|
"pending",
|
|
2468
|
-
"in_progress"
|
|
2481
|
+
"in_progress",
|
|
2482
|
+
"listening"
|
|
2469
2483
|
]
|
|
2470
2484
|
},
|
|
2471
2485
|
"eventId": {
|
|
@@ -2621,7 +2635,7 @@ export const state = {
|
|
|
2621
2635
|
"title": "Botpress API",
|
|
2622
2636
|
"description": "API for Botpress Cloud",
|
|
2623
2637
|
"server": "https://api.botpress.cloud",
|
|
2624
|
-
"version": "1.
|
|
2638
|
+
"version": "1.42.0",
|
|
2625
2639
|
"prefix": "v1"
|
|
2626
2640
|
},
|
|
2627
2641
|
"errors": [
|
|
@@ -5489,6 +5503,13 @@ export const state = {
|
|
|
5489
5503
|
"type": "string"
|
|
5490
5504
|
},
|
|
5491
5505
|
"description": "Set of [Tags](/docs/developers/concepts/tags) that you can attach to a [Conversation](#schema_conversation). The set of [Tags](/docs/developers/concepts/tags) available on a [Conversation](#schema_conversation) is restricted by the list of [Tags](/docs/developers/concepts/tags) defined previously by the [Bot](#schema_bot). Individual keys can be unset by posting an empty value to them."
|
|
5506
|
+
},
|
|
5507
|
+
"origin": {
|
|
5508
|
+
"type": "string",
|
|
5509
|
+
"enum": [
|
|
5510
|
+
"synthetic"
|
|
5511
|
+
],
|
|
5512
|
+
"description": "Origin of the message (`synthetic`)."
|
|
5492
5513
|
}
|
|
5493
5514
|
},
|
|
5494
5515
|
"required": [
|
package/src/gen/state.ts
CHANGED
|
@@ -735,6 +735,12 @@ export const state = {
|
|
|
735
735
|
},
|
|
736
736
|
"description": "Schedule the Message to be sent at a specific time. Either dateTime or delay must be provided.",
|
|
737
737
|
"additionalProperties": false
|
|
738
|
+
},
|
|
739
|
+
"origin": {
|
|
740
|
+
"type": "string",
|
|
741
|
+
"enum": [
|
|
742
|
+
"synthetic"
|
|
743
|
+
]
|
|
738
744
|
}
|
|
739
745
|
},
|
|
740
746
|
"required": [
|
|
@@ -825,6 +831,12 @@ export const state = {
|
|
|
825
831
|
"description": "Schedule the Message to be sent at a specific time. Either dateTime or delay must be provided.",
|
|
826
832
|
"additionalProperties": false
|
|
827
833
|
},
|
|
834
|
+
"origin": {
|
|
835
|
+
"type": "string",
|
|
836
|
+
"enum": [
|
|
837
|
+
"synthetic"
|
|
838
|
+
]
|
|
839
|
+
},
|
|
828
840
|
"discriminateByTags": {
|
|
829
841
|
"type": "array",
|
|
830
842
|
"items": {
|
|
@@ -2157,7 +2169,8 @@ export const state = {
|
|
|
2157
2169
|
"type": "string",
|
|
2158
2170
|
"enum": [
|
|
2159
2171
|
"pending",
|
|
2160
|
-
"in_progress"
|
|
2172
|
+
"in_progress",
|
|
2173
|
+
"listening"
|
|
2161
2174
|
]
|
|
2162
2175
|
},
|
|
2163
2176
|
"eventId": {
|
|
@@ -2465,7 +2478,8 @@ export const state = {
|
|
|
2465
2478
|
"type": "string",
|
|
2466
2479
|
"enum": [
|
|
2467
2480
|
"pending",
|
|
2468
|
-
"in_progress"
|
|
2481
|
+
"in_progress",
|
|
2482
|
+
"listening"
|
|
2469
2483
|
]
|
|
2470
2484
|
},
|
|
2471
2485
|
"eventId": {
|
|
@@ -19669,7 +19683,7 @@ export const state = {
|
|
|
19669
19683
|
"title": "Botpress API",
|
|
19670
19684
|
"description": "API for Botpress Cloud",
|
|
19671
19685
|
"server": "https://api.botpress.cloud",
|
|
19672
|
-
"version": "1.
|
|
19686
|
+
"version": "1.42.0",
|
|
19673
19687
|
"prefix": "v1"
|
|
19674
19688
|
},
|
|
19675
19689
|
"errors": [
|
|
@@ -22729,6 +22743,13 @@ export const state = {
|
|
|
22729
22743
|
"type": "string"
|
|
22730
22744
|
},
|
|
22731
22745
|
"description": "Set of [Tags](/docs/developers/concepts/tags) that you can attach to a [Conversation](#schema_conversation). The set of [Tags](/docs/developers/concepts/tags) available on a [Conversation](#schema_conversation) is restricted by the list of [Tags](/docs/developers/concepts/tags) defined previously by the [Bot](#schema_bot). Individual keys can be unset by posting an empty value to them."
|
|
22746
|
+
},
|
|
22747
|
+
"origin": {
|
|
22748
|
+
"type": "string",
|
|
22749
|
+
"enum": [
|
|
22750
|
+
"synthetic"
|
|
22751
|
+
],
|
|
22752
|
+
"description": "Origin of the message (`synthetic`)."
|
|
22732
22753
|
}
|
|
22733
22754
|
},
|
|
22734
22755
|
"required": [
|