@zimyo/manage 0.3.20 → 0.3.21
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/components/manage/Subscription/PaymentRecords/TableView/Table.d.ts +1 -16
- package/dist/components/manage/Subscription/PlansOverview/ComaprePlans.d.ts +5 -0
- package/dist/components/manage/Subscription/PlansOverview/PlansOverview.d.ts +2 -50
- package/dist/main.cjs +251 -254
- package/dist/main.js +32269 -32024
- package/dist/shared/constants/endpoints.d.ts +1 -0
- package/dist/src/components/manage/Subscription/PaymentRecords/TableView/Table.d.ts +1 -16
- package/dist/src/components/manage/Subscription/PlansOverview/ComaprePlans.d.ts +5 -0
- package/dist/src/components/manage/Subscription/PlansOverview/PlansOverview.d.ts +2 -50
- package/dist/src/shared/constants/endpoints.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/components/manage/Subscription/NewLedger/NewLedger.d.ts +0 -1
- package/dist/components/manage/Subscription/PaymentRecords/CardView/Card.d.ts +0 -18
- package/dist/components/utils/index.d.ts +0 -27
- package/dist/src/components/manage/Subscription/NewLedger/NewLedger.d.ts +0 -1
- package/dist/src/components/manage/Subscription/PaymentRecords/CardView/Card.d.ts +0 -17
- package/dist/src/components/utils/index.d.ts +0 -26
|
@@ -1,16 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
interface Transaction {
|
|
4
|
-
id: string;
|
|
5
|
-
date: string;
|
|
6
|
-
description: string;
|
|
7
|
-
method: string;
|
|
8
|
-
amount: string;
|
|
9
|
-
status: 'Completed' | 'Pending';
|
|
10
|
-
invoice: string | null;
|
|
11
|
-
}
|
|
12
|
-
interface TransactionTableProps {
|
|
13
|
-
transactions: Transaction[];
|
|
14
|
-
}
|
|
15
|
-
declare const TableView: React.FC<TransactionTableProps>;
|
|
16
|
-
export default TableView;
|
|
1
|
+
export {};
|
|
@@ -1,50 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
overviewData: OverviewData;
|
|
4
|
-
};
|
|
5
|
-
type OverviewData = {
|
|
6
|
-
employee_details: {
|
|
7
|
-
active_employee: number;
|
|
8
|
-
total_employee: number;
|
|
9
|
-
percentage: number;
|
|
10
|
-
};
|
|
11
|
-
wallet: {
|
|
12
|
-
balance: number;
|
|
13
|
-
openingBalance: number;
|
|
14
|
-
percentage: number | null;
|
|
15
|
-
};
|
|
16
|
-
orgInfo: {
|
|
17
|
-
org_code: string;
|
|
18
|
-
org_name: string;
|
|
19
|
-
org_address: string;
|
|
20
|
-
gstin: string;
|
|
21
|
-
email_id: string[];
|
|
22
|
-
mobile_number: string;
|
|
23
|
-
client_id: number;
|
|
24
|
-
country: string;
|
|
25
|
-
state: string;
|
|
26
|
-
city: string;
|
|
27
|
-
zip_code: string;
|
|
28
|
-
address_1: string | null;
|
|
29
|
-
address_2: string | null;
|
|
30
|
-
};
|
|
31
|
-
planDetails: {
|
|
32
|
-
current_plan: string;
|
|
33
|
-
billing_cycle: number;
|
|
34
|
-
plan_cost: number;
|
|
35
|
-
plan_expiring_date: string;
|
|
36
|
-
};
|
|
37
|
-
addOnProduct: AddOnProduct[];
|
|
38
|
-
plan_id: number;
|
|
39
|
-
add_on_id: string[];
|
|
40
|
-
usageCredit: any[];
|
|
41
|
-
};
|
|
42
|
-
type AddOnProduct = {
|
|
43
|
-
product_id: number;
|
|
44
|
-
product_name: string;
|
|
45
|
-
short_product_name: string;
|
|
46
|
-
modules_ids: number[];
|
|
47
|
-
subscription_id: number;
|
|
48
|
-
};
|
|
49
|
-
export declare const PlansOverview: (props: plansOverviewPropTypes) => import("react/jsx-runtime").JSX.Element;
|
|
50
|
-
export {};
|
|
1
|
+
|
|
2
|
+
export declare function PlansOverview(): import("react/jsx-runtime").JSX.Element;
|