@xyo-network/diviner-boundwitness-model 2.107.3 → 2.107.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.
- package/dist/browser/index.cjs +39 -1
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.js +16 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/neutral/index.cjs +39 -1
- package/dist/neutral/index.cjs.map +1 -1
- package/dist/neutral/index.js +16 -1
- package/dist/neutral/index.js.map +1 -1
- package/dist/node/index.cjs +46 -1
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.js +16 -1
- package/dist/node/index.js.map +1 -1
- package/package.json +8 -8
package/dist/browser/index.cjs
CHANGED
|
@@ -1,2 +1,40 @@
|
|
|
1
|
-
"use strict";
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/index.ts
|
|
21
|
+
var src_exports = {};
|
|
22
|
+
__export(src_exports, {
|
|
23
|
+
BoundWitnessDivinerConfigSchema: () => BoundWitnessDivinerConfigSchema,
|
|
24
|
+
BoundWitnessDivinerQuerySchema: () => BoundWitnessDivinerQuerySchema,
|
|
25
|
+
BoundWitnessDivinerSchema: () => BoundWitnessDivinerSchema,
|
|
26
|
+
isBoundWitnessDivinerQueryPayload: () => isBoundWitnessDivinerQueryPayload
|
|
27
|
+
});
|
|
28
|
+
module.exports = __toCommonJS(src_exports);
|
|
29
|
+
|
|
30
|
+
// src/Schema.ts
|
|
31
|
+
var BoundWitnessDivinerSchema = "network.xyo.diviner.boundwitness";
|
|
32
|
+
|
|
33
|
+
// src/Config.ts
|
|
34
|
+
var BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`;
|
|
35
|
+
|
|
36
|
+
// src/Query.ts
|
|
37
|
+
var import_payload_model = require("@xyo-network/payload-model");
|
|
38
|
+
var BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`;
|
|
39
|
+
var isBoundWitnessDivinerQueryPayload = (0, import_payload_model.isPayloadOfSchemaType)(BoundWitnessDivinerQuerySchema);
|
|
2
40
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Predicate'\nexport * from './Query'\nexport * from './Schema'\n","export type BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\nexport const BoundWitnessDivinerSchema: BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\nexport const BoundWitnessDivinerConfigSchema: BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\n\nexport type BoundWitnessDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessDivinerConfigSchema\n }\n>\n","import { isPayloadOfSchemaType, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerPredicate } from './Predicate'\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\nexport const BoundWitnessDivinerQuerySchema: BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\n\nexport type BoundWitnessDivinerQueryPayload = Query<{ schema: BoundWitnessDivinerQuerySchema } & BoundWitnessDivinerPredicate>\nexport const isBoundWitnessDivinerQueryPayload = isPayloadOfSchemaType<BoundWitnessDivinerQueryPayload>(BoundWitnessDivinerQuerySchema)\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Predicate'\nexport * from './Query'\nexport * from './Schema'\n","export type BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\nexport const BoundWitnessDivinerSchema: BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\nexport const BoundWitnessDivinerConfigSchema: BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\n\nexport type BoundWitnessDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessDivinerConfigSchema\n }\n>\n","import { isPayloadOfSchemaType, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerPredicate } from './Predicate'\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\nexport const BoundWitnessDivinerQuerySchema: BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\n\nexport type BoundWitnessDivinerQueryPayload = Query<{ schema: BoundWitnessDivinerQuerySchema } & BoundWitnessDivinerPredicate>\nexport const isBoundWitnessDivinerQueryPayload = isPayloadOfSchemaType<BoundWitnessDivinerQueryPayload>(BoundWitnessDivinerQuerySchema)\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;ACCO,IAAMA,4BAAuD;;;ACK7D,IAAMC,kCAAmE,GAAGC,yBAAAA;;;ACNnF,2BAA6C;AAMtC,IAAMC,iCAAiE,GAAGC,yBAAAA;AAG1E,IAAMC,wCAAoCC,4CAAuDH,8BAAAA;","names":["BoundWitnessDivinerSchema","BoundWitnessDivinerConfigSchema","BoundWitnessDivinerSchema","BoundWitnessDivinerQuerySchema","BoundWitnessDivinerSchema","isBoundWitnessDivinerQueryPayload","isPayloadOfSchemaType"]}
|
package/dist/browser/index.js
CHANGED
|
@@ -1,2 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
// src/Schema.ts
|
|
2
|
+
var BoundWitnessDivinerSchema = "network.xyo.diviner.boundwitness";
|
|
3
|
+
|
|
4
|
+
// src/Config.ts
|
|
5
|
+
var BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`;
|
|
6
|
+
|
|
7
|
+
// src/Query.ts
|
|
8
|
+
import { isPayloadOfSchemaType } from "@xyo-network/payload-model";
|
|
9
|
+
var BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`;
|
|
10
|
+
var isBoundWitnessDivinerQueryPayload = isPayloadOfSchemaType(BoundWitnessDivinerQuerySchema);
|
|
11
|
+
export {
|
|
12
|
+
BoundWitnessDivinerConfigSchema,
|
|
13
|
+
BoundWitnessDivinerQuerySchema,
|
|
14
|
+
BoundWitnessDivinerSchema,
|
|
15
|
+
isBoundWitnessDivinerQueryPayload
|
|
16
|
+
};
|
|
2
17
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Query.ts"],"sourcesContent":["export type BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\nexport const BoundWitnessDivinerSchema: BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\nexport const BoundWitnessDivinerConfigSchema: BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\n\nexport type BoundWitnessDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessDivinerConfigSchema\n }\n>\n","import { isPayloadOfSchemaType, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerPredicate } from './Predicate'\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\nexport const BoundWitnessDivinerQuerySchema: BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\n\nexport type BoundWitnessDivinerQueryPayload = Query<{ schema: BoundWitnessDivinerQuerySchema } & BoundWitnessDivinerPredicate>\nexport const isBoundWitnessDivinerQueryPayload = isPayloadOfSchemaType<BoundWitnessDivinerQueryPayload>(BoundWitnessDivinerQuerySchema)\n"],"mappings":"AACO,IAAMA,
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Query.ts"],"sourcesContent":["export type BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\nexport const BoundWitnessDivinerSchema: BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\nexport const BoundWitnessDivinerConfigSchema: BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\n\nexport type BoundWitnessDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessDivinerConfigSchema\n }\n>\n","import { isPayloadOfSchemaType, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerPredicate } from './Predicate'\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\nexport const BoundWitnessDivinerQuerySchema: BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\n\nexport type BoundWitnessDivinerQueryPayload = Query<{ schema: BoundWitnessDivinerQuerySchema } & BoundWitnessDivinerPredicate>\nexport const isBoundWitnessDivinerQueryPayload = isPayloadOfSchemaType<BoundWitnessDivinerQueryPayload>(BoundWitnessDivinerQuerySchema)\n"],"mappings":";AACO,IAAMA,4BAAuD;;;ACK7D,IAAMC,kCAAmE,GAAGC,yBAAAA;;;ACNnF,SAASC,6BAAoC;AAMtC,IAAMC,iCAAiE,GAAGC,yBAAAA;AAG1E,IAAMC,oCAAoCC,sBAAuDH,8BAAAA;","names":["BoundWitnessDivinerSchema","BoundWitnessDivinerConfigSchema","BoundWitnessDivinerSchema","isPayloadOfSchemaType","BoundWitnessDivinerQuerySchema","BoundWitnessDivinerSchema","isBoundWitnessDivinerQueryPayload","isPayloadOfSchemaType"]}
|
package/dist/neutral/index.cjs
CHANGED
|
@@ -1,2 +1,40 @@
|
|
|
1
|
-
"use strict";
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/index.ts
|
|
21
|
+
var src_exports = {};
|
|
22
|
+
__export(src_exports, {
|
|
23
|
+
BoundWitnessDivinerConfigSchema: () => BoundWitnessDivinerConfigSchema,
|
|
24
|
+
BoundWitnessDivinerQuerySchema: () => BoundWitnessDivinerQuerySchema,
|
|
25
|
+
BoundWitnessDivinerSchema: () => BoundWitnessDivinerSchema,
|
|
26
|
+
isBoundWitnessDivinerQueryPayload: () => isBoundWitnessDivinerQueryPayload
|
|
27
|
+
});
|
|
28
|
+
module.exports = __toCommonJS(src_exports);
|
|
29
|
+
|
|
30
|
+
// src/Schema.ts
|
|
31
|
+
var BoundWitnessDivinerSchema = "network.xyo.diviner.boundwitness";
|
|
32
|
+
|
|
33
|
+
// src/Config.ts
|
|
34
|
+
var BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`;
|
|
35
|
+
|
|
36
|
+
// src/Query.ts
|
|
37
|
+
var import_payload_model = require("@xyo-network/payload-model");
|
|
38
|
+
var BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`;
|
|
39
|
+
var isBoundWitnessDivinerQueryPayload = (0, import_payload_model.isPayloadOfSchemaType)(BoundWitnessDivinerQuerySchema);
|
|
2
40
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Predicate'\nexport * from './Query'\nexport * from './Schema'\n","export type BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\nexport const BoundWitnessDivinerSchema: BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\nexport const BoundWitnessDivinerConfigSchema: BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\n\nexport type BoundWitnessDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessDivinerConfigSchema\n }\n>\n","import { isPayloadOfSchemaType, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerPredicate } from './Predicate'\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\nexport const BoundWitnessDivinerQuerySchema: BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\n\nexport type BoundWitnessDivinerQueryPayload = Query<{ schema: BoundWitnessDivinerQuerySchema } & BoundWitnessDivinerPredicate>\nexport const isBoundWitnessDivinerQueryPayload = isPayloadOfSchemaType<BoundWitnessDivinerQueryPayload>(BoundWitnessDivinerQuerySchema)\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Predicate'\nexport * from './Query'\nexport * from './Schema'\n","export type BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\nexport const BoundWitnessDivinerSchema: BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\nexport const BoundWitnessDivinerConfigSchema: BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\n\nexport type BoundWitnessDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessDivinerConfigSchema\n }\n>\n","import { isPayloadOfSchemaType, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerPredicate } from './Predicate'\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\nexport const BoundWitnessDivinerQuerySchema: BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\n\nexport type BoundWitnessDivinerQueryPayload = Query<{ schema: BoundWitnessDivinerQuerySchema } & BoundWitnessDivinerPredicate>\nexport const isBoundWitnessDivinerQueryPayload = isPayloadOfSchemaType<BoundWitnessDivinerQueryPayload>(BoundWitnessDivinerQuerySchema)\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;ACCO,IAAMA,4BAAuD;;;ACK7D,IAAMC,kCAAmE,GAAGC,yBAAAA;;;ACNnF,2BAA6C;AAMtC,IAAMC,iCAAiE,GAAGC,yBAAAA;AAG1E,IAAMC,wCAAoCC,4CAAuDH,8BAAAA;","names":["BoundWitnessDivinerSchema","BoundWitnessDivinerConfigSchema","BoundWitnessDivinerSchema","BoundWitnessDivinerQuerySchema","BoundWitnessDivinerSchema","isBoundWitnessDivinerQueryPayload","isPayloadOfSchemaType"]}
|
package/dist/neutral/index.js
CHANGED
|
@@ -1,2 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
// src/Schema.ts
|
|
2
|
+
var BoundWitnessDivinerSchema = "network.xyo.diviner.boundwitness";
|
|
3
|
+
|
|
4
|
+
// src/Config.ts
|
|
5
|
+
var BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`;
|
|
6
|
+
|
|
7
|
+
// src/Query.ts
|
|
8
|
+
import { isPayloadOfSchemaType } from "@xyo-network/payload-model";
|
|
9
|
+
var BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`;
|
|
10
|
+
var isBoundWitnessDivinerQueryPayload = isPayloadOfSchemaType(BoundWitnessDivinerQuerySchema);
|
|
11
|
+
export {
|
|
12
|
+
BoundWitnessDivinerConfigSchema,
|
|
13
|
+
BoundWitnessDivinerQuerySchema,
|
|
14
|
+
BoundWitnessDivinerSchema,
|
|
15
|
+
isBoundWitnessDivinerQueryPayload
|
|
16
|
+
};
|
|
2
17
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Query.ts"],"sourcesContent":["export type BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\nexport const BoundWitnessDivinerSchema: BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\nexport const BoundWitnessDivinerConfigSchema: BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\n\nexport type BoundWitnessDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessDivinerConfigSchema\n }\n>\n","import { isPayloadOfSchemaType, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerPredicate } from './Predicate'\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\nexport const BoundWitnessDivinerQuerySchema: BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\n\nexport type BoundWitnessDivinerQueryPayload = Query<{ schema: BoundWitnessDivinerQuerySchema } & BoundWitnessDivinerPredicate>\nexport const isBoundWitnessDivinerQueryPayload = isPayloadOfSchemaType<BoundWitnessDivinerQueryPayload>(BoundWitnessDivinerQuerySchema)\n"],"mappings":"AACO,IAAMA,
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Query.ts"],"sourcesContent":["export type BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\nexport const BoundWitnessDivinerSchema: BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\nexport const BoundWitnessDivinerConfigSchema: BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\n\nexport type BoundWitnessDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessDivinerConfigSchema\n }\n>\n","import { isPayloadOfSchemaType, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerPredicate } from './Predicate'\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\nexport const BoundWitnessDivinerQuerySchema: BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\n\nexport type BoundWitnessDivinerQueryPayload = Query<{ schema: BoundWitnessDivinerQuerySchema } & BoundWitnessDivinerPredicate>\nexport const isBoundWitnessDivinerQueryPayload = isPayloadOfSchemaType<BoundWitnessDivinerQueryPayload>(BoundWitnessDivinerQuerySchema)\n"],"mappings":";AACO,IAAMA,4BAAuD;;;ACK7D,IAAMC,kCAAmE,GAAGC,yBAAAA;;;ACNnF,SAASC,6BAAoC;AAMtC,IAAMC,iCAAiE,GAAGC,yBAAAA;AAG1E,IAAMC,oCAAoCC,sBAAuDH,8BAAAA;","names":["BoundWitnessDivinerSchema","BoundWitnessDivinerConfigSchema","BoundWitnessDivinerSchema","isPayloadOfSchemaType","BoundWitnessDivinerQuerySchema","BoundWitnessDivinerSchema","isBoundWitnessDivinerQueryPayload","isPayloadOfSchemaType"]}
|
package/dist/node/index.cjs
CHANGED
|
@@ -1,2 +1,47 @@
|
|
|
1
|
-
"use strict";
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/index.ts
|
|
21
|
+
var src_exports = {};
|
|
22
|
+
__export(src_exports, {
|
|
23
|
+
BoundWitnessDivinerConfigSchema: () => BoundWitnessDivinerConfigSchema,
|
|
24
|
+
BoundWitnessDivinerQuerySchema: () => BoundWitnessDivinerQuerySchema,
|
|
25
|
+
BoundWitnessDivinerSchema: () => BoundWitnessDivinerSchema,
|
|
26
|
+
isBoundWitnessDivinerQueryPayload: () => isBoundWitnessDivinerQueryPayload
|
|
27
|
+
});
|
|
28
|
+
module.exports = __toCommonJS(src_exports);
|
|
29
|
+
|
|
30
|
+
// src/Schema.ts
|
|
31
|
+
var BoundWitnessDivinerSchema = "network.xyo.diviner.boundwitness";
|
|
32
|
+
|
|
33
|
+
// src/Config.ts
|
|
34
|
+
var BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`;
|
|
35
|
+
|
|
36
|
+
// src/Query.ts
|
|
37
|
+
var import_payload_model = require("@xyo-network/payload-model");
|
|
38
|
+
var BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`;
|
|
39
|
+
var isBoundWitnessDivinerQueryPayload = (0, import_payload_model.isPayloadOfSchemaType)(BoundWitnessDivinerQuerySchema);
|
|
40
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
41
|
+
0 && (module.exports = {
|
|
42
|
+
BoundWitnessDivinerConfigSchema,
|
|
43
|
+
BoundWitnessDivinerQuerySchema,
|
|
44
|
+
BoundWitnessDivinerSchema,
|
|
45
|
+
isBoundWitnessDivinerQueryPayload
|
|
46
|
+
});
|
|
2
47
|
//# sourceMappingURL=index.cjs.map
|
package/dist/node/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Predicate'\nexport * from './Query'\nexport * from './Schema'\n","export type BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\nexport const BoundWitnessDivinerSchema: BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\nexport const BoundWitnessDivinerConfigSchema: BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\n\nexport type BoundWitnessDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessDivinerConfigSchema\n }\n>\n","import { isPayloadOfSchemaType, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerPredicate } from './Predicate'\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\nexport const BoundWitnessDivinerQuerySchema: BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\n\nexport type BoundWitnessDivinerQueryPayload = Query<{ schema: BoundWitnessDivinerQuerySchema } & BoundWitnessDivinerPredicate>\nexport const isBoundWitnessDivinerQueryPayload = isPayloadOfSchemaType<BoundWitnessDivinerQueryPayload>(BoundWitnessDivinerQuerySchema)\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Predicate'\nexport * from './Query'\nexport * from './Schema'\n","export type BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\nexport const BoundWitnessDivinerSchema: BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\nexport const BoundWitnessDivinerConfigSchema: BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\n\nexport type BoundWitnessDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessDivinerConfigSchema\n }\n>\n","import { isPayloadOfSchemaType, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerPredicate } from './Predicate'\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\nexport const BoundWitnessDivinerQuerySchema: BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\n\nexport type BoundWitnessDivinerQueryPayload = Query<{ schema: BoundWitnessDivinerQuerySchema } & BoundWitnessDivinerPredicate>\nexport const isBoundWitnessDivinerQueryPayload = isPayloadOfSchemaType<BoundWitnessDivinerQueryPayload>(BoundWitnessDivinerQuerySchema)\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;ACCO,IAAMA,4BAAuD;;;ACK7D,IAAMC,kCAAmE,GAAGC,yBAAAA;;;ACNnF,2BAA6C;AAMtC,IAAMC,iCAAiE,GAAGC,yBAAAA;AAG1E,IAAMC,wCAAoCC,4CAAuDH,8BAAAA;","names":["BoundWitnessDivinerSchema","BoundWitnessDivinerConfigSchema","BoundWitnessDivinerSchema","BoundWitnessDivinerQuerySchema","BoundWitnessDivinerSchema","isBoundWitnessDivinerQueryPayload","isPayloadOfSchemaType"]}
|
package/dist/node/index.js
CHANGED
|
@@ -1,2 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
// src/Schema.ts
|
|
2
|
+
var BoundWitnessDivinerSchema = "network.xyo.diviner.boundwitness";
|
|
3
|
+
|
|
4
|
+
// src/Config.ts
|
|
5
|
+
var BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`;
|
|
6
|
+
|
|
7
|
+
// src/Query.ts
|
|
8
|
+
import { isPayloadOfSchemaType } from "@xyo-network/payload-model";
|
|
9
|
+
var BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`;
|
|
10
|
+
var isBoundWitnessDivinerQueryPayload = isPayloadOfSchemaType(BoundWitnessDivinerQuerySchema);
|
|
11
|
+
export {
|
|
12
|
+
BoundWitnessDivinerConfigSchema,
|
|
13
|
+
BoundWitnessDivinerQuerySchema,
|
|
14
|
+
BoundWitnessDivinerSchema,
|
|
15
|
+
isBoundWitnessDivinerQueryPayload
|
|
16
|
+
};
|
|
2
17
|
//# sourceMappingURL=index.js.map
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Query.ts"],"sourcesContent":["export type BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\nexport const BoundWitnessDivinerSchema: BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\nexport const BoundWitnessDivinerConfigSchema: BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\n\nexport type BoundWitnessDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessDivinerConfigSchema\n }\n>\n","import { isPayloadOfSchemaType, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerPredicate } from './Predicate'\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\nexport const BoundWitnessDivinerQuerySchema: BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\n\nexport type BoundWitnessDivinerQueryPayload = Query<{ schema: BoundWitnessDivinerQuerySchema } & BoundWitnessDivinerPredicate>\nexport const isBoundWitnessDivinerQueryPayload = isPayloadOfSchemaType<BoundWitnessDivinerQueryPayload>(BoundWitnessDivinerQuerySchema)\n"],"mappings":"AACO,IAAMA,
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Query.ts"],"sourcesContent":["export type BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\nexport const BoundWitnessDivinerSchema: BoundWitnessDivinerSchema = 'network.xyo.diviner.boundwitness'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\nexport const BoundWitnessDivinerConfigSchema: BoundWitnessDivinerConfigSchema = `${BoundWitnessDivinerSchema}.config`\n\nexport type BoundWitnessDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: BoundWitnessDivinerConfigSchema\n }\n>\n","import { isPayloadOfSchemaType, Query } from '@xyo-network/payload-model'\n\nimport { BoundWitnessDivinerPredicate } from './Predicate'\nimport { BoundWitnessDivinerSchema } from './Schema'\n\nexport type BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\nexport const BoundWitnessDivinerQuerySchema: BoundWitnessDivinerQuerySchema = `${BoundWitnessDivinerSchema}.query`\n\nexport type BoundWitnessDivinerQueryPayload = Query<{ schema: BoundWitnessDivinerQuerySchema } & BoundWitnessDivinerPredicate>\nexport const isBoundWitnessDivinerQueryPayload = isPayloadOfSchemaType<BoundWitnessDivinerQueryPayload>(BoundWitnessDivinerQuerySchema)\n"],"mappings":";AACO,IAAMA,4BAAuD;;;ACK7D,IAAMC,kCAAmE,GAAGC,yBAAAA;;;ACNnF,SAASC,6BAAoC;AAMtC,IAAMC,iCAAiE,GAAGC,yBAAAA;AAG1E,IAAMC,oCAAoCC,sBAAuDH,8BAAAA;","names":["BoundWitnessDivinerSchema","BoundWitnessDivinerConfigSchema","BoundWitnessDivinerSchema","isPayloadOfSchemaType","BoundWitnessDivinerQuerySchema","BoundWitnessDivinerSchema","isBoundWitnessDivinerQueryPayload","isPayloadOfSchemaType"]}
|
package/package.json
CHANGED
|
@@ -10,15 +10,15 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/boundwitness-model": "~2.107.
|
|
14
|
-
"@xyo-network/diviner-model": "~2.107.
|
|
15
|
-
"@xyo-network/diviner-payload-model": "~2.107.
|
|
16
|
-
"@xyo-network/module-model": "~2.107.
|
|
17
|
-
"@xyo-network/payload-model": "~2.107.
|
|
13
|
+
"@xyo-network/boundwitness-model": "~2.107.5",
|
|
14
|
+
"@xyo-network/diviner-model": "~2.107.5",
|
|
15
|
+
"@xyo-network/diviner-payload-model": "~2.107.5",
|
|
16
|
+
"@xyo-network/module-model": "~2.107.5",
|
|
17
|
+
"@xyo-network/payload-model": "~2.107.5"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@xylabs/ts-scripts-yarn3": "^3.11.
|
|
21
|
-
"@xylabs/tsconfig": "^3.11.
|
|
20
|
+
"@xylabs/ts-scripts-yarn3": "^3.11.10",
|
|
21
|
+
"@xylabs/tsconfig": "^3.11.10",
|
|
22
22
|
"typescript": "^5.5.2"
|
|
23
23
|
},
|
|
24
24
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
@@ -60,6 +60,6 @@
|
|
|
60
60
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
61
61
|
},
|
|
62
62
|
"sideEffects": false,
|
|
63
|
-
"version": "2.107.
|
|
63
|
+
"version": "2.107.5",
|
|
64
64
|
"type": "module"
|
|
65
65
|
}
|