cecon-interfaces 1.1.85 → 1.1.86
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/product-global/entities/product.entity.mjs +2 -1
- package/dist/esm2022/product-global/interfaces/i-product.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +1 -0
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/product-global/entities/product.entity.d.ts +1 -0
- package/dist/product-global/entities/product.entity.js +1 -0
- package/dist/product-global/interfaces/i-product.d.ts +7 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -49,6 +49,13 @@ export interface IProductGlobal {
|
|
49
49
|
* @example "Product description"
|
50
50
|
*/
|
51
51
|
description: string;
|
52
|
+
/**
|
53
|
+
* Name of the user who created the product.
|
54
|
+
* @minlength 1
|
55
|
+
* @maxlength 120
|
56
|
+
* @example "User name"
|
57
|
+
*/
|
58
|
+
createdBy: string;
|
52
59
|
/**
|
53
60
|
* Gross weight of the product.
|
54
61
|
* @example 1.5
|