@feedmepos/mf-payment 1.0.0-beta.9 → 1.0.1-beta.1

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.
Files changed (43) hide show
  1. package/dist/{AutoCopyCell.vue_vue_type_script_setup_true_lang-GXPXBEf5.js → AutoCopyCell.vue_vue_type_script_setup_true_lang-CdmfrBoW.js} +8 -9
  2. package/dist/{PayoutAccount-_d3TfUSc.js → PayoutAccount-CyVXI1Sx.js} +5 -5
  3. package/dist/{PayoutAccount-DgN3EHTj.js → PayoutAccount-DGUnImHC.js} +4 -4
  4. package/dist/{PayoutAccountSetting-CmgVLhdp.js → PayoutAccountSetting-BbtOFbsd.js} +161 -183
  5. package/dist/Restaurant-ewsvVw3P.js +262 -0
  6. package/dist/RestaurantSetting-BboKM1iG.js +389 -0
  7. package/dist/{Settlement-B1-WmCwC.js → Settlement-DsJlFpCC.js} +4 -4
  8. package/dist/{Settlement-BSOQRlp1.js → Settlement-Hr7jN3EL.js} +4 -4
  9. package/dist/{SettlementTransactions-Cqd2raea.js → SettlementTransactions-BncoGGQ3.js} +10 -10
  10. package/dist/{SettlementTransactions-JTwD_Vuq.js → SettlementTransactions-Bz9ZVYfq.js} +41 -41
  11. package/dist/{Terminal-De69bTKY.js → Terminal-D-U0BVTe.js} +121 -108
  12. package/dist/{TerminalSetting-DlRHaEZh.js → TerminalSetting-JD3sbXOB.js} +3 -3
  13. package/dist/{TerminalTransaction-CZCsCpEp.js → TerminalTransaction-B5iY_F-3.js} +18 -18
  14. package/dist/{TerminalTransaction-C1egvX6I.js → TerminalTransaction-DHmD5x8e.js} +12 -12
  15. package/dist/{Transaction-B3ZWKg6Q.js → Transaction-BedQtv8p.js} +64 -64
  16. package/dist/{Transaction-B_0nUmpf.js → Transaction-DA_TB9zD.js} +11 -11
  17. package/dist/api/restaurant/index.d.ts +6 -0
  18. package/dist/{app-B-XC_fSK.js → app-CpyZU23J.js} +164 -147
  19. package/dist/app.js +1 -1
  20. package/dist/{assets-BCAivOTo.js → assets-8c19wXSV.js} +22 -21
  21. package/dist/components/PagingTable/FmTableSelection.vue.d.ts +13 -0
  22. package/dist/components/PagingTable/index.vue.d.ts +48 -0
  23. package/dist/{index-4meiCsRz.js → index-1fXAFo2E.js} +31211 -31211
  24. package/dist/index-BIXuzGa9.js +19 -0
  25. package/dist/{index-BFYq3eq8.js → index-Cb1zVhcH.js} +1 -1
  26. package/dist/{index-CbsnpMWl.js → index-DEpszFWF.js} +1 -1
  27. package/dist/{index-BwFHcZlm.js → index-DdJrUqkm.js} +1 -1
  28. package/dist/{index-CBa6eapm.js → index-DeU3Qyca.js} +1 -1
  29. package/dist/{index-CETCXB6X.js → index-DoAIw4wM.js} +1 -1
  30. package/dist/index-DsLFmVsY.js +28 -0
  31. package/dist/{index.vue_vue_type_script_setup_true_lang-CKOlikHb.js → index.vue_vue_type_script_setup_true_lang-GT2x04Bn.js} +64 -61
  32. package/dist/package.json +2 -2
  33. package/dist/{payout-account-CKhGpN_d.js → payout-account-BbheLTUt.js} +2 -2
  34. package/dist/{transaction-COjHU7aN.js → transaction-W49zE8RL.js} +3 -3
  35. package/dist/tsconfig.app.tsbuildinfo +1 -1
  36. package/dist/views/admin/restaurant/Restaurant.vue.d.ts +2 -0
  37. package/dist/views/admin/restaurant/RestaurantSetting.vue.d.ts +12 -0
  38. package/dist/views/admin/restaurant/cell/IsActive.vue.d.ts +7 -0
  39. package/dist/views/admin/restaurant/tabs/PaymentGateway.vue.d.ts +803 -0
  40. package/dist/views/admin/restaurant/tabs/gateway/FiuuGateway.vue.d.ts +56 -0
  41. package/dist/views/admin/restaurant/tabs/gateway/GhlGateway.vue.d.ts +50 -0
  42. package/dist/views/admin/restaurant/tabs/gateway/RevenueMonsterGateway.vue.d.ts +52 -0
  43. package/package.json +2 -2
@@ -0,0 +1,13 @@
1
+ export interface FmTableSelectionProps {
2
+ value: number;
3
+ items: {
4
+ label: string;
5
+ value: number;
6
+ }[];
7
+ }
8
+ declare const _default: import("vue").DefineComponent<FmTableSelectionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
9
+ "update:modelValue": (value: number) => any;
10
+ }, string, import("vue").PublicProps, Readonly<FmTableSelectionProps> & Readonly<{
11
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
12
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ export default _default;
@@ -0,0 +1,48 @@
1
+ import { type ColumnDef } from '@feedmepos/ui-library';
2
+ import type { PaginatedResponse } from '@/api/pagination';
3
+ export type PagingTableController = {
4
+ /**
5
+ * Reset pagination and all loaded data, and perform load for first page data
6
+ */
7
+ reset: () => {};
8
+ };
9
+ declare const _default: <T extends unknown, R extends unknown>(__VLS_props: {
10
+ readonly "onRow-click"?: ((data: T) => any) | undefined;
11
+ readonly columnDefs: ColumnDef<R>[];
12
+ readonly rowsDefs: (a: T) => R;
13
+ readonly paginate: (limit: number, page: number) => Promise<PaginatedResponse<T>>;
14
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
15
+ attrs: any;
16
+ slots: {};
17
+ emit: (event: 'row-click', data: T) => any;
18
+ } | undefined, __VLS_expose?: ((exposed: import("vue").ShallowUnwrapRef<PagingTableController>) => void) | undefined, __VLS_setup?: Promise<{
19
+ props: {
20
+ readonly "onRow-click"?: ((data: T) => any) | undefined;
21
+ readonly columnDefs: ColumnDef<R>[];
22
+ readonly rowsDefs: (a: T) => R;
23
+ readonly paginate: (limit: number, page: number) => Promise<PaginatedResponse<T>>;
24
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
25
+ expose(exposed: import("vue").ShallowUnwrapRef<PagingTableController>): void;
26
+ attrs: any;
27
+ slots: {};
28
+ emit: (event: 'row-click', data: T) => any;
29
+ }>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
30
+ [key: string]: any;
31
+ }> & {
32
+ __ctx?: {
33
+ props: {
34
+ readonly "onRow-click"?: ((data: T) => any) | undefined;
35
+ readonly columnDefs: ColumnDef<R>[];
36
+ readonly rowsDefs: (a: T) => R;
37
+ readonly paginate: (limit: number, page: number) => Promise<PaginatedResponse<T>>;
38
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
39
+ expose(exposed: import("vue").ShallowUnwrapRef<PagingTableController>): void;
40
+ attrs: any;
41
+ slots: {};
42
+ emit: (event: 'row-click', data: T) => any;
43
+ } | undefined;
44
+ };
45
+ export default _default;
46
+ type __VLS_PrettifyLocal<T> = {
47
+ [K in keyof T]: T[K];
48
+ } & {};