pinejs-client-core 8.3.1 → 8.3.2

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,15 @@
1
+ - commits:
2
+ - subject: "Improve typing of the `$: 'prop_name'` case"
3
+ hash: adf6dbc6225ee22a72512e2416470556594fb566
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: Pagan Gazzard
9
+ nested: []
10
+ version: 8.3.2
11
+ title: ""
12
+ date: 2025-09-03T12:49:41.378Z
1
13
  - commits:
2
14
  - subject: Update dependencies
3
15
  hash: 8836413c5bf77bb637e61e65fc54f73affeed69f
@@ -9,7 +21,7 @@
9
21
  nested: []
10
22
  version: 8.3.1
11
23
  title: ""
12
- date: 2025-08-01T13:55:58.136Z
24
+ date: 2025-08-01T14:12:31.816Z
13
25
  - commits:
14
26
  - subject: Add support to odata-actions
15
27
  hash: 2bbb89d841a0122a069f1b89aac3503b38880ee5
package/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ 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
+ ## 8.3.2 - 2025-09-03
8
+
9
+ * Improve typing of the `$: 'prop_name'` case [Pagan Gazzard]
10
+
7
11
  ## 8.3.1 - 2025-08-01
8
12
 
9
13
  * Update dependencies [Pagan Gazzard]
package/dist/index.d.ts CHANGED
@@ -209,7 +209,7 @@ export type NestedFilterOperations<T extends Resource['Read'], NestedKey extends
209
209
  type FilterOperations<T extends Resource['Read']> = {
210
210
  '@'?: string;
211
211
  $raw?: RawFilter<T>;
212
- $?: string | string[];
212
+ $?: StringKeyOf<T> | string[];
213
213
  $and?: Filter<T>;
214
214
  $or?: Filter<T>;
215
215
  $not?: Filter<T>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinejs-client-core",
3
- "version": "8.3.1",
3
+ "version": "8.3.2",
4
4
  "description": "This module provides the core tools to enable easier interaction with the pinejs API.",
5
5
  "type": "commonjs",
6
6
  "browser": "dist",
@@ -52,6 +52,6 @@
52
52
  "_": "test/*.ts"
53
53
  },
54
54
  "versionist": {
55
- "publishedAt": "2025-08-01T13:55:58.305Z"
55
+ "publishedAt": "2025-09-03T12:49:41.497Z"
56
56
  }
57
57
  }
package/src/index.ts CHANGED
@@ -1960,7 +1960,7 @@ type FilterOperations<T extends Resource['Read']> = {
1960
1960
 
1961
1961
  $raw?: RawFilter<T>;
1962
1962
 
1963
- $?: string | string[];
1963
+ $?: StringKeyOf<T> | string[];
1964
1964
 
1965
1965
  $and?: Filter<T>;
1966
1966
  $or?: Filter<T>;