@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,56 @@
1
+ import type { FdoPaymentGateway } from '@feedmepos/payment-entity';
2
+ import type { PropType } from 'vue';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ onUpdate: {
5
+ type: PropType<(g: any) => void>;
6
+ required: true;
7
+ };
8
+ onDelete: {
9
+ type: PropType<(g: FdoPaymentGateway) => void>;
10
+ required: true;
11
+ };
12
+ gateway: {
13
+ type: PropType<{
14
+ _id: string;
15
+ config: {
16
+ applicationCode?: string | null | undefined;
17
+ offlineSecret?: string | null | undefined;
18
+ merchantId: string;
19
+ uniqueId: string;
20
+ secretKey: string;
21
+ verifyKey: string;
22
+ };
23
+ _rev: string;
24
+ paymentGateway: "RAZER_MERCHANT_SERVICE";
25
+ active: boolean;
26
+ } | undefined>;
27
+ required: true;
28
+ };
29
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
30
+ onUpdate: {
31
+ type: PropType<(g: any) => void>;
32
+ required: true;
33
+ };
34
+ onDelete: {
35
+ type: PropType<(g: FdoPaymentGateway) => void>;
36
+ required: true;
37
+ };
38
+ gateway: {
39
+ type: PropType<{
40
+ _id: string;
41
+ config: {
42
+ applicationCode?: string | null | undefined;
43
+ offlineSecret?: string | null | undefined;
44
+ merchantId: string;
45
+ uniqueId: string;
46
+ secretKey: string;
47
+ verifyKey: string;
48
+ };
49
+ _rev: string;
50
+ paymentGateway: "RAZER_MERCHANT_SERVICE";
51
+ active: boolean;
52
+ } | undefined>;
53
+ required: true;
54
+ };
55
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
56
+ export default _default;
@@ -0,0 +1,50 @@
1
+ import type { FdoPaymentGateway } from '@feedmepos/payment-entity';
2
+ import type { PropType } from 'vue';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ onUpdate: {
5
+ type: PropType<(g: any) => void>;
6
+ required: true;
7
+ };
8
+ onDelete: {
9
+ type: PropType<(g: FdoPaymentGateway) => void>;
10
+ required: true;
11
+ };
12
+ gateway: {
13
+ type: PropType<{
14
+ _id: string;
15
+ config: {
16
+ merchantId: string;
17
+ terminalId: string;
18
+ privateKey: string;
19
+ };
20
+ _rev: string;
21
+ paymentGateway: "E_GHL";
22
+ active: boolean;
23
+ } | undefined>;
24
+ required: true;
25
+ };
26
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
27
+ onUpdate: {
28
+ type: PropType<(g: any) => void>;
29
+ required: true;
30
+ };
31
+ onDelete: {
32
+ type: PropType<(g: FdoPaymentGateway) => void>;
33
+ required: true;
34
+ };
35
+ gateway: {
36
+ type: PropType<{
37
+ _id: string;
38
+ config: {
39
+ merchantId: string;
40
+ terminalId: string;
41
+ privateKey: string;
42
+ };
43
+ _rev: string;
44
+ paymentGateway: "E_GHL";
45
+ active: boolean;
46
+ } | undefined>;
47
+ required: true;
48
+ };
49
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
50
+ export default _default;
@@ -0,0 +1,52 @@
1
+ import type { FdoPaymentGateway } from '@feedmepos/payment-entity';
2
+ import type { PropType } from 'vue';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ onUpdate: {
5
+ type: PropType<(g: any) => void>;
6
+ required: true;
7
+ };
8
+ onDelete: {
9
+ type: PropType<(g: FdoPaymentGateway) => void>;
10
+ required: true;
11
+ };
12
+ gateway: {
13
+ type: PropType<{
14
+ _id: string;
15
+ config: {
16
+ clientId: string;
17
+ clientPrivateKey: string;
18
+ clientSecret: string;
19
+ storeId: string;
20
+ };
21
+ _rev: string;
22
+ paymentGateway: "REVENUE_MONSTER";
23
+ active: boolean;
24
+ } | undefined>;
25
+ required: true;
26
+ };
27
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
28
+ onUpdate: {
29
+ type: PropType<(g: any) => void>;
30
+ required: true;
31
+ };
32
+ onDelete: {
33
+ type: PropType<(g: FdoPaymentGateway) => void>;
34
+ required: true;
35
+ };
36
+ gateway: {
37
+ type: PropType<{
38
+ _id: string;
39
+ config: {
40
+ clientId: string;
41
+ clientPrivateKey: string;
42
+ clientSecret: string;
43
+ storeId: string;
44
+ };
45
+ _rev: string;
46
+ paymentGateway: "REVENUE_MONSTER";
47
+ active: boolean;
48
+ } | undefined>;
49
+ required: true;
50
+ };
51
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
52
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feedmepos/mf-payment",
3
- "version": "1.0.0-beta.9",
3
+ "version": "1.0.1-beta.1",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -34,7 +34,7 @@
34
34
  "@feedmepos/core": "^2.6.0",
35
35
  "@feedmepos/mf-common": "^1.8.21",
36
36
  "@feedmepos/payment-entity": "^0.0.6",
37
- "@feedmepos/ui-library": "^1.2.58",
37
+ "@feedmepos/ui-library": "^1.2.61",
38
38
  "axios": "^0.27.2",
39
39
  "buffer": "^6.0.3",
40
40
  "change-case": "^4.1.2",