@botpress/api 0.68.3 → 0.69.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
@@ -293950,6 +293950,27 @@ var state = {
293950
293950
  "description": "Provide the `meta.nextToken` value provided in the last API response to retrieve the next page of results",
293951
293951
  "type": "string"
293952
293952
  },
293953
+ "sortField": {
293954
+ "in": "query",
293955
+ "description": "Sort results by this field",
293956
+ "type": "string",
293957
+ "enum": [
293958
+ "key",
293959
+ "size",
293960
+ "createdAt",
293961
+ "updatedAt",
293962
+ "status"
293963
+ ]
293964
+ },
293965
+ "sortDirection": {
293966
+ "in": "query",
293967
+ "description": "Sort results in this direction",
293968
+ "type": "string",
293969
+ "enum": [
293970
+ "asc",
293971
+ "desc"
293972
+ ]
293973
+ },
293953
293974
  "tags": {
293954
293975
  "in": "query",
293955
293976
  "description": "Filter files by tags. Tags should be passed as a URL-encoded JSON object of key-value pairs that must be present in the tags of a file. An array of multiple string values for the same key are treated as an OR condition. To exclude a value, express it as an object with a nested `not` key with the string or string-array value(s) to exclude.",
@@ -296131,7 +296152,7 @@ var state = {
296131
296152
  "title": "Botpress API",
296132
296153
  "description": "API for Botpress Cloud",
296133
296154
  "server": "https://api.botpress.cloud",
296134
- "version": "0.68.3",
296155
+ "version": "0.69.0",
296135
296156
  "prefix": "v1"
296136
296157
  },
296137
296158
  "errors": [
@@ -10494,6 +10494,18 @@ export declare const state: {
10494
10494
  description: string;
10495
10495
  type: "string";
10496
10496
  };
10497
+ sortField: {
10498
+ in: "query";
10499
+ description: string;
10500
+ type: "string";
10501
+ enum: string[];
10502
+ };
10503
+ sortDirection: {
10504
+ in: "query";
10505
+ description: string;
10506
+ type: "string";
10507
+ enum: string[];
10508
+ };
10497
10509
  tags: {
10498
10510
  in: "query";
10499
10511
  description: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/api",
3
- "version": "0.68.3",
3
+ "version": "0.69.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {