@tolinax/ayoune-interfaces 2024.110.0 → 2024.111.1

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.
@@ -205,7 +205,7 @@ interface IInterestedInCompanies {
205
205
  }
206
206
  export interface IConsumer extends IDefaultFields, IFreeFields, IGeoIPLocationTracking, IaYOUneTrackingParams {
207
207
  _companyRef?: ObjectId;
208
- shortID: string;
208
+ shortID?: string;
209
209
  account_number?: string;
210
210
  datev_account_number?: string;
211
211
  _customerID: ObjectId;
@@ -268,7 +268,7 @@ export interface IConsumer extends IDefaultFields, IFreeFields, IGeoIPLocationTr
268
268
  }[];
269
269
  wv?: Date;
270
270
  wv_reason?: string;
271
- accesscode: string;
271
+ accesscode?: string;
272
272
  company?: string;
273
273
  legal_form?: string;
274
274
  department?: string;
@@ -1,4 +1,5 @@
1
1
  export interface IDefaultFields {
2
+ _id?: any;
2
3
  isDraft?: boolean;
3
4
  g_participants?: any[];
4
5
  g_restrictUsers?: any[];
@@ -262,7 +262,7 @@ interface IConfig {
262
262
  userData?: string;
263
263
  }
264
264
  export interface IProductDates {
265
- useMeeting?: string;
265
+ useMeeting?: boolean;
266
266
  _meeting: ObjectId;
267
267
  start?: Date;
268
268
  end?: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.110.0",
3
+ "version": "2024.111.1",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",