@botpress/api 1.18.1 → 1.19.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/dist/index.js +650 -34
- package/dist/src/gen/admin/state.d.ts +121 -0
- package/dist/src/gen/files/state.d.ts +113 -0
- package/dist/src/gen/runtime/state.d.ts +19 -3
- package/dist/src/gen/state.d.ts +215 -3
- package/dist/src/gen/tables/state.d.ts +19 -0
- package/dist/src/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/gen/admin/metadata.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +149 -6
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +162 -7
- package/src/gen/metadata.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +28 -5
- package/src/gen/state.ts +283 -14
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +28 -2
package/dist/index.js
CHANGED
|
@@ -284084,9 +284084,6 @@ var state = {
|
|
|
284084
284084
|
"description": "Add an event to the analytics",
|
|
284085
284085
|
"method": "post",
|
|
284086
284086
|
"path": "/v1/chat/analytics",
|
|
284087
|
-
"disableDefaultParameters": {
|
|
284088
|
-
"x-integration-id": true
|
|
284089
|
-
},
|
|
284090
284087
|
"requestBody": {
|
|
284091
284088
|
"description": "Add an event to the analytics",
|
|
284092
284089
|
"schema": {
|
|
@@ -284126,7 +284123,7 @@ var state = {
|
|
|
284126
284123
|
"title": "Botpress API",
|
|
284127
284124
|
"description": "API for Botpress Cloud",
|
|
284128
284125
|
"server": "https://api.botpress.cloud",
|
|
284129
|
-
"version": "1.
|
|
284126
|
+
"version": "1.19.0",
|
|
284130
284127
|
"prefix": "v1"
|
|
284131
284128
|
},
|
|
284132
284129
|
"errors": [
|
|
@@ -287757,6 +287754,31 @@ var state = {
|
|
|
287757
287754
|
"expiresAt": {
|
|
287758
287755
|
"type": "string",
|
|
287759
287756
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
287757
|
+
},
|
|
287758
|
+
"owner": {
|
|
287759
|
+
"type": "object",
|
|
287760
|
+
"properties": {
|
|
287761
|
+
"type": {
|
|
287762
|
+
"type": "string",
|
|
287763
|
+
"enum": [
|
|
287764
|
+
"bot",
|
|
287765
|
+
"integration",
|
|
287766
|
+
"user"
|
|
287767
|
+
]
|
|
287768
|
+
},
|
|
287769
|
+
"id": {
|
|
287770
|
+
"type": "string",
|
|
287771
|
+
"description": 'This field is present if `type` is "user" or "bot". If `type` is "user", this is the user ID. If `type` is "bot", this is the bot ID.'
|
|
287772
|
+
},
|
|
287773
|
+
"name": {
|
|
287774
|
+
"type": "string",
|
|
287775
|
+
"description": 'This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.'
|
|
287776
|
+
}
|
|
287777
|
+
},
|
|
287778
|
+
"required": [
|
|
287779
|
+
"type"
|
|
287780
|
+
],
|
|
287781
|
+
"additionalProperties": false
|
|
287760
287782
|
}
|
|
287761
287783
|
},
|
|
287762
287784
|
"required": [
|
|
@@ -287772,7 +287794,8 @@ var state = {
|
|
|
287772
287794
|
"updatedAt",
|
|
287773
287795
|
"accessPolicies",
|
|
287774
287796
|
"index",
|
|
287775
|
-
"status"
|
|
287797
|
+
"status",
|
|
287798
|
+
"owner"
|
|
287776
287799
|
],
|
|
287777
287800
|
"additionalProperties": false
|
|
287778
287801
|
}
|
|
@@ -292965,7 +292988,7 @@ var state2 = {
|
|
|
292965
292988
|
},
|
|
292966
292989
|
"endDate": {
|
|
292967
292990
|
"in": "query",
|
|
292968
|
-
"description": "End date/time (
|
|
292991
|
+
"description": "End date/time (inclusive)",
|
|
292969
292992
|
"type": "string",
|
|
292970
292993
|
"required": true
|
|
292971
292994
|
}
|
|
@@ -292986,7 +293009,7 @@ var state2 = {
|
|
|
292986
293009
|
},
|
|
292987
293010
|
"endDateTimeUtc": {
|
|
292988
293011
|
"type": "string",
|
|
292989
|
-
"description": "ISO 8601 date string of the end (
|
|
293012
|
+
"description": "ISO 8601 date string of the end (inclusive) of the period"
|
|
292990
293013
|
},
|
|
292991
293014
|
"returningUsers": {
|
|
292992
293015
|
"type": "integer"
|
|
@@ -293150,6 +293173,121 @@ var state2 = {
|
|
|
293150
293173
|
}
|
|
293151
293174
|
}
|
|
293152
293175
|
},
|
|
293176
|
+
"listActionRuns": {
|
|
293177
|
+
"name": "listActionRuns",
|
|
293178
|
+
"description": "List action runs for a specific integration of a bot",
|
|
293179
|
+
"method": "get",
|
|
293180
|
+
"path": "/v1/admin/bots/{id}/action-runs",
|
|
293181
|
+
"section": "bot",
|
|
293182
|
+
"parameters": {
|
|
293183
|
+
"id": {
|
|
293184
|
+
"type": "string",
|
|
293185
|
+
"description": "Bot ID",
|
|
293186
|
+
"in": "path"
|
|
293187
|
+
},
|
|
293188
|
+
"integrationName": {
|
|
293189
|
+
"in": "query",
|
|
293190
|
+
"description": "Integration name",
|
|
293191
|
+
"type": "string",
|
|
293192
|
+
"required": true
|
|
293193
|
+
},
|
|
293194
|
+
"timestampFrom": {
|
|
293195
|
+
"in": "query",
|
|
293196
|
+
"description": "Start timestamp (inclusive)",
|
|
293197
|
+
"type": "string"
|
|
293198
|
+
},
|
|
293199
|
+
"timestampUntil": {
|
|
293200
|
+
"in": "query",
|
|
293201
|
+
"description": "End timestamp (inclusive)",
|
|
293202
|
+
"type": "string"
|
|
293203
|
+
},
|
|
293204
|
+
"nextToken": {
|
|
293205
|
+
"in": "query",
|
|
293206
|
+
"description": "Provide the `meta.nextToken` value provided in the last API response to retrieve the next page of results",
|
|
293207
|
+
"type": "string"
|
|
293208
|
+
}
|
|
293209
|
+
},
|
|
293210
|
+
"response": {
|
|
293211
|
+
"description": "Success",
|
|
293212
|
+
"schema": {
|
|
293213
|
+
"type": "object",
|
|
293214
|
+
"properties": {
|
|
293215
|
+
"data": {
|
|
293216
|
+
"type": "array",
|
|
293217
|
+
"items": {
|
|
293218
|
+
"type": "object",
|
|
293219
|
+
"properties": {
|
|
293220
|
+
"timestamp": {
|
|
293221
|
+
"type": "string",
|
|
293222
|
+
"description": "ISO 8601 timestamp of the action run"
|
|
293223
|
+
},
|
|
293224
|
+
"integrationName": {
|
|
293225
|
+
"type": "string"
|
|
293226
|
+
},
|
|
293227
|
+
"actionType": {
|
|
293228
|
+
"type": "string"
|
|
293229
|
+
},
|
|
293230
|
+
"input": {
|
|
293231
|
+
"type": "object",
|
|
293232
|
+
"properties": {},
|
|
293233
|
+
"additionalProperties": true,
|
|
293234
|
+
"description": "Input of the action"
|
|
293235
|
+
},
|
|
293236
|
+
"output": {
|
|
293237
|
+
"type": "object",
|
|
293238
|
+
"properties": {},
|
|
293239
|
+
"additionalProperties": true,
|
|
293240
|
+
"nullable": true,
|
|
293241
|
+
"description": "Output of the action"
|
|
293242
|
+
},
|
|
293243
|
+
"status": {
|
|
293244
|
+
"type": "string",
|
|
293245
|
+
"enum": [
|
|
293246
|
+
"SUCCESS",
|
|
293247
|
+
"FAILURE"
|
|
293248
|
+
]
|
|
293249
|
+
},
|
|
293250
|
+
"durationMs": {
|
|
293251
|
+
"type": "number"
|
|
293252
|
+
},
|
|
293253
|
+
"cached": {
|
|
293254
|
+
"type": "boolean"
|
|
293255
|
+
},
|
|
293256
|
+
"errorMessage": {
|
|
293257
|
+
"type": "string",
|
|
293258
|
+
"nullable": true
|
|
293259
|
+
}
|
|
293260
|
+
},
|
|
293261
|
+
"required": [
|
|
293262
|
+
"timestamp",
|
|
293263
|
+
"actionType",
|
|
293264
|
+
"input",
|
|
293265
|
+
"output",
|
|
293266
|
+
"status",
|
|
293267
|
+
"durationMs",
|
|
293268
|
+
"cached"
|
|
293269
|
+
]
|
|
293270
|
+
}
|
|
293271
|
+
},
|
|
293272
|
+
"meta": {
|
|
293273
|
+
"type": "object",
|
|
293274
|
+
"properties": {
|
|
293275
|
+
"nextToken": {
|
|
293276
|
+
"type": "string"
|
|
293277
|
+
}
|
|
293278
|
+
},
|
|
293279
|
+
"additionalProperties": false
|
|
293280
|
+
}
|
|
293281
|
+
},
|
|
293282
|
+
"required": [
|
|
293283
|
+
"data",
|
|
293284
|
+
"meta"
|
|
293285
|
+
],
|
|
293286
|
+
"title": "listActionRunsResponse",
|
|
293287
|
+
"additionalProperties": false
|
|
293288
|
+
}
|
|
293289
|
+
}
|
|
293290
|
+
},
|
|
293153
293291
|
"getBotIssue": {
|
|
293154
293292
|
"name": "getBotIssue",
|
|
293155
293293
|
"description": "Get Bot Issue",
|
|
@@ -300615,7 +300753,7 @@ var state2 = {
|
|
|
300615
300753
|
},
|
|
300616
300754
|
"timestampUntil": {
|
|
300617
300755
|
"in": "query",
|
|
300618
|
-
"description": "Timestamp until (
|
|
300756
|
+
"description": "Timestamp until (inclusive)",
|
|
300619
300757
|
"type": "string"
|
|
300620
300758
|
},
|
|
300621
300759
|
"nextToken": {
|
|
@@ -300717,7 +300855,7 @@ var state2 = {
|
|
|
300717
300855
|
},
|
|
300718
300856
|
"dateUntil": {
|
|
300719
300857
|
"in": "query",
|
|
300720
|
-
"description": "Date until (
|
|
300858
|
+
"description": "Date until (inclusive)",
|
|
300721
300859
|
"type": "string"
|
|
300722
300860
|
},
|
|
300723
300861
|
"nextToken": {
|
|
@@ -300944,7 +301082,7 @@ var state2 = {
|
|
|
300944
301082
|
"title": "Botpress API",
|
|
300945
301083
|
"description": "API for Botpress Cloud",
|
|
300946
301084
|
"server": "https://api.botpress.cloud",
|
|
300947
|
-
"version": "1.
|
|
301085
|
+
"version": "1.19.0",
|
|
300948
301086
|
"prefix": "v1"
|
|
300949
301087
|
},
|
|
300950
301088
|
"errors": [
|
|
@@ -301130,6 +301268,7 @@ var state2 = {
|
|
|
301130
301268
|
"getBotLogsResponse": true,
|
|
301131
301269
|
"getBotWebchatResponse": true,
|
|
301132
301270
|
"getBotAnalyticsResponse": true,
|
|
301271
|
+
"listActionRunsResponse": true,
|
|
301133
301272
|
"getBotIssueResponse": true,
|
|
301134
301273
|
"listBotIssuesResponse": true,
|
|
301135
301274
|
"deleteBotIssueResponse": true,
|
|
@@ -304634,6 +304773,31 @@ var state2 = {
|
|
|
304634
304773
|
"expiresAt": {
|
|
304635
304774
|
"type": "string",
|
|
304636
304775
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
304776
|
+
},
|
|
304777
|
+
"owner": {
|
|
304778
|
+
"type": "object",
|
|
304779
|
+
"properties": {
|
|
304780
|
+
"type": {
|
|
304781
|
+
"type": "string",
|
|
304782
|
+
"enum": [
|
|
304783
|
+
"bot",
|
|
304784
|
+
"integration",
|
|
304785
|
+
"user"
|
|
304786
|
+
]
|
|
304787
|
+
},
|
|
304788
|
+
"id": {
|
|
304789
|
+
"type": "string",
|
|
304790
|
+
"description": 'This field is present if `type` is "user" or "bot". If `type` is "user", this is the user ID. If `type` is "bot", this is the bot ID.'
|
|
304791
|
+
},
|
|
304792
|
+
"name": {
|
|
304793
|
+
"type": "string",
|
|
304794
|
+
"description": 'This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.'
|
|
304795
|
+
}
|
|
304796
|
+
},
|
|
304797
|
+
"required": [
|
|
304798
|
+
"type"
|
|
304799
|
+
],
|
|
304800
|
+
"additionalProperties": false
|
|
304637
304801
|
}
|
|
304638
304802
|
},
|
|
304639
304803
|
"required": [
|
|
@@ -304649,7 +304813,8 @@ var state2 = {
|
|
|
304649
304813
|
"updatedAt",
|
|
304650
304814
|
"accessPolicies",
|
|
304651
304815
|
"index",
|
|
304652
|
-
"status"
|
|
304816
|
+
"status",
|
|
304817
|
+
"owner"
|
|
304653
304818
|
],
|
|
304654
304819
|
"additionalProperties": false
|
|
304655
304820
|
}
|
|
@@ -304748,6 +304913,7 @@ var state2 = {
|
|
|
304748
304913
|
"getBotLogs",
|
|
304749
304914
|
"getBotWebchat",
|
|
304750
304915
|
"getBotAnalytics",
|
|
304916
|
+
"listActionRuns",
|
|
304751
304917
|
"getBotIssue",
|
|
304752
304918
|
"listBotIssues",
|
|
304753
304919
|
"deleteBotIssue",
|
|
@@ -304961,7 +305127,7 @@ var state3 = {
|
|
|
304961
305127
|
"index": {
|
|
304962
305128
|
"default": false,
|
|
304963
305129
|
"type": "boolean",
|
|
304964
|
-
"description": "Set to a value of 'true' to index the file in vector storage. Only certain file formats are currently supported for indexing. Note that if a file is indexed, it will count towards both the Vector DB Storage quota and the File Storage quota of the workspace."
|
|
305130
|
+
"description": "Set to a value of 'true' to index the file in vector storage. Only certain file formats are currently supported for indexing. Files larger than 95 MB cannot be indexed. Note that if a file is indexed, it will count towards both the Vector DB Storage quota and the File Storage quota of the workspace."
|
|
304965
305131
|
},
|
|
304966
305132
|
"indexing": {
|
|
304967
305133
|
"type": "object",
|
|
@@ -305202,6 +305368,31 @@ var state3 = {
|
|
|
305202
305368
|
"type": "string",
|
|
305203
305369
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
305204
305370
|
},
|
|
305371
|
+
"owner": {
|
|
305372
|
+
"type": "object",
|
|
305373
|
+
"properties": {
|
|
305374
|
+
"type": {
|
|
305375
|
+
"type": "string",
|
|
305376
|
+
"enum": [
|
|
305377
|
+
"bot",
|
|
305378
|
+
"integration",
|
|
305379
|
+
"user"
|
|
305380
|
+
]
|
|
305381
|
+
},
|
|
305382
|
+
"id": {
|
|
305383
|
+
"type": "string",
|
|
305384
|
+
"description": 'This field is present if `type` is "user" or "bot". If `type` is "user", this is the user ID. If `type` is "bot", this is the bot ID.'
|
|
305385
|
+
},
|
|
305386
|
+
"name": {
|
|
305387
|
+
"type": "string",
|
|
305388
|
+
"description": 'This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.'
|
|
305389
|
+
}
|
|
305390
|
+
},
|
|
305391
|
+
"required": [
|
|
305392
|
+
"type"
|
|
305393
|
+
],
|
|
305394
|
+
"additionalProperties": false
|
|
305395
|
+
},
|
|
305205
305396
|
"uploadUrl": {
|
|
305206
305397
|
"type": "string",
|
|
305207
305398
|
"description": "URL to upload the file content. File content needs to be sent to this URL via a PUT request."
|
|
@@ -305221,6 +305412,7 @@ var state3 = {
|
|
|
305221
305412
|
"accessPolicies",
|
|
305222
305413
|
"index",
|
|
305223
305414
|
"status",
|
|
305415
|
+
"owner",
|
|
305224
305416
|
"uploadUrl"
|
|
305225
305417
|
],
|
|
305226
305418
|
"additionalProperties": false
|
|
@@ -305401,6 +305593,30 @@ var state3 = {
|
|
|
305401
305593
|
"expiresAt": {
|
|
305402
305594
|
"type": "string",
|
|
305403
305595
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
305596
|
+
},
|
|
305597
|
+
"owner": {
|
|
305598
|
+
"type": "object",
|
|
305599
|
+
"properties": {
|
|
305600
|
+
"type": {
|
|
305601
|
+
"type": "string",
|
|
305602
|
+
"enum": [
|
|
305603
|
+
"bot",
|
|
305604
|
+
"integration",
|
|
305605
|
+
"user"
|
|
305606
|
+
]
|
|
305607
|
+
},
|
|
305608
|
+
"id": {
|
|
305609
|
+
"type": "string",
|
|
305610
|
+
"description": 'This field is present if `type` is "user" or "bot". If `type` is "user", this is the user ID. If `type` is "bot", this is the bot ID.'
|
|
305611
|
+
},
|
|
305612
|
+
"name": {
|
|
305613
|
+
"type": "string",
|
|
305614
|
+
"description": 'This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.'
|
|
305615
|
+
}
|
|
305616
|
+
},
|
|
305617
|
+
"required": [
|
|
305618
|
+
"type"
|
|
305619
|
+
]
|
|
305404
305620
|
}
|
|
305405
305621
|
},
|
|
305406
305622
|
"required": [
|
|
@@ -305416,7 +305632,8 @@ var state3 = {
|
|
|
305416
305632
|
"updatedAt",
|
|
305417
305633
|
"accessPolicies",
|
|
305418
305634
|
"index",
|
|
305419
|
-
"status"
|
|
305635
|
+
"status",
|
|
305636
|
+
"owner"
|
|
305420
305637
|
]
|
|
305421
305638
|
}
|
|
305422
305639
|
},
|
|
@@ -305543,6 +305760,31 @@ var state3 = {
|
|
|
305543
305760
|
"expiresAt": {
|
|
305544
305761
|
"type": "string",
|
|
305545
305762
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
305763
|
+
},
|
|
305764
|
+
"owner": {
|
|
305765
|
+
"type": "object",
|
|
305766
|
+
"properties": {
|
|
305767
|
+
"type": {
|
|
305768
|
+
"type": "string",
|
|
305769
|
+
"enum": [
|
|
305770
|
+
"bot",
|
|
305771
|
+
"integration",
|
|
305772
|
+
"user"
|
|
305773
|
+
]
|
|
305774
|
+
},
|
|
305775
|
+
"id": {
|
|
305776
|
+
"type": "string",
|
|
305777
|
+
"description": 'This field is present if `type` is "user" or "bot". If `type` is "user", this is the user ID. If `type` is "bot", this is the bot ID.'
|
|
305778
|
+
},
|
|
305779
|
+
"name": {
|
|
305780
|
+
"type": "string",
|
|
305781
|
+
"description": 'This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.'
|
|
305782
|
+
}
|
|
305783
|
+
},
|
|
305784
|
+
"required": [
|
|
305785
|
+
"type"
|
|
305786
|
+
],
|
|
305787
|
+
"additionalProperties": false
|
|
305546
305788
|
}
|
|
305547
305789
|
},
|
|
305548
305790
|
"required": [
|
|
@@ -305558,7 +305800,8 @@ var state3 = {
|
|
|
305558
305800
|
"updatedAt",
|
|
305559
305801
|
"accessPolicies",
|
|
305560
305802
|
"index",
|
|
305561
|
-
"status"
|
|
305803
|
+
"status",
|
|
305804
|
+
"owner"
|
|
305562
305805
|
],
|
|
305563
305806
|
"additionalProperties": false
|
|
305564
305807
|
}
|
|
@@ -305713,6 +305956,31 @@ var state3 = {
|
|
|
305713
305956
|
"expiresAt": {
|
|
305714
305957
|
"type": "string",
|
|
305715
305958
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
305959
|
+
},
|
|
305960
|
+
"owner": {
|
|
305961
|
+
"type": "object",
|
|
305962
|
+
"properties": {
|
|
305963
|
+
"type": {
|
|
305964
|
+
"type": "string",
|
|
305965
|
+
"enum": [
|
|
305966
|
+
"bot",
|
|
305967
|
+
"integration",
|
|
305968
|
+
"user"
|
|
305969
|
+
]
|
|
305970
|
+
},
|
|
305971
|
+
"id": {
|
|
305972
|
+
"type": "string",
|
|
305973
|
+
"description": 'This field is present if `type` is "user" or "bot". If `type` is "user", this is the user ID. If `type` is "bot", this is the bot ID.'
|
|
305974
|
+
},
|
|
305975
|
+
"name": {
|
|
305976
|
+
"type": "string",
|
|
305977
|
+
"description": 'This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.'
|
|
305978
|
+
}
|
|
305979
|
+
},
|
|
305980
|
+
"required": [
|
|
305981
|
+
"type"
|
|
305982
|
+
],
|
|
305983
|
+
"additionalProperties": false
|
|
305716
305984
|
}
|
|
305717
305985
|
},
|
|
305718
305986
|
"required": [
|
|
@@ -305728,7 +305996,8 @@ var state3 = {
|
|
|
305728
305996
|
"updatedAt",
|
|
305729
305997
|
"accessPolicies",
|
|
305730
305998
|
"index",
|
|
305731
|
-
"status"
|
|
305999
|
+
"status",
|
|
306000
|
+
"owner"
|
|
305732
306001
|
],
|
|
305733
306002
|
"additionalProperties": false
|
|
305734
306003
|
}
|
|
@@ -305868,6 +306137,31 @@ var state3 = {
|
|
|
305868
306137
|
"expiresAt": {
|
|
305869
306138
|
"type": "string",
|
|
305870
306139
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
306140
|
+
},
|
|
306141
|
+
"owner": {
|
|
306142
|
+
"type": "object",
|
|
306143
|
+
"properties": {
|
|
306144
|
+
"type": {
|
|
306145
|
+
"type": "string",
|
|
306146
|
+
"enum": [
|
|
306147
|
+
"bot",
|
|
306148
|
+
"integration",
|
|
306149
|
+
"user"
|
|
306150
|
+
]
|
|
306151
|
+
},
|
|
306152
|
+
"id": {
|
|
306153
|
+
"type": "string",
|
|
306154
|
+
"description": 'This field is present if `type` is "user" or "bot". If `type` is "user", this is the user ID. If `type` is "bot", this is the bot ID.'
|
|
306155
|
+
},
|
|
306156
|
+
"name": {
|
|
306157
|
+
"type": "string",
|
|
306158
|
+
"description": 'This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.'
|
|
306159
|
+
}
|
|
306160
|
+
},
|
|
306161
|
+
"required": [
|
|
306162
|
+
"type"
|
|
306163
|
+
],
|
|
306164
|
+
"additionalProperties": false
|
|
305871
306165
|
}
|
|
305872
306166
|
},
|
|
305873
306167
|
"required": [
|
|
@@ -305883,7 +306177,8 @@ var state3 = {
|
|
|
305883
306177
|
"updatedAt",
|
|
305884
306178
|
"accessPolicies",
|
|
305885
306179
|
"index",
|
|
305886
|
-
"status"
|
|
306180
|
+
"status",
|
|
306181
|
+
"owner"
|
|
305887
306182
|
],
|
|
305888
306183
|
"additionalProperties": false
|
|
305889
306184
|
}
|
|
@@ -306576,7 +306871,7 @@ var state3 = {
|
|
|
306576
306871
|
"title": "Botpress API",
|
|
306577
306872
|
"description": "API for Botpress Cloud",
|
|
306578
306873
|
"server": "https://api.botpress.cloud",
|
|
306579
|
-
"version": "1.
|
|
306874
|
+
"version": "1.19.0",
|
|
306580
306875
|
"prefix": "v1"
|
|
306581
306876
|
},
|
|
306582
306877
|
"errors": [
|
|
@@ -310162,6 +310457,31 @@ var state3 = {
|
|
|
310162
310457
|
"expiresAt": {
|
|
310163
310458
|
"type": "string",
|
|
310164
310459
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
310460
|
+
},
|
|
310461
|
+
"owner": {
|
|
310462
|
+
"type": "object",
|
|
310463
|
+
"properties": {
|
|
310464
|
+
"type": {
|
|
310465
|
+
"type": "string",
|
|
310466
|
+
"enum": [
|
|
310467
|
+
"bot",
|
|
310468
|
+
"integration",
|
|
310469
|
+
"user"
|
|
310470
|
+
]
|
|
310471
|
+
},
|
|
310472
|
+
"id": {
|
|
310473
|
+
"type": "string",
|
|
310474
|
+
"description": 'This field is present if `type` is "user" or "bot". If `type` is "user", this is the user ID. If `type` is "bot", this is the bot ID.'
|
|
310475
|
+
},
|
|
310476
|
+
"name": {
|
|
310477
|
+
"type": "string",
|
|
310478
|
+
"description": 'This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.'
|
|
310479
|
+
}
|
|
310480
|
+
},
|
|
310481
|
+
"required": [
|
|
310482
|
+
"type"
|
|
310483
|
+
],
|
|
310484
|
+
"additionalProperties": false
|
|
310165
310485
|
}
|
|
310166
310486
|
},
|
|
310167
310487
|
"required": [
|
|
@@ -310177,7 +310497,8 @@ var state3 = {
|
|
|
310177
310497
|
"updatedAt",
|
|
310178
310498
|
"accessPolicies",
|
|
310179
310499
|
"index",
|
|
310180
|
-
"status"
|
|
310500
|
+
"status",
|
|
310501
|
+
"owner"
|
|
310181
310502
|
],
|
|
310182
310503
|
"additionalProperties": false
|
|
310183
310504
|
}
|
|
@@ -311580,7 +311901,7 @@ var state4 = {
|
|
|
311580
311901
|
"title": "Botpress API",
|
|
311581
311902
|
"description": "API for Botpress Cloud",
|
|
311582
311903
|
"server": "https://api.botpress.cloud",
|
|
311583
|
-
"version": "1.
|
|
311904
|
+
"version": "1.19.0",
|
|
311584
311905
|
"prefix": "v1"
|
|
311585
311906
|
},
|
|
311586
311907
|
"errors": [
|
|
@@ -315173,6 +315494,31 @@ var state4 = {
|
|
|
315173
315494
|
"expiresAt": {
|
|
315174
315495
|
"type": "string",
|
|
315175
315496
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
315497
|
+
},
|
|
315498
|
+
"owner": {
|
|
315499
|
+
"type": "object",
|
|
315500
|
+
"properties": {
|
|
315501
|
+
"type": {
|
|
315502
|
+
"type": "string",
|
|
315503
|
+
"enum": [
|
|
315504
|
+
"bot",
|
|
315505
|
+
"integration",
|
|
315506
|
+
"user"
|
|
315507
|
+
]
|
|
315508
|
+
},
|
|
315509
|
+
"id": {
|
|
315510
|
+
"type": "string",
|
|
315511
|
+
"description": 'This field is present if `type` is "user" or "bot". If `type` is "user", this is the user ID. If `type` is "bot", this is the bot ID.'
|
|
315512
|
+
},
|
|
315513
|
+
"name": {
|
|
315514
|
+
"type": "string",
|
|
315515
|
+
"description": 'This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.'
|
|
315516
|
+
}
|
|
315517
|
+
},
|
|
315518
|
+
"required": [
|
|
315519
|
+
"type"
|
|
315520
|
+
],
|
|
315521
|
+
"additionalProperties": false
|
|
315176
315522
|
}
|
|
315177
315523
|
},
|
|
315178
315524
|
"required": [
|
|
@@ -315188,7 +315534,8 @@ var state4 = {
|
|
|
315188
315534
|
"updatedAt",
|
|
315189
315535
|
"accessPolicies",
|
|
315190
315536
|
"index",
|
|
315191
|
-
"status"
|
|
315537
|
+
"status",
|
|
315538
|
+
"owner"
|
|
315192
315539
|
],
|
|
315193
315540
|
"additionalProperties": false
|
|
315194
315541
|
}
|
|
@@ -317935,9 +318282,6 @@ var state5 = {
|
|
|
317935
318282
|
"description": "Add an event to the analytics",
|
|
317936
318283
|
"method": "post",
|
|
317937
318284
|
"path": "/v1/chat/analytics",
|
|
317938
|
-
"disableDefaultParameters": {
|
|
317939
|
-
"x-integration-id": true
|
|
317940
|
-
},
|
|
317941
318285
|
"requestBody": {
|
|
317942
318286
|
"description": "Add an event to the analytics",
|
|
317943
318287
|
"schema": {
|
|
@@ -322937,7 +323281,7 @@ var state5 = {
|
|
|
322937
323281
|
},
|
|
322938
323282
|
"endDate": {
|
|
322939
323283
|
"in": "query",
|
|
322940
|
-
"description": "End date/time (
|
|
323284
|
+
"description": "End date/time (inclusive)",
|
|
322941
323285
|
"type": "string",
|
|
322942
323286
|
"required": true
|
|
322943
323287
|
}
|
|
@@ -322958,7 +323302,7 @@ var state5 = {
|
|
|
322958
323302
|
},
|
|
322959
323303
|
"endDateTimeUtc": {
|
|
322960
323304
|
"type": "string",
|
|
322961
|
-
"description": "ISO 8601 date string of the end (
|
|
323305
|
+
"description": "ISO 8601 date string of the end (inclusive) of the period"
|
|
322962
323306
|
},
|
|
322963
323307
|
"returningUsers": {
|
|
322964
323308
|
"type": "integer"
|
|
@@ -323122,6 +323466,121 @@ var state5 = {
|
|
|
323122
323466
|
}
|
|
323123
323467
|
}
|
|
323124
323468
|
},
|
|
323469
|
+
"listActionRuns": {
|
|
323470
|
+
"name": "listActionRuns",
|
|
323471
|
+
"description": "List action runs for a specific integration of a bot",
|
|
323472
|
+
"method": "get",
|
|
323473
|
+
"path": "/v1/admin/bots/{id}/action-runs",
|
|
323474
|
+
"section": "bot",
|
|
323475
|
+
"parameters": {
|
|
323476
|
+
"id": {
|
|
323477
|
+
"type": "string",
|
|
323478
|
+
"description": "Bot ID",
|
|
323479
|
+
"in": "path"
|
|
323480
|
+
},
|
|
323481
|
+
"integrationName": {
|
|
323482
|
+
"in": "query",
|
|
323483
|
+
"description": "Integration name",
|
|
323484
|
+
"type": "string",
|
|
323485
|
+
"required": true
|
|
323486
|
+
},
|
|
323487
|
+
"timestampFrom": {
|
|
323488
|
+
"in": "query",
|
|
323489
|
+
"description": "Start timestamp (inclusive)",
|
|
323490
|
+
"type": "string"
|
|
323491
|
+
},
|
|
323492
|
+
"timestampUntil": {
|
|
323493
|
+
"in": "query",
|
|
323494
|
+
"description": "End timestamp (inclusive)",
|
|
323495
|
+
"type": "string"
|
|
323496
|
+
},
|
|
323497
|
+
"nextToken": {
|
|
323498
|
+
"in": "query",
|
|
323499
|
+
"description": "Provide the `meta.nextToken` value provided in the last API response to retrieve the next page of results",
|
|
323500
|
+
"type": "string"
|
|
323501
|
+
}
|
|
323502
|
+
},
|
|
323503
|
+
"response": {
|
|
323504
|
+
"description": "Success",
|
|
323505
|
+
"schema": {
|
|
323506
|
+
"type": "object",
|
|
323507
|
+
"properties": {
|
|
323508
|
+
"data": {
|
|
323509
|
+
"type": "array",
|
|
323510
|
+
"items": {
|
|
323511
|
+
"type": "object",
|
|
323512
|
+
"properties": {
|
|
323513
|
+
"timestamp": {
|
|
323514
|
+
"type": "string",
|
|
323515
|
+
"description": "ISO 8601 timestamp of the action run"
|
|
323516
|
+
},
|
|
323517
|
+
"integrationName": {
|
|
323518
|
+
"type": "string"
|
|
323519
|
+
},
|
|
323520
|
+
"actionType": {
|
|
323521
|
+
"type": "string"
|
|
323522
|
+
},
|
|
323523
|
+
"input": {
|
|
323524
|
+
"type": "object",
|
|
323525
|
+
"properties": {},
|
|
323526
|
+
"additionalProperties": true,
|
|
323527
|
+
"description": "Input of the action"
|
|
323528
|
+
},
|
|
323529
|
+
"output": {
|
|
323530
|
+
"type": "object",
|
|
323531
|
+
"properties": {},
|
|
323532
|
+
"additionalProperties": true,
|
|
323533
|
+
"nullable": true,
|
|
323534
|
+
"description": "Output of the action"
|
|
323535
|
+
},
|
|
323536
|
+
"status": {
|
|
323537
|
+
"type": "string",
|
|
323538
|
+
"enum": [
|
|
323539
|
+
"SUCCESS",
|
|
323540
|
+
"FAILURE"
|
|
323541
|
+
]
|
|
323542
|
+
},
|
|
323543
|
+
"durationMs": {
|
|
323544
|
+
"type": "number"
|
|
323545
|
+
},
|
|
323546
|
+
"cached": {
|
|
323547
|
+
"type": "boolean"
|
|
323548
|
+
},
|
|
323549
|
+
"errorMessage": {
|
|
323550
|
+
"type": "string",
|
|
323551
|
+
"nullable": true
|
|
323552
|
+
}
|
|
323553
|
+
},
|
|
323554
|
+
"required": [
|
|
323555
|
+
"timestamp",
|
|
323556
|
+
"actionType",
|
|
323557
|
+
"input",
|
|
323558
|
+
"output",
|
|
323559
|
+
"status",
|
|
323560
|
+
"durationMs",
|
|
323561
|
+
"cached"
|
|
323562
|
+
]
|
|
323563
|
+
}
|
|
323564
|
+
},
|
|
323565
|
+
"meta": {
|
|
323566
|
+
"type": "object",
|
|
323567
|
+
"properties": {
|
|
323568
|
+
"nextToken": {
|
|
323569
|
+
"type": "string"
|
|
323570
|
+
}
|
|
323571
|
+
},
|
|
323572
|
+
"additionalProperties": false
|
|
323573
|
+
}
|
|
323574
|
+
},
|
|
323575
|
+
"required": [
|
|
323576
|
+
"data",
|
|
323577
|
+
"meta"
|
|
323578
|
+
],
|
|
323579
|
+
"title": "listActionRunsResponse",
|
|
323580
|
+
"additionalProperties": false
|
|
323581
|
+
}
|
|
323582
|
+
}
|
|
323583
|
+
},
|
|
323125
323584
|
"getBotIssue": {
|
|
323126
323585
|
"name": "getBotIssue",
|
|
323127
323586
|
"description": "Get Bot Issue",
|
|
@@ -330588,7 +331047,7 @@ var state5 = {
|
|
|
330588
331047
|
},
|
|
330589
331048
|
"timestampUntil": {
|
|
330590
331049
|
"in": "query",
|
|
330591
|
-
"description": "Timestamp until (
|
|
331050
|
+
"description": "Timestamp until (inclusive)",
|
|
330592
331051
|
"type": "string"
|
|
330593
331052
|
},
|
|
330594
331053
|
"nextToken": {
|
|
@@ -330690,7 +331149,7 @@ var state5 = {
|
|
|
330690
331149
|
},
|
|
330691
331150
|
"dateUntil": {
|
|
330692
331151
|
"in": "query",
|
|
330693
|
-
"description": "Date until (
|
|
331152
|
+
"description": "Date until (inclusive)",
|
|
330694
331153
|
"type": "string"
|
|
330695
331154
|
},
|
|
330696
331155
|
"nextToken": {
|
|
@@ -330941,7 +331400,7 @@ var state5 = {
|
|
|
330941
331400
|
"index": {
|
|
330942
331401
|
"default": false,
|
|
330943
331402
|
"type": "boolean",
|
|
330944
|
-
"description": "Set to a value of 'true' to index the file in vector storage. Only certain file formats are currently supported for indexing. Note that if a file is indexed, it will count towards both the Vector DB Storage quota and the File Storage quota of the workspace."
|
|
331403
|
+
"description": "Set to a value of 'true' to index the file in vector storage. Only certain file formats are currently supported for indexing. Files larger than 95 MB cannot be indexed. Note that if a file is indexed, it will count towards both the Vector DB Storage quota and the File Storage quota of the workspace."
|
|
330945
331404
|
},
|
|
330946
331405
|
"indexing": {
|
|
330947
331406
|
"type": "object",
|
|
@@ -331182,6 +331641,31 @@ var state5 = {
|
|
|
331182
331641
|
"type": "string",
|
|
331183
331642
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
331184
331643
|
},
|
|
331644
|
+
"owner": {
|
|
331645
|
+
"type": "object",
|
|
331646
|
+
"properties": {
|
|
331647
|
+
"type": {
|
|
331648
|
+
"type": "string",
|
|
331649
|
+
"enum": [
|
|
331650
|
+
"bot",
|
|
331651
|
+
"integration",
|
|
331652
|
+
"user"
|
|
331653
|
+
]
|
|
331654
|
+
},
|
|
331655
|
+
"id": {
|
|
331656
|
+
"type": "string",
|
|
331657
|
+
"description": 'This field is present if `type` is "user" or "bot". If `type` is "user", this is the user ID. If `type` is "bot", this is the bot ID.'
|
|
331658
|
+
},
|
|
331659
|
+
"name": {
|
|
331660
|
+
"type": "string",
|
|
331661
|
+
"description": 'This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.'
|
|
331662
|
+
}
|
|
331663
|
+
},
|
|
331664
|
+
"required": [
|
|
331665
|
+
"type"
|
|
331666
|
+
],
|
|
331667
|
+
"additionalProperties": false
|
|
331668
|
+
},
|
|
331185
331669
|
"uploadUrl": {
|
|
331186
331670
|
"type": "string",
|
|
331187
331671
|
"description": "URL to upload the file content. File content needs to be sent to this URL via a PUT request."
|
|
@@ -331201,6 +331685,7 @@ var state5 = {
|
|
|
331201
331685
|
"accessPolicies",
|
|
331202
331686
|
"index",
|
|
331203
331687
|
"status",
|
|
331688
|
+
"owner",
|
|
331204
331689
|
"uploadUrl"
|
|
331205
331690
|
],
|
|
331206
331691
|
"additionalProperties": false
|
|
@@ -331381,6 +331866,30 @@ var state5 = {
|
|
|
331381
331866
|
"expiresAt": {
|
|
331382
331867
|
"type": "string",
|
|
331383
331868
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
331869
|
+
},
|
|
331870
|
+
"owner": {
|
|
331871
|
+
"type": "object",
|
|
331872
|
+
"properties": {
|
|
331873
|
+
"type": {
|
|
331874
|
+
"type": "string",
|
|
331875
|
+
"enum": [
|
|
331876
|
+
"bot",
|
|
331877
|
+
"integration",
|
|
331878
|
+
"user"
|
|
331879
|
+
]
|
|
331880
|
+
},
|
|
331881
|
+
"id": {
|
|
331882
|
+
"type": "string",
|
|
331883
|
+
"description": 'This field is present if `type` is "user" or "bot". If `type` is "user", this is the user ID. If `type` is "bot", this is the bot ID.'
|
|
331884
|
+
},
|
|
331885
|
+
"name": {
|
|
331886
|
+
"type": "string",
|
|
331887
|
+
"description": 'This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.'
|
|
331888
|
+
}
|
|
331889
|
+
},
|
|
331890
|
+
"required": [
|
|
331891
|
+
"type"
|
|
331892
|
+
]
|
|
331384
331893
|
}
|
|
331385
331894
|
},
|
|
331386
331895
|
"required": [
|
|
@@ -331396,7 +331905,8 @@ var state5 = {
|
|
|
331396
331905
|
"updatedAt",
|
|
331397
331906
|
"accessPolicies",
|
|
331398
331907
|
"index",
|
|
331399
|
-
"status"
|
|
331908
|
+
"status",
|
|
331909
|
+
"owner"
|
|
331400
331910
|
]
|
|
331401
331911
|
}
|
|
331402
331912
|
},
|
|
@@ -331523,6 +332033,31 @@ var state5 = {
|
|
|
331523
332033
|
"expiresAt": {
|
|
331524
332034
|
"type": "string",
|
|
331525
332035
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
332036
|
+
},
|
|
332037
|
+
"owner": {
|
|
332038
|
+
"type": "object",
|
|
332039
|
+
"properties": {
|
|
332040
|
+
"type": {
|
|
332041
|
+
"type": "string",
|
|
332042
|
+
"enum": [
|
|
332043
|
+
"bot",
|
|
332044
|
+
"integration",
|
|
332045
|
+
"user"
|
|
332046
|
+
]
|
|
332047
|
+
},
|
|
332048
|
+
"id": {
|
|
332049
|
+
"type": "string",
|
|
332050
|
+
"description": 'This field is present if `type` is "user" or "bot". If `type` is "user", this is the user ID. If `type` is "bot", this is the bot ID.'
|
|
332051
|
+
},
|
|
332052
|
+
"name": {
|
|
332053
|
+
"type": "string",
|
|
332054
|
+
"description": 'This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.'
|
|
332055
|
+
}
|
|
332056
|
+
},
|
|
332057
|
+
"required": [
|
|
332058
|
+
"type"
|
|
332059
|
+
],
|
|
332060
|
+
"additionalProperties": false
|
|
331526
332061
|
}
|
|
331527
332062
|
},
|
|
331528
332063
|
"required": [
|
|
@@ -331538,7 +332073,8 @@ var state5 = {
|
|
|
331538
332073
|
"updatedAt",
|
|
331539
332074
|
"accessPolicies",
|
|
331540
332075
|
"index",
|
|
331541
|
-
"status"
|
|
332076
|
+
"status",
|
|
332077
|
+
"owner"
|
|
331542
332078
|
],
|
|
331543
332079
|
"additionalProperties": false
|
|
331544
332080
|
}
|
|
@@ -331693,6 +332229,31 @@ var state5 = {
|
|
|
331693
332229
|
"expiresAt": {
|
|
331694
332230
|
"type": "string",
|
|
331695
332231
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
332232
|
+
},
|
|
332233
|
+
"owner": {
|
|
332234
|
+
"type": "object",
|
|
332235
|
+
"properties": {
|
|
332236
|
+
"type": {
|
|
332237
|
+
"type": "string",
|
|
332238
|
+
"enum": [
|
|
332239
|
+
"bot",
|
|
332240
|
+
"integration",
|
|
332241
|
+
"user"
|
|
332242
|
+
]
|
|
332243
|
+
},
|
|
332244
|
+
"id": {
|
|
332245
|
+
"type": "string",
|
|
332246
|
+
"description": 'This field is present if `type` is "user" or "bot". If `type` is "user", this is the user ID. If `type` is "bot", this is the bot ID.'
|
|
332247
|
+
},
|
|
332248
|
+
"name": {
|
|
332249
|
+
"type": "string",
|
|
332250
|
+
"description": 'This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.'
|
|
332251
|
+
}
|
|
332252
|
+
},
|
|
332253
|
+
"required": [
|
|
332254
|
+
"type"
|
|
332255
|
+
],
|
|
332256
|
+
"additionalProperties": false
|
|
331696
332257
|
}
|
|
331697
332258
|
},
|
|
331698
332259
|
"required": [
|
|
@@ -331708,7 +332269,8 @@ var state5 = {
|
|
|
331708
332269
|
"updatedAt",
|
|
331709
332270
|
"accessPolicies",
|
|
331710
332271
|
"index",
|
|
331711
|
-
"status"
|
|
332272
|
+
"status",
|
|
332273
|
+
"owner"
|
|
331712
332274
|
],
|
|
331713
332275
|
"additionalProperties": false
|
|
331714
332276
|
}
|
|
@@ -331848,6 +332410,31 @@ var state5 = {
|
|
|
331848
332410
|
"expiresAt": {
|
|
331849
332411
|
"type": "string",
|
|
331850
332412
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
332413
|
+
},
|
|
332414
|
+
"owner": {
|
|
332415
|
+
"type": "object",
|
|
332416
|
+
"properties": {
|
|
332417
|
+
"type": {
|
|
332418
|
+
"type": "string",
|
|
332419
|
+
"enum": [
|
|
332420
|
+
"bot",
|
|
332421
|
+
"integration",
|
|
332422
|
+
"user"
|
|
332423
|
+
]
|
|
332424
|
+
},
|
|
332425
|
+
"id": {
|
|
332426
|
+
"type": "string",
|
|
332427
|
+
"description": 'This field is present if `type` is "user" or "bot". If `type` is "user", this is the user ID. If `type` is "bot", this is the bot ID.'
|
|
332428
|
+
},
|
|
332429
|
+
"name": {
|
|
332430
|
+
"type": "string",
|
|
332431
|
+
"description": 'This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.'
|
|
332432
|
+
}
|
|
332433
|
+
},
|
|
332434
|
+
"required": [
|
|
332435
|
+
"type"
|
|
332436
|
+
],
|
|
332437
|
+
"additionalProperties": false
|
|
331851
332438
|
}
|
|
331852
332439
|
},
|
|
331853
332440
|
"required": [
|
|
@@ -331863,7 +332450,8 @@ var state5 = {
|
|
|
331863
332450
|
"updatedAt",
|
|
331864
332451
|
"accessPolicies",
|
|
331865
332452
|
"index",
|
|
331866
|
-
"status"
|
|
332453
|
+
"status",
|
|
332454
|
+
"owner"
|
|
331867
332455
|
],
|
|
331868
332456
|
"additionalProperties": false
|
|
331869
332457
|
}
|
|
@@ -333762,7 +334350,7 @@ var state5 = {
|
|
|
333762
334350
|
"title": "Botpress API",
|
|
333763
334351
|
"description": "API for Botpress Cloud",
|
|
333764
334352
|
"server": "https://api.botpress.cloud",
|
|
333765
|
-
"version": "1.
|
|
334353
|
+
"version": "1.19.0",
|
|
333766
334354
|
"prefix": "v1"
|
|
333767
334355
|
},
|
|
333768
334356
|
"errors": [
|
|
@@ -334033,6 +334621,7 @@ var state5 = {
|
|
|
334033
334621
|
"getBotLogsResponse": true,
|
|
334034
334622
|
"getBotWebchatResponse": true,
|
|
334035
334623
|
"getBotAnalyticsResponse": true,
|
|
334624
|
+
"listActionRunsResponse": true,
|
|
334036
334625
|
"getBotIssueResponse": true,
|
|
334037
334626
|
"listBotIssuesResponse": true,
|
|
334038
334627
|
"deleteBotIssueResponse": true,
|
|
@@ -337571,6 +338160,31 @@ var state5 = {
|
|
|
337571
338160
|
"expiresAt": {
|
|
337572
338161
|
"type": "string",
|
|
337573
338162
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
338163
|
+
},
|
|
338164
|
+
"owner": {
|
|
338165
|
+
"type": "object",
|
|
338166
|
+
"properties": {
|
|
338167
|
+
"type": {
|
|
338168
|
+
"type": "string",
|
|
338169
|
+
"enum": [
|
|
338170
|
+
"bot",
|
|
338171
|
+
"integration",
|
|
338172
|
+
"user"
|
|
338173
|
+
]
|
|
338174
|
+
},
|
|
338175
|
+
"id": {
|
|
338176
|
+
"type": "string",
|
|
338177
|
+
"description": 'This field is present if `type` is "user" or "bot". If `type` is "user", this is the user ID. If `type` is "bot", this is the bot ID.'
|
|
338178
|
+
},
|
|
338179
|
+
"name": {
|
|
338180
|
+
"type": "string",
|
|
338181
|
+
"description": 'This field is present if the `type` is "integration". If `type` is "integration", this is the integration name.'
|
|
338182
|
+
}
|
|
338183
|
+
},
|
|
338184
|
+
"required": [
|
|
338185
|
+
"type"
|
|
338186
|
+
],
|
|
338187
|
+
"additionalProperties": false
|
|
337574
338188
|
}
|
|
337575
338189
|
},
|
|
337576
338190
|
"required": [
|
|
@@ -337586,7 +338200,8 @@ var state5 = {
|
|
|
337586
338200
|
"updatedAt",
|
|
337587
338201
|
"accessPolicies",
|
|
337588
338202
|
"index",
|
|
337589
|
-
"status"
|
|
338203
|
+
"status",
|
|
338204
|
+
"owner"
|
|
337590
338205
|
],
|
|
337591
338206
|
"additionalProperties": false
|
|
337592
338207
|
}
|
|
@@ -337737,6 +338352,7 @@ var state5 = {
|
|
|
337737
338352
|
"getBotLogs",
|
|
337738
338353
|
"getBotWebchat",
|
|
337739
338354
|
"getBotAnalytics",
|
|
338355
|
+
"listActionRuns",
|
|
337740
338356
|
"getBotIssue",
|
|
337741
338357
|
"listBotIssues",
|
|
337742
338358
|
"deleteBotIssue",
|