cecon-interfaces 1.4.16 → 1.4.19
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/evolution/enums/index.mjs +2 -1
- package/dist/esm2022/evolution/enums/integration-types.enum.mjs +6 -0
- package/dist/esm2022/mobyo/mobyo-api/enum/topics.enum.mjs +2 -1
- package/dist/esm2022/mobyo/mobyo-api/interfaces/i-device-checkout-config-tef-api.mjs +1 -1
- package/dist/esm2022/mobyo/mobyo-api/interfaces/i-device-checkout-picture.mjs +1 -1
- package/dist/esm2022/mobyo/mobyo-api/interfaces/i-order-payment-method-v3.mjs +2 -1
- package/dist/esm2022/mobyo/mobyo-api/interfaces/index.mjs +1 -1
- package/dist/evolution/enums/index.d.ts +1 -0
- package/dist/evolution/enums/index.js +3 -1
- package/dist/evolution/enums/integration-types.enum.d.ts +4 -0
- package/dist/evolution/enums/integration-types.enum.js +8 -0
- package/dist/fesm2022/cecon-interfaces.mjs +8 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/mobyo/mobyo-api/enum/topics.enum.d.ts +2 -1
- package/dist/mobyo/mobyo-api/enum/topics.enum.js +1 -0
- package/dist/mobyo/mobyo-api/interfaces/i-device-checkout-config-tef-api.d.ts +1 -1
- package/dist/mobyo/mobyo-api/interfaces/i-device-checkout-picture.d.ts +1 -0
- package/dist/mobyo/mobyo-api/interfaces/i-order-payment-method-v3.d.ts +13 -11
- package/dist/mobyo/mobyo-api/interfaces/i-order-payment-method-v3.js +1 -0
- package/dist/mobyo/mobyo-api/interfaces/index.d.ts +2 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -1,13 +1,7 @@
|
|
1
|
-
import { EOrderPaymentMethod } from
|
2
|
-
export interface IOrderPaymentPix {
|
3
|
-
pixKey: string;
|
4
|
-
urlQrImage: string;
|
5
|
-
}
|
6
|
-
export interface IOrderPaymentWallet {
|
7
|
-
name: string;
|
8
|
-
}
|
1
|
+
import { EOrderPaymentMethod } from '../enum/order-payment-method.enum';
|
9
2
|
export interface IOrderPaymentCard {
|
10
|
-
brand: string;
|
3
|
+
brand: string | null;
|
4
|
+
link: string | null;
|
11
5
|
}
|
12
6
|
export interface IOrderPaymentCash {
|
13
7
|
changeFor: Number;
|
@@ -16,14 +10,22 @@ export interface IOrderPaymentMethodV3 {
|
|
16
10
|
card: IOrderPaymentCard;
|
17
11
|
cash: IOrderPaymentCash;
|
18
12
|
code: string;
|
13
|
+
createdAt: Date | null;
|
19
14
|
currency: 'BRL';
|
20
15
|
id: string;
|
21
16
|
method: EOrderPaymentMethod;
|
22
|
-
|
17
|
+
paymentId?: string;
|
18
|
+
pix: IOrderPaymentPix | null;
|
23
19
|
prepaid: boolean;
|
24
20
|
transaction?: any;
|
25
21
|
type: 'ONLINE' | 'OFFLINE';
|
26
22
|
value: number;
|
27
23
|
wallet: IOrderPaymentWallet;
|
28
|
-
|
24
|
+
}
|
25
|
+
export interface IOrderPaymentPix {
|
26
|
+
pixKey: string;
|
27
|
+
urlQrImage: string;
|
28
|
+
}
|
29
|
+
export interface IOrderPaymentWallet {
|
30
|
+
name: string;
|
29
31
|
}
|
@@ -39,9 +39,11 @@ export { IDeviceAppConfig as MobyoIDeviceAppConfig } from './i-device-app-config
|
|
39
39
|
export { IDeviceCheckout as MobyoIDeviceCheckout } from './i-device-checkout';
|
40
40
|
export { IDeviceCheckoutConfigTef as MobyoIDeviceCheckoutConfigTef } from './i-device-checkout-config-tef';
|
41
41
|
export { IDeviceCheckoutConfigTefApi as MobyoIDeviceCheckoutConfigTefApi } from './i-device-checkout-config-tef-api';
|
42
|
+
export { IDeviceCheckoutConfigTefApi } from './i-device-checkout-config-tef-api';
|
42
43
|
export { IDeviceCheckoutConfig as MobyoIDeviceCheckoutConfig } from './i-device-checkout-configs';
|
43
44
|
export { IDeviceCheckoutPaymentsOnline as MobyoIDeviceCheckoutPaymentsOnline } from './i-device-checkout-payments-online';
|
44
45
|
export { IDeviceCheckoutPicture as MobyoIDeviceCheckoutPicture } from './i-device-checkout-picture';
|
46
|
+
export { IDeviceCheckoutPicture } from './i-device-checkout-picture';
|
45
47
|
export { IDeviceCustomText as MobyoIDeviceCustomText } from './i-device-custom-text';
|
46
48
|
export { IDeviceMenu as MobyoIDeviceMenu } from './i-device-menu';
|
47
49
|
export { IDeviceScreen as MobyoIDeviceScreen } from './i-device-screen';
|
package/dist/package.json
CHANGED