ical-generator 1.15.0 → 1.15.1
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/CHANGELOG.md +4 -0
- package/index.d.ts +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ _The following document documents changes to this library. Changes to the depend
|
|
|
4
4
|
|
|
5
5
|
<br />
|
|
6
6
|
|
|
7
|
+
## [1.15.1](https://github.com/sebbo2002/ical-generator/releases/tag/1.15.1) - 2020-10-03
|
|
8
|
+
### Bugfix
|
|
9
|
+
- Typings: OPT_PARTICIPANT should be OPT-PARTICIPANT (#192)
|
|
10
|
+
|
|
7
11
|
## [1.15.0](https://github.com/sebbo2002/ical-generator/releases/tag/1.15.0) - 2020-08-24
|
|
8
12
|
### Feature
|
|
9
13
|
- Events: Add WKST support
|
package/index.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ declare module 'ical-generator' {
|
|
|
17
17
|
type status = 'CONFIRMED' | 'TENTATIVE' | 'CANCELLED';
|
|
18
18
|
type busystatus = 'FREE' | 'TENTATIVE' | 'BUSY' | 'OOF';
|
|
19
19
|
type day = 'SU' | 'MO' | 'TU' | 'WE' | 'TH' | 'FR' | 'SA';
|
|
20
|
-
type attendeeRole = 'CHAIR' | 'REQ-PARTICIPANT' | '
|
|
20
|
+
type attendeeRole = 'CHAIR' | 'REQ-PARTICIPANT' | 'OPT-PARTICIPANT' | 'NON-PARTICIPANT';
|
|
21
21
|
type attendeeStatus = 'ACCEPTED' | 'TENTATIVE' | 'DECLINED' | 'DELEGATED' | 'NEEDS-ACTION';
|
|
22
22
|
type attendeeRsvp = 'true' | 'false' | true | false;
|
|
23
23
|
type attendeeType = 'INDIVIDUAL' | 'GROUP' | 'RESOURCE' | 'ROOM' | 'UNKNOWN';
|
package/package.json
CHANGED
|
@@ -14,21 +14,21 @@
|
|
|
14
14
|
"moment-timezone": "^0.5.31"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@babel/cli": "^7.
|
|
18
|
-
"@babel/core": "^7.11.
|
|
19
|
-
"@babel/preset-env": "^7.11.
|
|
17
|
+
"@babel/cli": "^7.11.6",
|
|
18
|
+
"@babel/core": "^7.11.6",
|
|
19
|
+
"@babel/preset-env": "^7.11.5",
|
|
20
20
|
"babel-loader": "^8.1.0",
|
|
21
|
-
"babel-plugin-add-module-exports": "^1.0.
|
|
22
|
-
"eslint": "^7.
|
|
21
|
+
"babel-plugin-add-module-exports": "^1.0.4",
|
|
22
|
+
"eslint": "^7.10.0",
|
|
23
23
|
"jquery": "^3.5.1",
|
|
24
24
|
"jshint": "^2.12.0",
|
|
25
|
-
"mocha": "^8.1.
|
|
25
|
+
"mocha": "^8.1.3",
|
|
26
26
|
"mochawesome": "^6.1.1",
|
|
27
|
-
"moment": "^2.
|
|
27
|
+
"moment": "^2.29.0",
|
|
28
28
|
"npm-check": "^5.9.2",
|
|
29
29
|
"nyc": "^15.1.0",
|
|
30
30
|
"portfinder": "^1.0.28",
|
|
31
|
-
"webpack": "^4.44.
|
|
31
|
+
"webpack": "^4.44.2",
|
|
32
32
|
"webpack-cli": "^3.3.12"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
},
|
|
56
56
|
"typings": "index.d.ts",
|
|
57
57
|
"runkitExampleFilename": "examples/example-runkit.js",
|
|
58
|
-
"version": "1.15.
|
|
58
|
+
"version": "1.15.1"
|
|
59
59
|
}
|