nextemos 4.7.14 → 4.7.16
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.
|
@@ -1,6 +1,12 @@
|
|
|
1
|
-
export declare enum
|
|
1
|
+
export declare enum ProductDocumentTypeIds {
|
|
2
2
|
Image = 1,
|
|
3
3
|
Video = 2,
|
|
4
4
|
Document = 3,
|
|
5
5
|
Driver = 4
|
|
6
6
|
}
|
|
7
|
+
export declare enum DocumentTypes {
|
|
8
|
+
Image = "Image",
|
|
9
|
+
Video = "Video",
|
|
10
|
+
Document = "Document",
|
|
11
|
+
Driver = "Driver"
|
|
12
|
+
}
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
var
|
|
5
|
-
(function (
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
})(
|
|
3
|
+
exports.DocumentTypes = exports.ProductDocumentTypeIds = void 0;
|
|
4
|
+
var ProductDocumentTypeIds;
|
|
5
|
+
(function (ProductDocumentTypeIds) {
|
|
6
|
+
ProductDocumentTypeIds[ProductDocumentTypeIds["Image"] = 1] = "Image";
|
|
7
|
+
ProductDocumentTypeIds[ProductDocumentTypeIds["Video"] = 2] = "Video";
|
|
8
|
+
ProductDocumentTypeIds[ProductDocumentTypeIds["Document"] = 3] = "Document";
|
|
9
|
+
ProductDocumentTypeIds[ProductDocumentTypeIds["Driver"] = 4] = "Driver";
|
|
10
|
+
})(ProductDocumentTypeIds || (exports.ProductDocumentTypeIds = ProductDocumentTypeIds = {}));
|
|
11
|
+
var DocumentTypes;
|
|
12
|
+
(function (DocumentTypes) {
|
|
13
|
+
DocumentTypes["Image"] = "Image";
|
|
14
|
+
DocumentTypes["Video"] = "Video";
|
|
15
|
+
DocumentTypes["Document"] = "Document";
|
|
16
|
+
DocumentTypes["Driver"] = "Driver";
|
|
17
|
+
})(DocumentTypes || (exports.DocumentTypes = DocumentTypes = {}));
|
|
@@ -118,7 +118,7 @@ export interface IAddStockAlertRequest extends IRequestBase {
|
|
|
118
118
|
}[];
|
|
119
119
|
}
|
|
120
120
|
export interface IRemoveStockAlertRequest extends IRequestBase {
|
|
121
|
-
|
|
121
|
+
stockBarcodeIds: number[];
|
|
122
122
|
}
|
|
123
123
|
export interface IProductService extends IService {
|
|
124
124
|
Product: (data: IProductRequest, options?: IRequestInit) => Promise<IApiResponse<IProductResponse>>;
|