ical-generator 4.1.0-develop.1 → 4.1.0-develop.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.
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "@semantic-release/changelog": "^6.0.3",
13
13
  "@semantic-release/exec": "^6.0.3",
14
14
  "@semantic-release/git": "^10.0.1",
15
- "@semantic-release/npm": "^10.0.2",
15
+ "@semantic-release/npm": "^10.0.3",
16
16
  "@touch4it/ical-timezones": "^1.9.0",
17
17
  "@types/luxon": "^3.3.0",
18
18
  "@types/mocha": "^10.0.1",
@@ -21,7 +21,7 @@
21
21
  "@typescript-eslint/parser": "^5.57.0",
22
22
  "c8": "^7.11.3",
23
23
  "dayjs": "^1.11.7",
24
- "eslint": "^8.37.0",
24
+ "eslint": "^8.39.0",
25
25
  "eslint-plugin-jsonc": "^2.7.0",
26
26
  "esm": "^3.2.25",
27
27
  "license-checker": "^25.0.1",
@@ -29,7 +29,7 @@
29
29
  "mocha": "^10.2.0",
30
30
  "mochawesome": "^7.1.3",
31
31
  "moment": "^2.29.4",
32
- "moment-timezone": "^0.5.42",
32
+ "moment-timezone": "^0.5.43",
33
33
  "nyc": "^15.1.0",
34
34
  "portfinder": "^1.0.32",
35
35
  "rrule": "^2.7.2",
@@ -38,7 +38,7 @@
38
38
  "source-map-support": "^0.5.21",
39
39
  "ts-node": "^10.9.1",
40
40
  "tsup": "^6.7.0",
41
- "typedoc": "^0.23.28",
41
+ "typedoc": "^0.24.6",
42
42
  "typescript": "^5.0.4"
43
43
  },
44
44
  "engines": {
@@ -128,5 +128,5 @@
128
128
  "test": "mocha"
129
129
  },
130
130
  "type": "module",
131
- "version": "4.1.0-develop.1"
131
+ "version": "4.1.0-develop.3"
132
132
  }
package/src/event.ts CHANGED
@@ -1086,7 +1086,7 @@ export default class ICalEvent {
1086
1086
  *
1087
1087
  * ```javascript
1088
1088
  * import ical, {ICalEventBusyStatus} from 'ical-generator';
1089
- * event.busystatus(ICalEventStatus.BUSY);
1089
+ * event.busystatus(ICalEventBusyStatus.BUSY);
1090
1090
  * ```
1091
1091
  *
1092
1092
  * @since 1.0.2
package/src/types.ts CHANGED
@@ -73,7 +73,7 @@ export interface ICalLuxonDateTimeStub {
73
73
  toFormat(fmt: string): string;
74
74
  toJSDate(): Date;
75
75
  get isValid(): boolean;
76
- toJSON(): string;
76
+ toJSON(): string | null;
77
77
  }
78
78
 
79
79
  export interface ICalDayJsStub {