@botpress/api 0.27.10 → 0.27.12
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 +443 -323
- package/dist/src/gen/state.d.ts +12 -0
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +16 -1
package/src/gen/state.ts
CHANGED
|
@@ -2024,6 +2024,9 @@ export const state = {
|
|
|
2024
2024
|
"displayName": {
|
|
2025
2025
|
"type": "string"
|
|
2026
2026
|
},
|
|
2027
|
+
"emailVerified": {
|
|
2028
|
+
"type": "boolean"
|
|
2029
|
+
},
|
|
2027
2030
|
"profilePicture": {
|
|
2028
2031
|
"type": "string"
|
|
2029
2032
|
},
|
|
@@ -2036,6 +2039,7 @@ export const state = {
|
|
|
2036
2039
|
"required": [
|
|
2037
2040
|
"id",
|
|
2038
2041
|
"email",
|
|
2042
|
+
"emailVerified",
|
|
2039
2043
|
"createdAt"
|
|
2040
2044
|
],
|
|
2041
2045
|
"additionalProperties": false
|
|
@@ -2069,6 +2073,9 @@ export const state = {
|
|
|
2069
2073
|
},
|
|
2070
2074
|
"profilePicture": {
|
|
2071
2075
|
"type": "string"
|
|
2076
|
+
},
|
|
2077
|
+
"refresh": {
|
|
2078
|
+
"type": "boolean"
|
|
2072
2079
|
}
|
|
2073
2080
|
},
|
|
2074
2081
|
"title": "updateAccountBody",
|
|
@@ -2092,6 +2099,9 @@ export const state = {
|
|
|
2092
2099
|
"displayName": {
|
|
2093
2100
|
"type": "string"
|
|
2094
2101
|
},
|
|
2102
|
+
"emailVerified": {
|
|
2103
|
+
"type": "boolean"
|
|
2104
|
+
},
|
|
2095
2105
|
"profilePicture": {
|
|
2096
2106
|
"type": "string"
|
|
2097
2107
|
},
|
|
@@ -2104,6 +2114,7 @@ export const state = {
|
|
|
2104
2114
|
"required": [
|
|
2105
2115
|
"id",
|
|
2106
2116
|
"email",
|
|
2117
|
+
"emailVerified",
|
|
2107
2118
|
"createdAt"
|
|
2108
2119
|
],
|
|
2109
2120
|
"additionalProperties": false
|
|
@@ -9583,7 +9594,7 @@ export const state = {
|
|
|
9583
9594
|
"title": "Botpress API",
|
|
9584
9595
|
"description": "API for Botpress Cloud",
|
|
9585
9596
|
"server": "https://api.botpress.cloud",
|
|
9586
|
-
"version": "0.27.
|
|
9597
|
+
"version": "0.27.12",
|
|
9587
9598
|
"prefix": "v1"
|
|
9588
9599
|
},
|
|
9589
9600
|
"errors": [
|
|
@@ -11004,6 +11015,9 @@ export const state = {
|
|
|
11004
11015
|
"displayName": {
|
|
11005
11016
|
"type": "string"
|
|
11006
11017
|
},
|
|
11018
|
+
"emailVerified": {
|
|
11019
|
+
"type": "boolean"
|
|
11020
|
+
},
|
|
11007
11021
|
"profilePicture": {
|
|
11008
11022
|
"type": "string"
|
|
11009
11023
|
},
|
|
@@ -11016,6 +11030,7 @@ export const state = {
|
|
|
11016
11030
|
"required": [
|
|
11017
11031
|
"id",
|
|
11018
11032
|
"email",
|
|
11033
|
+
"emailVerified",
|
|
11019
11034
|
"createdAt"
|
|
11020
11035
|
],
|
|
11021
11036
|
"additionalProperties": false
|