@orderingstack/ordering-types 1.40.0 → 1.40.1
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/index.d.ts +12 -0
- package/dist/esm/index.d.ts +12 -0
- package/package.json +1 -1
package/dist/cjs/index.d.ts
CHANGED
|
@@ -851,3 +851,15 @@ export interface IMenuWSInfo {
|
|
|
851
851
|
id?: string;
|
|
852
852
|
};
|
|
853
853
|
}
|
|
854
|
+
export interface IValidLockRemoveInfo extends IMenuWSInfo {
|
|
855
|
+
class: EWSMenuClass.LOCK_REMOVE;
|
|
856
|
+
lock: IMenuLock;
|
|
857
|
+
}
|
|
858
|
+
export interface IValidLockAddInfo extends IMenuWSInfo {
|
|
859
|
+
class: EWSMenuClass.LOCK_ADD;
|
|
860
|
+
lock: IMenuLock;
|
|
861
|
+
}
|
|
862
|
+
export interface IValidProductChangeInfo extends IMenuWSInfo {
|
|
863
|
+
class: EWSMenuClass.PRODUCT_CHANGE;
|
|
864
|
+
product: string;
|
|
865
|
+
}
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -851,3 +851,15 @@ export interface IMenuWSInfo {
|
|
|
851
851
|
id?: string;
|
|
852
852
|
};
|
|
853
853
|
}
|
|
854
|
+
export interface IValidLockRemoveInfo extends IMenuWSInfo {
|
|
855
|
+
class: EWSMenuClass.LOCK_REMOVE;
|
|
856
|
+
lock: IMenuLock;
|
|
857
|
+
}
|
|
858
|
+
export interface IValidLockAddInfo extends IMenuWSInfo {
|
|
859
|
+
class: EWSMenuClass.LOCK_ADD;
|
|
860
|
+
lock: IMenuLock;
|
|
861
|
+
}
|
|
862
|
+
export interface IValidProductChangeInfo extends IMenuWSInfo {
|
|
863
|
+
class: EWSMenuClass.PRODUCT_CHANGE;
|
|
864
|
+
product: string;
|
|
865
|
+
}
|