@naturalcycles/js-lib 14.202.0 → 14.203.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/dist/types.d.ts CHANGED
@@ -28,6 +28,8 @@ export type ObjectWithId = {
28
28
  export type PartialObjectWithId = {
29
29
  id?: string;
30
30
  };
31
+ export interface AnyPartialObjectWithId extends AnyObject, PartialObjectWithId {
32
+ }
31
33
  export interface AnyObjectWithId extends AnyObject, ObjectWithId {
32
34
  }
33
35
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/js-lib",
3
- "version": "14.202.0",
3
+ "version": "14.203.0",
4
4
  "scripts": {
5
5
  "prepare": "husky install",
6
6
  "build-prod": "build-prod-esm-cjs",
package/src/types.ts CHANGED
@@ -39,6 +39,8 @@ export type PartialObjectWithId = {
39
39
  id?: string
40
40
  }
41
41
 
42
+ export interface AnyPartialObjectWithId extends AnyObject, PartialObjectWithId {}
43
+
42
44
  export interface AnyObjectWithId extends AnyObject, ObjectWithId {}
43
45
 
44
46
  /**