@balena/odata-parser 3.0.7 → 3.0.8

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,3 +1,14 @@
1
+ - commits:
2
+ - subject: Fix type checking of the declaration file
3
+ hash: 17dc377da3031f28bb5f2ffaff9b2185d65159aa
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: Pagan Gazzard
9
+ version: 3.0.8
10
+ title: ""
11
+ date: 2024-06-03T15:30:15.363Z
1
12
  - commits:
2
13
  - subject: Update dependency husky to v9
3
14
  hash: 8d5929cbbce1765e8ad14a84a1b6e669daedd9a8
@@ -9,7 +20,7 @@
9
20
  author: Self-hosted Renovate Bot
10
21
  version: 3.0.7
11
22
  title: ""
12
- date: 2024-04-13T13:45:47.203Z
23
+ date: 2024-04-13T14:30:01.103Z
13
24
  - commits:
14
25
  - subject: Update dependency peggy to v4
15
26
  hash: d0c83b2955f285f3cac927e4310e0b948d522189
package/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file
4
4
  automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
5
5
  This project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
+ # v3.0.8
8
+ ## (2024-06-03)
9
+
10
+ * Fix type checking of the declaration file [Pagan Gazzard]
11
+
7
12
  # v3.0.7
8
13
  ## (2024-04-13)
9
14
 
package/odata-parser.d.ts CHANGED
@@ -77,7 +77,8 @@ export interface ODataOptions {
77
77
  | OrderByOption
78
78
  | FormatOption
79
79
  | number
80
- | boolean;
80
+ | boolean
81
+ | undefined;
81
82
  }
82
83
  export interface ODataQuery extends ResourceOptions {
83
84
  resource: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balena/odata-parser",
3
- "version": "3.0.7",
3
+ "version": "3.0.8",
4
4
  "description": "An OData parser written in OMeta",
5
5
  "main": "odata-parser.js",
6
6
  "scripts": {
@@ -39,6 +39,6 @@
39
39
  "npm": ">=8.1.0"
40
40
  },
41
41
  "versionist": {
42
- "publishedAt": "2024-04-13T13:45:47.309Z"
42
+ "publishedAt": "2024-06-03T15:30:15.468Z"
43
43
  }
44
44
  }
package/tsconfig.json CHANGED
@@ -12,7 +12,6 @@
12
12
  "removeComments": true,
13
13
  "sourceMap": true,
14
14
  "declaration": true,
15
- "skipLibCheck": true,
16
15
  "outDir": "out",
17
16
  "allowJs": true
18
17
  },