@orderingstack/ordering-types 1.11.1 → 1.11.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/cjs/api.d.ts +2 -2
- package/dist/cjs/index.d.ts +2 -4
- package/dist/esm/api.d.ts +2 -2
- package/dist/esm/index.d.ts +2 -4
- package/package.json +1 -1
package/dist/cjs/api.d.ts
CHANGED
package/dist/cjs/index.d.ts
CHANGED
|
@@ -322,9 +322,7 @@ export interface IOrderFiscal {
|
|
|
322
322
|
[propName: string]: number;
|
|
323
323
|
};
|
|
324
324
|
subTotalDiscounts?: ISubTotalDiscount[];
|
|
325
|
-
extra?:
|
|
326
|
-
[propName: string]: number;
|
|
327
|
-
};
|
|
325
|
+
extra?: IStringKeyRecord<number | string>;
|
|
328
326
|
}
|
|
329
327
|
export interface ITaxSummary {
|
|
330
328
|
rate: string;
|
|
@@ -446,7 +444,7 @@ export interface IOrderProduct {
|
|
|
446
444
|
img?: string;
|
|
447
445
|
quantity: string;
|
|
448
446
|
price: string;
|
|
449
|
-
vat
|
|
447
|
+
vat?: string;
|
|
450
448
|
extra: IStringKeyRecord<string>;
|
|
451
449
|
}
|
|
452
450
|
export declare enum EOrderLineStatus {
|
package/dist/esm/api.d.ts
CHANGED
package/dist/esm/index.d.ts
CHANGED
|
@@ -322,9 +322,7 @@ export interface IOrderFiscal {
|
|
|
322
322
|
[propName: string]: number;
|
|
323
323
|
};
|
|
324
324
|
subTotalDiscounts?: ISubTotalDiscount[];
|
|
325
|
-
extra?:
|
|
326
|
-
[propName: string]: number;
|
|
327
|
-
};
|
|
325
|
+
extra?: IStringKeyRecord<number | string>;
|
|
328
326
|
}
|
|
329
327
|
export interface ITaxSummary {
|
|
330
328
|
rate: string;
|
|
@@ -446,7 +444,7 @@ export interface IOrderProduct {
|
|
|
446
444
|
img?: string;
|
|
447
445
|
quantity: string;
|
|
448
446
|
price: string;
|
|
449
|
-
vat
|
|
447
|
+
vat?: string;
|
|
450
448
|
extra: IStringKeyRecord<string>;
|
|
451
449
|
}
|
|
452
450
|
export declare enum EOrderLineStatus {
|