@botpress/client 0.42.0 → 0.43.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.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
  }
@@ -15399,6 +15409,9 @@ declare class Lister {
15399
15409
  updatedAt: string;
15400
15410
  name: string;
15401
15411
  deployedAt?: string;
15412
+ tags: {
15413
+ [k: string]: string;
15414
+ };
15402
15415
  }>;
15403
15416
  readonly botIssues: (props: ListInputs["listBotIssues"]) => AsyncCollection<{
15404
15417
  id: string;