@tolinax/ayoune-interfaces 2024.108.0 → 2024.109.0
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/interfaces/IProduct.d.ts +11 -3
- package/package.json +1 -1
package/interfaces/IProduct.d.ts
CHANGED
|
@@ -261,6 +261,13 @@ interface IConfig {
|
|
|
261
261
|
useCase?: string;
|
|
262
262
|
userData?: string;
|
|
263
263
|
}
|
|
264
|
+
interface IDates {
|
|
265
|
+
useMeeting?: string;
|
|
266
|
+
_meeting: ObjectId;
|
|
267
|
+
start?: Date;
|
|
268
|
+
end?: Date;
|
|
269
|
+
location?: string;
|
|
270
|
+
}
|
|
264
271
|
interface ICalculation {
|
|
265
272
|
groups?: ICalculationGroup[];
|
|
266
273
|
materialPurchasePrice?: number;
|
|
@@ -377,9 +384,9 @@ export interface IProduct extends IDefaultFields, IFreeFields {
|
|
|
377
384
|
isNewProduct?: boolean;
|
|
378
385
|
group_id?: string;
|
|
379
386
|
group_product_id?: string;
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
387
|
+
etimVersion?: string;
|
|
388
|
+
etimClass?: string;
|
|
389
|
+
mainshopId?: ObjectId;
|
|
383
390
|
title?: string;
|
|
384
391
|
title_slug?: string;
|
|
385
392
|
title_en?: string;
|
|
@@ -428,6 +435,7 @@ export interface IProduct extends IDefaultFields, IFreeFields {
|
|
|
428
435
|
hasQuota?: boolean;
|
|
429
436
|
requirement?: ObjectId;
|
|
430
437
|
requirements?: IRequirement[];
|
|
438
|
+
dates?: IDates[];
|
|
431
439
|
needsExam?: boolean;
|
|
432
440
|
needsIncomingGoodsInspection?: boolean;
|
|
433
441
|
needsQualityControl?: boolean;
|