@royalschedule/maps 3.2.6 → 3.2.7

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.
@@ -46,5 +46,7 @@ declare const _default: (exceptions: ReturnType<typeof transform>) => {
46
46
  end?: Date | undefined;
47
47
  } | undefined;
48
48
  lastModifiedBy?: unknown;
49
+ createdAt?: string | undefined;
50
+ updatedAt?: string | undefined;
49
51
  }[];
50
52
  export default _default;
@@ -57,8 +57,9 @@ export interface DivisionBare {
57
57
  start?: moment.Moment | string | Date;
58
58
  end?: moment.Moment | string | Date;
59
59
  editedAt?: moment.Moment | string | Date;
60
- createdAt?: string;
61
60
  meta?: Meta;
61
+ createdAt?: string;
62
+ updatedAt?: string;
62
63
  }
63
64
  export interface Division extends DivisionBare, VirtualDivisionFields {
64
65
  _id?: Types.ObjectId;
@@ -51,6 +51,8 @@ export interface ExceptionBare {
51
51
  end?: Date;
52
52
  };
53
53
  lastModifiedBy?: unknown;
54
+ createdAt?: string;
55
+ updatedAt?: string;
54
56
  }
55
57
  export interface Exception extends ExceptionBare {
56
58
  _id?: Types.ObjectId;
@@ -35,6 +35,8 @@ export interface PeriodBare {
35
35
  end?: moment.Moment | string | Date;
36
36
  }[];
37
37
  lastModifiedBy?: unknown;
38
+ createdAt?: string;
39
+ updatedAt?: string;
38
40
  }
39
41
  export interface Period extends PeriodBare {
40
42
  _id?: Types.ObjectId;
@@ -33,6 +33,8 @@ export interface RootIntervalBare {
33
33
  end?: moment.Moment | string | Date;
34
34
  }[];
35
35
  lastModifiedBy?: unknown;
36
+ createdAt?: string;
37
+ updatedAt?: string;
36
38
  }
37
39
  export interface RootInterval extends RootIntervalBare {
38
40
  _id?: Types.ObjectId;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@royalschedule/maps",
3
3
  "description": "",
4
- "version": "3.2.6",
4
+ "version": "3.2.7",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "engines": {