@feedmepos/mf-payment 0.0.0-beta.9 → 1.0.0-beta.10
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/README.md +11 -1
- package/dist/AdminLayout.vue_vue_type_script_setup_true_lang-BTmMOzwx.js +39 -0
- package/dist/AsyncButton.vue_vue_type_script_setup_true_lang-DcjzvYwT.js +42 -0
- package/dist/AutoCopyCell.vue_vue_type_script_setup_true_lang-GXPXBEf5.js +40 -0
- package/dist/DateRangePicker.vue_vue_type_script_setup_true_lang-dP_5WjEJ.js +31 -0
- package/dist/Modal-DB8M9o1T.js +13 -0
- package/dist/PDFViewer-xrBtzrlR.js +22426 -0
- package/dist/{PayoutAccount-DLhMMlw_.js → PayoutAccount-B1sLInPk.js} +96 -83
- package/dist/PayoutAccount-Dut_OQHJ.js +613 -0
- package/dist/PayoutAccountSetting-CmgVLhdp.js +780 -0
- package/dist/RestaurantSelector.vue_vue_type_script_setup_true_lang-CY4ttpKj.js +33 -0
- package/dist/SelectAll.vue_vue_type_script_setup_true_lang-DA4rs3tk.js +42 -0
- package/dist/Settlement-B1-WmCwC.js +193 -0
- package/dist/Settlement-BSOQRlp1.js +145 -0
- package/dist/{SettlementTransactions-Dl1H4jvh.js → SettlementTransactions-Cqd2raea.js} +117 -130
- package/dist/{SettlementTransactions-CoEzdtYT.js → SettlementTransactions-JTwD_Vuq.js} +99 -105
- package/dist/Terminal-De69bTKY.js +373 -0
- package/dist/TerminalSetting-DlRHaEZh.js +387 -0
- package/dist/TerminalTransaction-4rE-cikT.js +261 -0
- package/dist/TerminalTransaction-BGzVHOHQ.js +485 -0
- package/dist/Transaction-B3ZWKg6Q.js +403 -0
- package/dist/Transaction-B_0nUmpf.js +238 -0
- package/dist/api/index.d.ts +14 -0
- package/dist/api/pagination.d.ts +20 -0
- package/dist/api/payment-gateway/index.d.ts +9 -0
- package/dist/api/settlement/index.d.ts +12 -13
- package/dist/api/terminal/index.d.ts +13 -1
- package/dist/api/terminal-transaction/index.d.ts +12 -1
- package/dist/api/transaction/index.d.ts +7 -2
- package/dist/app-ssoGt5u4.js +6356 -0
- package/dist/app.js +3 -198
- package/dist/assets-BCAivOTo.js +45 -0
- package/dist/clipboard-4jh1WteU.js +10 -0
- package/dist/components/AdminLayout.vue.d.ts +8 -13
- package/dist/components/AsyncButton.vue.d.ts +21 -0
- package/dist/components/AutoCopyCell.vue.d.ts +5 -0
- package/dist/components/CursorTable/index.vue.d.ts +24 -5
- package/dist/components/DateRangePicker.vue.d.ts +13 -0
- package/dist/components/Layout.vue.d.ts +8 -13
- package/dist/components/PDFViewer.vue.d.ts +1 -1
- package/dist/components/RestaurantSelector.vue.d.ts +2 -0
- package/dist/components/RouteCell.vue.d.ts +7 -0
- package/dist/components/SelectAll.vue.d.ts +57 -0
- package/dist/helpers/assets.d.ts +2 -0
- package/dist/helpers/idToDate.d.ts +1 -1
- package/dist/index-4meiCsRz.js +56117 -0
- package/dist/{index-CF56zGyu.js → index-BFYq3eq8.js} +1 -1
- package/dist/{index-Bmka-1lQ.js → index-BwFHcZlm.js} +1 -1
- package/dist/index-CBa6eapm.js +47 -0
- package/dist/index-CETCXB6X.js +127 -0
- package/dist/index-CbsnpMWl.js +52 -0
- package/dist/index.vue_vue_type_script_setup_true_lang-CKOlikHb.js +167 -0
- package/dist/model/transaction.d.ts +2 -1
- package/dist/package.json +5 -5
- package/dist/payout-account-02bK8c23.js +1805 -0
- package/dist/router/index.d.ts +1 -0
- package/dist/stores/iframe.d.ts +1 -1
- package/dist/stores/payoutAccount.d.ts +5 -5
- package/dist/transaction-COjHU7aN.js +97 -0
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/validator-D5jtpt9A.js +2877 -0
- package/dist/views/admin/payout-account/cell/Bank.vue.d.ts +3 -5
- package/dist/views/admin/payout-account/cell/IsActive.vue.d.ts +3 -5
- package/dist/views/admin/payout-account/cell/PersonInCharge.vue.d.ts +3 -5
- package/dist/views/admin/payout-account/cell/RateInput.vue.d.ts +3 -5
- package/dist/views/admin/payout-account/cell/Status.vue.d.ts +3 -5
- package/dist/views/admin/payout-account/cell/TPlusInput.vue.d.ts +3 -5
- package/dist/views/admin/payout-account/tabs/Information.vue.d.ts +4 -4
- package/dist/views/admin/payout-account/tabs/PaymentGateway.vue.d.ts +81 -0
- package/dist/views/admin/payout-account/tabs/PaymentStatus.vue.d.ts +4 -4
- package/dist/views/admin/payout-account/tabs/Settlement.vue.d.ts +4 -4
- package/dist/views/admin/payout-account/tabs/gateway/FiuuGateway.vue.d.ts +56 -0
- package/dist/views/admin/payout-account/tabs/gateway/GhlGateway.vue.d.ts +50 -0
- package/dist/views/admin/payout-account/tabs/gateway/RevenueMonsterGateway.vue.d.ts +52 -0
- package/dist/views/admin/settlement/SettlementTable.vue.d.ts +12 -12
- package/dist/views/admin/settlement/cell/Actions.vue.d.ts +4 -6
- package/dist/views/admin/settlement/cell/Gateway.vue.d.ts +3 -5
- package/dist/views/admin/settlement/cell/Method.vue.d.ts +3 -5
- package/dist/views/admin/settlement/cell/Status.vue.d.ts +3 -5
- package/dist/views/admin/terminal/TerminalBindCodeDialog.vue.d.ts +1 -1
- package/dist/views/admin/terminal/TerminalDialog.vue.d.ts +83 -0
- package/dist/views/admin/terminal/TerminalSetting.vue.d.ts +12 -0
- package/dist/views/admin/terminal/cell/Actions.vue.d.ts +13 -14
- package/dist/views/admin/terminal/cell/ID.vue.d.ts +3 -5
- package/dist/views/admin/terminal/tabs/FiuuGateway.vue.d.ts +94 -0
- package/dist/views/admin/terminal/tabs/GhlGateway.vue.d.ts +94 -0
- package/dist/views/admin/terminal/tabs/Information.vue.d.ts +85 -0
- package/dist/views/admin/terminal/tabs/TerminalGateway.vue.d.ts +94 -0
- package/dist/views/admin/terminal-transaction/cell/Actions.vue.d.ts +6 -0
- package/dist/views/admin/terminal-transaction/cell/Gateway.vue.d.ts +3 -5
- package/dist/views/admin/terminal-transaction/cell/Status.vue.d.ts +3 -5
- package/dist/views/admin/terminal-transaction/cell/Timestamp.vue.d.ts +7 -0
- package/dist/views/admin/transaction/TransactionTable.vue.d.ts +6 -2
- package/dist/views/admin/transaction/cell/Actions.vue.d.ts +6 -0
- package/dist/views/admin/transaction/cell/Gateway.vue.d.ts +3 -5
- package/dist/views/admin/transaction/cell/Method.vue.d.ts +3 -5
- package/dist/views/admin/transaction/cell/Status.vue.d.ts +3 -5
- package/dist/views/payout-account/PayoutAccountTable.vue.d.ts +8 -8
- package/dist/views/payout-account/cell/Bank.vue.d.ts +3 -5
- package/dist/views/payout-account/cell/IsActive.vue.d.ts +3 -5
- package/dist/views/payout-account/cell/PersonInCharge.vue.d.ts +3 -5
- package/dist/views/payout-account/cell/Status.vue.d.ts +3 -5
- package/dist/views/settlement/SettlementTable.vue.d.ts +12 -12
- package/dist/views/settlement/cell/Actions.vue.d.ts +4 -6
- package/dist/views/settlement/cell/Gateway.vue.d.ts +3 -5
- package/dist/views/settlement/cell/Method.vue.d.ts +3 -5
- package/dist/views/settlement/cell/Status.vue.d.ts +3 -5
- package/dist/views/terminal-transaction/TerminalTransaction.vue.d.ts +2 -0
- package/dist/views/terminal-transaction/cell/Gateway.vue.d.ts +7 -0
- package/dist/views/terminal-transaction/cell/Status.vue.d.ts +7 -0
- package/dist/views/transaction/cell/Gateway.vue.d.ts +3 -5
- package/dist/views/transaction/cell/Method.vue.d.ts +3 -5
- package/dist/views/transaction/cell/Status.vue.d.ts +3 -5
- package/package.json +5 -5
- package/dist/AdminLayout.vue_vue_type_script_setup_true_lang-oPYFBeEo.js +0 -42
- package/dist/PDFViewer-CjH_C1uT.js +0 -21792
- package/dist/PayoutAccount-xxSxqBTL.js +0 -3485
- package/dist/PayoutAccountSetting-CIeos0md.js +0 -425
- package/dist/Settlement-BVGACeme.js +0 -136
- package/dist/Settlement-Ce48KHrc.js +0 -132
- package/dist/Terminal-ByKV2Rof.js +0 -204
- package/dist/TerminalTransaction-RuSxBAxf.js +0 -240
- package/dist/Transaction-CYo-uLQi.js +0 -241
- package/dist/Transaction-Cjw9WwX8.js +0 -242
- package/dist/api/auth/index.d.ts +0 -7
- package/dist/assets-BuLGUMIx.js +0 -472
- package/dist/index-Coz5aeIO.js +0 -61
- package/dist/index-DCPNrUDq.js +0 -40075
- package/dist/index.vue_vue_type_script_setup_true_lang-CAR-bNaR.js +0 -150
- package/dist/mascot-side-3VXskf9y.js +0 -4
- package/dist/payout-account-iAM7HPtG.js +0 -3317
- package/dist/transaction-vRrBf3FN.js +0 -64
@@ -0,0 +1,83 @@
|
|
1
|
+
import { type PropType } from 'vue';
|
2
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
3
|
+
terminal: {
|
4
|
+
type: PropType<{
|
5
|
+
name?: string | null | undefined;
|
6
|
+
deviceId?: string | null | undefined;
|
7
|
+
bindCode?: string | null | undefined;
|
8
|
+
secretKey?: string | null | undefined;
|
9
|
+
token?: string | null | undefined;
|
10
|
+
gateways?: ({
|
11
|
+
config?: {
|
12
|
+
packageId: "cc.feedme.payment.rms" | "cc.feedme.payment.fiuu_my" | "cc.feedme.payment.fiuu_sg";
|
13
|
+
uniqueId: string;
|
14
|
+
} | null | undefined;
|
15
|
+
gateway: "Fiuu";
|
16
|
+
} | {
|
17
|
+
config?: any;
|
18
|
+
gateway: "ScanPay";
|
19
|
+
})[] | null | undefined;
|
20
|
+
ecrs?: ({
|
21
|
+
config?: {
|
22
|
+
terminalId: string;
|
23
|
+
} | null | undefined;
|
24
|
+
gateway: "FeedMe";
|
25
|
+
} | {
|
26
|
+
config?: {
|
27
|
+
merchantId: string;
|
28
|
+
terminalId: string;
|
29
|
+
privateKey: string;
|
30
|
+
} | null | undefined;
|
31
|
+
gateway: "Ghl";
|
32
|
+
})[] | null | undefined;
|
33
|
+
status: "Active" | "Inactive";
|
34
|
+
_id: string;
|
35
|
+
createdAt: string;
|
36
|
+
updatedAt: string;
|
37
|
+
referenceId: string;
|
38
|
+
securityCode: string;
|
39
|
+
deviceType: "KIOSK" | "TERMINAL" | "POS";
|
40
|
+
}>;
|
41
|
+
};
|
42
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
43
|
+
terminal: {
|
44
|
+
type: PropType<{
|
45
|
+
name?: string | null | undefined;
|
46
|
+
deviceId?: string | null | undefined;
|
47
|
+
bindCode?: string | null | undefined;
|
48
|
+
secretKey?: string | null | undefined;
|
49
|
+
token?: string | null | undefined;
|
50
|
+
gateways?: ({
|
51
|
+
config?: {
|
52
|
+
packageId: "cc.feedme.payment.rms" | "cc.feedme.payment.fiuu_my" | "cc.feedme.payment.fiuu_sg";
|
53
|
+
uniqueId: string;
|
54
|
+
} | null | undefined;
|
55
|
+
gateway: "Fiuu";
|
56
|
+
} | {
|
57
|
+
config?: any;
|
58
|
+
gateway: "ScanPay";
|
59
|
+
})[] | null | undefined;
|
60
|
+
ecrs?: ({
|
61
|
+
config?: {
|
62
|
+
terminalId: string;
|
63
|
+
} | null | undefined;
|
64
|
+
gateway: "FeedMe";
|
65
|
+
} | {
|
66
|
+
config?: {
|
67
|
+
merchantId: string;
|
68
|
+
terminalId: string;
|
69
|
+
privateKey: string;
|
70
|
+
} | null | undefined;
|
71
|
+
gateway: "Ghl";
|
72
|
+
})[] | null | undefined;
|
73
|
+
status: "Active" | "Inactive";
|
74
|
+
_id: string;
|
75
|
+
createdAt: string;
|
76
|
+
updatedAt: string;
|
77
|
+
referenceId: string;
|
78
|
+
securityCode: string;
|
79
|
+
deviceType: "KIOSK" | "TERMINAL" | "POS";
|
80
|
+
}>;
|
81
|
+
};
|
82
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
83
|
+
export default _default;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
2
|
+
terminalId: {
|
3
|
+
type: StringConstructor;
|
4
|
+
required: true;
|
5
|
+
};
|
6
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
7
|
+
terminalId: {
|
8
|
+
type: StringConstructor;
|
9
|
+
required: true;
|
10
|
+
};
|
11
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
12
|
+
export default _default;
|
@@ -1,15 +1,14 @@
|
|
1
|
-
import {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
link: (
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
1
|
+
import type { FdoTerminal } from '@feedmepos/payment-entity';
|
2
|
+
type __VLS_Props = {
|
3
|
+
data: FdoTerminal;
|
4
|
+
};
|
5
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
6
|
+
link: () => any;
|
7
|
+
unlink: () => any;
|
8
|
+
edit: () => any;
|
9
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
10
|
+
onLink?: (() => any) | undefined;
|
11
|
+
onUnlink?: (() => any) | undefined;
|
12
|
+
onEdit?: (() => any) | undefined;
|
13
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
15
14
|
export default _default;
|
@@ -1,9 +1,7 @@
|
|
1
1
|
import { type Row } from '@feedmepos/ui-library';
|
2
|
-
|
2
|
+
type __VLS_Props = {
|
3
3
|
row: Row<any>;
|
4
4
|
data: unknown;
|
5
|
-
}
|
6
|
-
|
7
|
-
data: unknown;
|
8
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
5
|
+
};
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
9
7
|
export default _default;
|
@@ -0,0 +1,94 @@
|
|
1
|
+
import { type FdoTerminal } from '@feedmepos/payment-entity';
|
2
|
+
import { type PropType } from 'vue';
|
3
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
4
|
+
terminal: {
|
5
|
+
type: PropType<{
|
6
|
+
name?: string | null | undefined;
|
7
|
+
deviceId?: string | null | undefined;
|
8
|
+
bindCode?: string | null | undefined;
|
9
|
+
secretKey?: string | null | undefined;
|
10
|
+
token?: string | null | undefined;
|
11
|
+
gateways?: ({
|
12
|
+
config?: {
|
13
|
+
packageId: "cc.feedme.payment.rms" | "cc.feedme.payment.fiuu_my" | "cc.feedme.payment.fiuu_sg";
|
14
|
+
uniqueId: string;
|
15
|
+
} | null | undefined;
|
16
|
+
gateway: "Fiuu";
|
17
|
+
} | {
|
18
|
+
config?: any;
|
19
|
+
gateway: "ScanPay";
|
20
|
+
})[] | null | undefined;
|
21
|
+
ecrs?: ({
|
22
|
+
config?: {
|
23
|
+
terminalId: string;
|
24
|
+
} | null | undefined;
|
25
|
+
gateway: "FeedMe";
|
26
|
+
} | {
|
27
|
+
config?: {
|
28
|
+
merchantId: string;
|
29
|
+
terminalId: string;
|
30
|
+
privateKey: string;
|
31
|
+
} | null | undefined;
|
32
|
+
gateway: "Ghl";
|
33
|
+
})[] | null | undefined;
|
34
|
+
status: "Active" | "Inactive";
|
35
|
+
_id: string;
|
36
|
+
createdAt: string;
|
37
|
+
updatedAt: string;
|
38
|
+
referenceId: string;
|
39
|
+
securityCode: string;
|
40
|
+
deviceType: "KIOSK" | "TERMINAL" | "POS";
|
41
|
+
}>;
|
42
|
+
required: true;
|
43
|
+
};
|
44
|
+
onUpdate: {
|
45
|
+
type: PropType<(account: FdoTerminal) => Promise<void>>;
|
46
|
+
required: true;
|
47
|
+
};
|
48
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
49
|
+
terminal: {
|
50
|
+
type: PropType<{
|
51
|
+
name?: string | null | undefined;
|
52
|
+
deviceId?: string | null | undefined;
|
53
|
+
bindCode?: string | null | undefined;
|
54
|
+
secretKey?: string | null | undefined;
|
55
|
+
token?: string | null | undefined;
|
56
|
+
gateways?: ({
|
57
|
+
config?: {
|
58
|
+
packageId: "cc.feedme.payment.rms" | "cc.feedme.payment.fiuu_my" | "cc.feedme.payment.fiuu_sg";
|
59
|
+
uniqueId: string;
|
60
|
+
} | null | undefined;
|
61
|
+
gateway: "Fiuu";
|
62
|
+
} | {
|
63
|
+
config?: any;
|
64
|
+
gateway: "ScanPay";
|
65
|
+
})[] | null | undefined;
|
66
|
+
ecrs?: ({
|
67
|
+
config?: {
|
68
|
+
terminalId: string;
|
69
|
+
} | null | undefined;
|
70
|
+
gateway: "FeedMe";
|
71
|
+
} | {
|
72
|
+
config?: {
|
73
|
+
merchantId: string;
|
74
|
+
terminalId: string;
|
75
|
+
privateKey: string;
|
76
|
+
} | null | undefined;
|
77
|
+
gateway: "Ghl";
|
78
|
+
})[] | null | undefined;
|
79
|
+
status: "Active" | "Inactive";
|
80
|
+
_id: string;
|
81
|
+
createdAt: string;
|
82
|
+
updatedAt: string;
|
83
|
+
referenceId: string;
|
84
|
+
securityCode: string;
|
85
|
+
deviceType: "KIOSK" | "TERMINAL" | "POS";
|
86
|
+
}>;
|
87
|
+
required: true;
|
88
|
+
};
|
89
|
+
onUpdate: {
|
90
|
+
type: PropType<(account: FdoTerminal) => Promise<void>>;
|
91
|
+
required: true;
|
92
|
+
};
|
93
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
94
|
+
export default _default;
|
@@ -0,0 +1,94 @@
|
|
1
|
+
import { type FdoTerminal } from '@feedmepos/payment-entity';
|
2
|
+
import { type PropType } from 'vue';
|
3
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
4
|
+
terminal: {
|
5
|
+
type: PropType<{
|
6
|
+
name?: string | null | undefined;
|
7
|
+
deviceId?: string | null | undefined;
|
8
|
+
bindCode?: string | null | undefined;
|
9
|
+
secretKey?: string | null | undefined;
|
10
|
+
token?: string | null | undefined;
|
11
|
+
gateways?: ({
|
12
|
+
config?: {
|
13
|
+
packageId: "cc.feedme.payment.rms" | "cc.feedme.payment.fiuu_my" | "cc.feedme.payment.fiuu_sg";
|
14
|
+
uniqueId: string;
|
15
|
+
} | null | undefined;
|
16
|
+
gateway: "Fiuu";
|
17
|
+
} | {
|
18
|
+
config?: any;
|
19
|
+
gateway: "ScanPay";
|
20
|
+
})[] | null | undefined;
|
21
|
+
ecrs?: ({
|
22
|
+
config?: {
|
23
|
+
terminalId: string;
|
24
|
+
} | null | undefined;
|
25
|
+
gateway: "FeedMe";
|
26
|
+
} | {
|
27
|
+
config?: {
|
28
|
+
merchantId: string;
|
29
|
+
terminalId: string;
|
30
|
+
privateKey: string;
|
31
|
+
} | null | undefined;
|
32
|
+
gateway: "Ghl";
|
33
|
+
})[] | null | undefined;
|
34
|
+
status: "Active" | "Inactive";
|
35
|
+
_id: string;
|
36
|
+
createdAt: string;
|
37
|
+
updatedAt: string;
|
38
|
+
referenceId: string;
|
39
|
+
securityCode: string;
|
40
|
+
deviceType: "KIOSK" | "TERMINAL" | "POS";
|
41
|
+
}>;
|
42
|
+
required: true;
|
43
|
+
};
|
44
|
+
onUpdate: {
|
45
|
+
type: PropType<(account: FdoTerminal) => Promise<void>>;
|
46
|
+
required: true;
|
47
|
+
};
|
48
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
49
|
+
terminal: {
|
50
|
+
type: PropType<{
|
51
|
+
name?: string | null | undefined;
|
52
|
+
deviceId?: string | null | undefined;
|
53
|
+
bindCode?: string | null | undefined;
|
54
|
+
secretKey?: string | null | undefined;
|
55
|
+
token?: string | null | undefined;
|
56
|
+
gateways?: ({
|
57
|
+
config?: {
|
58
|
+
packageId: "cc.feedme.payment.rms" | "cc.feedme.payment.fiuu_my" | "cc.feedme.payment.fiuu_sg";
|
59
|
+
uniqueId: string;
|
60
|
+
} | null | undefined;
|
61
|
+
gateway: "Fiuu";
|
62
|
+
} | {
|
63
|
+
config?: any;
|
64
|
+
gateway: "ScanPay";
|
65
|
+
})[] | null | undefined;
|
66
|
+
ecrs?: ({
|
67
|
+
config?: {
|
68
|
+
terminalId: string;
|
69
|
+
} | null | undefined;
|
70
|
+
gateway: "FeedMe";
|
71
|
+
} | {
|
72
|
+
config?: {
|
73
|
+
merchantId: string;
|
74
|
+
terminalId: string;
|
75
|
+
privateKey: string;
|
76
|
+
} | null | undefined;
|
77
|
+
gateway: "Ghl";
|
78
|
+
})[] | null | undefined;
|
79
|
+
status: "Active" | "Inactive";
|
80
|
+
_id: string;
|
81
|
+
createdAt: string;
|
82
|
+
updatedAt: string;
|
83
|
+
referenceId: string;
|
84
|
+
securityCode: string;
|
85
|
+
deviceType: "KIOSK" | "TERMINAL" | "POS";
|
86
|
+
}>;
|
87
|
+
required: true;
|
88
|
+
};
|
89
|
+
onUpdate: {
|
90
|
+
type: PropType<(account: FdoTerminal) => Promise<void>>;
|
91
|
+
required: true;
|
92
|
+
};
|
93
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
94
|
+
export default _default;
|
@@ -0,0 +1,85 @@
|
|
1
|
+
import type { PropType } from 'vue';
|
2
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
3
|
+
terminal: {
|
4
|
+
type: PropType<{
|
5
|
+
name?: string | null | undefined;
|
6
|
+
deviceId?: string | null | undefined;
|
7
|
+
bindCode?: string | null | undefined;
|
8
|
+
secretKey?: string | null | undefined;
|
9
|
+
token?: string | null | undefined;
|
10
|
+
gateways?: ({
|
11
|
+
config?: {
|
12
|
+
packageId: "cc.feedme.payment.rms" | "cc.feedme.payment.fiuu_my" | "cc.feedme.payment.fiuu_sg";
|
13
|
+
uniqueId: string;
|
14
|
+
} | null | undefined;
|
15
|
+
gateway: "Fiuu";
|
16
|
+
} | {
|
17
|
+
config?: any;
|
18
|
+
gateway: "ScanPay";
|
19
|
+
})[] | null | undefined;
|
20
|
+
ecrs?: ({
|
21
|
+
config?: {
|
22
|
+
terminalId: string;
|
23
|
+
} | null | undefined;
|
24
|
+
gateway: "FeedMe";
|
25
|
+
} | {
|
26
|
+
config?: {
|
27
|
+
merchantId: string;
|
28
|
+
terminalId: string;
|
29
|
+
privateKey: string;
|
30
|
+
} | null | undefined;
|
31
|
+
gateway: "Ghl";
|
32
|
+
})[] | null | undefined;
|
33
|
+
status: "Active" | "Inactive";
|
34
|
+
_id: string;
|
35
|
+
createdAt: string;
|
36
|
+
updatedAt: string;
|
37
|
+
referenceId: string;
|
38
|
+
securityCode: string;
|
39
|
+
deviceType: "KIOSK" | "TERMINAL" | "POS";
|
40
|
+
}>;
|
41
|
+
required: true;
|
42
|
+
};
|
43
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
44
|
+
terminal: {
|
45
|
+
type: PropType<{
|
46
|
+
name?: string | null | undefined;
|
47
|
+
deviceId?: string | null | undefined;
|
48
|
+
bindCode?: string | null | undefined;
|
49
|
+
secretKey?: string | null | undefined;
|
50
|
+
token?: string | null | undefined;
|
51
|
+
gateways?: ({
|
52
|
+
config?: {
|
53
|
+
packageId: "cc.feedme.payment.rms" | "cc.feedme.payment.fiuu_my" | "cc.feedme.payment.fiuu_sg";
|
54
|
+
uniqueId: string;
|
55
|
+
} | null | undefined;
|
56
|
+
gateway: "Fiuu";
|
57
|
+
} | {
|
58
|
+
config?: any;
|
59
|
+
gateway: "ScanPay";
|
60
|
+
})[] | null | undefined;
|
61
|
+
ecrs?: ({
|
62
|
+
config?: {
|
63
|
+
terminalId: string;
|
64
|
+
} | null | undefined;
|
65
|
+
gateway: "FeedMe";
|
66
|
+
} | {
|
67
|
+
config?: {
|
68
|
+
merchantId: string;
|
69
|
+
terminalId: string;
|
70
|
+
privateKey: string;
|
71
|
+
} | null | undefined;
|
72
|
+
gateway: "Ghl";
|
73
|
+
})[] | null | undefined;
|
74
|
+
status: "Active" | "Inactive";
|
75
|
+
_id: string;
|
76
|
+
createdAt: string;
|
77
|
+
updatedAt: string;
|
78
|
+
referenceId: string;
|
79
|
+
securityCode: string;
|
80
|
+
deviceType: "KIOSK" | "TERMINAL" | "POS";
|
81
|
+
}>;
|
82
|
+
required: true;
|
83
|
+
};
|
84
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
85
|
+
export default _default;
|
@@ -0,0 +1,94 @@
|
|
1
|
+
import { type FdoTerminal } from '@feedmepos/payment-entity';
|
2
|
+
import { type PropType } from 'vue';
|
3
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
4
|
+
terminal: {
|
5
|
+
type: PropType<{
|
6
|
+
name?: string | null | undefined;
|
7
|
+
deviceId?: string | null | undefined;
|
8
|
+
bindCode?: string | null | undefined;
|
9
|
+
secretKey?: string | null | undefined;
|
10
|
+
token?: string | null | undefined;
|
11
|
+
gateways?: ({
|
12
|
+
config?: {
|
13
|
+
packageId: "cc.feedme.payment.rms" | "cc.feedme.payment.fiuu_my" | "cc.feedme.payment.fiuu_sg";
|
14
|
+
uniqueId: string;
|
15
|
+
} | null | undefined;
|
16
|
+
gateway: "Fiuu";
|
17
|
+
} | {
|
18
|
+
config?: any;
|
19
|
+
gateway: "ScanPay";
|
20
|
+
})[] | null | undefined;
|
21
|
+
ecrs?: ({
|
22
|
+
config?: {
|
23
|
+
terminalId: string;
|
24
|
+
} | null | undefined;
|
25
|
+
gateway: "FeedMe";
|
26
|
+
} | {
|
27
|
+
config?: {
|
28
|
+
merchantId: string;
|
29
|
+
terminalId: string;
|
30
|
+
privateKey: string;
|
31
|
+
} | null | undefined;
|
32
|
+
gateway: "Ghl";
|
33
|
+
})[] | null | undefined;
|
34
|
+
status: "Active" | "Inactive";
|
35
|
+
_id: string;
|
36
|
+
createdAt: string;
|
37
|
+
updatedAt: string;
|
38
|
+
referenceId: string;
|
39
|
+
securityCode: string;
|
40
|
+
deviceType: "KIOSK" | "TERMINAL" | "POS";
|
41
|
+
}>;
|
42
|
+
required: true;
|
43
|
+
};
|
44
|
+
onUpdate: {
|
45
|
+
type: PropType<(account: FdoTerminal) => Promise<void>>;
|
46
|
+
required: true;
|
47
|
+
};
|
48
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
49
|
+
terminal: {
|
50
|
+
type: PropType<{
|
51
|
+
name?: string | null | undefined;
|
52
|
+
deviceId?: string | null | undefined;
|
53
|
+
bindCode?: string | null | undefined;
|
54
|
+
secretKey?: string | null | undefined;
|
55
|
+
token?: string | null | undefined;
|
56
|
+
gateways?: ({
|
57
|
+
config?: {
|
58
|
+
packageId: "cc.feedme.payment.rms" | "cc.feedme.payment.fiuu_my" | "cc.feedme.payment.fiuu_sg";
|
59
|
+
uniqueId: string;
|
60
|
+
} | null | undefined;
|
61
|
+
gateway: "Fiuu";
|
62
|
+
} | {
|
63
|
+
config?: any;
|
64
|
+
gateway: "ScanPay";
|
65
|
+
})[] | null | undefined;
|
66
|
+
ecrs?: ({
|
67
|
+
config?: {
|
68
|
+
terminalId: string;
|
69
|
+
} | null | undefined;
|
70
|
+
gateway: "FeedMe";
|
71
|
+
} | {
|
72
|
+
config?: {
|
73
|
+
merchantId: string;
|
74
|
+
terminalId: string;
|
75
|
+
privateKey: string;
|
76
|
+
} | null | undefined;
|
77
|
+
gateway: "Ghl";
|
78
|
+
})[] | null | undefined;
|
79
|
+
status: "Active" | "Inactive";
|
80
|
+
_id: string;
|
81
|
+
createdAt: string;
|
82
|
+
updatedAt: string;
|
83
|
+
referenceId: string;
|
84
|
+
securityCode: string;
|
85
|
+
deviceType: "KIOSK" | "TERMINAL" | "POS";
|
86
|
+
}>;
|
87
|
+
required: true;
|
88
|
+
};
|
89
|
+
onUpdate: {
|
90
|
+
type: PropType<(account: FdoTerminal) => Promise<void>>;
|
91
|
+
required: true;
|
92
|
+
};
|
93
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
94
|
+
export default _default;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
export type emitAction = "query" | "refund";
|
2
|
+
type __VLS_Props = {
|
3
|
+
onAction: (event: emitAction) => void;
|
4
|
+
};
|
5
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
6
|
+
export default _default;
|
@@ -1,9 +1,7 @@
|
|
1
1
|
import { type Row } from '@feedmepos/ui-library';
|
2
|
-
|
2
|
+
type __VLS_Props = {
|
3
3
|
row: Row<any>;
|
4
4
|
data: unknown;
|
5
|
-
}
|
6
|
-
|
7
|
-
data: unknown;
|
8
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
5
|
+
};
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
9
7
|
export default _default;
|
@@ -1,9 +1,7 @@
|
|
1
1
|
import { type Row } from '@feedmepos/ui-library';
|
2
|
-
|
2
|
+
type __VLS_Props = {
|
3
3
|
row: Row<any>;
|
4
4
|
data: unknown;
|
5
|
-
}
|
6
|
-
|
7
|
-
data: unknown;
|
8
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
5
|
+
};
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
9
7
|
export default _default;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
type __VLS_Props = {
|
2
|
+
createdAt: string;
|
3
|
+
transactionAt: string;
|
4
|
+
refundedAt: string;
|
5
|
+
};
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
7
|
+
export default _default;
|
@@ -10,7 +10,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
10
10
|
required: true;
|
11
11
|
};
|
12
12
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
13
|
-
|
13
|
+
query: (index: number) => any;
|
14
|
+
refund: (index: number) => any;
|
15
|
+
notify: (index: number) => any;
|
14
16
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
15
17
|
data: {
|
16
18
|
type: PropType<PortalPaymentTransaction[]>;
|
@@ -21,6 +23,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
21
23
|
required: true;
|
22
24
|
};
|
23
25
|
}>> & Readonly<{
|
24
|
-
|
26
|
+
onQuery?: ((index: number) => any) | undefined;
|
27
|
+
onRefund?: ((index: number) => any) | undefined;
|
28
|
+
onNotify?: ((index: number) => any) | undefined;
|
25
29
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
26
30
|
export default _default;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
export type emitAction = "query" | "refund" | "notify";
|
2
|
+
type __VLS_Props = {
|
3
|
+
onAction: (event: emitAction) => void;
|
4
|
+
};
|
5
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
6
|
+
export default _default;
|
@@ -1,9 +1,7 @@
|
|
1
1
|
import { type Row } from '@feedmepos/ui-library';
|
2
|
-
|
2
|
+
type __VLS_Props = {
|
3
3
|
row: Row<any>;
|
4
4
|
data: unknown;
|
5
|
-
}
|
6
|
-
|
7
|
-
data: unknown;
|
8
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
5
|
+
};
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLImageElement>;
|
9
7
|
export default _default;
|
@@ -1,9 +1,7 @@
|
|
1
1
|
import { type Row } from '@feedmepos/ui-library';
|
2
|
-
|
2
|
+
type __VLS_Props = {
|
3
3
|
row: Row<any>;
|
4
4
|
data: unknown;
|
5
|
-
}
|
6
|
-
|
7
|
-
data: unknown;
|
8
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
5
|
+
};
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLImageElement>;
|
9
7
|
export default _default;
|
@@ -1,9 +1,7 @@
|
|
1
1
|
import { type Row } from '@feedmepos/ui-library';
|
2
|
-
|
2
|
+
type __VLS_Props = {
|
3
3
|
row: Row<any>;
|
4
4
|
data: unknown;
|
5
|
-
}
|
6
|
-
|
7
|
-
data: unknown;
|
8
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
5
|
+
};
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
9
7
|
export default _default;
|