@royalschedule/maps 4.0.36 → 4.0.37

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.
@@ -1,6 +1,6 @@
1
1
  import { Types } from "../../core/types/index.js";
2
2
  import { Types as Types$1 } from "../types/index.js";
3
- import * as xlsx1 from "xlsx";
3
+ import * as xlsx0 from "xlsx";
4
4
 
5
5
  //#region src/Additio/to/index.d.ts
6
6
  declare class export_default {
@@ -14,7 +14,7 @@ declare class export_default {
14
14
  courses: Types.Mixed.Course[];
15
15
  events: Types.Mixed.Event[];
16
16
  lockedTimes: Types.Mixed.LockedTime[];
17
- }, _options?: Types$1.options) => xlsx1.WorkBook;
17
+ }, _options?: Types$1.options) => xlsx0.WorkBook;
18
18
  }
19
19
  //#endregion
20
20
  export { export_default };
@@ -6,7 +6,7 @@ import { MaximumScheduleSpan } from "../../core/interfaces/vertices/properties/m
6
6
  import { PlannedScheduledDuration } from "../../core/interfaces/vertices/properties/planned-scheduled-duration.js";
7
7
  import { MinBreakLength } from "../../core/interfaces/vertices/properties/min-break-length.js";
8
8
  import { Types } from "./types/index.js";
9
- import * as moment199 from "moment";
9
+ import * as moment201 from "moment";
10
10
 
11
11
  //#region src/Excel/v1/index.d.ts
12
12
  declare class Map {
@@ -200,8 +200,8 @@ declare class Map {
200
200
  lastModifiedBy?: string | undefined;
201
201
  course?: string | undefined;
202
202
  period?: string | undefined;
203
- start?: (moment199.Moment | string) | undefined;
204
- end?: (moment199.Moment | string) | undefined;
203
+ start?: (moment201.Moment | string) | undefined;
204
+ end?: (moment201.Moment | string) | undefined;
205
205
  belongsTo?: string | undefined;
206
206
  potentialCenter?: string | undefined;
207
207
  type?: string | undefined;
@@ -6,7 +6,7 @@ import { MaximumScheduleSpan } from "../../core/interfaces/vertices/properties/m
6
6
  import { PlannedScheduledDuration } from "../../core/interfaces/vertices/properties/planned-scheduled-duration.js";
7
7
  import { MinBreakLength } from "../../core/interfaces/vertices/properties/min-break-length.js";
8
8
  import { Types } from "./types/index.js";
9
- import * as moment201 from "moment";
9
+ import * as moment195 from "moment";
10
10
 
11
11
  //#region src/Excel/v2/index.d.ts
12
12
  declare class Map {
@@ -197,8 +197,8 @@ declare class Map {
197
197
  createdAt?: string | undefined;
198
198
  updatedAt?: string | undefined;
199
199
  lastModifiedBy?: string | undefined;
200
- start?: (moment201.Moment | string) | undefined;
201
- end?: (moment201.Moment | string) | undefined;
200
+ start?: (moment195.Moment | string) | undefined;
201
+ end?: (moment195.Moment | string) | undefined;
202
202
  potentialCenter?: string | undefined;
203
203
  type?: string | undefined;
204
204
  tags?: Tag[] | undefined;
@@ -7,7 +7,7 @@ import { PlannedScheduledDuration } from "../../core/interfaces/vertices/propert
7
7
  import { MinBreakLength } from "../../core/interfaces/vertices/properties/min-break-length.js";
8
8
  import { Schedule } from "./types/schedule.js";
9
9
  import { Types } from "./types/index.js";
10
- import * as moment195 from "moment";
10
+ import * as moment197 from "moment";
11
11
 
12
12
  //#region src/SchoolSoft/api/index.d.ts
13
13
  declare class Map {
@@ -286,8 +286,8 @@ declare class Map {
286
286
  createdAt?: string | undefined;
287
287
  updatedAt?: string | undefined;
288
288
  lastModifiedBy?: string | undefined;
289
- start?: (moment195.Moment | string) | undefined;
290
- end?: (moment195.Moment | string) | undefined;
289
+ start?: (moment197.Moment | string) | undefined;
290
+ end?: (moment197.Moment | string) | undefined;
291
291
  potentialCenter?: string | undefined;
292
292
  type?: string | undefined;
293
293
  tags?: Tag[] | undefined;
@@ -340,8 +340,8 @@ declare class Map {
340
340
  createdAt?: string | undefined;
341
341
  updatedAt?: string | undefined;
342
342
  lastModifiedBy?: string | undefined;
343
- start?: (moment195.Moment | string) | undefined;
344
- end?: (moment195.Moment | string) | undefined;
343
+ start?: (moment197.Moment | string) | undefined;
344
+ end?: (moment197.Moment | string) | undefined;
345
345
  potentialCenter?: string | undefined;
346
346
  type?: string | undefined;
347
347
  tags?: Tag[] | undefined;
@@ -1,12 +1,12 @@
1
1
  import { BaseOptions } from "../../../common/types.js";
2
2
  import { Types } from "../../../core/types/index.js";
3
- import * as xlsx0 from "xlsx";
3
+ import * as xlsx1 from "xlsx";
4
4
 
5
5
  //#region src/SchoolSoft/file/to/index.d.ts
6
6
  declare class export_default {
7
7
  static schedules: (schedule: Types.Mixed.Schedule & {
8
8
  division?: Types.Mixed.Division;
9
- }, options?: BaseOptions) => xlsx0.WorkBook;
9
+ }, options?: BaseOptions) => xlsx1.WorkBook;
10
10
  }
11
11
  //#endregion
12
12
  export { export_default };
@@ -32,6 +32,8 @@ declare namespace Types {
32
32
  type User = Deep.User;
33
33
  type Thread = Deep.Thread;
34
34
  type Schedule = Deep.Schedule;
35
+ type Conversation = Deep.Conversation;
36
+ type Message = Deep.Message;
35
37
  }
36
38
  namespace Serialized {
37
39
  type Configuration = Serialized.Configuration.Base;
@@ -55,6 +57,8 @@ declare namespace Types {
55
57
  type User = Serialized.User;
56
58
  type Thread = Serialized.Thread;
57
59
  type Schedule = Serialized.Schedule;
60
+ type Conversation = Serialized.Conversation;
61
+ type Message = Serialized.Message;
58
62
  }
59
63
  namespace Mixed {
60
64
  type Configuration = Mixed.Configuration.Base;
@@ -78,6 +82,8 @@ declare namespace Types {
78
82
  type User = Mixed.User;
79
83
  type Thread = Mixed.Thread;
80
84
  type Schedule = Mixed.Schedule;
85
+ type Conversation = Mixed.Conversation;
86
+ type Message = Mixed.Message;
81
87
  }
82
88
  namespace MixedWithoutInternalId {
83
89
  type Configuration = MixedWithOptionalId.Configuration.Base;
@@ -101,6 +107,8 @@ declare namespace Types {
101
107
  type User = MixedWithOptionalId.User;
102
108
  type Thread = MixedWithOptionalId.Thread;
103
109
  type Schedule = MixedWithOptionalId.Schedule;
110
+ type Conversation = MixedWithOptionalId.Conversation;
111
+ type Message = MixedWithOptionalId.Message;
104
112
  }
105
113
  namespace SerializedWithOptionalId {
106
114
  type Configuration = SerializedWithOptionalId.Configuration.Base;
@@ -124,6 +132,8 @@ declare namespace Types {
124
132
  type User = SerializedWithOptionalId.User;
125
133
  type Thread = SerializedWithOptionalId.Thread;
126
134
  type Schedule = SerializedWithOptionalId.Schedule;
135
+ type Conversation = SerializedWithOptionalId.Conversation;
136
+ type Message = SerializedWithOptionalId.Message;
127
137
  }
128
138
  }
129
139
  //#endregion
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@royalschedule/maps",
3
3
  "description": "",
4
- "version": "4.0.36",
4
+ "version": "4.0.37",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",