@mivis/petmart-api 1.2.146 → 1.2.148
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/package.json +1 -1
- package/type.d.ts +2 -0
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -1020,6 +1020,7 @@ declare namespace Components {
|
|
|
1020
1020
|
}
|
|
1021
1021
|
|
|
1022
1022
|
export interface IMultiOrder {
|
|
1023
|
+
_id: string;
|
|
1023
1024
|
user_id: string;
|
|
1024
1025
|
sum: number;
|
|
1025
1026
|
orders: string[];
|
|
@@ -1044,6 +1045,7 @@ declare namespace Components {
|
|
|
1044
1045
|
multiOrderId: string;
|
|
1045
1046
|
multiOrderNumber: string;
|
|
1046
1047
|
};
|
|
1048
|
+
confirmation: IConfirmation;
|
|
1047
1049
|
}
|
|
1048
1050
|
|
|
1049
1051
|
export type IConfirmationType = 'embedded' | 'external' | 'qr' | 'redirect';
|