@osdk/api 2.1.0-rc.32 → 2.1.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 +59 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,64 @@
|
|
|
1
1
|
# @osdk/api
|
|
2
2
|
|
|
3
|
+
## 2.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 966d408: Rename type for base action parameter types.
|
|
8
|
+
- cddc196: Try-catches handlers called during subscription
|
|
9
|
+
- d794c19: Adding support for struct action params.
|
|
10
|
+
- 05febf4: Adds Reference Update support in subscribe
|
|
11
|
+
- 55c05f2: Remove runtime derived properties from external types.
|
|
12
|
+
- 0dc40b0: Switch to OSDK.Instance
|
|
13
|
+
- 25fd9f0: Updating package.json to have better entry points to support react native bundlers.
|
|
14
|
+
- 11a05cc: Updated subscribe api to make requesting properties optional
|
|
15
|
+
- 7865cb6: Add support for search on struct properties.
|
|
16
|
+
- 9c4efe6: Support uploading media parameters through actions
|
|
17
|
+
- 3ea2e79: Creates new export for internal helper functions
|
|
18
|
+
- 1812118: Add geotime support for OSDK.
|
|
19
|
+
- bc1761c: Update platform API dependencies.
|
|
20
|
+
- 656f975: Fixes attachment upload inputs sending incorrect in browser contexts
|
|
21
|
+
- f1145ff: Adds support for runtime derived properties
|
|
22
|
+
- f446d0c: Exposes $clone from OSDK Object instances
|
|
23
|
+
- c80ca45: Add ability to create interfaces through actions now.
|
|
24
|
+
- bb8b219: Use new external packages instead of the internal ones.
|
|
25
|
+
- 03f95eb: Add support for interface params in actions.
|
|
26
|
+
- 1a89f23: Removing support for augmenting interfaces when fetching them.
|
|
27
|
+
- 9d35a1f: Remove unused imports
|
|
28
|
+
- c691c8b: Package now has experimental support for commonjs
|
|
29
|
+
- 749cf69: Remove experimental non null for now.
|
|
30
|
+
- f03e39f: Add a namespace type for listeners.
|
|
31
|
+
- 11088aa: Fix where clause types so we don't accept more than one key in the clauses.
|
|
32
|
+
- 72c1905: Fixes a bug where any/never could be interpreted wrong when used in types for determining fetch results
|
|
33
|
+
- 9298f75: Using new interface APIs for backend.
|
|
34
|
+
- f34b3d4: Add ability to fetch by rid, experimentally.
|
|
35
|
+
- acbfab9: Fixes where clauses for interfaces with no properties.
|
|
36
|
+
- 62c1d63: Add support for reading media reference property in OSDK.
|
|
37
|
+
- 3c9ac22: Cleaning up where clause types.
|
|
38
|
+
- 1591f04: Rename base property types.
|
|
39
|
+
- 03e1941: Add support for null filter on geo properties.
|
|
40
|
+
- abfe4b3: Add support for reading struct properties.
|
|
41
|
+
- b79becf: Modify return type for fetch single on links.
|
|
42
|
+
- 27866a8: Removing interface argument for selecting object types. This is not supported in the new apis, and is not being used internally anywhere with the old apis.
|
|
43
|
+
- e5fe7c0: Adds experimental method to convert an object set into RID
|
|
44
|
+
- 1b2e8c9: Adds subscribe feature directly to client
|
|
45
|
+
- 9f3807c: Allows $in to take a readonly array
|
|
46
|
+
- 0c56d21: Exposing fuzzy searching.
|
|
47
|
+
- e548b9b: Updates subscribe to return object updates
|
|
48
|
+
- ee6224b: Explicitly type aggregation types in queries.
|
|
49
|
+
- 1dc0228: Change experimental code style to prevent future breaks
|
|
50
|
+
- 6c60414: Ensure that inferred return type of ObjectSet.fetchPage where only the ObjectTypeDefinition is inferred, does not default to $notStrict
|
|
51
|
+
- 5fe2c8d: Remove ability to filter on entire struct.
|
|
52
|
+
- d3b3f35: Add's onSuccessfulSubscribe handler to subscribe functionality
|
|
53
|
+
- 785f663: Rename namespace so not exported from api package.
|
|
54
|
+
- 6b6c8a1: Updates gateway endpoints and changes fetchContents for attachments to return a response
|
|
55
|
+
- c537e2d: Remove unused imports.
|
|
56
|
+
- 73fa373: Exports helper method to construct object sets from RIDs from internal utils
|
|
57
|
+
- 8e6a5f4: Avoid type-fest's IsAny as it doesn't always work
|
|
58
|
+
- 2d5e648: Remove subscribe from experimental gate.
|
|
59
|
+
- 31e7d70: Fixes extra generic
|
|
60
|
+
- f19da8e: Remove where clause from aggregate options. This option was never actually doing anything before as it was not passed to the backend for processing, so we are removing it to prevent future confusion.
|
|
61
|
+
|
|
3
62
|
## 2.1.0-rc.32
|
|
4
63
|
|
|
5
64
|
### Patch Changes
|