@royalschedule/maps 4.1.2 → 4.1.3
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
|
|
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) =>
|
|
17
|
+
}, _options?: Types$1.options) => xlsx0.WorkBook;
|
|
18
18
|
}
|
|
19
19
|
//#endregion
|
|
20
20
|
export { export_default };
|
package/dist/Excel/v1/index.d.ts
CHANGED
|
@@ -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
|
|
9
|
+
import * as moment7 from "moment";
|
|
10
10
|
|
|
11
11
|
//#region src/Excel/v1/index.d.ts
|
|
12
12
|
declare class Map {
|
|
@@ -201,8 +201,8 @@ declare class Map {
|
|
|
201
201
|
course?: string | undefined;
|
|
202
202
|
linkedEventsSet?: string | undefined;
|
|
203
203
|
period?: string | undefined;
|
|
204
|
-
start?: (
|
|
205
|
-
end?: (
|
|
204
|
+
start?: (moment7.Moment | string) | undefined;
|
|
205
|
+
end?: (moment7.Moment | string) | undefined;
|
|
206
206
|
belongsTo?: string | undefined;
|
|
207
207
|
potentialCenter?: string | undefined;
|
|
208
208
|
type?: string | undefined;
|
package/dist/Excel/v2/index.d.ts
CHANGED
|
@@ -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
|
|
9
|
+
import * as moment5 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?: (
|
|
201
|
-
end?: (
|
|
200
|
+
start?: (moment5.Moment | string) | undefined;
|
|
201
|
+
end?: (moment5.Moment | string) | undefined;
|
|
202
202
|
potentialCenter?: string | undefined;
|
|
203
203
|
type?: string | undefined;
|
|
204
204
|
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
|
|
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) =>
|
|
9
|
+
}, options?: BaseOptions) => xlsx1.WorkBook;
|
|
10
10
|
}
|
|
11
11
|
//#endregion
|
|
12
12
|
export { export_default };
|