@osdk/api 2.2.0-rc.26 → 2.2.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 +40 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# @osdk/api
|
|
2
2
|
|
|
3
|
+
## 2.2.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 322c5bc: Simulated release
|
|
8
|
+
- c6bee50: Removes ObjectSpecifier from OsdkBase
|
|
9
|
+
- 7416ce4: Adds deleted objects and links returned from applyAction
|
|
10
|
+
- 7170fd1: Fix generics for fetchPageByRid
|
|
11
|
+
- 12843cb: Add ability to load all underlying properties of an interface.
|
|
12
|
+
- 18ba34f: Adds the ability to generate and execute functions at pinned versions
|
|
13
|
+
- 6abf078: Fixes aggregation types for datetime to include collectList and collectSet
|
|
14
|
+
- f82767c: Allow using aggregation operations for boolean property types
|
|
15
|
+
- 56aa502: Improves exposed APIs
|
|
16
|
+
- 0e874b1: Exporting more entities from functions package.
|
|
17
|
+
- abe4897: Removes support for boolean primary keys
|
|
18
|
+
- 63b2e63: Update Platform SDK Dependencies
|
|
19
|
+
- cddfbf9: Adds default value option to group by
|
|
20
|
+
- 7416ce4: Update Platform SDK Dependencies
|
|
21
|
+
- 23ea0e4: Fix type break.
|
|
22
|
+
- 26c2d95: Add experimental function to load page of objects by rid.
|
|
23
|
+
- 488b51c: Add support for using aggregations and GeoJSON types from runtime derived properties
|
|
24
|
+
- 71462e9: Updates aggregation types to support operations on additional property types
|
|
25
|
+
- fccd9ac: "Allow selecting derived properties"
|
|
26
|
+
- 5665b18: Remove selection RDPs from the API
|
|
27
|
+
- 46cede4: Fix include all properties flag.
|
|
28
|
+
- 761e69d: Added type safety to createMediaReference
|
|
29
|
+
- 889e84b: Release
|
|
30
|
+
- a6e5f89: Changes count, exactDistinct, and approximateDistinct to be non-nullable
|
|
31
|
+
- ed69666: Update conjure-lite to 0.7.1
|
|
32
|
+
- 4183a55: Refactor OsdkBase to avoid breaks with type not being discoverable
|
|
33
|
+
- 70b4464: Fix types for RDPs
|
|
34
|
+
- 791e655: Add support for geoshape and geohash action parameters.
|
|
35
|
+
- 317b555: Release
|
|
36
|
+
- 63b2e63: Supports generating queries for entrySet function types
|
|
37
|
+
- a146ce4: Cleanup RDP API
|
|
38
|
+
- 3d0ab11: Add protection for dropping unsupported enums instead of throwing"
|
|
39
|
+
- 805df40: Fix interface action types.
|
|
40
|
+
- 5467a0f: Fix orderBy argument on object load methods
|
|
41
|
+
- 63b2e63: Adds ObjectSpecifiers to generated OSDK objects
|
|
42
|
+
|
|
3
43
|
## 2.2.0-rc.26
|
|
4
44
|
|
|
5
45
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/api",
|
|
3
|
-
"version": "2.2.0
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"access": "public",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@microsoft/api-extractor": "^7.52.7",
|
|
49
49
|
"ts-expect": "^1.3.0",
|
|
50
50
|
"typescript": "~5.5.4",
|
|
51
|
-
"@osdk/monorepo.api-extractor": "~0.1.0
|
|
52
|
-
"@osdk/monorepo.tsconfig": "~0.1.0
|
|
51
|
+
"@osdk/monorepo.api-extractor": "~0.1.0",
|
|
52
|
+
"@osdk/monorepo.tsconfig": "~0.1.0"
|
|
53
53
|
},
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public"
|