@royalschedule/maps 4.1.1-beta.0 → 4.1.2-beta.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.
@@ -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 xlsx0 from "xlsx";
3
+ import * as xlsx1 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) => xlsx0.WorkBook;
17
+ }, _options?: Types$1.options) => xlsx1.WorkBook;
18
18
  }
19
19
  //#endregion
20
20
  export { export_default };
@@ -52,16 +52,16 @@ declare class ExcelMap {
52
52
  lastModifiedBy?: string | undefined;
53
53
  tags?: Tag[] | undefined;
54
54
  minBreakLength?: number | undefined;
55
+ intervals?: Interval[] | undefined;
56
+ days?: Day[] | undefined;
57
+ weight?: number | undefined;
58
+ signature?: string | undefined;
55
59
  maxNumWorkingHours?: number | false | undefined;
56
60
  maxNumDailyWorkingHours?: number | number[] | false | undefined;
61
+ plannedScheduledDuration?: PlannedScheduledDuration | undefined;
57
62
  maximumScheduleSpan?: MaximumScheduleSpan | undefined;
58
63
  forbidOverlappingEvents?: boolean | undefined;
59
64
  disableDayLengthPunishment?: boolean | undefined;
60
- weight?: number | undefined;
61
- intervals?: Interval[] | undefined;
62
- days?: Day[] | undefined;
63
- signature?: string | undefined;
64
- plannedScheduledDuration?: PlannedScheduledDuration | undefined;
65
65
  belongsTo?: string | undefined;
66
66
  rootInterval?: string | undefined;
67
67
  lockedTimes?: string[] | undefined;
@@ -81,8 +81,8 @@ declare class ExcelMap {
81
81
  createdAt?: string | undefined;
82
82
  updatedAt?: string | undefined;
83
83
  lastModifiedBy?: string | undefined;
84
- type?: "Student" | "Teacher" | "Other" | undefined;
85
84
  tags?: Tag[] | undefined;
85
+ type?: "Student" | "Teacher" | "Other" | undefined;
86
86
  lastName?: string | undefined;
87
87
  firstName?: string | undefined;
88
88
  birthDate?: Date | undefined;
@@ -115,15 +115,15 @@ declare class ExcelMap {
115
115
  lastModifiedBy?: string | undefined;
116
116
  tags?: Tag[] | undefined;
117
117
  minBreakLength?: number | undefined;
118
+ intervals?: Interval[] | undefined;
119
+ days?: Day[] | undefined;
120
+ weight?: number | undefined;
118
121
  maxNumWorkingHours?: number | false | undefined;
119
122
  maxNumDailyWorkingHours?: number | number[] | false | undefined;
120
123
  maximumScheduleSpan?: MaximumScheduleSpan | undefined;
121
124
  forbidOverlappingEvents?: boolean | undefined;
122
125
  disableDayLengthPunishment?: boolean | undefined;
123
- weight?: number | undefined;
124
126
  species?: "class" | undefined;
125
- intervals?: Interval[] | undefined;
126
- days?: Day[] | undefined;
127
127
  belongsTo?: string | undefined;
128
128
  parentGroups?: string[] | undefined;
129
129
  subGroups?: string[] | undefined;
@@ -149,17 +149,17 @@ declare class ExcelMap {
149
149
  createdAt?: string | undefined;
150
150
  updatedAt?: string | undefined;
151
151
  lastModifiedBy?: string | undefined;
152
- type?: string | undefined;
153
152
  tags?: Tag[] | undefined;
153
+ subject?: string | undefined;
154
+ color?: string | undefined;
154
155
  minBreakLength?: MinBreakLength | undefined;
155
- weight?: number | undefined;
156
156
  intervals?: Interval[] | undefined;
157
157
  days?: Day[] | undefined;
158
- subject?: string | undefined;
159
- color?: string | undefined;
160
158
  eventDurationVariance?: number | undefined;
161
159
  centerOfAttraction?: string | null | undefined;
162
160
  density?: number | undefined;
161
+ weight?: number | undefined;
162
+ type?: string | undefined;
163
163
  plannedDuration?: string | undefined;
164
164
  minutesPerWeek?: number | undefined;
165
165
  expectedTotalHours?: number | undefined;
@@ -200,24 +200,24 @@ declare class ExcelMap {
200
200
  createdAt?: string | undefined;
201
201
  updatedAt?: string | undefined;
202
202
  lastModifiedBy?: string | undefined;
203
- start?: (moment0.Moment | string) | undefined;
204
- end?: (moment0.Moment | string) | undefined;
205
- potentialCenter?: string | undefined;
206
- type?: string | undefined;
207
203
  tags?: Tag[] | undefined;
204
+ color?: string | null | undefined;
208
205
  minBreakLength?: (MinBreakLength | null) | undefined;
209
- weight?: number | undefined;
210
206
  intervals?: Interval[] | null | undefined;
211
207
  days?: Day[] | null | undefined;
212
- color?: string | null | undefined;
213
208
  centerOfAttraction?: string | null | undefined;
214
209
  density?: number | undefined;
210
+ weight?: number | undefined;
211
+ type?: string | undefined;
215
212
  fixedStart?: boolean | undefined;
216
213
  visible?: boolean | undefined;
214
+ potentialCenter?: string | undefined;
217
215
  parked?: boolean | undefined;
218
216
  preferredDuration: number;
219
217
  durationVariance?: number | undefined;
220
218
  duration?: number | undefined;
219
+ start?: (moment0.Moment | string) | undefined;
220
+ end?: (moment0.Moment | string) | undefined;
221
221
  weeks?: number[] | undefined;
222
222
  belongsTo?: string | undefined;
223
223
  course?: 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 moment3 from "moment";
9
+ import * as moment7 from "moment";
10
10
 
11
11
  //#region src/Excel/v1/index.d.ts
12
12
  declare class Map {
@@ -50,17 +50,17 @@ declare class Map {
50
50
  belongsTo?: string | undefined;
51
51
  tags?: Tag[] | undefined;
52
52
  minBreakLength?: number | undefined;
53
+ intervals?: Interval[] | undefined;
54
+ days?: Day[] | undefined;
55
+ weight?: number | undefined;
56
+ signature?: string | undefined;
53
57
  maxNumWorkingHours?: number | false | undefined;
54
58
  maxNumDailyWorkingHours?: number | number[] | false | undefined;
59
+ plannedScheduledDuration?: PlannedScheduledDuration | undefined;
55
60
  maximumScheduleSpan?: MaximumScheduleSpan | undefined;
56
61
  forbidOverlappingEvents?: boolean | undefined;
57
62
  disableDayLengthPunishment?: boolean | undefined;
58
- weight?: number | undefined;
59
- intervals?: Interval[] | undefined;
60
- days?: Day[] | undefined;
61
63
  lunch?: string[] | undefined;
62
- signature?: string | undefined;
63
- plannedScheduledDuration?: PlannedScheduledDuration | undefined;
64
64
  complementaryTimes?: string[] | undefined;
65
65
  }[];
66
66
  persons: {
@@ -73,8 +73,8 @@ declare class Map {
73
73
  lastModifiedBy?: string | undefined;
74
74
  group?: string | undefined;
75
75
  belongsTo?: string | undefined;
76
- type?: "Student" | "Teacher" | "Other" | undefined;
77
76
  tags?: Tag[] | undefined;
77
+ type?: "Student" | "Teacher" | "Other" | undefined;
78
78
  lastName?: string | undefined;
79
79
  firstName?: string | undefined;
80
80
  birthDate?: Date | undefined;
@@ -106,18 +106,18 @@ declare class Map {
106
106
  belongsTo?: string | undefined;
107
107
  tags?: Tag[] | undefined;
108
108
  minBreakLength?: number | undefined;
109
+ intervals?: Interval[] | undefined;
110
+ days?: Day[] | undefined;
111
+ weight?: number | undefined;
109
112
  maxNumWorkingHours?: number | false | undefined;
110
113
  maxNumDailyWorkingHours?: number | number[] | false | undefined;
111
114
  maximumScheduleSpan?: MaximumScheduleSpan | undefined;
112
115
  forbidOverlappingEvents?: boolean | undefined;
113
116
  disableDayLengthPunishment?: boolean | undefined;
114
- weight?: number | undefined;
117
+ lunch?: string[] | undefined;
115
118
  species?: "class" | undefined;
116
- intervals?: Interval[] | undefined;
117
- days?: Day[] | undefined;
118
119
  parentGroups?: string[] | undefined;
119
120
  subGroups?: string[] | undefined;
120
- lunch?: string[] | undefined;
121
121
  members?: string[] | undefined;
122
122
  derivedParentGroups?: {
123
123
  implicit?: boolean | undefined;
@@ -154,17 +154,17 @@ declare class Map {
154
154
  period?: string | undefined;
155
155
  syllabus?: string | undefined;
156
156
  belongsTo?: string | undefined;
157
- type?: string | undefined;
158
157
  tags?: Tag[] | undefined;
158
+ subject?: string | undefined;
159
+ color?: string | undefined;
159
160
  minBreakLength?: MinBreakLength | undefined;
160
- weight?: number | undefined;
161
161
  intervals?: Interval[] | undefined;
162
162
  days?: Day[] | undefined;
163
- subject?: string | undefined;
164
- color?: string | undefined;
165
163
  eventDurationVariance?: number | undefined;
166
164
  centerOfAttraction?: string | null | undefined;
167
165
  density?: number | undefined;
166
+ weight?: number | undefined;
167
+ type?: string | undefined;
168
168
  plannedDuration?: string | undefined;
169
169
  minutesPerWeek?: number | undefined;
170
170
  expectedTotalHours?: number | undefined;
@@ -201,29 +201,29 @@ declare class Map {
201
201
  course?: string | undefined;
202
202
  linkedEventsSet?: string | undefined;
203
203
  period?: string | undefined;
204
- start?: (moment3.Moment | string) | undefined;
205
- end?: (moment3.Moment | string) | undefined;
206
204
  belongsTo?: string | undefined;
207
- potentialCenter?: string | undefined;
208
- type?: string | undefined;
209
205
  tags?: Tag[] | undefined;
206
+ color?: string | null | undefined;
210
207
  minBreakLength?: (MinBreakLength | null) | undefined;
211
- weight?: number | undefined;
212
208
  intervals?: Interval[] | null | undefined;
213
209
  days?: Day[] | null | undefined;
214
- color?: string | null | undefined;
215
210
  centerOfAttraction?: string | null | undefined;
216
211
  density?: number | undefined;
212
+ weight?: number | undefined;
213
+ type?: string | undefined;
217
214
  participants?: {
218
215
  groupIndex?: number | undefined;
219
216
  to: string;
220
217
  }[] | undefined;
221
218
  fixedStart?: boolean | undefined;
222
219
  visible?: boolean | undefined;
220
+ potentialCenter?: string | undefined;
223
221
  parked?: boolean | undefined;
224
222
  preferredDuration: number;
225
223
  durationVariance?: number | undefined;
226
224
  duration?: number | undefined;
225
+ start?: (moment7.Moment | string) | undefined;
226
+ end?: (moment7.Moment | string) | undefined;
227
227
  weeks?: number[] | undefined;
228
228
  overlapSpecies?: string | undefined;
229
229
  inLocations?: (string | null)[] | 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 moment1 from "moment";
9
+ import * as moment5 from "moment";
10
10
 
11
11
  //#region src/Excel/v2/index.d.ts
12
12
  declare class Map {
@@ -49,16 +49,16 @@ declare class Map {
49
49
  lastModifiedBy?: string | undefined;
50
50
  tags?: Tag[] | undefined;
51
51
  minBreakLength?: number | undefined;
52
+ intervals?: Interval[] | undefined;
53
+ days?: Day[] | undefined;
54
+ weight?: number | undefined;
55
+ signature?: string | undefined;
52
56
  maxNumWorkingHours?: number | false | undefined;
53
57
  maxNumDailyWorkingHours?: number | number[] | false | undefined;
58
+ plannedScheduledDuration?: PlannedScheduledDuration | undefined;
54
59
  maximumScheduleSpan?: MaximumScheduleSpan | undefined;
55
60
  forbidOverlappingEvents?: boolean | undefined;
56
61
  disableDayLengthPunishment?: boolean | undefined;
57
- weight?: number | undefined;
58
- intervals?: Interval[] | undefined;
59
- days?: Day[] | undefined;
60
- signature?: string | undefined;
61
- plannedScheduledDuration?: PlannedScheduledDuration | undefined;
62
62
  belongsTo?: string | undefined;
63
63
  rootInterval?: string | undefined;
64
64
  lockedTimes?: string[] | undefined;
@@ -78,8 +78,8 @@ declare class Map {
78
78
  createdAt?: string | undefined;
79
79
  updatedAt?: string | undefined;
80
80
  lastModifiedBy?: string | undefined;
81
- type?: "Student" | "Teacher" | "Other" | undefined;
82
81
  tags?: Tag[] | undefined;
82
+ type?: "Student" | "Teacher" | "Other" | undefined;
83
83
  lastName?: string | undefined;
84
84
  firstName?: string | undefined;
85
85
  birthDate?: Date | undefined;
@@ -112,15 +112,15 @@ declare class Map {
112
112
  lastModifiedBy?: string | undefined;
113
113
  tags?: Tag[] | undefined;
114
114
  minBreakLength?: number | undefined;
115
+ intervals?: Interval[] | undefined;
116
+ days?: Day[] | undefined;
117
+ weight?: number | undefined;
115
118
  maxNumWorkingHours?: number | false | undefined;
116
119
  maxNumDailyWorkingHours?: number | number[] | false | undefined;
117
120
  maximumScheduleSpan?: MaximumScheduleSpan | undefined;
118
121
  forbidOverlappingEvents?: boolean | undefined;
119
122
  disableDayLengthPunishment?: boolean | undefined;
120
- weight?: number | undefined;
121
123
  species?: "class" | undefined;
122
- intervals?: Interval[] | undefined;
123
- days?: Day[] | undefined;
124
124
  belongsTo?: string | undefined;
125
125
  parentGroups?: string[] | undefined;
126
126
  subGroups?: string[] | undefined;
@@ -146,17 +146,17 @@ declare class Map {
146
146
  createdAt?: string | undefined;
147
147
  updatedAt?: string | undefined;
148
148
  lastModifiedBy?: string | undefined;
149
- type?: string | undefined;
150
149
  tags?: Tag[] | undefined;
150
+ subject?: string | undefined;
151
+ color?: string | undefined;
151
152
  minBreakLength?: MinBreakLength | undefined;
152
- weight?: number | undefined;
153
153
  intervals?: Interval[] | undefined;
154
154
  days?: Day[] | undefined;
155
- subject?: string | undefined;
156
- color?: string | undefined;
157
155
  eventDurationVariance?: number | undefined;
158
156
  centerOfAttraction?: string | null | undefined;
159
157
  density?: number | undefined;
158
+ weight?: number | undefined;
159
+ type?: string | undefined;
160
160
  plannedDuration?: string | undefined;
161
161
  minutesPerWeek?: number | undefined;
162
162
  expectedTotalHours?: number | undefined;
@@ -197,24 +197,24 @@ declare class Map {
197
197
  createdAt?: string | undefined;
198
198
  updatedAt?: string | undefined;
199
199
  lastModifiedBy?: string | undefined;
200
- start?: (moment1.Moment | string) | undefined;
201
- end?: (moment1.Moment | string) | undefined;
202
- potentialCenter?: string | undefined;
203
- type?: string | undefined;
204
200
  tags?: Tag[] | undefined;
201
+ color?: string | null | undefined;
205
202
  minBreakLength?: (MinBreakLength | null) | undefined;
206
- weight?: number | undefined;
207
203
  intervals?: Interval[] | null | undefined;
208
204
  days?: Day[] | null | undefined;
209
- color?: string | null | undefined;
210
205
  centerOfAttraction?: string | null | undefined;
211
206
  density?: number | undefined;
207
+ weight?: number | undefined;
208
+ type?: string | undefined;
212
209
  fixedStart?: boolean | undefined;
213
210
  visible?: boolean | undefined;
211
+ potentialCenter?: string | undefined;
214
212
  parked?: boolean | undefined;
215
213
  preferredDuration: number;
216
214
  durationVariance?: number | undefined;
217
215
  duration?: number | undefined;
216
+ start?: (moment5.Moment | string) | undefined;
217
+ end?: (moment5.Moment | string) | undefined;
218
218
  weeks?: number[] | undefined;
219
219
  belongsTo?: string | undefined;
220
220
  course?: string | undefined;
@@ -23,18 +23,18 @@ declare class PlanDigitalMap {
23
23
  belongsTo?: string | undefined;
24
24
  tags?: Tag[] | undefined;
25
25
  minBreakLength?: number | undefined;
26
+ intervals?: Interval[] | undefined;
27
+ days?: Day[] | undefined;
28
+ weight?: number | undefined;
26
29
  maxNumWorkingHours?: number | false | undefined;
27
30
  maxNumDailyWorkingHours?: number | number[] | false | undefined;
28
31
  maximumScheduleSpan?: MaximumScheduleSpan | undefined;
29
32
  forbidOverlappingEvents?: boolean | undefined;
30
33
  disableDayLengthPunishment?: boolean | undefined;
31
- weight?: number | undefined;
34
+ lunch?: string[] | undefined;
32
35
  species?: "class" | undefined;
33
- intervals?: Interval[] | undefined;
34
- days?: Day[] | undefined;
35
36
  parentGroups?: string[] | undefined;
36
37
  subGroups?: string[] | undefined;
37
- lunch?: string[] | undefined;
38
38
  members?: string[] | undefined;
39
39
  derivedParentGroups?: {
40
40
  implicit?: boolean | undefined;
@@ -56,17 +56,17 @@ declare class PlanDigitalMap {
56
56
  belongsTo?: string | undefined;
57
57
  tags?: Tag[] | undefined;
58
58
  minBreakLength?: number | undefined;
59
+ intervals?: Interval[] | undefined;
60
+ days?: Day[] | undefined;
61
+ weight?: number | undefined;
62
+ signature?: string | undefined;
59
63
  maxNumWorkingHours?: number | false | undefined;
60
64
  maxNumDailyWorkingHours?: number | number[] | false | undefined;
65
+ plannedScheduledDuration?: PlannedScheduledDuration | undefined;
61
66
  maximumScheduleSpan?: MaximumScheduleSpan | undefined;
62
67
  forbidOverlappingEvents?: boolean | undefined;
63
68
  disableDayLengthPunishment?: boolean | undefined;
64
- weight?: number | undefined;
65
- intervals?: Interval[] | undefined;
66
- days?: Day[] | undefined;
67
69
  lunch?: string[] | undefined;
68
- signature?: string | undefined;
69
- plannedScheduledDuration?: PlannedScheduledDuration | undefined;
70
70
  complementaryTimes?: string[] | undefined;
71
71
  }[];
72
72
  courses?: {
@@ -97,17 +97,17 @@ declare class PlanDigitalMap {
97
97
  period?: string | undefined;
98
98
  syllabus?: string | undefined;
99
99
  belongsTo?: string | undefined;
100
- type?: string | undefined;
101
100
  tags?: Tag[] | undefined;
101
+ subject?: string | undefined;
102
+ color?: string | undefined;
102
103
  minBreakLength?: MinBreakLength | undefined;
103
- weight?: number | undefined;
104
104
  intervals?: Interval[] | undefined;
105
105
  days?: Day[] | undefined;
106
- subject?: string | undefined;
107
- color?: string | undefined;
108
106
  eventDurationVariance?: number | undefined;
109
107
  centerOfAttraction?: string | null | undefined;
110
108
  density?: number | undefined;
109
+ weight?: number | undefined;
110
+ type?: string | undefined;
111
111
  plannedDuration?: string | undefined;
112
112
  minutesPerWeek?: number | undefined;
113
113
  expectedTotalHours?: number | 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 moment5 from "moment";
10
+ import * as moment1 from "moment";
11
11
 
12
12
  //#region src/SchoolSoft/api/index.d.ts
13
13
  declare class Map {
@@ -61,16 +61,16 @@ declare class Map {
61
61
  lastModifiedBy?: string | undefined;
62
62
  tags?: Tag[] | undefined;
63
63
  minBreakLength?: number | undefined;
64
+ intervals?: Interval[] | undefined;
65
+ days?: Day[] | undefined;
66
+ weight?: number | undefined;
67
+ signature?: string | undefined;
64
68
  maxNumWorkingHours?: number | false | undefined;
65
69
  maxNumDailyWorkingHours?: number | number[] | false | undefined;
70
+ plannedScheduledDuration?: PlannedScheduledDuration | undefined;
66
71
  maximumScheduleSpan?: MaximumScheduleSpan | undefined;
67
72
  forbidOverlappingEvents?: boolean | undefined;
68
73
  disableDayLengthPunishment?: boolean | undefined;
69
- weight?: number | undefined;
70
- intervals?: Interval[] | undefined;
71
- days?: Day[] | undefined;
72
- signature?: string | undefined;
73
- plannedScheduledDuration?: PlannedScheduledDuration | undefined;
74
74
  belongsTo?: string | undefined;
75
75
  rootInterval?: string | undefined;
76
76
  lockedTimes?: string[] | undefined;
@@ -89,16 +89,16 @@ declare class Map {
89
89
  lastModifiedBy?: string | undefined;
90
90
  tags?: Tag[] | undefined;
91
91
  minBreakLength?: number | undefined;
92
+ intervals?: Interval[] | undefined;
93
+ days?: Day[] | undefined;
94
+ weight?: number | undefined;
95
+ signature?: string | undefined;
92
96
  maxNumWorkingHours?: number | false | undefined;
93
97
  maxNumDailyWorkingHours?: number | number[] | false | undefined;
98
+ plannedScheduledDuration?: PlannedScheduledDuration | undefined;
94
99
  maximumScheduleSpan?: MaximumScheduleSpan | undefined;
95
100
  forbidOverlappingEvents?: boolean | undefined;
96
101
  disableDayLengthPunishment?: boolean | undefined;
97
- weight?: number | undefined;
98
- intervals?: Interval[] | undefined;
99
- days?: Day[] | undefined;
100
- signature?: string | undefined;
101
- plannedScheduledDuration?: PlannedScheduledDuration | undefined;
102
102
  belongsTo?: string | undefined;
103
103
  rootInterval?: string | undefined;
104
104
  lockedTimes?: string[] | undefined;
@@ -120,15 +120,15 @@ declare class Map {
120
120
  lastModifiedBy?: string | undefined;
121
121
  tags?: Tag[] | undefined;
122
122
  minBreakLength?: number | undefined;
123
+ intervals?: Interval[] | undefined;
124
+ days?: Day[] | undefined;
125
+ weight?: number | undefined;
123
126
  maxNumWorkingHours?: number | false | undefined;
124
127
  maxNumDailyWorkingHours?: number | number[] | false | undefined;
125
128
  maximumScheduleSpan?: MaximumScheduleSpan | undefined;
126
129
  forbidOverlappingEvents?: boolean | undefined;
127
130
  disableDayLengthPunishment?: boolean | undefined;
128
- weight?: number | undefined;
129
131
  species?: "class" | undefined;
130
- intervals?: Interval[] | undefined;
131
- days?: Day[] | undefined;
132
132
  belongsTo?: string | undefined;
133
133
  parentGroups?: string[] | undefined;
134
134
  subGroups?: string[] | undefined;
@@ -153,15 +153,15 @@ declare class Map {
153
153
  lastModifiedBy?: string | undefined;
154
154
  tags?: Tag[] | undefined;
155
155
  minBreakLength?: number | undefined;
156
+ intervals?: Interval[] | undefined;
157
+ days?: Day[] | undefined;
158
+ weight?: number | undefined;
156
159
  maxNumWorkingHours?: number | false | undefined;
157
160
  maxNumDailyWorkingHours?: number | number[] | false | undefined;
158
161
  maximumScheduleSpan?: MaximumScheduleSpan | undefined;
159
162
  forbidOverlappingEvents?: boolean | undefined;
160
163
  disableDayLengthPunishment?: boolean | undefined;
161
- weight?: number | undefined;
162
164
  species?: "class" | undefined;
163
- intervals?: Interval[] | undefined;
164
- days?: Day[] | undefined;
165
165
  belongsTo?: string | undefined;
166
166
  parentGroups?: string[] | undefined;
167
167
  subGroups?: string[] | undefined;
@@ -187,17 +187,17 @@ declare class Map {
187
187
  createdAt?: string | undefined;
188
188
  updatedAt?: string | undefined;
189
189
  lastModifiedBy?: string | undefined;
190
- type?: string | undefined;
191
190
  tags?: Tag[] | undefined;
191
+ subject?: string | undefined;
192
+ color?: string | undefined;
192
193
  minBreakLength?: MinBreakLength | undefined;
193
- weight?: number | undefined;
194
194
  intervals?: Interval[] | undefined;
195
195
  days?: Day[] | undefined;
196
- subject?: string | undefined;
197
- color?: string | undefined;
198
196
  eventDurationVariance?: number | undefined;
199
197
  centerOfAttraction?: string | null | undefined;
200
198
  density?: number | undefined;
199
+ weight?: number | undefined;
200
+ type?: string | undefined;
201
201
  plannedDuration?: string | undefined;
202
202
  minutesPerWeek?: number | undefined;
203
203
  expectedTotalHours?: number | undefined;
@@ -235,17 +235,17 @@ declare class Map {
235
235
  createdAt?: string | undefined;
236
236
  updatedAt?: string | undefined;
237
237
  lastModifiedBy?: string | undefined;
238
- type?: string | undefined;
239
238
  tags?: Tag[] | undefined;
239
+ subject?: string | undefined;
240
+ color?: string | undefined;
240
241
  minBreakLength?: MinBreakLength | undefined;
241
- weight?: number | undefined;
242
242
  intervals?: Interval[] | undefined;
243
243
  days?: Day[] | undefined;
244
- subject?: string | undefined;
245
- color?: string | undefined;
246
244
  eventDurationVariance?: number | undefined;
247
245
  centerOfAttraction?: string | null | undefined;
248
246
  density?: number | undefined;
247
+ weight?: number | undefined;
248
+ type?: string | undefined;
249
249
  plannedDuration?: string | undefined;
250
250
  minutesPerWeek?: number | undefined;
251
251
  expectedTotalHours?: number | undefined;
@@ -286,24 +286,24 @@ declare class Map {
286
286
  createdAt?: string | undefined;
287
287
  updatedAt?: string | undefined;
288
288
  lastModifiedBy?: string | undefined;
289
- start?: (moment5.Moment | string) | undefined;
290
- end?: (moment5.Moment | string) | undefined;
291
- potentialCenter?: string | undefined;
292
- type?: string | undefined;
293
289
  tags?: Tag[] | undefined;
290
+ color?: string | null | undefined;
294
291
  minBreakLength?: (MinBreakLength | null) | undefined;
295
- weight?: number | undefined;
296
292
  intervals?: Interval[] | null | undefined;
297
293
  days?: Day[] | null | undefined;
298
- color?: string | null | undefined;
299
294
  centerOfAttraction?: string | null | undefined;
300
295
  density?: number | undefined;
296
+ weight?: number | undefined;
297
+ type?: string | undefined;
301
298
  fixedStart?: boolean | undefined;
302
299
  visible?: boolean | undefined;
300
+ potentialCenter?: string | undefined;
303
301
  parked?: boolean | undefined;
304
302
  preferredDuration: number;
305
303
  durationVariance?: number | undefined;
306
304
  duration?: number | undefined;
305
+ start?: (moment1.Moment | string) | undefined;
306
+ end?: (moment1.Moment | string) | undefined;
307
307
  weeks?: number[] | undefined;
308
308
  belongsTo?: string | undefined;
309
309
  course?: string | undefined;
@@ -341,24 +341,24 @@ declare class Map {
341
341
  createdAt?: string | undefined;
342
342
  updatedAt?: string | undefined;
343
343
  lastModifiedBy?: string | undefined;
344
- start?: (moment5.Moment | string) | undefined;
345
- end?: (moment5.Moment | string) | undefined;
346
- potentialCenter?: string | undefined;
347
- type?: string | undefined;
348
344
  tags?: Tag[] | undefined;
345
+ color?: string | null | undefined;
349
346
  minBreakLength?: (MinBreakLength | null) | undefined;
350
- weight?: number | undefined;
351
347
  intervals?: Interval[] | null | undefined;
352
348
  days?: Day[] | null | undefined;
353
- color?: string | null | undefined;
354
349
  centerOfAttraction?: string | null | undefined;
355
350
  density?: number | undefined;
351
+ weight?: number | undefined;
352
+ type?: string | undefined;
356
353
  fixedStart?: boolean | undefined;
357
354
  visible?: boolean | undefined;
355
+ potentialCenter?: string | undefined;
358
356
  parked?: boolean | undefined;
359
357
  preferredDuration: number;
360
358
  durationVariance?: number | undefined;
361
359
  duration?: number | undefined;
360
+ start?: (moment1.Moment | string) | undefined;
361
+ end?: (moment1.Moment | string) | undefined;
362
362
  weeks?: number[] | undefined;
363
363
  belongsTo?: string | undefined;
364
364
  course?: string | undefined;
@@ -399,8 +399,8 @@ declare class Map {
399
399
  createdAt?: string | undefined;
400
400
  updatedAt?: string | undefined;
401
401
  lastModifiedBy?: string | undefined;
402
- type?: "Student" | "Teacher" | "Other" | undefined;
403
402
  tags?: Tag[] | undefined;
403
+ type?: "Student" | "Teacher" | "Other" | undefined;
404
404
  lastName?: string | undefined;
405
405
  firstName?: string | undefined;
406
406
  birthDate?: Date | undefined;
@@ -428,8 +428,8 @@ declare class Map {
428
428
  createdAt?: string | undefined;
429
429
  updatedAt?: string | undefined;
430
430
  lastModifiedBy?: string | undefined;
431
- type?: "Student" | "Teacher" | "Other" | undefined;
432
431
  tags?: Tag[] | undefined;
432
+ type?: "Student" | "Teacher" | "Other" | undefined;
433
433
  lastName?: string | undefined;
434
434
  firstName?: string | undefined;
435
435
  birthDate?: Date | 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 xlsx1 from "xlsx";
3
+ import * as xlsx0 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) => xlsx1.WorkBook;
9
+ }, options?: BaseOptions) => xlsx0.WorkBook;
10
10
  }
11
11
  //#endregion
12
12
  export { export_default };
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@royalschedule/maps",
3
3
  "description": "",
4
- "version": "4.1.1-beta.0",
4
+ "version": "4.1.2-beta.0",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",
7
7
  "types": "./dist/index.d.mts",
8
8
  "exports": {
9
9
  ".": {
10
- "import": "./dist/index.mjs",
11
- "types": "./dist/index.d.mts"
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
12
  }
13
13
  },
14
14
  "engines": {