@botpress/api 1.75.0 → 1.77.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 CHANGED
@@ -277494,7 +277494,7 @@ var state = {
277494
277494
  },
277495
277495
  "getOrCreateUser": {
277496
277496
  "name": "getOrCreateUser",
277497
- "description": "Retrieves the [User](#schema_user) object for a valid identifier. If the user does not exist, it will be created.",
277497
+ "description": "Retrieves the [User](#schema_user) object for given discriminating tags. If the user does not exist, it will be created. If the user already exists, its name, pictureUrl, attributes, and tags will be updated with the provided values.",
277498
277498
  "method": "post",
277499
277499
  "path": "/v1/chat/users/get-or-create",
277500
277500
  "requestBody": {
@@ -277558,10 +277558,23 @@ var state = {
277558
277558
  "properties": {
277559
277559
  "user": {
277560
277560
  "$ref": "#/components/schemas/User"
277561
+ },
277562
+ "meta": {
277563
+ "type": "object",
277564
+ "properties": {
277565
+ "created": {
277566
+ "type": "boolean"
277567
+ }
277568
+ },
277569
+ "required": [
277570
+ "created"
277571
+ ],
277572
+ "additionalProperties": false
277561
277573
  }
277562
277574
  },
277563
277575
  "required": [
277564
- "user"
277576
+ "user",
277577
+ "meta"
277565
277578
  ],
277566
277579
  "title": "getOrCreateUserResponse",
277567
277580
  "additionalProperties": false
@@ -279095,7 +279108,7 @@ var state = {
279095
279108
  "title": "Botpress Runtime API",
279096
279109
  "description": "API for Botpress Runtime",
279097
279110
  "server": "https://api.botpress.cloud",
279098
- "version": "1.75.0",
279111
+ "version": "1.77.0",
279099
279112
  "prefix": "v1"
279100
279113
  },
279101
279114
  "defaultParameters": {
@@ -282729,6 +282742,36 @@ var state2 = {
282729
282742
  "description": "Conversation object configuration",
282730
282743
  "additionalProperties": false
282731
282744
  },
282745
+ "message": {
282746
+ "type": "object",
282747
+ "properties": {
282748
+ "tags": {
282749
+ "type": "object",
282750
+ "additionalProperties": {
282751
+ "type": "object",
282752
+ "properties": {
282753
+ "title": {
282754
+ "type": "string",
282755
+ "maxLength": 64,
282756
+ "description": "Title of the tag"
282757
+ },
282758
+ "description": {
282759
+ "type": "string",
282760
+ "maxLength": 256,
282761
+ "description": "Description of the tag"
282762
+ }
282763
+ },
282764
+ "description": "Definition of a tag that can be provided on the object",
282765
+ "additionalProperties": false
282766
+ }
282767
+ }
282768
+ },
282769
+ "required": [
282770
+ "tags"
282771
+ ],
282772
+ "description": "Message object configuration",
282773
+ "additionalProperties": false
282774
+ },
282732
282775
  "attributes": {
282733
282776
  "type": "object",
282734
282777
  "additionalProperties": {
@@ -282792,6 +282835,7 @@ var state2 = {
282792
282835
  "dependencies",
282793
282836
  "user",
282794
282837
  "conversation",
282838
+ "message",
282795
282839
  "title",
282796
282840
  "description",
282797
282841
  "iconUrl",
@@ -283161,6 +283205,36 @@ var state2 = {
283161
283205
  "description": "Conversation object configuration",
283162
283206
  "additionalProperties": false
283163
283207
  },
283208
+ "message": {
283209
+ "type": "object",
283210
+ "properties": {
283211
+ "tags": {
283212
+ "type": "object",
283213
+ "additionalProperties": {
283214
+ "type": "object",
283215
+ "properties": {
283216
+ "title": {
283217
+ "type": "string",
283218
+ "maxLength": 64,
283219
+ "description": "Title of the tag"
283220
+ },
283221
+ "description": {
283222
+ "type": "string",
283223
+ "maxLength": 256,
283224
+ "description": "Description of the tag"
283225
+ }
283226
+ },
283227
+ "description": "Definition of a tag that can be provided on the object",
283228
+ "additionalProperties": false
283229
+ }
283230
+ }
283231
+ },
283232
+ "required": [
283233
+ "tags"
283234
+ ],
283235
+ "description": "Message object configuration",
283236
+ "additionalProperties": false
283237
+ },
283164
283238
  "attributes": {
283165
283239
  "type": "object",
283166
283240
  "additionalProperties": {
@@ -283224,6 +283298,7 @@ var state2 = {
283224
283298
  "dependencies",
283225
283299
  "user",
283226
283300
  "conversation",
283301
+ "message",
283227
283302
  "title",
283228
283303
  "description",
283229
283304
  "iconUrl",
@@ -283584,6 +283659,36 @@ var state2 = {
283584
283659
  "description": "Conversation object configuration",
283585
283660
  "additionalProperties": false
283586
283661
  },
283662
+ "message": {
283663
+ "type": "object",
283664
+ "properties": {
283665
+ "tags": {
283666
+ "type": "object",
283667
+ "additionalProperties": {
283668
+ "type": "object",
283669
+ "properties": {
283670
+ "title": {
283671
+ "type": "string",
283672
+ "maxLength": 64,
283673
+ "description": "Title of the tag"
283674
+ },
283675
+ "description": {
283676
+ "type": "string",
283677
+ "maxLength": 256,
283678
+ "description": "Description of the tag"
283679
+ }
283680
+ },
283681
+ "description": "Definition of a tag that can be provided on the object",
283682
+ "additionalProperties": false
283683
+ }
283684
+ }
283685
+ },
283686
+ "required": [
283687
+ "tags"
283688
+ ],
283689
+ "description": "Message object configuration",
283690
+ "additionalProperties": false
283691
+ },
283587
283692
  "attributes": {
283588
283693
  "type": "object",
283589
283694
  "additionalProperties": {
@@ -283647,6 +283752,7 @@ var state2 = {
283647
283752
  "dependencies",
283648
283753
  "user",
283649
283754
  "conversation",
283755
+ "message",
283650
283756
  "title",
283651
283757
  "description",
283652
283758
  "iconUrl",
@@ -294012,6 +294118,36 @@ var state2 = {
294012
294118
  "description": "Conversation object configuration",
294013
294119
  "additionalProperties": false
294014
294120
  },
294121
+ "message": {
294122
+ "type": "object",
294123
+ "properties": {
294124
+ "tags": {
294125
+ "type": "object",
294126
+ "additionalProperties": {
294127
+ "type": "object",
294128
+ "properties": {
294129
+ "title": {
294130
+ "type": "string",
294131
+ "maxLength": 64,
294132
+ "description": "Title of the tag"
294133
+ },
294134
+ "description": {
294135
+ "type": "string",
294136
+ "maxLength": 256,
294137
+ "description": "Description of the tag"
294138
+ }
294139
+ },
294140
+ "description": "Definition of a tag that can be provided on the object",
294141
+ "additionalProperties": false
294142
+ }
294143
+ }
294144
+ },
294145
+ "required": [
294146
+ "tags"
294147
+ ],
294148
+ "description": "Message object configuration",
294149
+ "additionalProperties": false
294150
+ },
294015
294151
  "attributes": {
294016
294152
  "type": "object",
294017
294153
  "additionalProperties": {
@@ -294547,6 +294683,36 @@ var state2 = {
294547
294683
  ],
294548
294684
  "additionalProperties": false
294549
294685
  },
294686
+ "message": {
294687
+ "type": "object",
294688
+ "properties": {
294689
+ "tags": {
294690
+ "type": "object",
294691
+ "additionalProperties": {
294692
+ "type": "object",
294693
+ "properties": {
294694
+ "title": {
294695
+ "type": "string",
294696
+ "maxLength": 64,
294697
+ "description": "Title of the tag"
294698
+ },
294699
+ "description": {
294700
+ "type": "string",
294701
+ "maxLength": 256,
294702
+ "description": "Description of the tag"
294703
+ }
294704
+ },
294705
+ "description": "Definition of a tag that can be provided on the object",
294706
+ "nullable": true,
294707
+ "additionalProperties": false
294708
+ }
294709
+ }
294710
+ },
294711
+ "required": [
294712
+ "tags"
294713
+ ],
294714
+ "additionalProperties": false
294715
+ },
294550
294716
  "attributes": {
294551
294717
  "type": "object",
294552
294718
  "additionalProperties": {
@@ -295532,7 +295698,7 @@ var state2 = {
295532
295698
  "title": "Botpress Admin API",
295533
295699
  "description": "API for Botpress Cloud Manager",
295534
295700
  "server": "https://api.botpress.cloud",
295535
- "version": "1.75.0",
295701
+ "version": "1.77.0",
295536
295702
  "prefix": "v1"
295537
295703
  },
295538
295704
  "defaultParameters": {
@@ -297865,6 +298031,36 @@ var state2 = {
297865
298031
  "description": "Conversation object configuration",
297866
298032
  "additionalProperties": false
297867
298033
  },
298034
+ "message": {
298035
+ "type": "object",
298036
+ "properties": {
298037
+ "tags": {
298038
+ "type": "object",
298039
+ "additionalProperties": {
298040
+ "type": "object",
298041
+ "properties": {
298042
+ "title": {
298043
+ "type": "string",
298044
+ "maxLength": 64,
298045
+ "description": "Title of the tag"
298046
+ },
298047
+ "description": {
298048
+ "type": "string",
298049
+ "maxLength": 256,
298050
+ "description": "Description of the tag"
298051
+ }
298052
+ },
298053
+ "description": "Definition of a tag that can be provided on the object",
298054
+ "additionalProperties": false
298055
+ }
298056
+ }
298057
+ },
298058
+ "required": [
298059
+ "tags"
298060
+ ],
298061
+ "description": "Message object configuration",
298062
+ "additionalProperties": false
298063
+ },
297868
298064
  "attributes": {
297869
298065
  "type": "object",
297870
298066
  "additionalProperties": {
@@ -297928,6 +298124,7 @@ var state2 = {
297928
298124
  "dependencies",
297929
298125
  "user",
297930
298126
  "conversation",
298127
+ "message",
297931
298128
  "title",
297932
298129
  "description",
297933
298130
  "iconUrl",
@@ -301051,7 +301248,7 @@ var state3 = {
301051
301248
  "title": "Botpress Files API",
301052
301249
  "description": "API for Botpress Files",
301053
301250
  "server": "https://api.botpress.cloud",
301054
- "version": "1.75.0",
301251
+ "version": "1.77.0",
301055
301252
  "prefix": "v1"
301056
301253
  },
301057
301254
  "defaultParameters": {
@@ -303385,7 +303582,7 @@ var state4 = {
303385
303582
  "title": "Botpress Tables API",
303386
303583
  "description": "API for Botpress Tables",
303387
303584
  "server": "https://api.botpress.cloud",
303388
- "version": "1.75.0",
303585
+ "version": "1.77.0",
303389
303586
  "prefix": "v1"
303390
303587
  },
303391
303588
  "defaultParameters": {
@@ -305720,7 +305917,7 @@ var state5 = {
305720
305917
  },
305721
305918
  "getOrCreateUser": {
305722
305919
  "name": "getOrCreateUser",
305723
- "description": "Retrieves the [User](#schema_user) object for a valid identifier. If the user does not exist, it will be created.",
305920
+ "description": "Retrieves the [User](#schema_user) object for given discriminating tags. If the user does not exist, it will be created. If the user already exists, its name, pictureUrl, attributes, and tags will be updated with the provided values.",
305724
305921
  "method": "post",
305725
305922
  "path": "/v1/chat/users/get-or-create",
305726
305923
  "requestBody": {
@@ -305784,10 +305981,23 @@ var state5 = {
305784
305981
  "properties": {
305785
305982
  "user": {
305786
305983
  "$ref": "#/components/schemas/User"
305984
+ },
305985
+ "meta": {
305986
+ "type": "object",
305987
+ "properties": {
305988
+ "created": {
305989
+ "type": "boolean"
305990
+ }
305991
+ },
305992
+ "required": [
305993
+ "created"
305994
+ ],
305995
+ "additionalProperties": false
305787
305996
  }
305788
305997
  },
305789
305998
  "required": [
305790
- "user"
305999
+ "user",
306000
+ "meta"
305791
306001
  ],
305792
306002
  "title": "getOrCreateUserResponse",
305793
306003
  "additionalProperties": false
@@ -309685,6 +309895,36 @@ var state5 = {
309685
309895
  "description": "Conversation object configuration",
309686
309896
  "additionalProperties": false
309687
309897
  },
309898
+ "message": {
309899
+ "type": "object",
309900
+ "properties": {
309901
+ "tags": {
309902
+ "type": "object",
309903
+ "additionalProperties": {
309904
+ "type": "object",
309905
+ "properties": {
309906
+ "title": {
309907
+ "type": "string",
309908
+ "maxLength": 64,
309909
+ "description": "Title of the tag"
309910
+ },
309911
+ "description": {
309912
+ "type": "string",
309913
+ "maxLength": 256,
309914
+ "description": "Description of the tag"
309915
+ }
309916
+ },
309917
+ "description": "Definition of a tag that can be provided on the object",
309918
+ "additionalProperties": false
309919
+ }
309920
+ }
309921
+ },
309922
+ "required": [
309923
+ "tags"
309924
+ ],
309925
+ "description": "Message object configuration",
309926
+ "additionalProperties": false
309927
+ },
309688
309928
  "attributes": {
309689
309929
  "type": "object",
309690
309930
  "additionalProperties": {
@@ -309748,6 +309988,7 @@ var state5 = {
309748
309988
  "dependencies",
309749
309989
  "user",
309750
309990
  "conversation",
309991
+ "message",
309751
309992
  "title",
309752
309993
  "description",
309753
309994
  "iconUrl",
@@ -310111,6 +310352,36 @@ var state5 = {
310111
310352
  "description": "Conversation object configuration",
310112
310353
  "additionalProperties": false
310113
310354
  },
310355
+ "message": {
310356
+ "type": "object",
310357
+ "properties": {
310358
+ "tags": {
310359
+ "type": "object",
310360
+ "additionalProperties": {
310361
+ "type": "object",
310362
+ "properties": {
310363
+ "title": {
310364
+ "type": "string",
310365
+ "maxLength": 64,
310366
+ "description": "Title of the tag"
310367
+ },
310368
+ "description": {
310369
+ "type": "string",
310370
+ "maxLength": 256,
310371
+ "description": "Description of the tag"
310372
+ }
310373
+ },
310374
+ "description": "Definition of a tag that can be provided on the object",
310375
+ "additionalProperties": false
310376
+ }
310377
+ }
310378
+ },
310379
+ "required": [
310380
+ "tags"
310381
+ ],
310382
+ "description": "Message object configuration",
310383
+ "additionalProperties": false
310384
+ },
310114
310385
  "attributes": {
310115
310386
  "type": "object",
310116
310387
  "additionalProperties": {
@@ -310174,6 +310445,7 @@ var state5 = {
310174
310445
  "dependencies",
310175
310446
  "user",
310176
310447
  "conversation",
310448
+ "message",
310177
310449
  "title",
310178
310450
  "description",
310179
310451
  "iconUrl",
@@ -310528,6 +310800,36 @@ var state5 = {
310528
310800
  "description": "Conversation object configuration",
310529
310801
  "additionalProperties": false
310530
310802
  },
310803
+ "message": {
310804
+ "type": "object",
310805
+ "properties": {
310806
+ "tags": {
310807
+ "type": "object",
310808
+ "additionalProperties": {
310809
+ "type": "object",
310810
+ "properties": {
310811
+ "title": {
310812
+ "type": "string",
310813
+ "maxLength": 64,
310814
+ "description": "Title of the tag"
310815
+ },
310816
+ "description": {
310817
+ "type": "string",
310818
+ "maxLength": 256,
310819
+ "description": "Description of the tag"
310820
+ }
310821
+ },
310822
+ "description": "Definition of a tag that can be provided on the object",
310823
+ "additionalProperties": false
310824
+ }
310825
+ }
310826
+ },
310827
+ "required": [
310828
+ "tags"
310829
+ ],
310830
+ "description": "Message object configuration",
310831
+ "additionalProperties": false
310832
+ },
310531
310833
  "attributes": {
310532
310834
  "type": "object",
310533
310835
  "additionalProperties": {
@@ -310591,6 +310893,7 @@ var state5 = {
310591
310893
  "dependencies",
310592
310894
  "user",
310593
310895
  "conversation",
310896
+ "message",
310594
310897
  "title",
310595
310898
  "description",
310596
310899
  "iconUrl",
@@ -320134,6 +320437,36 @@ var state5 = {
320134
320437
  "description": "Conversation object configuration",
320135
320438
  "additionalProperties": false
320136
320439
  },
320440
+ "message": {
320441
+ "type": "object",
320442
+ "properties": {
320443
+ "tags": {
320444
+ "type": "object",
320445
+ "additionalProperties": {
320446
+ "type": "object",
320447
+ "properties": {
320448
+ "title": {
320449
+ "type": "string",
320450
+ "maxLength": 64,
320451
+ "description": "Title of the tag"
320452
+ },
320453
+ "description": {
320454
+ "type": "string",
320455
+ "maxLength": 256,
320456
+ "description": "Description of the tag"
320457
+ }
320458
+ },
320459
+ "description": "Definition of a tag that can be provided on the object",
320460
+ "additionalProperties": false
320461
+ }
320462
+ }
320463
+ },
320464
+ "required": [
320465
+ "tags"
320466
+ ],
320467
+ "description": "Message object configuration",
320468
+ "additionalProperties": false
320469
+ },
320137
320470
  "attributes": {
320138
320471
  "type": "object",
320139
320472
  "additionalProperties": {
@@ -320621,6 +320954,36 @@ var state5 = {
320621
320954
  ],
320622
320955
  "additionalProperties": false
320623
320956
  },
320957
+ "message": {
320958
+ "type": "object",
320959
+ "properties": {
320960
+ "tags": {
320961
+ "type": "object",
320962
+ "additionalProperties": {
320963
+ "type": "object",
320964
+ "properties": {
320965
+ "title": {
320966
+ "type": "string",
320967
+ "maxLength": 64,
320968
+ "description": "Title of the tag"
320969
+ },
320970
+ "description": {
320971
+ "type": "string",
320972
+ "maxLength": 256,
320973
+ "description": "Description of the tag"
320974
+ }
320975
+ },
320976
+ "description": "Definition of a tag that can be provided on the object",
320977
+ "nullable": true,
320978
+ "additionalProperties": false
320979
+ }
320980
+ }
320981
+ },
320982
+ "required": [
320983
+ "tags"
320984
+ ],
320985
+ "additionalProperties": false
320986
+ },
320624
320987
  "attributes": {
320625
320988
  "type": "object",
320626
320989
  "additionalProperties": {
@@ -324744,7 +325107,7 @@ var state5 = {
324744
325107
  "title": "Botpress API",
324745
325108
  "description": "API for Botpress Cloud",
324746
325109
  "server": "https://api.botpress.cloud",
324747
- "version": "1.75.0",
325110
+ "version": "1.77.0",
324748
325111
  "prefix": "v1"
324749
325112
  },
324750
325113
  "errors": [
@@ -327190,6 +327553,36 @@ var state5 = {
327190
327553
  "description": "Conversation object configuration",
327191
327554
  "additionalProperties": false
327192
327555
  },
327556
+ "message": {
327557
+ "type": "object",
327558
+ "properties": {
327559
+ "tags": {
327560
+ "type": "object",
327561
+ "additionalProperties": {
327562
+ "type": "object",
327563
+ "properties": {
327564
+ "title": {
327565
+ "type": "string",
327566
+ "maxLength": 64,
327567
+ "description": "Title of the tag"
327568
+ },
327569
+ "description": {
327570
+ "type": "string",
327571
+ "maxLength": 256,
327572
+ "description": "Description of the tag"
327573
+ }
327574
+ },
327575
+ "description": "Definition of a tag that can be provided on the object",
327576
+ "additionalProperties": false
327577
+ }
327578
+ }
327579
+ },
327580
+ "required": [
327581
+ "tags"
327582
+ ],
327583
+ "description": "Message object configuration",
327584
+ "additionalProperties": false
327585
+ },
327193
327586
  "attributes": {
327194
327587
  "type": "object",
327195
327588
  "additionalProperties": {
@@ -327253,6 +327646,7 @@ var state5 = {
327253
327646
  "dependencies",
327254
327647
  "user",
327255
327648
  "conversation",
327649
+ "message",
327256
327650
  "title",
327257
327651
  "description",
327258
327652
  "iconUrl",
@@ -331530,7 +331924,7 @@ var state6 = {
331530
331924
  "title": "Botpress Billing Public API",
331531
331925
  "description": "API for Botpress Billing",
331532
331926
  "server": "https://api.botpress.cloud",
331533
- "version": "1.75.0",
331927
+ "version": "1.77.0",
331534
331928
  "prefix": "v2"
331535
331929
  },
331536
331930
  "defaultParameters": {
@@ -2435,6 +2435,34 @@ export declare const state: {
2435
2435
  description: string;
2436
2436
  additionalProperties: false;
2437
2437
  };
2438
+ message: {
2439
+ type: "object";
2440
+ properties: {
2441
+ tags: {
2442
+ type: "object";
2443
+ additionalProperties: {
2444
+ type: "object";
2445
+ properties: {
2446
+ title: {
2447
+ type: "string";
2448
+ maxLength: number;
2449
+ description: string;
2450
+ };
2451
+ description: {
2452
+ type: "string";
2453
+ maxLength: number;
2454
+ description: string;
2455
+ };
2456
+ };
2457
+ description: string;
2458
+ additionalProperties: false;
2459
+ };
2460
+ };
2461
+ };
2462
+ required: string[];
2463
+ description: string;
2464
+ additionalProperties: false;
2465
+ };
2438
2466
  attributes: {
2439
2467
  type: "object";
2440
2468
  additionalProperties: {
@@ -2805,6 +2833,34 @@ export declare const state: {
2805
2833
  description: string;
2806
2834
  additionalProperties: false;
2807
2835
  };
2836
+ message: {
2837
+ type: "object";
2838
+ properties: {
2839
+ tags: {
2840
+ type: "object";
2841
+ additionalProperties: {
2842
+ type: "object";
2843
+ properties: {
2844
+ title: {
2845
+ type: "string";
2846
+ maxLength: number;
2847
+ description: string;
2848
+ };
2849
+ description: {
2850
+ type: "string";
2851
+ maxLength: number;
2852
+ description: string;
2853
+ };
2854
+ };
2855
+ description: string;
2856
+ additionalProperties: false;
2857
+ };
2858
+ };
2859
+ };
2860
+ required: string[];
2861
+ description: string;
2862
+ additionalProperties: false;
2863
+ };
2808
2864
  attributes: {
2809
2865
  type: "object";
2810
2866
  additionalProperties: {
@@ -3166,6 +3222,34 @@ export declare const state: {
3166
3222
  description: string;
3167
3223
  additionalProperties: false;
3168
3224
  };
3225
+ message: {
3226
+ type: "object";
3227
+ properties: {
3228
+ tags: {
3229
+ type: "object";
3230
+ additionalProperties: {
3231
+ type: "object";
3232
+ properties: {
3233
+ title: {
3234
+ type: "string";
3235
+ maxLength: number;
3236
+ description: string;
3237
+ };
3238
+ description: {
3239
+ type: "string";
3240
+ maxLength: number;
3241
+ description: string;
3242
+ };
3243
+ };
3244
+ description: string;
3245
+ additionalProperties: false;
3246
+ };
3247
+ };
3248
+ };
3249
+ required: string[];
3250
+ description: string;
3251
+ additionalProperties: false;
3252
+ };
3169
3253
  attributes: {
3170
3254
  type: "object";
3171
3255
  additionalProperties: {
@@ -12430,6 +12514,34 @@ export declare const state: {
12430
12514
  description: string;
12431
12515
  additionalProperties: false;
12432
12516
  };
12517
+ message: {
12518
+ type: "object";
12519
+ properties: {
12520
+ tags: {
12521
+ type: "object";
12522
+ additionalProperties: {
12523
+ type: "object";
12524
+ properties: {
12525
+ title: {
12526
+ type: "string";
12527
+ maxLength: number;
12528
+ description: string;
12529
+ };
12530
+ description: {
12531
+ type: "string";
12532
+ maxLength: number;
12533
+ description: string;
12534
+ };
12535
+ };
12536
+ description: string;
12537
+ additionalProperties: false;
12538
+ };
12539
+ };
12540
+ };
12541
+ required: string[];
12542
+ description: string;
12543
+ additionalProperties: false;
12544
+ };
12433
12545
  attributes: {
12434
12546
  type: "object";
12435
12547
  additionalProperties: {
@@ -12924,6 +13036,34 @@ export declare const state: {
12924
13036
  required: string[];
12925
13037
  additionalProperties: false;
12926
13038
  };
13039
+ message: {
13040
+ type: "object";
13041
+ properties: {
13042
+ tags: {
13043
+ type: "object";
13044
+ additionalProperties: {
13045
+ type: "object";
13046
+ properties: {
13047
+ title: {
13048
+ type: "string";
13049
+ maxLength: number;
13050
+ description: string;
13051
+ };
13052
+ description: {
13053
+ type: "string";
13054
+ maxLength: number;
13055
+ description: string;
13056
+ };
13057
+ };
13058
+ description: string;
13059
+ nullable: true;
13060
+ additionalProperties: false;
13061
+ };
13062
+ };
13063
+ };
13064
+ required: string[];
13065
+ additionalProperties: false;
13066
+ };
12927
13067
  attributes: {
12928
13068
  type: "object";
12929
13069
  additionalProperties: {
@@ -15722,6 +15862,34 @@ export declare const state: {
15722
15862
  description: string;
15723
15863
  additionalProperties: false;
15724
15864
  };
15865
+ message: {
15866
+ type: "object";
15867
+ properties: {
15868
+ tags: {
15869
+ type: "object";
15870
+ additionalProperties: {
15871
+ type: "object";
15872
+ properties: {
15873
+ title: {
15874
+ type: "string";
15875
+ maxLength: number;
15876
+ description: string;
15877
+ };
15878
+ description: {
15879
+ type: "string";
15880
+ maxLength: number;
15881
+ description: string;
15882
+ };
15883
+ };
15884
+ description: string;
15885
+ additionalProperties: false;
15886
+ };
15887
+ };
15888
+ };
15889
+ required: string[];
15890
+ description: string;
15891
+ additionalProperties: false;
15892
+ };
15725
15893
  attributes: {
15726
15894
  type: "object";
15727
15895
  additionalProperties: {
@@ -1997,6 +1997,16 @@ export declare const state: {
1997
1997
  user: {
1998
1998
  $ref: string;
1999
1999
  };
2000
+ meta: {
2001
+ type: "object";
2002
+ properties: {
2003
+ created: {
2004
+ type: "boolean";
2005
+ };
2006
+ };
2007
+ required: string[];
2008
+ additionalProperties: false;
2009
+ };
2000
2010
  };
2001
2011
  required: string[];
2002
2012
  title: string;
@@ -1539,6 +1539,16 @@ export declare const state: {
1539
1539
  user: {
1540
1540
  $ref: string;
1541
1541
  };
1542
+ meta: {
1543
+ type: "object";
1544
+ properties: {
1545
+ created: {
1546
+ type: "boolean";
1547
+ };
1548
+ };
1549
+ required: string[];
1550
+ additionalProperties: false;
1551
+ };
1542
1552
  };
1543
1553
  required: string[];
1544
1554
  title: string;
@@ -4902,6 +4912,34 @@ export declare const state: {
4902
4912
  description: string;
4903
4913
  additionalProperties: false;
4904
4914
  };
4915
+ message: {
4916
+ type: "object";
4917
+ properties: {
4918
+ tags: {
4919
+ type: "object";
4920
+ additionalProperties: {
4921
+ type: "object";
4922
+ properties: {
4923
+ title: {
4924
+ type: "string";
4925
+ maxLength: number;
4926
+ description: string;
4927
+ };
4928
+ description: {
4929
+ type: "string";
4930
+ maxLength: number;
4931
+ description: string;
4932
+ };
4933
+ };
4934
+ description: string;
4935
+ additionalProperties: false;
4936
+ };
4937
+ };
4938
+ };
4939
+ required: string[];
4940
+ description: string;
4941
+ additionalProperties: false;
4942
+ };
4905
4943
  attributes: {
4906
4944
  type: "object";
4907
4945
  additionalProperties: {
@@ -5266,6 +5304,34 @@ export declare const state: {
5266
5304
  description: string;
5267
5305
  additionalProperties: false;
5268
5306
  };
5307
+ message: {
5308
+ type: "object";
5309
+ properties: {
5310
+ tags: {
5311
+ type: "object";
5312
+ additionalProperties: {
5313
+ type: "object";
5314
+ properties: {
5315
+ title: {
5316
+ type: "string";
5317
+ maxLength: number;
5318
+ description: string;
5319
+ };
5320
+ description: {
5321
+ type: "string";
5322
+ maxLength: number;
5323
+ description: string;
5324
+ };
5325
+ };
5326
+ description: string;
5327
+ additionalProperties: false;
5328
+ };
5329
+ };
5330
+ };
5331
+ required: string[];
5332
+ description: string;
5333
+ additionalProperties: false;
5334
+ };
5269
5335
  attributes: {
5270
5336
  type: "object";
5271
5337
  additionalProperties: {
@@ -5621,6 +5687,34 @@ export declare const state: {
5621
5687
  description: string;
5622
5688
  additionalProperties: false;
5623
5689
  };
5690
+ message: {
5691
+ type: "object";
5692
+ properties: {
5693
+ tags: {
5694
+ type: "object";
5695
+ additionalProperties: {
5696
+ type: "object";
5697
+ properties: {
5698
+ title: {
5699
+ type: "string";
5700
+ maxLength: number;
5701
+ description: string;
5702
+ };
5703
+ description: {
5704
+ type: "string";
5705
+ maxLength: number;
5706
+ description: string;
5707
+ };
5708
+ };
5709
+ description: string;
5710
+ additionalProperties: false;
5711
+ };
5712
+ };
5713
+ };
5714
+ required: string[];
5715
+ description: string;
5716
+ additionalProperties: false;
5717
+ };
5624
5718
  attributes: {
5625
5719
  type: "object";
5626
5720
  additionalProperties: {
@@ -14063,6 +14157,34 @@ export declare const state: {
14063
14157
  description: string;
14064
14158
  additionalProperties: false;
14065
14159
  };
14160
+ message: {
14161
+ type: "object";
14162
+ properties: {
14163
+ tags: {
14164
+ type: "object";
14165
+ additionalProperties: {
14166
+ type: "object";
14167
+ properties: {
14168
+ title: {
14169
+ type: "string";
14170
+ maxLength: number;
14171
+ description: string;
14172
+ };
14173
+ description: {
14174
+ type: "string";
14175
+ maxLength: number;
14176
+ description: string;
14177
+ };
14178
+ };
14179
+ description: string;
14180
+ additionalProperties: false;
14181
+ };
14182
+ };
14183
+ };
14184
+ required: string[];
14185
+ description: string;
14186
+ additionalProperties: false;
14187
+ };
14066
14188
  attributes: {
14067
14189
  type: "object";
14068
14190
  additionalProperties: {
@@ -14509,6 +14631,34 @@ export declare const state: {
14509
14631
  required: string[];
14510
14632
  additionalProperties: false;
14511
14633
  };
14634
+ message: {
14635
+ type: "object";
14636
+ properties: {
14637
+ tags: {
14638
+ type: "object";
14639
+ additionalProperties: {
14640
+ type: "object";
14641
+ properties: {
14642
+ title: {
14643
+ type: "string";
14644
+ maxLength: number;
14645
+ description: string;
14646
+ };
14647
+ description: {
14648
+ type: "string";
14649
+ maxLength: number;
14650
+ description: string;
14651
+ };
14652
+ };
14653
+ description: string;
14654
+ nullable: true;
14655
+ additionalProperties: false;
14656
+ };
14657
+ };
14658
+ };
14659
+ required: string[];
14660
+ additionalProperties: false;
14661
+ };
14512
14662
  attributes: {
14513
14663
  type: "object";
14514
14664
  additionalProperties: {
@@ -20052,6 +20202,34 @@ export declare const state: {
20052
20202
  description: string;
20053
20203
  additionalProperties: false;
20054
20204
  };
20205
+ message: {
20206
+ type: "object";
20207
+ properties: {
20208
+ tags: {
20209
+ type: "object";
20210
+ additionalProperties: {
20211
+ type: "object";
20212
+ properties: {
20213
+ title: {
20214
+ type: "string";
20215
+ maxLength: number;
20216
+ description: string;
20217
+ };
20218
+ description: {
20219
+ type: "string";
20220
+ maxLength: number;
20221
+ description: string;
20222
+ };
20223
+ };
20224
+ description: string;
20225
+ additionalProperties: false;
20226
+ };
20227
+ };
20228
+ };
20229
+ required: string[];
20230
+ description: string;
20231
+ additionalProperties: false;
20232
+ };
20055
20233
  attributes: {
20056
20234
  type: "object";
20057
20235
  additionalProperties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/api",
3
- "version": "1.75.0",
3
+ "version": "1.77.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "dependencies": {
@@ -11,11 +11,11 @@
11
11
  "esbuild": "0.27.1",
12
12
  "typescript": "5.9.3",
13
13
  "zod": "^3.24.4",
14
+ "@botpress/bridge": "1.8.1",
14
15
  "@botpress/cloud-manager": "0.2.0",
15
16
  "@botpress/common": "0.5.0",
16
- "@botpress/bridge": "1.8.1",
17
- "@botpress/files-api": "0.18.0",
18
17
  "@botpress/smaug": "1.0.1",
18
+ "@botpress/files-api": "0.18.0",
19
19
  "@bpinternal/const": "0.4.2",
20
20
  "@bpinternal/tables-api": "0.17.2"
21
21
  },