@osdk/react 0.9.0-rc.11 → 0.9.0
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 +27 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @osdkkit/react
|
|
2
2
|
|
|
3
|
+
## 0.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 6cfe14a: add new useOsdkFunction hook and supporting client infrastructure
|
|
8
|
+
- 43d342e: Fix fetchMore in useObjectSet and useLinks
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 322c5bc: Simulated release
|
|
13
|
+
- ddef59f: update docs
|
|
14
|
+
- adca853: fix fetchMore behavior
|
|
15
|
+
- acf6331: Include AGENTS.md and docs directory in published package for improved AI assistant support
|
|
16
|
+
- 74e3ba7: Preserve aggregate option literal types in useOsdkAggregation using const type parameter
|
|
17
|
+
- a6d4d49: fix useLinks stabilization
|
|
18
|
+
- ba3159c: improve loading logic to make loading state consistent / reduce flashing
|
|
19
|
+
- eb3a556: wire totalCount for osdk react hooks
|
|
20
|
+
- a23784c: wire action edit response types through for useOsdkAction
|
|
21
|
+
- ecd18e2: fix pivotTo with where usage
|
|
22
|
+
- 31cd835: Revert beta changes
|
|
23
|
+
- 38d5958: fix order by via key stabilization
|
|
24
|
+
- 56ba08f: support interfaces for osdk react hooks
|
|
25
|
+
- 0dbd0d0: add useOsdkObjects rid querying support
|
|
26
|
+
- 0395d4b: Pins Foundry core and admin packages to monorepo version
|
|
27
|
+
- 0b2cd91: fix SimplePropertyDef issue, wire RDPs through, update names
|
|
28
|
+
- db28747: rdp typing improvements
|
|
29
|
+
|
|
3
30
|
## 0.9.0-rc.11
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/react",
|
|
3
|
-
"version": "0.9.0
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -57,11 +57,11 @@
|
|
|
57
57
|
"react": "^18.3.1",
|
|
58
58
|
"tiny-invariant": "^1.3.3",
|
|
59
59
|
"typescript": "~5.5.4",
|
|
60
|
-
"@osdk/
|
|
61
|
-
"@osdk/
|
|
62
|
-
"@osdk/monorepo.api-extractor": "~0.6.0
|
|
63
|
-
"@osdk/
|
|
64
|
-
"@osdk/
|
|
60
|
+
"@osdk/client": "2.7.0",
|
|
61
|
+
"@osdk/monorepo.tsconfig": "~0.6.0",
|
|
62
|
+
"@osdk/monorepo.api-extractor": "~0.6.0",
|
|
63
|
+
"@osdk/client.test.ontology": "2.7.0",
|
|
64
|
+
"@osdk/api": "2.7.0"
|
|
65
65
|
},
|
|
66
66
|
"publishConfig": {
|
|
67
67
|
"access": "public"
|