@botpress/client 0.21.0 → 0.22.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.
@@ -604,6 +604,8 @@ export interface WorkspaceMember {
604
604
  email: string;
605
605
  createdAt: string;
606
606
  role: "viewer" | "billing" | "developer" | "manager" | "administrator" | "owner";
607
+ profilePicture?: string;
608
+ displayName?: string;
607
609
  }
608
610
  export interface Account {
609
611
  id: string;
@@ -24,4 +24,6 @@ export interface CreateWorkspaceMemberResponse {
24
24
  email: string;
25
25
  createdAt: string;
26
26
  role: "viewer" | "billing" | "developer" | "manager" | "administrator" | "owner";
27
+ profilePicture?: string;
28
+ displayName?: string;
27
29
  }
@@ -22,4 +22,6 @@ export interface GetWorkspaceMemberResponse {
22
22
  email: string;
23
23
  createdAt: string;
24
24
  role: "viewer" | "billing" | "developer" | "manager" | "administrator" | "owner";
25
+ profilePicture?: string;
26
+ displayName?: string;
25
27
  }
@@ -36,7 +36,11 @@ export interface ListWorkspaceInvoicesResponse {
36
36
  * Currency of the invoice amount.
37
37
  */
38
38
  currency: string;
39
- paymentStatus: "paid" | "unpaid";
39
+ paymentStatus: ("deleted" | "draft" | "open" | "paid" | "uncollectible" | "void") | null;
40
+ /**
41
+ * Date on which the invoice is due.
42
+ */
43
+ dueDate?: string;
40
44
  /**
41
45
  * Number of times payment has been unsuccessfully attempted on the invoice.
42
46
  */
@@ -24,6 +24,8 @@ export interface ListWorkspaceMembersResponse {
24
24
  email: string;
25
25
  createdAt: string;
26
26
  role: "viewer" | "billing" | "developer" | "manager" | "administrator" | "owner";
27
+ profilePicture?: string;
28
+ displayName?: string;
27
29
  }[];
28
30
  meta: {
29
31
  /**
@@ -24,4 +24,6 @@ export interface UpdateWorkspaceMemberResponse {
24
24
  email: string;
25
25
  createdAt: string;
26
26
  role: "viewer" | "billing" | "developer" | "manager" | "administrator" | "owner";
27
+ profilePicture?: string;
28
+ displayName?: string;
27
29
  }