@cakemail-org/ui-components-v2 2.2.43 → 2.2.44

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.
@@ -1,4 +1,5 @@
1
1
  import { TBrand } from "../../factories";
2
+ import { CustomerModel } from "../customer";
2
3
  import { TAccountAddress, TAccountDomains, TAccountLimits, TAccountModel, TAccountOwner, TAccountReport, TDeleteAccountResponse, TGetAccountReport } from "./types";
3
4
  export declare class AccountModel {
4
5
  readonly id: number;
@@ -30,7 +31,7 @@ export declare class AccountModel {
30
31
  getReport({ ...options }: TGetAccountReport): Promise<TAccountReport>;
31
32
  impersonate(byContext?: boolean): Promise<any>;
32
33
  getDomains(): Promise<TAccountDomains>;
33
- getCustomer(): Promise<import("..").CustomerModel>;
34
+ getCustomer(): Promise<CustomerModel>;
34
35
  update(account: Partial<TAccountModel>): Promise<{
35
36
  data: AccountModel;
36
37
  warning: any;
@@ -1,4 +1,5 @@
1
1
  import { TBrand } from "../../factories";
2
+ import { CustomerModel } from "../customer";
2
3
  import { TAccountAddress, TAccountDomains, TAccountLimits, TAccountModel, TAccountOwner, TAccountReport, TDeleteAccountResponse, TGetAccountReport } from "./types";
3
4
  export declare class AccountModel {
4
5
  readonly id: number;
@@ -30,7 +31,7 @@ export declare class AccountModel {
30
31
  getReport({ ...options }: TGetAccountReport): Promise<TAccountReport>;
31
32
  impersonate(byContext?: boolean): Promise<any>;
32
33
  getDomains(): Promise<TAccountDomains>;
33
- getCustomer(): Promise<import("..").CustomerModel>;
34
+ getCustomer(): Promise<CustomerModel>;
34
35
  update(account: Partial<TAccountModel>): Promise<{
35
36
  data: AccountModel;
36
37
  warning: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cakemail-org/ui-components-v2",
3
- "version": "2.2.43",
3
+ "version": "2.2.44",
4
4
  "description": "ui library kit made with material UI",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",