@budibase/types 3.9.2 → 3.9.3

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.
@@ -49,28 +49,6 @@ export interface CloudAccount extends Account {
49
49
  password?: string;
50
50
  budibaseUserId: string;
51
51
  }
52
- export interface TenantDetail {
53
- id: string;
54
- name: string;
55
- hosting: Hosting;
56
- installation?: {
57
- id: string;
58
- version: string;
59
- };
60
- license?: {
61
- key: string;
62
- session?: string;
63
- };
64
- }
65
- export interface AccountDetail {
66
- id: string;
67
- email: string;
68
- name: string;
69
- displayName: string;
70
- customerId: string | null;
71
- createdAt: Date;
72
- tenants: TenantDetail[];
73
- }
74
52
  export declare const isCloudAccount: (account: Account) => account is CloudAccount;
75
53
  export declare const isSelfHostAccount: (account: Account) => boolean;
76
54
  export declare const isSSOAccount: (account: Account) => account is SSOAccount;