@xyo-network/core 2.21.4 → 2.21.5

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.
@@ -8,9 +8,15 @@ export interface XyoPayloadMetaBase {
8
8
  _reportedHash?: string;
9
9
  _timestamp: number;
10
10
  _sources?: XyoPayload[];
11
- _queryId?: string;
11
+ }
12
+ export interface XyoQueryPayloadMetaBase extends XyoPayloadMetaBase {
13
+ _queryId: string;
12
14
  }
13
15
  export declare type XyoPayloadMeta<T = unknown> = T & XyoPayloadMetaBase;
14
16
  export declare type XyoPartialPayloadMeta<T = unknown> = T & Partial<XyoPayloadMetaBase>;
15
17
  export declare type XyoPayloadWithMeta<T = unknown> = T & XyoPayloadMetaBase & XyoPayloadBase;
16
18
  export declare type XyoPayloadWithPartialMeta<T = unknown> = T & Partial<XyoPayloadMetaBase> & XyoPayloadBase;
19
+ export declare type XyoQueryPayloadMeta<T = unknown> = T & XyoQueryPayloadMetaBase;
20
+ export declare type XyoQueryPartialPayloadMeta<T = unknown> = T & Partial<XyoQueryPayloadMetaBase>;
21
+ export declare type XyoQueryPayloadWithMeta<T = unknown> = T & XyoQueryPayloadMetaBase & XyoPayloadBase;
22
+ export declare type XyoQueryPayloadWithPartialMeta<T = unknown> = T & Partial<XyoQueryPayloadMetaBase> & XyoPayloadBase;
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.4",
62
+ "version": "2.21.5",
63
63
  "packageManager": "yarn@3.1.1"
64
64
  }
@@ -9,10 +9,18 @@ export interface XyoPayloadMetaBase {
9
9
  _reportedHash?: string
10
10
  _timestamp: number
11
11
  _sources?: XyoPayload[]
12
- _queryId?: string
12
+ }
13
+
14
+ export interface XyoQueryPayloadMetaBase extends XyoPayloadMetaBase {
15
+ _queryId: string
13
16
  }
14
17
 
15
18
  export type XyoPayloadMeta<T = unknown> = T & XyoPayloadMetaBase
16
19
  export type XyoPartialPayloadMeta<T = unknown> = T & Partial<XyoPayloadMetaBase>
17
20
  export type XyoPayloadWithMeta<T = unknown> = T & XyoPayloadMetaBase & XyoPayloadBase
18
21
  export type XyoPayloadWithPartialMeta<T = unknown> = T & Partial<XyoPayloadMetaBase> & XyoPayloadBase
22
+
23
+ export type XyoQueryPayloadMeta<T = unknown> = T & XyoQueryPayloadMetaBase
24
+ export type XyoQueryPartialPayloadMeta<T = unknown> = T & Partial<XyoQueryPayloadMetaBase>
25
+ export type XyoQueryPayloadWithMeta<T = unknown> = T & XyoQueryPayloadMetaBase & XyoPayloadBase
26
+ export type XyoQueryPayloadWithPartialMeta<T = unknown> = T & Partial<XyoQueryPayloadMetaBase> & XyoPayloadBase