@botpress/api 0.66.0 → 0.67.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 CHANGED
@@ -292503,6 +292503,36 @@ var state = {
292503
292503
  "description": "User object configuration",
292504
292504
  "additionalProperties": false
292505
292505
  },
292506
+ "conversation": {
292507
+ "type": "object",
292508
+ "properties": {
292509
+ "tags": {
292510
+ "type": "object",
292511
+ "additionalProperties": {
292512
+ "type": "object",
292513
+ "properties": {
292514
+ "title": {
292515
+ "type": "string",
292516
+ "maxLength": 64,
292517
+ "description": "Title of the tag"
292518
+ },
292519
+ "description": {
292520
+ "type": "string",
292521
+ "maxLength": 256,
292522
+ "description": "Description of the tag"
292523
+ }
292524
+ },
292525
+ "description": "Definition of a tag that can be provided on the object",
292526
+ "additionalProperties": false
292527
+ }
292528
+ }
292529
+ },
292530
+ "required": [
292531
+ "tags"
292532
+ ],
292533
+ "description": "Conversation object configuration",
292534
+ "additionalProperties": false
292535
+ },
292506
292536
  "code": {
292507
292537
  "type": "object",
292508
292538
  "properties": {
@@ -292832,6 +292862,37 @@ var state = {
292832
292862
  }
292833
292863
  },
292834
292864
  "description": "Definition of a tag that can be provided on the object",
292865
+ "nullable": true,
292866
+ "additionalProperties": false
292867
+ }
292868
+ }
292869
+ },
292870
+ "required": [
292871
+ "tags"
292872
+ ],
292873
+ "additionalProperties": false
292874
+ },
292875
+ "conversation": {
292876
+ "type": "object",
292877
+ "properties": {
292878
+ "tags": {
292879
+ "type": "object",
292880
+ "additionalProperties": {
292881
+ "type": "object",
292882
+ "properties": {
292883
+ "title": {
292884
+ "type": "string",
292885
+ "maxLength": 64,
292886
+ "description": "Title of the tag"
292887
+ },
292888
+ "description": {
292889
+ "type": "string",
292890
+ "maxLength": 256,
292891
+ "description": "Description of the tag"
292892
+ }
292893
+ },
292894
+ "description": "Definition of a tag that can be provided on the object",
292895
+ "nullable": true,
292835
292896
  "additionalProperties": false
292836
292897
  }
292837
292898
  }
@@ -292839,8 +292900,6 @@ var state = {
292839
292900
  "required": [
292840
292901
  "tags"
292841
292902
  ],
292842
- "description": "User object configuration",
292843
- "nullable": true,
292844
292903
  "additionalProperties": false
292845
292904
  },
292846
292905
  "code": {
@@ -296075,7 +296134,7 @@ var state = {
296075
296134
  "title": "Botpress API",
296076
296135
  "description": "API for Botpress Cloud",
296077
296136
  "server": "https://api.botpress.cloud",
296078
- "version": "0.66.0",
296137
+ "version": "0.67.1",
296079
296138
  "prefix": "v1"
296080
296139
  },
296081
296140
  "errors": [
@@ -298088,6 +298147,36 @@ var state = {
298088
298147
  ],
298089
298148
  "description": "User object configuration",
298090
298149
  "additionalProperties": false
298150
+ },
298151
+ "conversation": {
298152
+ "type": "object",
298153
+ "properties": {
298154
+ "tags": {
298155
+ "type": "object",
298156
+ "additionalProperties": {
298157
+ "type": "object",
298158
+ "properties": {
298159
+ "title": {
298160
+ "type": "string",
298161
+ "maxLength": 64,
298162
+ "description": "Title of the tag"
298163
+ },
298164
+ "description": {
298165
+ "type": "string",
298166
+ "maxLength": 256,
298167
+ "description": "Description of the tag"
298168
+ }
298169
+ },
298170
+ "description": "Definition of a tag that can be provided on the object",
298171
+ "additionalProperties": false
298172
+ }
298173
+ }
298174
+ },
298175
+ "required": [
298176
+ "tags"
298177
+ ],
298178
+ "description": "Conversation object configuration",
298179
+ "additionalProperties": false
298091
298180
  }
298092
298181
  },
298093
298182
  "required": [
@@ -298101,7 +298190,8 @@ var state = {
298101
298190
  "events",
298102
298191
  "actions",
298103
298192
  "dependencies",
298104
- "user"
298193
+ "user",
298194
+ "conversation"
298105
298195
  ],
298106
298196
  "description": "Plugin definition",
298107
298197
  "additionalProperties": false
@@ -9239,6 +9239,34 @@ export declare const state: {
9239
9239
  description: string;
9240
9240
  additionalProperties: false;
9241
9241
  };
9242
+ conversation: {
9243
+ type: "object";
9244
+ properties: {
9245
+ tags: {
9246
+ type: "object";
9247
+ additionalProperties: {
9248
+ type: "object";
9249
+ properties: {
9250
+ title: {
9251
+ type: "string";
9252
+ maxLength: number;
9253
+ description: string;
9254
+ };
9255
+ description: {
9256
+ type: "string";
9257
+ maxLength: number;
9258
+ description: string;
9259
+ };
9260
+ };
9261
+ description: string;
9262
+ additionalProperties: false;
9263
+ };
9264
+ };
9265
+ };
9266
+ required: string[];
9267
+ description: string;
9268
+ additionalProperties: false;
9269
+ };
9242
9270
  code: {
9243
9271
  type: "object";
9244
9272
  properties: {
@@ -9532,13 +9560,40 @@ export declare const state: {
9532
9560
  };
9533
9561
  };
9534
9562
  description: string;
9563
+ nullable: true;
9564
+ additionalProperties: false;
9565
+ };
9566
+ };
9567
+ };
9568
+ required: string[];
9569
+ additionalProperties: false;
9570
+ };
9571
+ conversation: {
9572
+ type: "object";
9573
+ properties: {
9574
+ tags: {
9575
+ type: "object";
9576
+ additionalProperties: {
9577
+ type: "object";
9578
+ properties: {
9579
+ title: {
9580
+ type: "string";
9581
+ maxLength: number;
9582
+ description: string;
9583
+ };
9584
+ description: {
9585
+ type: "string";
9586
+ maxLength: number;
9587
+ description: string;
9588
+ };
9589
+ };
9590
+ description: string;
9591
+ nullable: true;
9535
9592
  additionalProperties: false;
9536
9593
  };
9537
9594
  };
9538
9595
  };
9539
9596
  required: string[];
9540
- description: string;
9541
- nullable: true;
9542
9597
  additionalProperties: false;
9543
9598
  };
9544
9599
  code: {
@@ -14026,6 +14081,34 @@ export declare const state: {
14026
14081
  description: string;
14027
14082
  additionalProperties: false;
14028
14083
  };
14084
+ conversation: {
14085
+ type: "object";
14086
+ properties: {
14087
+ tags: {
14088
+ type: "object";
14089
+ additionalProperties: {
14090
+ type: "object";
14091
+ properties: {
14092
+ title: {
14093
+ type: "string";
14094
+ maxLength: number;
14095
+ description: string;
14096
+ };
14097
+ description: {
14098
+ type: "string";
14099
+ maxLength: number;
14100
+ description: string;
14101
+ };
14102
+ };
14103
+ description: string;
14104
+ additionalProperties: false;
14105
+ };
14106
+ };
14107
+ };
14108
+ required: string[];
14109
+ description: string;
14110
+ additionalProperties: false;
14111
+ };
14029
14112
  };
14030
14113
  required: string[];
14031
14114
  description: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/api",
3
- "version": "0.66.0",
3
+ "version": "0.67.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {