@botpress/api 0.29.0 → 0.29.1
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 +107 -1
- package/dist/src/gen/state.d.ts +85 -0
- package/package.json +1 -1
- package/src/gen/metadata.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +107 -1
package/src/gen/state.ts
CHANGED
|
@@ -4573,6 +4573,110 @@ export const state = {
|
|
|
4573
4573
|
}
|
|
4574
4574
|
}
|
|
4575
4575
|
},
|
|
4576
|
+
"getBotIssue": {
|
|
4577
|
+
"name": "getBotIssue",
|
|
4578
|
+
"description": "Get Bot Issue",
|
|
4579
|
+
"method": "get",
|
|
4580
|
+
"path": "/v1/admin/bots/{id}/issues/{issueId}",
|
|
4581
|
+
"section": "bot",
|
|
4582
|
+
"parameters": {
|
|
4583
|
+
"id": {
|
|
4584
|
+
"type": "string",
|
|
4585
|
+
"description": "Bot ID",
|
|
4586
|
+
"in": "path"
|
|
4587
|
+
},
|
|
4588
|
+
"issueId": {
|
|
4589
|
+
"in": "path",
|
|
4590
|
+
"description": "Issue ID",
|
|
4591
|
+
"type": "string"
|
|
4592
|
+
}
|
|
4593
|
+
},
|
|
4594
|
+
"response": {
|
|
4595
|
+
"description": "Success",
|
|
4596
|
+
"schema": {
|
|
4597
|
+
"type": "object",
|
|
4598
|
+
"properties": {
|
|
4599
|
+
"issue": {
|
|
4600
|
+
"type": "object",
|
|
4601
|
+
"properties": {
|
|
4602
|
+
"id": {
|
|
4603
|
+
"type": "string"
|
|
4604
|
+
},
|
|
4605
|
+
"code": {
|
|
4606
|
+
"type": "string"
|
|
4607
|
+
},
|
|
4608
|
+
"createdAt": {
|
|
4609
|
+
"type": "string",
|
|
4610
|
+
"format": "date-time"
|
|
4611
|
+
},
|
|
4612
|
+
"lastSeenAt": {
|
|
4613
|
+
"type": "string",
|
|
4614
|
+
"format": "date-time"
|
|
4615
|
+
},
|
|
4616
|
+
"title": {
|
|
4617
|
+
"type": "string"
|
|
4618
|
+
},
|
|
4619
|
+
"description": {
|
|
4620
|
+
"type": "string"
|
|
4621
|
+
},
|
|
4622
|
+
"groupedData": {
|
|
4623
|
+
"type": "object",
|
|
4624
|
+
"additionalProperties": {
|
|
4625
|
+
"type": "object",
|
|
4626
|
+
"properties": {
|
|
4627
|
+
"raw": {
|
|
4628
|
+
"type": "string"
|
|
4629
|
+
},
|
|
4630
|
+
"pretty": {
|
|
4631
|
+
"type": "string"
|
|
4632
|
+
}
|
|
4633
|
+
},
|
|
4634
|
+
"required": [
|
|
4635
|
+
"raw"
|
|
4636
|
+
],
|
|
4637
|
+
"additionalProperties": false
|
|
4638
|
+
}
|
|
4639
|
+
},
|
|
4640
|
+
"eventsCount": {
|
|
4641
|
+
"type": "number"
|
|
4642
|
+
},
|
|
4643
|
+
"category": {
|
|
4644
|
+
"type": "string",
|
|
4645
|
+
"enum": [
|
|
4646
|
+
"user_code",
|
|
4647
|
+
"limits",
|
|
4648
|
+
"configuration",
|
|
4649
|
+
"other"
|
|
4650
|
+
]
|
|
4651
|
+
},
|
|
4652
|
+
"resolutionLink": {
|
|
4653
|
+
"type": "string",
|
|
4654
|
+
"nullable": true
|
|
4655
|
+
}
|
|
4656
|
+
},
|
|
4657
|
+
"required": [
|
|
4658
|
+
"id",
|
|
4659
|
+
"code",
|
|
4660
|
+
"createdAt",
|
|
4661
|
+
"lastSeenAt",
|
|
4662
|
+
"title",
|
|
4663
|
+
"description",
|
|
4664
|
+
"groupedData",
|
|
4665
|
+
"eventsCount",
|
|
4666
|
+
"category",
|
|
4667
|
+
"resolutionLink"
|
|
4668
|
+
],
|
|
4669
|
+
"additionalProperties": false
|
|
4670
|
+
}
|
|
4671
|
+
},
|
|
4672
|
+
"required": [
|
|
4673
|
+
"issue"
|
|
4674
|
+
],
|
|
4675
|
+
"title": "getBotIssueResponse",
|
|
4676
|
+
"additionalProperties": false
|
|
4677
|
+
}
|
|
4678
|
+
}
|
|
4679
|
+
},
|
|
4576
4680
|
"listBotIssues": {
|
|
4577
4681
|
"name": "listBotIssues",
|
|
4578
4682
|
"description": "List Bot Issues",
|
|
@@ -9654,7 +9758,7 @@ export const state = {
|
|
|
9654
9758
|
"title": "Botpress API",
|
|
9655
9759
|
"description": "API for Botpress Cloud",
|
|
9656
9760
|
"server": "https://api.botpress.cloud",
|
|
9657
|
-
"version": "0.29.
|
|
9761
|
+
"version": "0.29.1",
|
|
9658
9762
|
"prefix": "v1"
|
|
9659
9763
|
},
|
|
9660
9764
|
"errors": [
|
|
@@ -9886,6 +9990,7 @@ export const state = {
|
|
|
9886
9990
|
"getBotLogsResponse": true,
|
|
9887
9991
|
"getBotWebchatResponse": true,
|
|
9888
9992
|
"getBotAnalyticsResponse": true,
|
|
9993
|
+
"getBotIssueResponse": true,
|
|
9889
9994
|
"listBotIssuesResponse": true,
|
|
9890
9995
|
"deleteBotIssueResponse": true,
|
|
9891
9996
|
"listBotIssueEventsResponse": true,
|
|
@@ -12323,6 +12428,7 @@ export const state = {
|
|
|
12323
12428
|
"getBotLogs",
|
|
12324
12429
|
"getBotWebchat",
|
|
12325
12430
|
"getBotAnalytics",
|
|
12431
|
+
"getBotIssue",
|
|
12326
12432
|
"listBotIssues",
|
|
12327
12433
|
"deleteBotIssue",
|
|
12328
12434
|
"listBotIssueEvents"
|