@xyo-network/core 2.21.2 → 2.21.3

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.
@@ -1,2 +1,2 @@
1
1
  import { XyoBoundWitnessBase } from './Base';
2
- export declare type XyoBoundWitness<T extends object = XyoBoundWitnessBase> = T & XyoBoundWitnessBase;
2
+ export declare type XyoBoundWitness<T extends object = object> = T & XyoBoundWitnessBase;
@@ -3,4 +3,4 @@ import { XyoPayload } from '../models';
3
3
  import { XyoSchemaPayload } from '../Schema';
4
4
  export declare const isXyoPayloadOfSchemaType: <T extends XyoPayload<object>>(schema: string) => (x: XyoPayload) => x is T;
5
5
  export declare const isXyoSchemaPayload: (x: XyoPayload) => x is XyoSchemaPayload;
6
- export declare const isXyoBoundWitnessPayload: (x: XyoPayload) => x is XyoBoundWitness<import("../BoundWitness").XyoBoundWitnessBase>;
6
+ export declare const isXyoBoundWitnessPayload: (x: XyoPayload) => x is XyoBoundWitness<object>;
package/package.json CHANGED
@@ -59,6 +59,6 @@
59
59
  },
60
60
  "sideEffects": true,
61
61
  "types": "dist/esm/index.d.ts",
62
- "version": "2.21.2",
62
+ "version": "2.21.3",
63
63
  "packageManager": "yarn@3.1.1"
64
64
  }
@@ -1,3 +1,3 @@
1
1
  import { XyoBoundWitnessBase } from './Base'
2
2
 
3
- export type XyoBoundWitness<T extends object = XyoBoundWitnessBase> = T & XyoBoundWitnessBase
3
+ export type XyoBoundWitness<T extends object = object> = T & XyoBoundWitnessBase