@tolinax/ayoune-interfaces 2024.109.0 → 2024.111.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 +3 -3
- package/package.json +1 -1
package/interfaces/IProduct.d.ts
CHANGED
|
@@ -261,8 +261,8 @@ interface IConfig {
|
|
|
261
261
|
useCase?: string;
|
|
262
262
|
userData?: string;
|
|
263
263
|
}
|
|
264
|
-
interface
|
|
265
|
-
useMeeting?:
|
|
264
|
+
export interface IProductDates {
|
|
265
|
+
useMeeting?: boolean;
|
|
266
266
|
_meeting: ObjectId;
|
|
267
267
|
start?: Date;
|
|
268
268
|
end?: Date;
|
|
@@ -435,7 +435,7 @@ export interface IProduct extends IDefaultFields, IFreeFields {
|
|
|
435
435
|
hasQuota?: boolean;
|
|
436
436
|
requirement?: ObjectId;
|
|
437
437
|
requirements?: IRequirement[];
|
|
438
|
-
dates?:
|
|
438
|
+
dates?: IProductDates[];
|
|
439
439
|
needsExam?: boolean;
|
|
440
440
|
needsIncomingGoodsInspection?: boolean;
|
|
441
441
|
needsQualityControl?: boolean;
|