@botpress/api 1.73.2 → 1.73.4

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 CHANGED
@@ -275758,7 +275758,9 @@ var state = {
275758
275758
  "type": "object",
275759
275759
  "properties": {
275760
275760
  "currentTaskId": {
275761
- "type": "string"
275761
+ "type": "string",
275762
+ "deprecated": true,
275763
+ "description": "Unused. This parameter will be ignored if provided and should not be used when updating a conversation."
275762
275764
  },
275763
275765
  "tags": {
275764
275766
  "type": "object",
@@ -277724,7 +277726,6 @@ var state = {
277724
277726
  "user",
277725
277727
  "bot",
277726
277728
  "integration",
277727
- "task",
277728
277729
  "workflow"
277729
277730
  ]
277730
277731
  },
@@ -277813,7 +277814,6 @@ var state = {
277813
277814
  "user",
277814
277815
  "bot",
277815
277816
  "integration",
277816
- "task",
277817
277817
  "workflow"
277818
277818
  ]
277819
277819
  },
@@ -277895,7 +277895,6 @@ var state = {
277895
277895
  "user",
277896
277896
  "bot",
277897
277897
  "integration",
277898
- "task",
277899
277898
  "workflow"
277900
277899
  ]
277901
277900
  },
@@ -277990,7 +277989,6 @@ var state = {
277990
277989
  "user",
277991
277990
  "bot",
277992
277991
  "integration",
277993
- "task",
277994
277992
  "workflow"
277995
277993
  ]
277996
277994
  },
@@ -278097,7 +278095,6 @@ var state = {
278097
278095
  "user",
278098
278096
  "bot",
278099
278097
  "integration",
278100
- "task",
278101
278098
  "workflow"
278102
278099
  ]
278103
278100
  },
@@ -278327,403 +278324,6 @@ var state = {
278327
278324
  }
278328
278325
  }
278329
278326
  },
278330
- "getTask": {
278331
- "name": "getTask",
278332
- "description": "Retrieves the [Task](#schema_task) object for a valid identifier.",
278333
- "method": "get",
278334
- "path": "/v1/chat/tasks/{id}",
278335
- "parameters": {
278336
- "id": {
278337
- "in": "path",
278338
- "type": "string",
278339
- "description": "Task id"
278340
- },
278341
- "x-bot-id": {
278342
- "in": "header",
278343
- "description": "Bot id",
278344
- "type": "string",
278345
- "required": true
278346
- },
278347
- "x-integration-id": {
278348
- "in": "header",
278349
- "description": "Integration id",
278350
- "type": "string",
278351
- "required": false
278352
- },
278353
- "x-integration-alias": {
278354
- "in": "header",
278355
- "description": "Integration alias",
278356
- "type": "string",
278357
- "required": false
278358
- }
278359
- },
278360
- "section": "task",
278361
- "response": {
278362
- "description": "Returns a [Task](#schema_task) object if a valid identifier was provided. Returns an [Error](#errors) otherwise",
278363
- "schema": {
278364
- "type": "object",
278365
- "properties": {
278366
- "task": {
278367
- "$ref": "#/components/schemas/Task"
278368
- }
278369
- },
278370
- "required": [
278371
- "task"
278372
- ],
278373
- "title": "getTaskResponse",
278374
- "additionalProperties": false
278375
- }
278376
- }
278377
- },
278378
- "createTask": {
278379
- "name": "createTask",
278380
- "description": "Creates a new [Task](#schema_task). When creating a new [Task](#schema_task), the required tags must be provided. See the specific integration for more details.",
278381
- "method": "post",
278382
- "path": "/v1/chat/tasks",
278383
- "requestBody": {
278384
- "description": "Task data",
278385
- "schema": {
278386
- "type": "object",
278387
- "properties": {
278388
- "title": {
278389
- "type": "string",
278390
- "maxLength": 2e3,
278391
- "description": "Title describing the task"
278392
- },
278393
- "description": {
278394
- "type": "string",
278395
- "maxLength": 2e4,
278396
- "description": "All the notes related to the execution of the current task"
278397
- },
278398
- "type": {
278399
- "type": "string",
278400
- "maxLength": 200,
278401
- "description": "Type of the task"
278402
- },
278403
- "data": {
278404
- "type": "object",
278405
- "additionalProperties": true,
278406
- "description": "Content related to the task"
278407
- },
278408
- "parentTaskId": {
278409
- "type": "string",
278410
- "description": "Parent task id is the parent task that created this task"
278411
- },
278412
- "conversationId": {
278413
- "type": "string",
278414
- "description": "Conversation id related to this task"
278415
- },
278416
- "userId": {
278417
- "type": "string",
278418
- "description": "Specific user related to this task"
278419
- },
278420
- "timeoutAt": {
278421
- "type": "string",
278422
- "format": "date-time",
278423
- "description": "The timeout date where the task should be failed in the ISO 8601 format"
278424
- },
278425
- "tags": {
278426
- "type": "object",
278427
- "additionalProperties": {
278428
- "type": "string",
278429
- "maxLength": 500
278430
- },
278431
- "description": "Tags for the [Task](#schema_task)"
278432
- }
278433
- },
278434
- "required": [
278435
- "type",
278436
- "conversationId"
278437
- ],
278438
- "title": "createTaskBody",
278439
- "additionalProperties": false
278440
- }
278441
- },
278442
- "section": "task",
278443
- "response": {
278444
- "description": "Returns a [Task](#schema_task) object if creation succeeds. Returns an [Error](#errors) otherwise",
278445
- "status": 201,
278446
- "schema": {
278447
- "type": "object",
278448
- "properties": {
278449
- "task": {
278450
- "$ref": "#/components/schemas/Task"
278451
- }
278452
- },
278453
- "required": [
278454
- "task"
278455
- ],
278456
- "title": "createTaskResponse",
278457
- "additionalProperties": false
278458
- }
278459
- },
278460
- "parameters": {
278461
- "x-bot-id": {
278462
- "in": "header",
278463
- "description": "Bot id",
278464
- "type": "string",
278465
- "required": true
278466
- },
278467
- "x-integration-id": {
278468
- "in": "header",
278469
- "description": "Integration id",
278470
- "type": "string",
278471
- "required": false
278472
- },
278473
- "x-integration-alias": {
278474
- "in": "header",
278475
- "description": "Integration alias",
278476
- "type": "string",
278477
- "required": false
278478
- }
278479
- }
278480
- },
278481
- "updateTask": {
278482
- "name": "updateTask",
278483
- "description": "Update a [Task](#schema_task) object by setting the values of the parameters passed. Any parameters not provided will be left unchanged.",
278484
- "method": "put",
278485
- "path": "/v1/chat/tasks/{id}",
278486
- "parameters": {
278487
- "id": {
278488
- "in": "path",
278489
- "type": "string",
278490
- "description": "Task id"
278491
- },
278492
- "x-bot-id": {
278493
- "in": "header",
278494
- "description": "Bot id",
278495
- "type": "string",
278496
- "required": true
278497
- },
278498
- "x-integration-id": {
278499
- "in": "header",
278500
- "description": "Integration id",
278501
- "type": "string",
278502
- "required": false
278503
- },
278504
- "x-integration-alias": {
278505
- "in": "header",
278506
- "description": "Integration alias",
278507
- "type": "string",
278508
- "required": false
278509
- }
278510
- },
278511
- "requestBody": {
278512
- "description": "Task data",
278513
- "schema": {
278514
- "type": "object",
278515
- "properties": {
278516
- "title": {
278517
- "type": "string",
278518
- "description": "Title describing the task"
278519
- },
278520
- "description": {
278521
- "type": "string",
278522
- "description": "All the notes related to the execution of the current task"
278523
- },
278524
- "data": {
278525
- "type": "object",
278526
- "additionalProperties": true,
278527
- "description": "Content related to the task"
278528
- },
278529
- "timeoutAt": {
278530
- "type": "string",
278531
- "format": "date-time",
278532
- "description": "The timeout date where the task should be failed in the ISO 8601 format"
278533
- },
278534
- "status": {
278535
- "type": "string",
278536
- "enum": [
278537
- "pending",
278538
- "in_progress",
278539
- "failed",
278540
- "completed",
278541
- "blocked",
278542
- "paused",
278543
- "timeout",
278544
- "cancelled"
278545
- ],
278546
- "description": "Status of the task"
278547
- },
278548
- "tags": {
278549
- "type": "object",
278550
- "additionalProperties": {
278551
- "type": "string",
278552
- "maxLength": 500
278553
- },
278554
- "description": "Tags for the [Task](#schema_task)"
278555
- }
278556
- },
278557
- "title": "updateTaskBody",
278558
- "additionalProperties": false
278559
- }
278560
- },
278561
- "section": "task",
278562
- "response": {
278563
- "description": "Returns an updated [Task](#schema_task) object if a valid identifier was provided. Returns an [Error](#errors) otherwise",
278564
- "schema": {
278565
- "type": "object",
278566
- "properties": {
278567
- "task": {
278568
- "$ref": "#/components/schemas/Task"
278569
- }
278570
- },
278571
- "required": [
278572
- "task"
278573
- ],
278574
- "title": "updateTaskResponse",
278575
- "additionalProperties": false
278576
- }
278577
- }
278578
- },
278579
- "deleteTask": {
278580
- "name": "deleteTask",
278581
- "description": "Permanently deletes a [Task](#schema_task). It cannot be undone.",
278582
- "method": "delete",
278583
- "path": "/v1/chat/tasks/{id}",
278584
- "parameters": {
278585
- "id": {
278586
- "in": "path",
278587
- "type": "string",
278588
- "description": "Task id"
278589
- },
278590
- "x-bot-id": {
278591
- "in": "header",
278592
- "description": "Bot id",
278593
- "type": "string",
278594
- "required": true
278595
- },
278596
- "x-integration-id": {
278597
- "in": "header",
278598
- "description": "Integration id",
278599
- "type": "string",
278600
- "required": false
278601
- },
278602
- "x-integration-alias": {
278603
- "in": "header",
278604
- "description": "Integration alias",
278605
- "type": "string",
278606
- "required": false
278607
- }
278608
- },
278609
- "section": "task",
278610
- "response": {
278611
- "description": "Returns the [Task](#schema_task) object that was deleted",
278612
- "schema": {
278613
- "type": "object",
278614
- "title": "deleteTaskResponse",
278615
- "additionalProperties": false
278616
- }
278617
- }
278618
- },
278619
- "listTasks": {
278620
- "name": "listTasks",
278621
- "description": "Retrieves a list of [Task](#schema_task) you've previously created. The tasks are returned in sorted order, with the most recent appearing first. The list can be filtered using [Tags](/docs/developers/concepts/tags).",
278622
- "method": "get",
278623
- "path": "/v1/chat/tasks",
278624
- "parameters": {
278625
- "nextToken": {
278626
- "in": "query",
278627
- "description": "Provide the `meta.nextToken` value provided in the last API response to retrieve the next page of results",
278628
- "type": "string"
278629
- },
278630
- "tags": {
278631
- "in": "query",
278632
- "type": "object",
278633
- "schema": {
278634
- "type": "object",
278635
- "additionalProperties": {
278636
- "type": "string"
278637
- }
278638
- },
278639
- "description": "Filter by tags"
278640
- },
278641
- "conversationId": {
278642
- "in": "query",
278643
- "type": "string",
278644
- "description": "Conversation id"
278645
- },
278646
- "userId": {
278647
- "in": "query",
278648
- "type": "string",
278649
- "description": "User id"
278650
- },
278651
- "parentTaskId": {
278652
- "in": "query",
278653
- "type": "string",
278654
- "description": "Parent task id"
278655
- },
278656
- "status": {
278657
- "in": "query",
278658
- "type": "string[]",
278659
- "description": "Status",
278660
- "enum": [
278661
- "pending",
278662
- "in_progress",
278663
- "failed",
278664
- "completed",
278665
- "blocked",
278666
- "paused",
278667
- "timeout",
278668
- "cancelled"
278669
- ]
278670
- },
278671
- "type": {
278672
- "in": "query",
278673
- "type": "string",
278674
- "description": "Type"
278675
- },
278676
- "x-bot-id": {
278677
- "in": "header",
278678
- "description": "Bot id",
278679
- "type": "string",
278680
- "required": true
278681
- },
278682
- "x-integration-id": {
278683
- "in": "header",
278684
- "description": "Integration id",
278685
- "type": "string",
278686
- "required": false
278687
- },
278688
- "x-integration-alias": {
278689
- "in": "header",
278690
- "description": "Integration alias",
278691
- "type": "string",
278692
- "required": false
278693
- }
278694
- },
278695
- "section": "task",
278696
- "response": {
278697
- "description": "Returns a list of [Task](#schema_task) objects",
278698
- "schema": {
278699
- "type": "object",
278700
- "properties": {
278701
- "tasks": {
278702
- "type": "array",
278703
- "items": {
278704
- "$ref": "#/components/schemas/Task"
278705
- }
278706
- },
278707
- "meta": {
278708
- "type": "object",
278709
- "properties": {
278710
- "nextToken": {
278711
- "type": "string",
278712
- "description": "The token to use to retrieve the next page of results, passed as a query string parameter (value should be URL-encoded) to this API endpoint."
278713
- }
278714
- },
278715
- "additionalProperties": false
278716
- }
278717
- },
278718
- "required": [
278719
- "tasks",
278720
- "meta"
278721
- ],
278722
- "title": "listTasksResponse",
278723
- "additionalProperties": false
278724
- }
278725
- }
278726
- },
278727
278327
  "createWorkflow": {
278728
278328
  "name": "createWorkflow",
278729
278329
  "description": "Creates a new [Workflow](#schema_workflow).",
@@ -279401,6 +279001,10 @@ var state = {
279401
279001
  "schema": {
279402
279002
  "type": "object",
279403
279003
  "properties": {
279004
+ "id": {
279005
+ "type": "string",
279006
+ "description": "Caller-defined identifier for the observation (e.g. llmz context ID). Uniqueness is not enforced nor guaranteed."
279007
+ },
279404
279008
  "name": {
279405
279009
  "type": "string",
279406
279010
  "description": "Name of the observation"
@@ -279478,7 +279082,7 @@ var state = {
279478
279082
  "title": "Botpress Runtime API",
279479
279083
  "description": "API for Botpress Runtime",
279480
279084
  "server": "https://api.botpress.cloud",
279481
- "version": "1.73.2",
279085
+ "version": "1.73.4",
279482
279086
  "prefix": "v1"
279483
279087
  },
279484
279088
  "defaultParameters": {
@@ -279655,8 +279259,6 @@ var state = {
279655
279259
  "patchStateBody": true,
279656
279260
  "callActionBody": true,
279657
279261
  "configureIntegrationBody": true,
279658
- "createTaskBody": true,
279659
- "updateTaskBody": true,
279660
279262
  "createWorkflowBody": true,
279661
279263
  "updateWorkflowBody": true,
279662
279264
  "getOrCreateWorkflowBody": true,
@@ -279699,11 +279301,6 @@ var state = {
279699
279301
  "patchStateResponse": true,
279700
279302
  "callActionResponse": true,
279701
279303
  "configureIntegrationResponse": true,
279702
- "getTaskResponse": true,
279703
- "createTaskResponse": true,
279704
- "updateTaskResponse": true,
279705
- "deleteTaskResponse": true,
279706
- "listTasksResponse": true,
279707
279304
  "createWorkflowResponse": true,
279708
279305
  "getWorkflowResponse": true,
279709
279306
  "updateWorkflowResponse": true,
@@ -279720,7 +279317,6 @@ var state = {
279720
279317
  "Event": true,
279721
279318
  "Message": true,
279722
279319
  "State": true,
279723
- "Task": true,
279724
279320
  "Workflow": true
279725
279321
  }
279726
279322
  },
@@ -279797,7 +279393,8 @@ var state = {
279797
279393
  "type": "string",
279798
279394
  "minLength": 28,
279799
279395
  "maxLength": 36,
279800
- "description": "Id of the current [Task](#schema_task)"
279396
+ "deprecated": true,
279397
+ "description": "Unused. This field will be removed in the future."
279801
279398
  },
279802
279399
  "currentWorkflowId": {
279803
279400
  "type": "string",
@@ -280048,11 +279645,10 @@ var state = {
280048
279645
  "conversation",
280049
279646
  "user",
280050
279647
  "bot",
280051
- "task",
280052
279648
  "integration",
280053
279649
  "workflow"
280054
279650
  ],
280055
- "description": "Type of the [State](#schema_state) represents the resource type (`conversation`, `user`, `bot`, `task`, `integration` or `workflow`) that the state is related to"
279651
+ "description": "Type of the [State](#schema_state) represents the resource type (`conversation`, `user`, `bot`, `integration` or `workflow`) that the state is related to"
280056
279652
  },
280057
279653
  "payload": {
280058
279654
  "type": "object",
@@ -280073,112 +279669,6 @@ var state = {
280073
279669
  "additionalProperties": false
280074
279670
  }
280075
279671
  },
280076
- "Task": {
280077
- "section": "task",
280078
- "schema": {
280079
- "type": "object",
280080
- "properties": {
280081
- "id": {
280082
- "type": "string",
280083
- "minLength": 28,
280084
- "maxLength": 36,
280085
- "description": "Id of the [Task](#schema_task)"
280086
- },
280087
- "title": {
280088
- "type": "string",
280089
- "maxLength": 64,
280090
- "description": "Title describing the task"
280091
- },
280092
- "description": {
280093
- "type": "string",
280094
- "maxLength": 256,
280095
- "description": "All the notes related to the execution of the current task"
280096
- },
280097
- "type": {
280098
- "type": "string",
280099
- "description": "Type of the task"
280100
- },
280101
- "data": {
280102
- "type": "object",
280103
- "additionalProperties": true,
280104
- "description": "Content related to the task"
280105
- },
280106
- "status": {
280107
- "type": "string",
280108
- "enum": [
280109
- "pending",
280110
- "in_progress",
280111
- "failed",
280112
- "completed",
280113
- "blocked",
280114
- "paused",
280115
- "timeout",
280116
- "cancelled"
280117
- ],
280118
- "description": "Status of the task"
280119
- },
280120
- "parentTaskId": {
280121
- "type": "string",
280122
- "minLength": 28,
280123
- "maxLength": 36,
280124
- "description": "Parent task id is the parent task that created this task"
280125
- },
280126
- "conversationId": {
280127
- "type": "string",
280128
- "minLength": 28,
280129
- "maxLength": 36,
280130
- "description": "Conversation id related to this task"
280131
- },
280132
- "userId": {
280133
- "type": "string",
280134
- "minLength": 28,
280135
- "maxLength": 36,
280136
- "description": "Specific user related to this task"
280137
- },
280138
- "timeoutAt": {
280139
- "type": "string",
280140
- "format": "date-time",
280141
- "description": "The timeout date where the task should be failed in the ISO 8601 format"
280142
- },
280143
- "createdAt": {
280144
- "type": "string",
280145
- "format": "date-time",
280146
- "description": "Creation date of the task in ISO 8601 format"
280147
- },
280148
- "updatedAt": {
280149
- "type": "string",
280150
- "format": "date-time",
280151
- "description": "Updating date of the task in ISO 8601 format"
280152
- },
280153
- "failureReason": {
280154
- "type": "string",
280155
- "maxLength": 2e3,
280156
- "description": "If the task fails this is the reason behind it"
280157
- },
280158
- "tags": {
280159
- "type": "object",
280160
- "additionalProperties": {
280161
- "type": "string"
280162
- },
280163
- "description": "Set of [Tags](/docs/developers/concepts/tags) that you can attach to a [Task](#schema_task). Individual keys can be unset by posting an empty value to them."
280164
- }
280165
- },
280166
- "required": [
280167
- "id",
280168
- "title",
280169
- "description",
280170
- "type",
280171
- "data",
280172
- "status",
280173
- "timeoutAt",
280174
- "createdAt",
280175
- "updatedAt",
280176
- "tags"
280177
- ],
280178
- "description": "Task definition",
280179
- "additionalProperties": false
280180
- }
280181
- },
280182
279672
  "Workflow": {
280183
279673
  "section": "workflow",
280184
279674
  "schema": {
@@ -280374,19 +279864,6 @@ var state = {
280374
279864
  "callAction"
280375
279865
  ]
280376
279866
  },
280377
- {
280378
- "description": "",
280379
- "title": "Task",
280380
- "name": "task",
280381
- "operations": [
280382
- "getTask",
280383
- "createTask",
280384
- "updateTask",
280385
- "deleteTask",
280386
- "listTasks"
280387
- ],
280388
- "schema": "Task"
280389
- },
280390
279867
  {
280391
279868
  "description": "",
280392
279869
  "title": "Workflow",
@@ -281152,6 +280629,13 @@ var state2 = {
281152
280629
  }
281153
280630
  },
281154
280631
  "description": "Metadata about which fields matched the search criteria"
280632
+ },
280633
+ "attributes": {
280634
+ "type": "object",
280635
+ "additionalProperties": {
280636
+ "type": "string"
280637
+ },
280638
+ "description": "Optional key-value attributes from the integration definition"
281155
280639
  }
281156
280640
  },
281157
280641
  "required": [
@@ -282987,10 +282471,9 @@ var state2 = {
282987
282471
  "enum": [
282988
282472
  "conversation",
282989
282473
  "user",
282990
- "bot",
282991
- "task"
282474
+ "bot"
282992
282475
  ],
282993
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
282476
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
282994
282477
  },
282995
282478
  "schema": {
282996
282479
  "type": "object",
@@ -283420,10 +282903,9 @@ var state2 = {
283420
282903
  "enum": [
283421
282904
  "conversation",
283422
282905
  "user",
283423
- "bot",
283424
- "task"
282906
+ "bot"
283425
282907
  ],
283426
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
282908
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
283427
282909
  },
283428
282910
  "schema": {
283429
282911
  "type": "object",
@@ -283844,10 +283326,9 @@ var state2 = {
283844
283326
  "enum": [
283845
283327
  "conversation",
283846
283328
  "user",
283847
- "bot",
283848
- "task"
283329
+ "bot"
283849
283330
  ],
283850
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
283331
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
283851
283332
  },
283852
283333
  "schema": {
283853
283334
  "type": "object",
@@ -284970,10 +284451,9 @@ var state2 = {
284970
284451
  "enum": [
284971
284452
  "conversation",
284972
284453
  "user",
284973
- "bot",
284974
- "task"
284454
+ "bot"
284975
284455
  ],
284976
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
284456
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
284977
284457
  },
284978
284458
  "schema": {
284979
284459
  "type": "object",
@@ -285601,10 +285081,9 @@ var state2 = {
285601
285081
  "enum": [
285602
285082
  "conversation",
285603
285083
  "user",
285604
- "bot",
285605
- "task"
285084
+ "bot"
285606
285085
  ],
285607
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
285086
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
285608
285087
  },
285609
285088
  "schema": {
285610
285089
  "type": "object",
@@ -293120,6 +292599,13 @@ var state2 = {
293120
292599
  "handle",
293121
292600
  "name"
293122
292601
  ]
292602
+ },
292603
+ "attributes": {
292604
+ "type": "object",
292605
+ "additionalProperties": {
292606
+ "type": "string"
292607
+ },
292608
+ "description": "Optional key-value attributes from the integration definition"
293123
292609
  }
293124
292610
  },
293125
292611
  "required": [
@@ -294332,10 +293818,9 @@ var state2 = {
294332
293818
  "enum": [
294333
293819
  "conversation",
294334
293820
  "user",
294335
- "bot",
294336
- "task"
293821
+ "bot"
294337
293822
  ],
294338
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
293823
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
294339
293824
  },
294340
293825
  "schema": {
294341
293826
  "type": "object",
@@ -294865,10 +294350,9 @@ var state2 = {
294865
294350
  "enum": [
294866
294351
  "conversation",
294867
294352
  "user",
294868
- "bot",
294869
- "task"
294353
+ "bot"
294870
294354
  ],
294871
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
294355
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
294872
294356
  },
294873
294357
  "schema": {
294874
294358
  "type": "object",
@@ -296035,7 +295519,7 @@ var state2 = {
296035
295519
  "title": "Botpress Admin API",
296036
295520
  "description": "API for Botpress Cloud Manager",
296037
295521
  "server": "https://api.botpress.cloud",
296038
- "version": "1.73.2",
295522
+ "version": "1.73.4",
296039
295523
  "prefix": "v1"
296040
295524
  },
296041
295525
  "defaultParameters": {
@@ -296790,10 +296274,9 @@ var state2 = {
296790
296274
  "enum": [
296791
296275
  "conversation",
296792
296276
  "user",
296793
- "bot",
296794
- "task"
296277
+ "bot"
296795
296278
  ],
296796
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
296279
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
296797
296280
  },
296798
296281
  "schema": {
296799
296282
  "type": "object",
@@ -298124,10 +297607,9 @@ var state2 = {
298124
297607
  "enum": [
298125
297608
  "conversation",
298126
297609
  "user",
298127
- "bot",
298128
- "task"
297610
+ "bot"
298129
297611
  ],
298130
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
297612
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
298131
297613
  },
298132
297614
  "schema": {
298133
297615
  "type": "object",
@@ -301556,7 +301038,7 @@ var state3 = {
301556
301038
  "title": "Botpress Files API",
301557
301039
  "description": "API for Botpress Files",
301558
301040
  "server": "https://api.botpress.cloud",
301559
- "version": "1.73.2",
301041
+ "version": "1.73.4",
301560
301042
  "prefix": "v1"
301561
301043
  },
301562
301044
  "defaultParameters": {
@@ -303852,7 +303334,7 @@ var state4 = {
303852
303334
  "title": "Botpress Tables API",
303853
303335
  "description": "API for Botpress Tables",
303854
303336
  "server": "https://api.botpress.cloud",
303855
- "version": "1.73.2",
303337
+ "version": "1.73.4",
303856
303338
  "prefix": "v1"
303857
303339
  },
303858
303340
  "defaultParameters": {
@@ -304817,7 +304299,9 @@ var state5 = {
304817
304299
  "type": "object",
304818
304300
  "properties": {
304819
304301
  "currentTaskId": {
304820
- "type": "string"
304302
+ "type": "string",
304303
+ "deprecated": true,
304304
+ "description": "Unused. This parameter will be ignored if provided and should not be used when updating a conversation."
304821
304305
  },
304822
304306
  "tags": {
304823
304307
  "type": "object",
@@ -306362,7 +305846,6 @@ var state5 = {
306362
305846
  "user",
306363
305847
  "bot",
306364
305848
  "integration",
306365
- "task",
306366
305849
  "workflow"
306367
305850
  ]
306368
305851
  },
@@ -306433,7 +305916,6 @@ var state5 = {
306433
305916
  "user",
306434
305917
  "bot",
306435
305918
  "integration",
306436
- "task",
306437
305919
  "workflow"
306438
305920
  ]
306439
305921
  },
@@ -306497,7 +305979,6 @@ var state5 = {
306497
305979
  "user",
306498
305980
  "bot",
306499
305981
  "integration",
306500
- "task",
306501
305982
  "workflow"
306502
305983
  ]
306503
305984
  },
@@ -306574,7 +306055,6 @@ var state5 = {
306574
306055
  "user",
306575
306056
  "bot",
306576
306057
  "integration",
306577
- "task",
306578
306058
  "workflow"
306579
306059
  ]
306580
306060
  },
@@ -306663,7 +306143,6 @@ var state5 = {
306663
306143
  "user",
306664
306144
  "bot",
306665
306145
  "integration",
306666
- "task",
306667
306146
  "workflow"
306668
306147
  ]
306669
306148
  },
@@ -306837,312 +306316,6 @@ var state5 = {
306837
306316
  ],
306838
306317
  "parameters": {}
306839
306318
  },
306840
- "getTask": {
306841
- "name": "getTask",
306842
- "description": "Retrieves the [Task](#schema_task) object for a valid identifier.",
306843
- "method": "get",
306844
- "path": "/v1/chat/tasks/{id}",
306845
- "parameters": {
306846
- "id": {
306847
- "in": "path",
306848
- "type": "string",
306849
- "description": "Task id"
306850
- }
306851
- },
306852
- "section": "task",
306853
- "response": {
306854
- "description": "Returns a [Task](#schema_task) object if a valid identifier was provided. Returns an [Error](#errors) otherwise",
306855
- "schema": {
306856
- "type": "object",
306857
- "properties": {
306858
- "task": {
306859
- "$ref": "#/components/schemas/Task"
306860
- }
306861
- },
306862
- "required": [
306863
- "task"
306864
- ],
306865
- "title": "getTaskResponse",
306866
- "additionalProperties": false
306867
- }
306868
- }
306869
- },
306870
- "createTask": {
306871
- "name": "createTask",
306872
- "description": "Creates a new [Task](#schema_task). When creating a new [Task](#schema_task), the required tags must be provided. See the specific integration for more details.",
306873
- "method": "post",
306874
- "path": "/v1/chat/tasks",
306875
- "requestBody": {
306876
- "description": "Task data",
306877
- "schema": {
306878
- "type": "object",
306879
- "properties": {
306880
- "title": {
306881
- "type": "string",
306882
- "maxLength": 2e3,
306883
- "description": "Title describing the task"
306884
- },
306885
- "description": {
306886
- "type": "string",
306887
- "maxLength": 2e4,
306888
- "description": "All the notes related to the execution of the current task"
306889
- },
306890
- "type": {
306891
- "type": "string",
306892
- "maxLength": 200,
306893
- "description": "Type of the task"
306894
- },
306895
- "data": {
306896
- "type": "object",
306897
- "additionalProperties": true,
306898
- "description": "Content related to the task"
306899
- },
306900
- "parentTaskId": {
306901
- "type": "string",
306902
- "description": "Parent task id is the parent task that created this task"
306903
- },
306904
- "conversationId": {
306905
- "type": "string",
306906
- "description": "Conversation id related to this task"
306907
- },
306908
- "userId": {
306909
- "type": "string",
306910
- "description": "Specific user related to this task"
306911
- },
306912
- "timeoutAt": {
306913
- "type": "string",
306914
- "format": "date-time",
306915
- "description": "The timeout date where the task should be failed in the ISO 8601 format"
306916
- },
306917
- "tags": {
306918
- "type": "object",
306919
- "additionalProperties": {
306920
- "type": "string",
306921
- "maxLength": 500
306922
- },
306923
- "description": "Tags for the [Task](#schema_task)"
306924
- }
306925
- },
306926
- "required": [
306927
- "type",
306928
- "conversationId"
306929
- ],
306930
- "title": "createTaskBody",
306931
- "additionalProperties": false
306932
- }
306933
- },
306934
- "section": "task",
306935
- "response": {
306936
- "description": "Returns a [Task](#schema_task) object if creation succeeds. Returns an [Error](#errors) otherwise",
306937
- "status": 201,
306938
- "schema": {
306939
- "type": "object",
306940
- "properties": {
306941
- "task": {
306942
- "$ref": "#/components/schemas/Task"
306943
- }
306944
- },
306945
- "required": [
306946
- "task"
306947
- ],
306948
- "title": "createTaskResponse",
306949
- "additionalProperties": false
306950
- }
306951
- },
306952
- "parameters": {}
306953
- },
306954
- "updateTask": {
306955
- "name": "updateTask",
306956
- "description": "Update a [Task](#schema_task) object by setting the values of the parameters passed. Any parameters not provided will be left unchanged.",
306957
- "method": "put",
306958
- "path": "/v1/chat/tasks/{id}",
306959
- "parameters": {
306960
- "id": {
306961
- "in": "path",
306962
- "type": "string",
306963
- "description": "Task id"
306964
- }
306965
- },
306966
- "requestBody": {
306967
- "description": "Task data",
306968
- "schema": {
306969
- "type": "object",
306970
- "properties": {
306971
- "title": {
306972
- "type": "string",
306973
- "description": "Title describing the task"
306974
- },
306975
- "description": {
306976
- "type": "string",
306977
- "description": "All the notes related to the execution of the current task"
306978
- },
306979
- "data": {
306980
- "type": "object",
306981
- "additionalProperties": true,
306982
- "description": "Content related to the task"
306983
- },
306984
- "timeoutAt": {
306985
- "type": "string",
306986
- "format": "date-time",
306987
- "description": "The timeout date where the task should be failed in the ISO 8601 format"
306988
- },
306989
- "status": {
306990
- "type": "string",
306991
- "enum": [
306992
- "pending",
306993
- "in_progress",
306994
- "failed",
306995
- "completed",
306996
- "blocked",
306997
- "paused",
306998
- "timeout",
306999
- "cancelled"
307000
- ],
307001
- "description": "Status of the task"
307002
- },
307003
- "tags": {
307004
- "type": "object",
307005
- "additionalProperties": {
307006
- "type": "string",
307007
- "maxLength": 500
307008
- },
307009
- "description": "Tags for the [Task](#schema_task)"
307010
- }
307011
- },
307012
- "title": "updateTaskBody",
307013
- "additionalProperties": false
307014
- }
307015
- },
307016
- "section": "task",
307017
- "response": {
307018
- "description": "Returns an updated [Task](#schema_task) object if a valid identifier was provided. Returns an [Error](#errors) otherwise",
307019
- "schema": {
307020
- "type": "object",
307021
- "properties": {
307022
- "task": {
307023
- "$ref": "#/components/schemas/Task"
307024
- }
307025
- },
307026
- "required": [
307027
- "task"
307028
- ],
307029
- "title": "updateTaskResponse",
307030
- "additionalProperties": false
307031
- }
307032
- }
307033
- },
307034
- "deleteTask": {
307035
- "name": "deleteTask",
307036
- "description": "Permanently deletes a [Task](#schema_task). It cannot be undone.",
307037
- "method": "delete",
307038
- "path": "/v1/chat/tasks/{id}",
307039
- "parameters": {
307040
- "id": {
307041
- "in": "path",
307042
- "type": "string",
307043
- "description": "Task id"
307044
- }
307045
- },
307046
- "section": "task",
307047
- "response": {
307048
- "description": "Returns the [Task](#schema_task) object that was deleted",
307049
- "schema": {
307050
- "type": "object",
307051
- "title": "deleteTaskResponse",
307052
- "additionalProperties": false
307053
- }
307054
- }
307055
- },
307056
- "listTasks": {
307057
- "name": "listTasks",
307058
- "description": "Retrieves a list of [Task](#schema_task) you've previously created. The tasks are returned in sorted order, with the most recent appearing first. The list can be filtered using [Tags](/docs/developers/concepts/tags).",
307059
- "method": "get",
307060
- "path": "/v1/chat/tasks",
307061
- "parameters": {
307062
- "nextToken": {
307063
- "in": "query",
307064
- "description": "Provide the `meta.nextToken` value provided in the last API response to retrieve the next page of results",
307065
- "type": "string"
307066
- },
307067
- "tags": {
307068
- "in": "query",
307069
- "type": "object",
307070
- "schema": {
307071
- "type": "object",
307072
- "additionalProperties": {
307073
- "type": "string"
307074
- }
307075
- },
307076
- "description": "Filter by tags"
307077
- },
307078
- "conversationId": {
307079
- "in": "query",
307080
- "type": "string",
307081
- "description": "Conversation id"
307082
- },
307083
- "userId": {
307084
- "in": "query",
307085
- "type": "string",
307086
- "description": "User id"
307087
- },
307088
- "parentTaskId": {
307089
- "in": "query",
307090
- "type": "string",
307091
- "description": "Parent task id"
307092
- },
307093
- "status": {
307094
- "in": "query",
307095
- "type": "string[]",
307096
- "description": "Status",
307097
- "enum": [
307098
- "pending",
307099
- "in_progress",
307100
- "failed",
307101
- "completed",
307102
- "blocked",
307103
- "paused",
307104
- "timeout",
307105
- "cancelled"
307106
- ]
307107
- },
307108
- "type": {
307109
- "in": "query",
307110
- "type": "string",
307111
- "description": "Type"
307112
- }
307113
- },
307114
- "section": "task",
307115
- "response": {
307116
- "description": "Returns a list of [Task](#schema_task) objects",
307117
- "schema": {
307118
- "type": "object",
307119
- "properties": {
307120
- "tasks": {
307121
- "type": "array",
307122
- "items": {
307123
- "$ref": "#/components/schemas/Task"
307124
- }
307125
- },
307126
- "meta": {
307127
- "type": "object",
307128
- "properties": {
307129
- "nextToken": {
307130
- "type": "string",
307131
- "description": "The token to use to retrieve the next page of results, passed as a query string parameter (value should be URL-encoded) to this API endpoint."
307132
- }
307133
- },
307134
- "additionalProperties": false
307135
- }
307136
- },
307137
- "required": [
307138
- "tasks",
307139
- "meta"
307140
- ],
307141
- "title": "listTasksResponse",
307142
- "additionalProperties": false
307143
- }
307144
- }
307145
- },
307146
306319
  "createWorkflow": {
307147
306320
  "name": "createWorkflow",
307148
306321
  "description": "Creates a new [Workflow](#schema_workflow).",
@@ -307673,6 +306846,10 @@ var state5 = {
307673
306846
  "schema": {
307674
306847
  "type": "object",
307675
306848
  "properties": {
306849
+ "id": {
306850
+ "type": "string",
306851
+ "description": "Caller-defined identifier for the observation (e.g. llmz context ID). Uniqueness is not enforced nor guaranteed."
306852
+ },
307676
306853
  "name": {
307677
306854
  "type": "string",
307678
306855
  "description": "Name of the observation"
@@ -308381,6 +307558,13 @@ var state5 = {
308381
307558
  }
308382
307559
  },
308383
307560
  "description": "Metadata about which fields matched the search criteria"
307561
+ },
307562
+ "attributes": {
307563
+ "type": "object",
307564
+ "additionalProperties": {
307565
+ "type": "string"
307566
+ },
307567
+ "description": "Optional key-value attributes from the integration definition"
308384
307568
  }
308385
307569
  },
308386
307570
  "required": [
@@ -310192,10 +309376,9 @@ var state5 = {
310192
309376
  "enum": [
310193
309377
  "conversation",
310194
309378
  "user",
310195
- "bot",
310196
- "task"
309379
+ "bot"
310197
309380
  ],
310198
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
309381
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
310199
309382
  },
310200
309383
  "schema": {
310201
309384
  "type": "object",
@@ -310619,10 +309802,9 @@ var state5 = {
310619
309802
  "enum": [
310620
309803
  "conversation",
310621
309804
  "user",
310622
- "bot",
310623
- "task"
309805
+ "bot"
310624
309806
  ],
310625
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
309807
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
310626
309808
  },
310627
309809
  "schema": {
310628
309810
  "type": "object",
@@ -311037,10 +310219,9 @@ var state5 = {
311037
310219
  "enum": [
311038
310220
  "conversation",
311039
310221
  "user",
311040
- "bot",
311041
- "task"
310222
+ "bot"
311042
310223
  ],
311043
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
310224
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
311044
310225
  },
311045
310226
  "schema": {
311046
310227
  "type": "object",
@@ -312139,10 +311320,9 @@ var state5 = {
312139
311320
  "enum": [
312140
311321
  "conversation",
312141
311322
  "user",
312142
- "bot",
312143
- "task"
311323
+ "bot"
312144
311324
  ],
312145
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
311325
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
312146
311326
  },
312147
311327
  "schema": {
312148
311328
  "type": "object",
@@ -312745,10 +311925,9 @@ var state5 = {
312745
311925
  "enum": [
312746
311926
  "conversation",
312747
311927
  "user",
312748
- "bot",
312749
- "task"
311928
+ "bot"
312750
311929
  ],
312751
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
311930
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
312752
311931
  },
312753
311932
  "schema": {
312754
311933
  "type": "object",
@@ -319638,6 +318817,13 @@ var state5 = {
319638
318817
  "handle",
319639
318818
  "name"
319640
318819
  ]
318820
+ },
318821
+ "attributes": {
318822
+ "type": "object",
318823
+ "additionalProperties": {
318824
+ "type": "string"
318825
+ },
318826
+ "description": "Optional key-value attributes from the integration definition"
319641
318827
  }
319642
318828
  },
319643
318829
  "required": [
@@ -320703,10 +319889,9 @@ var state5 = {
320703
319889
  "enum": [
320704
319890
  "conversation",
320705
319891
  "user",
320706
- "bot",
320707
- "task"
319892
+ "bot"
320708
319893
  ],
320709
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
319894
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
320710
319895
  },
320711
319896
  "schema": {
320712
319897
  "type": "object",
@@ -321188,10 +320373,9 @@ var state5 = {
321188
320373
  "enum": [
321189
320374
  "conversation",
321190
320375
  "user",
321191
- "bot",
321192
- "task"
320376
+ "bot"
321193
320377
  ],
321194
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
320378
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
321195
320379
  },
321196
320380
  "schema": {
321197
320381
  "type": "object",
@@ -325458,7 +324642,7 @@ var state5 = {
325458
324642
  "title": "Botpress API",
325459
324643
  "description": "API for Botpress Cloud",
325460
324644
  "server": "https://api.botpress.cloud",
325461
- "version": "1.73.2",
324645
+ "version": "1.73.4",
325462
324646
  "prefix": "v1"
325463
324647
  },
325464
324648
  "errors": [
@@ -325615,8 +324799,6 @@ var state5 = {
325615
324799
  "patchStateBody": true,
325616
324800
  "callActionBody": true,
325617
324801
  "configureIntegrationBody": true,
325618
- "createTaskBody": true,
325619
- "updateTaskBody": true,
325620
324802
  "createWorkflowBody": true,
325621
324803
  "updateWorkflowBody": true,
325622
324804
  "getOrCreateWorkflowBody": true,
@@ -325711,11 +324893,6 @@ var state5 = {
325711
324893
  "patchStateResponse": true,
325712
324894
  "callActionResponse": true,
325713
324895
  "configureIntegrationResponse": true,
325714
- "getTaskResponse": true,
325715
- "createTaskResponse": true,
325716
- "updateTaskResponse": true,
325717
- "deleteTaskResponse": true,
325718
- "listTasksResponse": true,
325719
324896
  "createWorkflowResponse": true,
325720
324897
  "getWorkflowResponse": true,
325721
324898
  "updateWorkflowResponse": true,
@@ -325886,7 +325063,6 @@ var state5 = {
325886
325063
  "Event": true,
325887
325064
  "Message": true,
325888
325065
  "State": true,
325889
- "Task": true,
325890
325066
  "Workflow": true,
325891
325067
  "Table": true,
325892
325068
  "Column": true,
@@ -326334,10 +325510,9 @@ var state5 = {
326334
325510
  "enum": [
326335
325511
  "conversation",
326336
325512
  "user",
326337
- "bot",
326338
- "task"
325513
+ "bot"
326339
325514
  ],
326340
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
325515
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
326341
325516
  },
326342
325517
  "schema": {
326343
325518
  "type": "object",
@@ -327668,10 +326843,9 @@ var state5 = {
327668
326843
  "enum": [
327669
326844
  "conversation",
327670
326845
  "user",
327671
- "bot",
327672
- "task"
326846
+ "bot"
327673
326847
  ],
327674
- "description": "Type of the [State](#schema_state) (`conversation`, `user`, `bot` or `task`)"
326848
+ "description": "Type of the [State](#schema_state) (`conversation`, `user` or `bot`)"
327675
326849
  },
327676
326850
  "schema": {
327677
326851
  "type": "object",
@@ -328480,7 +327654,8 @@ var state5 = {
328480
327654
  "type": "string",
328481
327655
  "minLength": 28,
328482
327656
  "maxLength": 36,
328483
- "description": "Id of the current [Task](#schema_task)"
327657
+ "deprecated": true,
327658
+ "description": "Unused. This field will be removed in the future."
328484
327659
  },
328485
327660
  "currentWorkflowId": {
328486
327661
  "type": "string",
@@ -328731,11 +327906,10 @@ var state5 = {
328731
327906
  "conversation",
328732
327907
  "user",
328733
327908
  "bot",
328734
- "task",
328735
327909
  "integration",
328736
327910
  "workflow"
328737
327911
  ],
328738
- "description": "Type of the [State](#schema_state) represents the resource type (`conversation`, `user`, `bot`, `task`, `integration` or `workflow`) that the state is related to"
327912
+ "description": "Type of the [State](#schema_state) represents the resource type (`conversation`, `user`, `bot`, `integration` or `workflow`) that the state is related to"
328739
327913
  },
328740
327914
  "payload": {
328741
327915
  "type": "object",
@@ -328756,112 +327930,6 @@ var state5 = {
328756
327930
  "additionalProperties": false
328757
327931
  }
328758
327932
  },
328759
- "Task": {
328760
- "section": "task",
328761
- "schema": {
328762
- "type": "object",
328763
- "properties": {
328764
- "id": {
328765
- "type": "string",
328766
- "minLength": 28,
328767
- "maxLength": 36,
328768
- "description": "Id of the [Task](#schema_task)"
328769
- },
328770
- "title": {
328771
- "type": "string",
328772
- "maxLength": 64,
328773
- "description": "Title describing the task"
328774
- },
328775
- "description": {
328776
- "type": "string",
328777
- "maxLength": 256,
328778
- "description": "All the notes related to the execution of the current task"
328779
- },
328780
- "type": {
328781
- "type": "string",
328782
- "description": "Type of the task"
328783
- },
328784
- "data": {
328785
- "type": "object",
328786
- "additionalProperties": true,
328787
- "description": "Content related to the task"
328788
- },
328789
- "status": {
328790
- "type": "string",
328791
- "enum": [
328792
- "pending",
328793
- "in_progress",
328794
- "failed",
328795
- "completed",
328796
- "blocked",
328797
- "paused",
328798
- "timeout",
328799
- "cancelled"
328800
- ],
328801
- "description": "Status of the task"
328802
- },
328803
- "parentTaskId": {
328804
- "type": "string",
328805
- "minLength": 28,
328806
- "maxLength": 36,
328807
- "description": "Parent task id is the parent task that created this task"
328808
- },
328809
- "conversationId": {
328810
- "type": "string",
328811
- "minLength": 28,
328812
- "maxLength": 36,
328813
- "description": "Conversation id related to this task"
328814
- },
328815
- "userId": {
328816
- "type": "string",
328817
- "minLength": 28,
328818
- "maxLength": 36,
328819
- "description": "Specific user related to this task"
328820
- },
328821
- "timeoutAt": {
328822
- "type": "string",
328823
- "format": "date-time",
328824
- "description": "The timeout date where the task should be failed in the ISO 8601 format"
328825
- },
328826
- "createdAt": {
328827
- "type": "string",
328828
- "format": "date-time",
328829
- "description": "Creation date of the task in ISO 8601 format"
328830
- },
328831
- "updatedAt": {
328832
- "type": "string",
328833
- "format": "date-time",
328834
- "description": "Updating date of the task in ISO 8601 format"
328835
- },
328836
- "failureReason": {
328837
- "type": "string",
328838
- "maxLength": 2e3,
328839
- "description": "If the task fails this is the reason behind it"
328840
- },
328841
- "tags": {
328842
- "type": "object",
328843
- "additionalProperties": {
328844
- "type": "string"
328845
- },
328846
- "description": "Set of [Tags](/docs/developers/concepts/tags) that you can attach to a [Task](#schema_task). Individual keys can be unset by posting an empty value to them."
328847
- }
328848
- },
328849
- "required": [
328850
- "id",
328851
- "title",
328852
- "description",
328853
- "type",
328854
- "data",
328855
- "status",
328856
- "timeoutAt",
328857
- "createdAt",
328858
- "updatedAt",
328859
- "tags"
328860
- ],
328861
- "description": "Task definition",
328862
- "additionalProperties": false
328863
- }
328864
- },
328865
327933
  "Workflow": {
328866
327934
  "section": "workflow",
328867
327935
  "schema": {
@@ -329645,19 +328713,6 @@ var state5 = {
329645
328713
  "callAction"
329646
328714
  ]
329647
328715
  },
329648
- {
329649
- "description": "",
329650
- "title": "Task",
329651
- "name": "task",
329652
- "operations": [
329653
- "getTask",
329654
- "createTask",
329655
- "updateTask",
329656
- "deleteTask",
329657
- "listTasks"
329658
- ],
329659
- "schema": "Task"
329660
- },
329661
328716
  {
329662
328717
  "description": "",
329663
328718
  "title": "Workflow",
@@ -332370,7 +331425,7 @@ var state6 = {
332370
331425
  "title": "Botpress Billing Public API",
332371
331426
  "description": "API for Botpress Billing",
332372
331427
  "server": "https://api.botpress.cloud",
332373
- "version": "1.73.2",
331428
+ "version": "1.73.4",
332374
331429
  "prefix": "v2"
332375
331430
  },
332376
331431
  "defaultParameters": {