@xyo-network/diviner-model 2.53.15 → 2.53.17

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,7 +1,7 @@
1
- import { XyoQuery } from '@xyo-network/module-model';
1
+ import { Query } from '@xyo-network/module-model';
2
2
  export type XyoDivinerDivineQuerySchema = 'network.xyo.query.diviner.divine';
3
3
  export declare const XyoDivinerDivineQuerySchema: XyoDivinerDivineQuerySchema;
4
- export type XyoDivinerDivineQuery = XyoQuery<{
4
+ export type XyoDivinerDivineQuery = Query<{
5
5
  schema: XyoDivinerDivineQuerySchema;
6
6
  }>;
7
7
  //# sourceMappingURL=Divine.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Divine.d.ts","sourceRoot":"","sources":["../../../src/Queries/Divine.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAA;AAEpD,MAAM,MAAM,2BAA2B,GAAG,kCAAkC,CAAA;AAC5E,eAAO,MAAM,2BAA2B,EAAE,2BAAgE,CAAA;AAE1G,MAAM,MAAM,qBAAqB,GAAG,QAAQ,CAAC;IAC3C,MAAM,EAAE,2BAA2B,CAAA;CACpC,CAAC,CAAA"}
1
+ {"version":3,"file":"Divine.d.ts","sourceRoot":"","sources":["../../../src/Queries/Divine.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAA;AAEjD,MAAM,MAAM,2BAA2B,GAAG,kCAAkC,CAAA;AAC5E,eAAO,MAAM,2BAA2B,EAAE,2BAAgE,CAAA;AAE1G,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC;IACxC,MAAM,EAAE,2BAA2B,CAAA;CACpC,CAAC,CAAA"}
@@ -1,6 +1,6 @@
1
1
  export * from './Divine';
2
- import { ModuleQuery, XyoQuery } from '@xyo-network/module-model';
2
+ import { ModuleQuery, Query } from '@xyo-network/module-model';
3
3
  import { XyoDivinerDivineQuery } from './Divine';
4
4
  export type XyoDivinerQueryBase = XyoDivinerDivineQuery;
5
- export type XyoDivinerQuery<TQuery extends XyoQuery | void = void> = ModuleQuery<TQuery extends XyoQuery ? XyoDivinerQueryBase | TQuery : XyoDivinerQueryBase>;
5
+ export type XyoDivinerQuery<TQuery extends Query | void = void> = ModuleQuery<TQuery extends Query ? XyoDivinerQueryBase | TQuery : XyoDivinerQueryBase>;
6
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Queries/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AAExB,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAA;AAEjE,OAAO,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAA;AAEhD,MAAM,MAAM,mBAAmB,GAAG,qBAAqB,CAAA;AAEvD,MAAM,MAAM,eAAe,CAAC,MAAM,SAAS,QAAQ,GAAG,IAAI,GAAG,IAAI,IAAI,WAAW,CAC9E,MAAM,SAAS,QAAQ,GAAG,mBAAmB,GAAG,MAAM,GAAG,mBAAmB,CAC7E,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Queries/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AAExB,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAA;AAE9D,OAAO,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAA;AAEhD,MAAM,MAAM,mBAAmB,GAAG,qBAAqB,CAAA;AAEvD,MAAM,MAAM,eAAe,CAAC,MAAM,SAAS,KAAK,GAAG,IAAI,GAAG,IAAI,IAAI,WAAW,CAC3E,MAAM,SAAS,KAAK,GAAG,mBAAmB,GAAG,MAAM,GAAG,mBAAmB,CAC1E,CAAA"}
package/package.json CHANGED
@@ -10,11 +10,11 @@
10
10
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
11
11
  },
12
12
  "dependencies": {
13
- "@xyo-network/core": "^2.53.15",
14
- "@xyo-network/module": "^2.53.15",
15
- "@xyo-network/module-model": "^2.53.15",
16
- "@xyo-network/payload-model": "^2.53.15",
17
- "@xyo-network/promise": "^2.53.15"
13
+ "@xyo-network/core": "^2.53.17",
14
+ "@xyo-network/module": "^2.53.17",
15
+ "@xyo-network/module-model": "^2.53.17",
16
+ "@xyo-network/payload-model": "^2.53.17",
17
+ "@xyo-network/promise": "^2.53.17"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@xylabs/ts-scripts-yarn3": "^2.16.1",
@@ -54,5 +54,5 @@
54
54
  },
55
55
  "sideEffects": false,
56
56
  "types": "dist/types/index.d.ts",
57
- "version": "2.53.15"
57
+ "version": "2.53.17"
58
58
  }
@@ -1,8 +1,8 @@
1
- import { XyoQuery } from '@xyo-network/module-model'
1
+ import { Query } from '@xyo-network/module-model'
2
2
 
3
3
  export type XyoDivinerDivineQuerySchema = 'network.xyo.query.diviner.divine'
4
4
  export const XyoDivinerDivineQuerySchema: XyoDivinerDivineQuerySchema = 'network.xyo.query.diviner.divine'
5
5
 
6
- export type XyoDivinerDivineQuery = XyoQuery<{
6
+ export type XyoDivinerDivineQuery = Query<{
7
7
  schema: XyoDivinerDivineQuerySchema
8
8
  }>
@@ -1,11 +1,11 @@
1
1
  export * from './Divine'
2
2
 
3
- import { ModuleQuery, XyoQuery } from '@xyo-network/module-model'
3
+ import { ModuleQuery, Query } from '@xyo-network/module-model'
4
4
 
5
5
  import { XyoDivinerDivineQuery } from './Divine'
6
6
 
7
7
  export type XyoDivinerQueryBase = XyoDivinerDivineQuery
8
8
 
9
- export type XyoDivinerQuery<TQuery extends XyoQuery | void = void> = ModuleQuery<
10
- TQuery extends XyoQuery ? XyoDivinerQueryBase | TQuery : XyoDivinerQueryBase
9
+ export type XyoDivinerQuery<TQuery extends Query | void = void> = ModuleQuery<
10
+ TQuery extends Query ? XyoDivinerQueryBase | TQuery : XyoDivinerQueryBase
11
11
  >