shopoflex-types 1.0.208 → 1.0.209
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/common.d.ts +8 -0
- package/dist/productCart.d.ts +1 -0
- package/package.json +1 -1
package/dist/common.d.ts
CHANGED
|
@@ -384,6 +384,13 @@ export interface VendorCurrentPlan {
|
|
|
384
384
|
branches: number | "unlimited";
|
|
385
385
|
};
|
|
386
386
|
}
|
|
387
|
+
export interface PluBarcodeConfig {
|
|
388
|
+
prefix: string;
|
|
389
|
+
pluLength: number;
|
|
390
|
+
valueLength: number;
|
|
391
|
+
postfixLength: number;
|
|
392
|
+
valueType: 'price' | 'weight';
|
|
393
|
+
}
|
|
387
394
|
export interface Vendor {
|
|
388
395
|
_id?: string;
|
|
389
396
|
industry?: string;
|
|
@@ -468,6 +475,7 @@ export interface Vendor {
|
|
|
468
475
|
canCreateOrder(): Promise<boolean>;
|
|
469
476
|
canCreateUser(): Promise<boolean>;
|
|
470
477
|
canCreateBranch(): Promise<boolean>;
|
|
478
|
+
pluBarcodeConfig?: PluBarcodeConfig;
|
|
471
479
|
printStyleSettings?: IPrintStyleSettings;
|
|
472
480
|
}
|
|
473
481
|
export interface IPrintStyleSettings {
|
package/dist/productCart.d.ts
CHANGED