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.
- package/.versionbot/CHANGELOG.yml +13 -1
- package/CHANGELOG.md +4 -0
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -1
|
@@ -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-
|
|
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
|
-
$?:
|
|
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.
|
|
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-
|
|
55
|
+
"publishedAt": "2025-09-03T12:49:41.497Z"
|
|
56
56
|
}
|
|
57
57
|
}
|