@trusted-solutions/sdit.models 0.61.0-alpha.4 → 0.61.0-alpha.5
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/models/order.d.ts +4 -1
- package/package.json +1 -1
package/models/order.d.ts
CHANGED
|
@@ -269,9 +269,12 @@ export interface OrderItemChangelog {
|
|
|
269
269
|
modifiedBy?: Operator;
|
|
270
270
|
}
|
|
271
271
|
export interface OrderItemAttr {
|
|
272
|
-
attributeId
|
|
272
|
+
attributeId: string;
|
|
273
|
+
attributeCategoryId: string;
|
|
273
274
|
name: string;
|
|
274
275
|
additionalAmount: number;
|
|
276
|
+
quantity?: number;
|
|
277
|
+
totalAmount?: number;
|
|
275
278
|
}
|
|
276
279
|
export interface OrderPayment {
|
|
277
280
|
paymentServiceProvider: PaymentServiceProvider;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trusted-solutions/sdit.models",
|
|
3
|
-
"version": "0.61.0-alpha.
|
|
3
|
+
"version": "0.61.0-alpha.5",
|
|
4
4
|
"description": "TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|