@botpress/client 0.42.0 → 0.44.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/.turbo/turbo-build.log +7 -7
- package/.turbo/turbo-generate.log +1 -1
- package/dist/bundle.cjs +1 -1
- package/dist/bundle.cjs.map +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +2 -2
- package/dist/index.d.ts +17 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -4697,6 +4697,9 @@ interface ListBotsRequestHeaders {
|
|
|
4697
4697
|
}
|
|
4698
4698
|
interface ListBotsRequestQuery {
|
|
4699
4699
|
dev?: boolean;
|
|
4700
|
+
tags?: {
|
|
4701
|
+
[k: string]: string;
|
|
4702
|
+
};
|
|
4700
4703
|
nextToken?: string;
|
|
4701
4704
|
sortField?: "createdAt" | "updatedAt";
|
|
4702
4705
|
sortDirection?: "asc" | "desc";
|
|
@@ -4722,6 +4725,12 @@ interface ListBotsResponse {
|
|
|
4722
4725
|
updatedAt: string;
|
|
4723
4726
|
name: string;
|
|
4724
4727
|
deployedAt?: string;
|
|
4728
|
+
/**
|
|
4729
|
+
* Tags of [Bot](#schema_bot)
|
|
4730
|
+
*/
|
|
4731
|
+
tags: {
|
|
4732
|
+
[k: string]: string;
|
|
4733
|
+
};
|
|
4725
4734
|
}[];
|
|
4726
4735
|
meta: {
|
|
4727
4736
|
/**
|
|
@@ -5721,6 +5730,7 @@ interface ListWorkspacesRequestHeaders {
|
|
|
5721
5730
|
}
|
|
5722
5731
|
interface ListWorkspacesRequestQuery {
|
|
5723
5732
|
nextToken?: string;
|
|
5733
|
+
handle?: string;
|
|
5724
5734
|
}
|
|
5725
5735
|
interface ListWorkspacesRequestParams {
|
|
5726
5736
|
}
|
|
@@ -11383,7 +11393,10 @@ interface CopyFileRequestParams {
|
|
|
11383
11393
|
destinationKey: string;
|
|
11384
11394
|
}
|
|
11385
11395
|
interface CopyFileRequestBody {
|
|
11386
|
-
|
|
11396
|
+
/**
|
|
11397
|
+
* Set to `true` to overwrite the file if it already exists, otherwise an error will be returned. If overwriting, the existing file must be owned by the same user making the file copy request, otherwise an error will be returned.
|
|
11398
|
+
*/
|
|
11399
|
+
overwrite?: boolean;
|
|
11387
11400
|
}
|
|
11388
11401
|
type CopyFileInput = CopyFileRequestBody & CopyFileRequestHeaders & CopyFileRequestQuery & CopyFileRequestParams;
|
|
11389
11402
|
interface CopyFileResponse {
|
|
@@ -15399,6 +15412,9 @@ declare class Lister {
|
|
|
15399
15412
|
updatedAt: string;
|
|
15400
15413
|
name: string;
|
|
15401
15414
|
deployedAt?: string;
|
|
15415
|
+
tags: {
|
|
15416
|
+
[k: string]: string;
|
|
15417
|
+
};
|
|
15402
15418
|
}>;
|
|
15403
15419
|
readonly botIssues: (props: ListInputs["listBotIssues"]) => AsyncCollection<{
|
|
15404
15420
|
id: string;
|