@orpc/shared 1.7.0 → 1.7.1

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/dist/index.d.mts CHANGED
@@ -185,7 +185,7 @@ declare function isObject(value: unknown): value is Record<PropertyKey, unknown>
185
185
  */
186
186
  declare function isTypescriptObject(value: unknown): value is object & Record<PropertyKey, unknown>;
187
187
  declare function clone<T>(value: T): T;
188
- declare function get(object: object, path: readonly string[]): unknown;
188
+ declare function get(object: unknown, path: readonly string[]): unknown;
189
189
  declare function isPropertyKey(value: unknown): value is PropertyKey;
190
190
  declare const NullProtoObj: ({
191
191
  new <T extends Record<PropertyKey, unknown>>(): T;
package/dist/index.d.ts CHANGED
@@ -185,7 +185,7 @@ declare function isObject(value: unknown): value is Record<PropertyKey, unknown>
185
185
  */
186
186
  declare function isTypescriptObject(value: unknown): value is object & Record<PropertyKey, unknown>;
187
187
  declare function clone<T>(value: T): T;
188
- declare function get(object: object, path: readonly string[]): unknown;
188
+ declare function get(object: unknown, path: readonly string[]): unknown;
189
189
  declare function isPropertyKey(value: unknown): value is PropertyKey;
190
190
  declare const NullProtoObj: ({
191
191
  new <T extends Record<PropertyKey, unknown>>(): T;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orpc/shared",
3
3
  "type": "module",
4
- "version": "1.7.0",
4
+ "version": "1.7.1",
5
5
  "license": "MIT",
6
6
  "homepage": "https://orpc.unnoq.com",
7
7
  "repository": {