@feedmepos/mf-payment 0.0.0-beta.11 → 0.0.0-beta.13
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AsyncButton.vue_vue_type_script_setup_true_lang-DcjzvYwT.js +42 -0
- package/dist/Modal-DB8M9o1T.js +13 -0
- package/dist/{PayoutAccount-uqw305f2.js → PayoutAccount-CIKS18wv.js} +37 -34
- package/dist/{PayoutAccount-h58IN5jz.js → PayoutAccount-Daxv1Djz.js} +288 -3160
- package/dist/{PayoutAccountSetting-CIeos0md.js → PayoutAccountSetting-CnjAKH1q.js} +3 -3
- package/dist/Settlement-C7X_gzIk.js +142 -0
- package/dist/Settlement-DxQ9WNy-.js +146 -0
- package/dist/{SettlementTransactions-Bqw7WbtT.js → SettlementTransactions-Bne5lD30.js} +4 -4
- package/dist/{SettlementTransactions-De_DYXFh.js → SettlementTransactions-RqT0OWUX.js} +100 -107
- package/dist/Terminal-CddS-zgz.js +318 -0
- package/dist/TerminalSetting-B2aM1gW-.js +176 -0
- package/dist/{TerminalTransaction-D_lILlqx.js → TerminalTransaction-XrqXeZZH.js} +18 -18
- package/dist/{Transaction-CiFh9jYU.js → Transaction-B16xeZ39.js} +80 -74
- package/dist/Transaction-CpOhK6md.js +249 -0
- package/dist/api/index.d.ts +7 -0
- package/dist/api/settlement/index.d.ts +7 -13
- package/dist/api/terminal/index.d.ts +8 -1
- package/dist/api/transaction/index.d.ts +6 -2
- package/dist/app.js +68 -62
- package/dist/{assets-DZoIWoOi.js → assets-nIQ0r4oP.js} +49 -49
- package/dist/components/AsyncButton.vue.d.ts +21 -0
- package/dist/components/CursorTable/index.vue.d.ts +16 -5
- package/dist/{index-Bmka-1lQ.js → index-CIIojtd5.js} +1 -1
- package/dist/index-CxYMbN69.js +37 -0
- package/dist/index-DflgpHga.js +55560 -0
- package/dist/{index-Coz5aeIO.js → index-DhPhiNvt.js} +13 -23
- package/dist/{index-CF56zGyu.js → index-DqQBDo_Y.js} +1 -1
- package/dist/index.vue_vue_type_script_setup_true_lang-CcY9Uu6G.js +155 -0
- package/dist/package.json +3 -3
- package/dist/{payout-account-D_lGAP8q.js → payout-account-C4iFFgWi.js} +262 -262
- package/dist/{transaction-vRrBf3FN.js → transaction-B4rEbejx.js} +28 -15
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/validator-D5jtpt9A.js +2877 -0
- package/dist/views/admin/terminal/TerminalDialog.vue.d.ts +61 -0
- package/dist/views/admin/terminal/TerminalSetting.vue.d.ts +12 -0
- package/dist/views/admin/terminal/cell/Actions.vue.d.ts +58 -9
- package/dist/views/admin/terminal/tabs/Fiuu.vue.d.ts +72 -0
- package/dist/views/admin/terminal/tabs/Information.vue.d.ts +63 -0
- package/package.json +3 -3
- package/dist/Settlement-BVGACeme.js +0 -136
- package/dist/Settlement-Ce48KHrc.js +0 -132
- package/dist/Terminal-ByKV2Rof.js +0 -204
- package/dist/Transaction-DWJ4TWTQ.js +0 -242
- package/dist/index-DCPNrUDq.js +0 -40075
- package/dist/index.vue_vue_type_script_setup_true_lang-CAR-bNaR.js +0 -150
@@ -0,0 +1,21 @@
|
|
1
|
+
import { type FmButtonProps } from '@feedmepos/ui-library';
|
2
|
+
import type { PropType } from 'vue';
|
3
|
+
type AsyncFunction = () => Promise<void>;
|
4
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
5
|
+
button: {
|
6
|
+
type: PropType<FmButtonProps>;
|
7
|
+
};
|
8
|
+
handler: {
|
9
|
+
type: PropType<AsyncFunction>;
|
10
|
+
required: true;
|
11
|
+
};
|
12
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
13
|
+
button: {
|
14
|
+
type: PropType<FmButtonProps>;
|
15
|
+
};
|
16
|
+
handler: {
|
17
|
+
type: PropType<AsyncFunction>;
|
18
|
+
required: true;
|
19
|
+
};
|
20
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
21
|
+
export default _default;
|
@@ -1,7 +1,18 @@
|
|
1
1
|
import { type PaginatedResult } from '@feedmepos/payment-entity';
|
2
2
|
import { type ColumnDef } from '@feedmepos/ui-library';
|
3
|
-
export type CursorTableController = {
|
4
|
-
|
3
|
+
export type CursorTableController<T> = {
|
4
|
+
/**
|
5
|
+
* Reset pagination and all loaded data, and perform load for first page data
|
6
|
+
*/
|
7
|
+
reset: () => {};
|
8
|
+
/**
|
9
|
+
* All loaded data
|
10
|
+
*/
|
11
|
+
data: () => T[];
|
12
|
+
/**
|
13
|
+
* Current page of the data
|
14
|
+
*/
|
15
|
+
pageData: () => T[];
|
5
16
|
};
|
6
17
|
declare const _default: <T extends unknown, R extends unknown>(__VLS_props: {
|
7
18
|
readonly "onRow-click"?: ((data: T) => any) | undefined;
|
@@ -12,14 +23,14 @@ declare const _default: <T extends unknown, R extends unknown>(__VLS_props: {
|
|
12
23
|
attrs: any;
|
13
24
|
slots: {};
|
14
25
|
emit: (event: 'row-click', data: T) => any;
|
15
|
-
} | undefined, __VLS_expose?: ((exposed: import("vue").ShallowUnwrapRef<CursorTableController
|
26
|
+
} | undefined, __VLS_expose?: ((exposed: import("vue").ShallowUnwrapRef<CursorTableController<T>>) => void) | undefined, __VLS_setup?: Promise<{
|
16
27
|
props: {
|
17
28
|
readonly "onRow-click"?: ((data: T) => any) | undefined;
|
18
29
|
readonly columnDefs: ColumnDef<R>[];
|
19
30
|
readonly rowsDefs: (a: T) => R;
|
20
31
|
readonly paginate: (limit: number, cursor: string) => Promise<PaginatedResult<T>>;
|
21
32
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
22
|
-
expose(exposed: import("vue").ShallowUnwrapRef<CursorTableController
|
33
|
+
expose(exposed: import("vue").ShallowUnwrapRef<CursorTableController<T>>): void;
|
23
34
|
attrs: any;
|
24
35
|
slots: {};
|
25
36
|
emit: (event: 'row-click', data: T) => any;
|
@@ -33,7 +44,7 @@ declare const _default: <T extends unknown, R extends unknown>(__VLS_props: {
|
|
33
44
|
readonly rowsDefs: (a: T) => R;
|
34
45
|
readonly paginate: (limit: number, cursor: string) => Promise<PaginatedResult<T>>;
|
35
46
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
36
|
-
expose(exposed: import("vue").ShallowUnwrapRef<CursorTableController
|
47
|
+
expose(exposed: import("vue").ShallowUnwrapRef<CursorTableController<T>>): void;
|
37
48
|
attrs: any;
|
38
49
|
slots: {};
|
39
50
|
emit: (event: 'row-click', data: T) => any;
|
@@ -0,0 +1,37 @@
|
|
1
|
+
import { g as s, b as t, a as e } from "./index-DflgpHga.js";
|
2
|
+
const i = {
|
3
|
+
async create(a) {
|
4
|
+
return s(
|
5
|
+
await t().post("/payments/terminals", a)
|
6
|
+
);
|
7
|
+
},
|
8
|
+
async read(a) {
|
9
|
+
return s(
|
10
|
+
await t().get("/payments/terminals", {
|
11
|
+
params: { ...a }
|
12
|
+
})
|
13
|
+
);
|
14
|
+
},
|
15
|
+
async readById(a) {
|
16
|
+
return e(await t().get(`/payments/terminals/${a}`));
|
17
|
+
},
|
18
|
+
async updateById(a, n) {
|
19
|
+
return e(
|
20
|
+
await t().put(`/payments/terminals/${a}`, n)
|
21
|
+
);
|
22
|
+
},
|
23
|
+
async getBindCode(a) {
|
24
|
+
const { code: n } = e(
|
25
|
+
await t().get(`/payments/terminals/${a}/code`)
|
26
|
+
);
|
27
|
+
return n;
|
28
|
+
},
|
29
|
+
async unbind(a) {
|
30
|
+
return e(
|
31
|
+
await t().delete(`/payments/terminals/${a}`)
|
32
|
+
);
|
33
|
+
}
|
34
|
+
};
|
35
|
+
export {
|
36
|
+
i as t
|
37
|
+
};
|