@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.
@@ -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
- etimversion?: string;
381
- etimclass?: string;
382
- mainshopid?: string;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.108.0",
3
+ "version": "2024.109.0",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",