@feedmepos/mf-payment 1.1.0-beta.2 → 1.1.0-beta.3
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/{PayoutAccount-BpMu58oE.js → PayoutAccount-Dm__V5FS.js} +5 -5
- package/dist/{PayoutAccount-z-gdodfR.js → PayoutAccount-aXUZqVC4.js} +3 -3
- package/dist/{PayoutAccountSetting-jZJu4WWL.js → PayoutAccountSetting-EbYjEXDF.js} +3 -3
- package/dist/{Restaurant-DfBX5uPS.js → Restaurant-DLM9C8nc.js} +4 -4
- package/dist/{RestaurantSetting-KPtRoif-.js → RestaurantSetting-GoDOJmXC.js} +3 -3
- package/dist/{Settlement-DbMQAA0_.js → Settlement-BCGCz02p.js} +3 -3
- package/dist/{Settlement-smC2PDKA.js → Settlement-CsLlypA1.js} +3 -3
- package/dist/{SettlementTransactions-Bs8Il-GO.js → SettlementTransactions-BXDX1-4U.js} +3 -3
- package/dist/{SettlementTransactions-Cw9DnODr.js → SettlementTransactions-DtbZ2BMA.js} +3 -3
- package/dist/{Terminal-HLOGtr0x.js → Terminal-BhZitu-W.js} +5 -5
- package/dist/{TerminalSetting-DraCszpQ.js → TerminalSetting-lTAsTN8h.js} +3 -3
- package/dist/{Transaction-_CB4VTT9.js → Transaction-AwhwSbRY.js} +5 -5
- package/dist/{Transaction-B8cHQbbP.js → Transaction-CCTdVAZg.js} +6 -6
- package/dist/{TransactionOld-BhzUSu5h.js → TransactionOld-DLjym0JG.js} +4 -4
- package/dist/{TransactionTable.vue_vue_type_script_setup_true_lang-UcnQKwQ5.js → TransactionTable.vue_vue_type_script_setup_true_lang-xSb40MKu.js} +57 -52
- package/dist/{app-DWRPKvx2.js → app-348rfspt.js} +669 -655
- package/dist/app.d.ts +14 -0
- package/dist/app.js +1 -1
- package/dist/{assets-BImh8bhR.js → assets-CizBCu1u.js} +57 -43
- package/dist/{grafana-CPOGSE20.js → grafana-NU2yqPXT.js} +1 -1
- package/dist/{index-D5DlMaeB.js → index-BDCzfWFu.js} +1 -1
- package/dist/{index-DtT3I2PI.js → index-D9Cv_ZfD.js} +1 -1
- package/dist/{index-CNZFZxie.js → index-DEvTHjDK.js} +2812 -2814
- package/dist/{index-eznEOmAe.js → index-Dvg8rPAD.js} +1 -1
- package/dist/{index-DuSw-EaU.js → index-GlBLcdqs.js} +1 -1
- package/dist/{index-8eCaI4jI.js → index-OD8n4-_f.js} +1 -1
- package/dist/{index.vue_vue_type_script_setup_true_lang-DNXWZt8k.js → index.vue_vue_type_script_setup_true_lang-D-xbKBxe.js} +1 -1
- package/dist/model/transaction.d.ts +2 -0
- package/dist/package.json +1 -1
- package/dist/{payout-account-CjDkY3wf.js → payout-account-5sqoL9UC.js} +2 -2
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/app.d.ts
CHANGED
@@ -8,6 +8,12 @@ export declare const i18nMessages: {
|
|
8
8
|
device: string;
|
9
9
|
payout_account: string;
|
10
10
|
};
|
11
|
+
routes: {
|
12
|
+
payout_account: string;
|
13
|
+
transaction: string;
|
14
|
+
"transaction-new": string;
|
15
|
+
settlement: string;
|
16
|
+
};
|
11
17
|
settlements: {
|
12
18
|
title: string;
|
13
19
|
description: string;
|
@@ -86,6 +92,7 @@ export declare const i18nMessages: {
|
|
86
92
|
method: string;
|
87
93
|
type: string;
|
88
94
|
status: string;
|
95
|
+
source: string;
|
89
96
|
transaction_at: string;
|
90
97
|
sales_amount: string;
|
91
98
|
actions: string;
|
@@ -145,6 +152,12 @@ export declare const i18nMessages: {
|
|
145
152
|
device: string;
|
146
153
|
payout_account: string;
|
147
154
|
};
|
155
|
+
routes: {
|
156
|
+
payout_account: string;
|
157
|
+
transaction: string;
|
158
|
+
"transaction-new": string;
|
159
|
+
settlement: string;
|
160
|
+
};
|
148
161
|
settlements: {
|
149
162
|
title: string;
|
150
163
|
description: string;
|
@@ -223,6 +236,7 @@ export declare const i18nMessages: {
|
|
223
236
|
method: string;
|
224
237
|
type: string;
|
225
238
|
status: string;
|
239
|
+
source: string;
|
226
240
|
transaction_at: string;
|
227
241
|
sales_amount: string;
|
228
242
|
actions: string;
|
package/dist/app.js
CHANGED