@botpress/api 1.60.0 → 1.61.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
@@ -277050,6 +277050,43 @@ var state = {
277050
277050
  },
277051
277051
  "description": "Filter by tags"
277052
277052
  },
277053
+ "afterDate": {
277054
+ "in": "query",
277055
+ "description": "Date in ISO 8601 string with UTC timezone after which the user was created or updated (inclusive)",
277056
+ "type": "string"
277057
+ },
277058
+ "beforeDate": {
277059
+ "in": "query",
277060
+ "description": "Date in ISO 8601 string with UTC timezone before which the user was created or updated (inclusive)",
277061
+ "type": "string"
277062
+ },
277063
+ "rangeField": {
277064
+ "in": "query",
277065
+ "description": 'Field used for range filtering. Allowed values are "updatedAt" or "createdAt". Defaults to "createdAt" if omitted.',
277066
+ "type": "string",
277067
+ "enum": [
277068
+ "updatedAt",
277069
+ "createdAt"
277070
+ ]
277071
+ },
277072
+ "sortField": {
277073
+ "in": "query",
277074
+ "description": "Sort results by this field",
277075
+ "type": "string",
277076
+ "enum": [
277077
+ "updatedAt",
277078
+ "createdAt"
277079
+ ]
277080
+ },
277081
+ "sortDirection": {
277082
+ "in": "query",
277083
+ "description": "Sort results in this direction",
277084
+ "type": "string",
277085
+ "enum": [
277086
+ "asc",
277087
+ "desc"
277088
+ ]
277089
+ },
277053
277090
  "x-bot-id": {
277054
277091
  "in": "header",
277055
277092
  "description": "Bot id",
@@ -279006,7 +279043,7 @@ var state = {
279006
279043
  "title": "Botpress Runtime API",
279007
279044
  "description": "API for Botpress Runtime",
279008
279045
  "server": "https://api.botpress.cloud",
279009
- "version": "1.60.0",
279046
+ "version": "1.61.0",
279010
279047
  "prefix": "v1"
279011
279048
  },
279012
279049
  "defaultParameters": {
@@ -295401,7 +295438,7 @@ var state2 = {
295401
295438
  "title": "Botpress Admin API",
295402
295439
  "description": "API for Botpress Cloud Manager",
295403
295440
  "server": "https://api.botpress.cloud",
295404
- "version": "1.60.0",
295441
+ "version": "1.61.0",
295405
295442
  "prefix": "v1"
295406
295443
  },
295407
295444
  "defaultParameters": {
@@ -300897,7 +300934,7 @@ var state3 = {
300897
300934
  "title": "Botpress Files API",
300898
300935
  "description": "API for Botpress Files",
300899
300936
  "server": "https://api.botpress.cloud",
300900
- "version": "1.60.0",
300937
+ "version": "1.61.0",
300901
300938
  "prefix": "v1"
300902
300939
  },
300903
300940
  "defaultParameters": {
@@ -303182,7 +303219,7 @@ var state4 = {
303182
303219
  "title": "Botpress Tables API",
303183
303220
  "description": "API for Botpress Tables",
303184
303221
  "server": "https://api.botpress.cloud",
303185
- "version": "1.60.0",
303222
+ "version": "1.61.0",
303186
303223
  "prefix": "v1"
303187
303224
  },
303188
303225
  "defaultParameters": {
@@ -305125,6 +305162,43 @@ var state5 = {
305125
305162
  }
305126
305163
  },
305127
305164
  "description": "Filter by tags"
305165
+ },
305166
+ "afterDate": {
305167
+ "in": "query",
305168
+ "description": "Date in ISO 8601 string with UTC timezone after which the user was created or updated (inclusive)",
305169
+ "type": "string"
305170
+ },
305171
+ "beforeDate": {
305172
+ "in": "query",
305173
+ "description": "Date in ISO 8601 string with UTC timezone before which the user was created or updated (inclusive)",
305174
+ "type": "string"
305175
+ },
305176
+ "rangeField": {
305177
+ "in": "query",
305178
+ "description": 'Field used for range filtering. Allowed values are "updatedAt" or "createdAt". Defaults to "createdAt" if omitted.',
305179
+ "type": "string",
305180
+ "enum": [
305181
+ "updatedAt",
305182
+ "createdAt"
305183
+ ]
305184
+ },
305185
+ "sortField": {
305186
+ "in": "query",
305187
+ "description": "Sort results by this field",
305188
+ "type": "string",
305189
+ "enum": [
305190
+ "updatedAt",
305191
+ "createdAt"
305192
+ ]
305193
+ },
305194
+ "sortDirection": {
305195
+ "in": "query",
305196
+ "description": "Sort results in this direction",
305197
+ "type": "string",
305198
+ "enum": [
305199
+ "asc",
305200
+ "desc"
305201
+ ]
305128
305202
  }
305129
305203
  },
305130
305204
  "section": "user",
@@ -324236,7 +324310,7 @@ var state5 = {
324236
324310
  "title": "Botpress API",
324237
324311
  "description": "API for Botpress Cloud",
324238
324312
  "server": "https://api.botpress.cloud",
324239
- "version": "1.60.0",
324313
+ "version": "1.61.0",
324240
324314
  "prefix": "v1"
324241
324315
  },
324242
324316
  "errors": [
@@ -1542,6 +1542,34 @@ export declare const state: {
1542
1542
  };
1543
1543
  description: string;
1544
1544
  };
1545
+ afterDate: {
1546
+ in: "query";
1547
+ description: string;
1548
+ type: "string";
1549
+ };
1550
+ beforeDate: {
1551
+ in: "query";
1552
+ description: string;
1553
+ type: "string";
1554
+ };
1555
+ rangeField: {
1556
+ in: "query";
1557
+ description: string;
1558
+ type: "string";
1559
+ enum: string[];
1560
+ };
1561
+ sortField: {
1562
+ in: "query";
1563
+ description: string;
1564
+ type: "string";
1565
+ enum: string[];
1566
+ };
1567
+ sortDirection: {
1568
+ in: "query";
1569
+ description: string;
1570
+ type: "string";
1571
+ enum: string[];
1572
+ };
1545
1573
  "x-bot-id": {
1546
1574
  in: "header";
1547
1575
  description: string;
@@ -1140,6 +1140,34 @@ export declare const state: {
1140
1140
  };
1141
1141
  description: string;
1142
1142
  };
1143
+ afterDate: {
1144
+ in: "query";
1145
+ description: string;
1146
+ type: "string";
1147
+ };
1148
+ beforeDate: {
1149
+ in: "query";
1150
+ description: string;
1151
+ type: "string";
1152
+ };
1153
+ rangeField: {
1154
+ in: "query";
1155
+ description: string;
1156
+ type: "string";
1157
+ enum: string[];
1158
+ };
1159
+ sortField: {
1160
+ in: "query";
1161
+ description: string;
1162
+ type: "string";
1163
+ enum: string[];
1164
+ };
1165
+ sortDirection: {
1166
+ in: "query";
1167
+ description: string;
1168
+ type: "string";
1169
+ enum: string[];
1170
+ };
1143
1171
  };
1144
1172
  section: "user";
1145
1173
  response: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/api",
3
- "version": "1.60.0",
3
+ "version": "1.61.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "devDependencies": {