subscribable-things 2.1.18 → 2.1.20

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 { IReportBody } from './report-body';
2
2
  export interface IReport {
3
- readonly body?: IReportBody;
3
+ readonly body: null | IReportBody;
4
4
  readonly type: string;
5
5
  readonly url: string;
6
6
  }
@@ -1 +1 @@
1
- {"version":3,"file":"report.d.ts","sourceRoot":"","sources":["../../../src/interfaces/report.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAG5C,MAAM,WAAW,OAAO;IACpB,QAAQ,CAAC,IAAI,CAAC,EAAE,WAAW,CAAC;IAE5B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAEtB,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;CACxB"}
1
+ {"version":3,"file":"report.d.ts","sourceRoot":"","sources":["../../../src/interfaces/report.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAG5C,MAAM,WAAW,OAAO;IACpB,QAAQ,CAAC,IAAI,EAAE,IAAI,GAAG,WAAW,CAAC;IAElC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAEtB,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;CACxB"}
package/package.json CHANGED
@@ -15,18 +15,18 @@
15
15
  }
16
16
  ],
17
17
  "dependencies": {
18
- "@babel/runtime": "^7.22.3",
18
+ "@babel/runtime": "^7.22.5",
19
19
  "rxjs-interop": "^2.0.0",
20
- "tslib": "^2.5.2"
20
+ "tslib": "^2.5.3"
21
21
  },
22
22
  "description": "A collection of reactive wrappers for various browser APIs.",
23
23
  "devDependencies": {
24
- "@babel/core": "^7.22.1",
25
- "@babel/plugin-external-helpers": "^7.18.6",
26
- "@babel/plugin-transform-runtime": "^7.22.2",
27
- "@babel/preset-env": "^7.22.2",
28
- "@commitlint/cli": "^17.6.3",
29
- "@commitlint/config-angular": "^17.6.3",
24
+ "@babel/core": "^7.22.5",
25
+ "@babel/plugin-external-helpers": "^7.22.5",
26
+ "@babel/plugin-transform-runtime": "^7.22.5",
27
+ "@babel/preset-env": "^7.22.5",
28
+ "@commitlint/cli": "^17.6.5",
29
+ "@commitlint/config-angular": "^17.6.5",
30
30
  "@rollup/plugin-babel": "^6.0.3",
31
31
  "baconjs": "^3.0.17",
32
32
  "body-parser": "^1.20.2",
@@ -34,8 +34,8 @@
34
34
  "chai": "^4.3.7",
35
35
  "commitizen": "^4.3.0",
36
36
  "cz-conventional-changelog": "^3.3.0",
37
- "eslint": "^8.41.0",
38
- "eslint-config-holy-grail": "^56.0.7",
37
+ "eslint": "^8.42.0",
38
+ "eslint-config-holy-grail": "^57.2.9",
39
39
  "grunt": "^1.6.1",
40
40
  "grunt-cli": "^1.4.3",
41
41
  "grunt-sh": "^0.2.1",
@@ -56,17 +56,17 @@
56
56
  "prettier": "^2.8.8",
57
57
  "pretty-quick": "^3.1.3",
58
58
  "rimraf": "^5.0.1",
59
- "rollup": "^3.23.0",
59
+ "rollup": "^3.24.0",
60
60
  "rxjs": "^7.8.1",
61
61
  "rxjs-for-await": "^1.0.0",
62
62
  "sinon": "^15.1.0",
63
63
  "sinon-chai": "^3.7.0",
64
64
  "ts-loader": "^9.4.3",
65
- "tsconfig-holy-grail": "^13.0.3",
65
+ "tsconfig-holy-grail": "^14.0.3",
66
66
  "tslint": "^6.1.3",
67
- "tslint-config-holy-grail": "^55.0.1",
68
- "typescript": "^4.9.5",
69
- "webpack": "^5.84.1",
67
+ "tslint-config-holy-grail": "^55.0.2",
68
+ "typescript": "^5.1.3",
69
+ "webpack": "^5.86.0",
70
70
  "xstream": "^11.14.0"
71
71
  },
72
72
  "files": [
@@ -95,5 +95,5 @@
95
95
  "test": "grunt lint && grunt test"
96
96
  },
97
97
  "types": "build/es2019/module.d.ts",
98
- "version": "2.1.18"
98
+ "version": "2.1.20"
99
99
  }
@@ -2,7 +2,7 @@ import { IReportBody } from './report-body';
2
2
 
3
3
  // @todo TypeScript does not include type definitions for the Reporting API yet.
4
4
  export interface IReport {
5
- readonly body?: IReportBody;
5
+ readonly body: null | IReportBody;
6
6
 
7
7
  readonly type: string;
8
8