@zimyo/manage 0.1.4 → 0.1.6

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.
@@ -2,3 +2,7 @@ export declare const WALLET_AMOUMT_ACTIONS: {
2
2
  ADD: string;
3
3
  WITHDRAW: string;
4
4
  };
5
+ export declare const TRNSACTIONS_TYPES: {
6
+ label: string;
7
+ value: string;
8
+ }[];
@@ -1,12 +1,18 @@
1
1
  interface orgDetailsState {
2
2
  org_name?: string;
3
3
  mobile_number?: string;
4
- org_address?: string;
5
4
  gstin?: string;
6
5
  }
7
6
  interface props extends orgDetailsState {
8
7
  email_id?: string[];
9
8
  client_id?: number | string;
9
+ org_address?: string;
10
+ country?: number | string;
11
+ state?: number | string;
12
+ city?: string;
13
+ address_1?: string;
14
+ address_2?: string;
15
+ zip_code?: string;
10
16
  }
11
17
  declare const OrgDetailsCard: ({ orgDetails }: {
12
18
  orgDetails: props;