@pisell/pisellos 0.0.427 → 0.0.429
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/modules/Payment/utils.d.ts +2 -0
- package/dist/modules/Payment/utils.js +3 -1
- package/dist/modules/Payment/walletpass.d.ts +2 -0
- package/lib/modules/Payment/utils.d.ts +2 -0
- package/lib/modules/Payment/utils.js +3 -1
- package/lib/modules/Payment/walletpass.d.ts +2 -0
- package/package.json +1 -1
|
@@ -15,7 +15,9 @@ export var formatWalletPassList2PreparePayments = function formatWalletPassList2
|
|
|
15
15
|
return {
|
|
16
16
|
voucher_id: item.id || 0,
|
|
17
17
|
amount: Number(item.edit_current_amount || getAvailableMaxAmount(item)) || 0,
|
|
18
|
-
tag: item.tag || ''
|
|
18
|
+
tag: item.tag || '',
|
|
19
|
+
wallet_pass_use_value: item.wallet_pass_use_value,
|
|
20
|
+
wallet_pass_usage_unit: item.wallet_pass_usage_unit
|
|
19
21
|
};
|
|
20
22
|
});
|
|
21
23
|
};
|
|
@@ -62,6 +62,8 @@ export declare class WalletPassPaymentImpl implements WalletPassPayment {
|
|
|
62
62
|
voucher_id: number;
|
|
63
63
|
amount: number;
|
|
64
64
|
tag: string;
|
|
65
|
+
wallet_pass_use_value: any;
|
|
66
|
+
wallet_pass_usage_unit: any;
|
|
65
67
|
}[];
|
|
66
68
|
getUserIdentificationCodeListAsync(params: UserIdentificationCodeParams): Promise<UserIdentificationCodeItem[]>;
|
|
67
69
|
/**
|
|
@@ -35,7 +35,9 @@ var formatWalletPassList2PreparePayments = (list) => {
|
|
|
35
35
|
return {
|
|
36
36
|
voucher_id: item.id || 0,
|
|
37
37
|
amount: Number(item.edit_current_amount || getAvailableMaxAmount(item)) || 0,
|
|
38
|
-
tag: item.tag || ""
|
|
38
|
+
tag: item.tag || "",
|
|
39
|
+
wallet_pass_use_value: item.wallet_pass_use_value,
|
|
40
|
+
wallet_pass_usage_unit: item.wallet_pass_usage_unit
|
|
39
41
|
};
|
|
40
42
|
});
|
|
41
43
|
};
|
|
@@ -62,6 +62,8 @@ export declare class WalletPassPaymentImpl implements WalletPassPayment {
|
|
|
62
62
|
voucher_id: number;
|
|
63
63
|
amount: number;
|
|
64
64
|
tag: string;
|
|
65
|
+
wallet_pass_use_value: any;
|
|
66
|
+
wallet_pass_usage_unit: any;
|
|
65
67
|
}[];
|
|
66
68
|
getUserIdentificationCodeListAsync(params: UserIdentificationCodeParams): Promise<UserIdentificationCodeItem[]>;
|
|
67
69
|
/**
|