@xyo-network/diviner-schema-stats-model 2.110.15 → 2.110.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.
- package/dist/browser/Config.d.cts +1 -1
- package/dist/browser/Config.d.mts +1 -1
- package/dist/browser/Config.d.ts +1 -1
- package/dist/browser/Params.d.cts +1 -1
- package/dist/browser/Params.d.mts +1 -1
- package/dist/browser/Params.d.ts +1 -1
- package/dist/browser/Payload.d.cts +1 -1
- package/dist/browser/Payload.d.mts +1 -1
- package/dist/browser/Payload.d.ts +1 -1
- package/dist/browser/Query.d.cts +1 -1
- package/dist/browser/Query.d.mts +1 -1
- package/dist/browser/Query.d.ts +1 -1
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.d.cts +5 -5
- package/dist/browser/index.d.mts +5 -5
- package/dist/browser/index.d.ts +5 -5
- package/dist/browser/index.js.map +1 -1
- package/dist/neutral/Config.d.cts +1 -1
- package/dist/neutral/Config.d.mts +1 -1
- package/dist/neutral/Config.d.ts +1 -1
- package/dist/neutral/Params.d.cts +1 -1
- package/dist/neutral/Params.d.mts +1 -1
- package/dist/neutral/Params.d.ts +1 -1
- package/dist/neutral/Payload.d.cts +1 -1
- package/dist/neutral/Payload.d.mts +1 -1
- package/dist/neutral/Payload.d.ts +1 -1
- package/dist/neutral/Query.d.cts +1 -1
- package/dist/neutral/Query.d.mts +1 -1
- package/dist/neutral/Query.d.ts +1 -1
- package/dist/neutral/index.cjs.map +1 -1
- package/dist/neutral/index.d.cts +5 -5
- package/dist/neutral/index.d.mts +5 -5
- package/dist/neutral/index.d.ts +5 -5
- package/dist/neutral/index.js.map +1 -1
- package/dist/node/Config.d.cts +1 -1
- package/dist/node/Config.d.mts +1 -1
- package/dist/node/Config.d.ts +1 -1
- package/dist/node/Params.d.cts +1 -1
- package/dist/node/Params.d.mts +1 -1
- package/dist/node/Params.d.ts +1 -1
- package/dist/node/Payload.d.cts +1 -1
- package/dist/node/Payload.d.mts +1 -1
- package/dist/node/Payload.d.ts +1 -1
- package/dist/node/Query.d.cts +1 -1
- package/dist/node/Query.d.mts +1 -1
- package/dist/node/Query.d.ts +1 -1
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.d.cts +5 -5
- package/dist/node/index.d.mts +5 -5
- package/dist/node/index.d.ts +5 -5
- package/dist/node/index.js.map +1 -1
- package/package.json +4 -4
- package/src/Config.ts +1 -1
- package/src/Params.ts +1 -1
- package/src/Payload.ts +1 -1
- package/src/Query.ts +1 -1
- package/src/index.ts +5 -5
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
2
|
import { Payload } from '@xyo-network/payload-model';
|
|
3
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
3
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
4
4
|
export type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`;
|
|
5
5
|
export declare const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema;
|
|
6
6
|
export type SchemaStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<T & {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
2
|
import { Payload } from '@xyo-network/payload-model';
|
|
3
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
3
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
4
4
|
export type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`;
|
|
5
5
|
export declare const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema;
|
|
6
6
|
export type SchemaStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<T & {
|
package/dist/browser/Config.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
2
|
import { Payload } from '@xyo-network/payload-model';
|
|
3
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
3
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
4
4
|
export type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`;
|
|
5
5
|
export declare const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema;
|
|
6
6
|
export type SchemaStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<T & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { SchemaStatsDivinerConfig } from './Config.
|
|
3
|
+
import { SchemaStatsDivinerConfig } from './Config.ts';
|
|
4
4
|
export type SchemaStatsDivinerParams = DivinerParams<AnyConfigSchema<SchemaStatsDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { SchemaStatsDivinerConfig } from './Config.
|
|
3
|
+
import { SchemaStatsDivinerConfig } from './Config.ts';
|
|
4
4
|
export type SchemaStatsDivinerParams = DivinerParams<AnyConfigSchema<SchemaStatsDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
package/dist/browser/Params.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { SchemaStatsDivinerConfig } from './Config.
|
|
3
|
+
import { SchemaStatsDivinerConfig } from './Config.ts';
|
|
4
4
|
export type SchemaStatsDivinerParams = DivinerParams<AnyConfigSchema<SchemaStatsDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
package/dist/browser/Query.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
2
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
3
3
|
export type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`;
|
|
4
4
|
export declare const SchemaStatsQuerySchema: SchemaStatsQuerySchema;
|
|
5
5
|
export type SchemaStatsQueryPayload = Query<{
|
package/dist/browser/Query.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
2
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
3
3
|
export type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`;
|
|
4
4
|
export declare const SchemaStatsQuerySchema: SchemaStatsQuerySchema;
|
|
5
5
|
export type SchemaStatsQueryPayload = Query<{
|
package/dist/browser/Query.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
2
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
3
3
|
export type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`;
|
|
4
4
|
export declare const SchemaStatsQuerySchema: SchemaStatsQuerySchema;
|
|
5
5
|
export type SchemaStatsQueryPayload = Query<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config.
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config.ts'\nexport * from './Params.ts'\nexport * from './Payload.ts'\nexport * from './Query.ts'\nexport * from './Schema.ts'\n","export type SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\nexport const SchemaStatsDivinerSchema: SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`\nexport const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`\n\nexport type SchemaStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: SchemaStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsPayload = Payload<{\n count: Record<string, number>\n //the name of the schema that the count is for. If name is undefined, then it is the count for all schemas\n name?: string\n schema: SchemaStatsDivinerSchema\n}>\n\nexport const isSchemaStatsPayload = (x?: Payload | null): x is SchemaStatsPayload => x?.schema === SchemaStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`\nexport const SchemaStatsQuerySchema: SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`\n\nexport type SchemaStatsQueryPayload = Query<{ schema: SchemaStatsQuerySchema }>\nexport const isSchemaStatsQueryPayload = (x?: Payload | null): x is SchemaStatsQueryPayload => x?.schema === SchemaStatsQuerySchema\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;ACCO,IAAMA,2BAAqD;;;ACK3D,IAAMC,iCAAiE,GAAGC,wBAAAA;;;ACK1E,IAAMC,uBAAuB,wBAACC,MAAgDA,GAAGC,WAAWC,0BAA/D;;;ACN7B,IAAMC,yBAAiD,GAAGC,wBAAAA;AAG1D,IAAMC,4BAA4B,wBAACC,MAAqDA,GAAGC,WAAWJ,wBAApE;","names":["SchemaStatsDivinerSchema","SchemaStatsDivinerConfigSchema","SchemaStatsDivinerSchema","isSchemaStatsPayload","x","schema","SchemaStatsDivinerSchema","SchemaStatsQuerySchema","SchemaStatsDivinerSchema","isSchemaStatsQueryPayload","x","schema"]}
|
package/dist/browser/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
1
|
+
export * from './Config.ts';
|
|
2
|
+
export * from './Params.ts';
|
|
3
|
+
export * from './Payload.ts';
|
|
4
|
+
export * from './Query.ts';
|
|
5
|
+
export * from './Schema.ts';
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/browser/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
1
|
+
export * from './Config.ts';
|
|
2
|
+
export * from './Params.ts';
|
|
3
|
+
export * from './Payload.ts';
|
|
4
|
+
export * from './Query.ts';
|
|
5
|
+
export * from './Schema.ts';
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/browser/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
1
|
+
export * from './Config.ts';
|
|
2
|
+
export * from './Params.ts';
|
|
3
|
+
export * from './Payload.ts';
|
|
4
|
+
export * from './Query.ts';
|
|
5
|
+
export * from './Schema.ts';
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\nexport const SchemaStatsDivinerSchema: SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\nexport const SchemaStatsDivinerSchema: SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`\nexport const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`\n\nexport type SchemaStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: SchemaStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsPayload = Payload<{\n count: Record<string, number>\n //the name of the schema that the count is for. If name is undefined, then it is the count for all schemas\n name?: string\n schema: SchemaStatsDivinerSchema\n}>\n\nexport const isSchemaStatsPayload = (x?: Payload | null): x is SchemaStatsPayload => x?.schema === SchemaStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`\nexport const SchemaStatsQuerySchema: SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`\n\nexport type SchemaStatsQueryPayload = Query<{ schema: SchemaStatsQuerySchema }>\nexport const isSchemaStatsQueryPayload = (x?: Payload | null): x is SchemaStatsQueryPayload => x?.schema === SchemaStatsQuerySchema\n"],"mappings":";;;;AACO,IAAMA,2BAAqD;;;ACK3D,IAAMC,iCAAiE,GAAGC,wBAAAA;;;ACK1E,IAAMC,uBAAuB,wBAACC,MAAgDA,GAAGC,WAAWC,0BAA/D;;;ACN7B,IAAMC,yBAAiD,GAAGC,wBAAAA;AAG1D,IAAMC,4BAA4B,wBAACC,MAAqDA,GAAGC,WAAWJ,wBAApE;","names":["SchemaStatsDivinerSchema","SchemaStatsDivinerConfigSchema","SchemaStatsDivinerSchema","isSchemaStatsPayload","x","schema","SchemaStatsDivinerSchema","SchemaStatsQuerySchema","SchemaStatsDivinerSchema","isSchemaStatsQueryPayload","x","schema"]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
2
|
import { Payload } from '@xyo-network/payload-model';
|
|
3
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
3
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
4
4
|
export type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`;
|
|
5
5
|
export declare const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema;
|
|
6
6
|
export type SchemaStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<T & {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
2
|
import { Payload } from '@xyo-network/payload-model';
|
|
3
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
3
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
4
4
|
export type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`;
|
|
5
5
|
export declare const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema;
|
|
6
6
|
export type SchemaStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<T & {
|
package/dist/neutral/Config.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
2
|
import { Payload } from '@xyo-network/payload-model';
|
|
3
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
3
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
4
4
|
export type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`;
|
|
5
5
|
export declare const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema;
|
|
6
6
|
export type SchemaStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<T & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { SchemaStatsDivinerConfig } from './Config.
|
|
3
|
+
import { SchemaStatsDivinerConfig } from './Config.ts';
|
|
4
4
|
export type SchemaStatsDivinerParams = DivinerParams<AnyConfigSchema<SchemaStatsDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { SchemaStatsDivinerConfig } from './Config.
|
|
3
|
+
import { SchemaStatsDivinerConfig } from './Config.ts';
|
|
4
4
|
export type SchemaStatsDivinerParams = DivinerParams<AnyConfigSchema<SchemaStatsDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
package/dist/neutral/Params.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { SchemaStatsDivinerConfig } from './Config.
|
|
3
|
+
import { SchemaStatsDivinerConfig } from './Config.ts';
|
|
4
4
|
export type SchemaStatsDivinerParams = DivinerParams<AnyConfigSchema<SchemaStatsDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
package/dist/neutral/Query.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
2
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
3
3
|
export type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`;
|
|
4
4
|
export declare const SchemaStatsQuerySchema: SchemaStatsQuerySchema;
|
|
5
5
|
export type SchemaStatsQueryPayload = Query<{
|
package/dist/neutral/Query.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
2
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
3
3
|
export type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`;
|
|
4
4
|
export declare const SchemaStatsQuerySchema: SchemaStatsQuerySchema;
|
|
5
5
|
export type SchemaStatsQueryPayload = Query<{
|
package/dist/neutral/Query.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
2
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
3
3
|
export type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`;
|
|
4
4
|
export declare const SchemaStatsQuerySchema: SchemaStatsQuerySchema;
|
|
5
5
|
export type SchemaStatsQueryPayload = Query<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config.
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config.ts'\nexport * from './Params.ts'\nexport * from './Payload.ts'\nexport * from './Query.ts'\nexport * from './Schema.ts'\n","export type SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\nexport const SchemaStatsDivinerSchema: SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`\nexport const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`\n\nexport type SchemaStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: SchemaStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsPayload = Payload<{\n count: Record<string, number>\n //the name of the schema that the count is for. If name is undefined, then it is the count for all schemas\n name?: string\n schema: SchemaStatsDivinerSchema\n}>\n\nexport const isSchemaStatsPayload = (x?: Payload | null): x is SchemaStatsPayload => x?.schema === SchemaStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`\nexport const SchemaStatsQuerySchema: SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`\n\nexport type SchemaStatsQueryPayload = Query<{ schema: SchemaStatsQuerySchema }>\nexport const isSchemaStatsQueryPayload = (x?: Payload | null): x is SchemaStatsQueryPayload => x?.schema === SchemaStatsQuerySchema\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;ACCO,IAAMA,2BAAqD;;;ACK3D,IAAMC,iCAAiE,GAAGC,wBAAAA;;;ACK1E,IAAMC,uBAAuB,wBAACC,MAAgDA,GAAGC,WAAWC,0BAA/D;;;ACN7B,IAAMC,yBAAiD,GAAGC,wBAAAA;AAG1D,IAAMC,4BAA4B,wBAACC,MAAqDA,GAAGC,WAAWJ,wBAApE;","names":["SchemaStatsDivinerSchema","SchemaStatsDivinerConfigSchema","SchemaStatsDivinerSchema","isSchemaStatsPayload","x","schema","SchemaStatsDivinerSchema","SchemaStatsQuerySchema","SchemaStatsDivinerSchema","isSchemaStatsQueryPayload","x","schema"]}
|
package/dist/neutral/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
1
|
+
export * from './Config.ts';
|
|
2
|
+
export * from './Params.ts';
|
|
3
|
+
export * from './Payload.ts';
|
|
4
|
+
export * from './Query.ts';
|
|
5
|
+
export * from './Schema.ts';
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/neutral/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
1
|
+
export * from './Config.ts';
|
|
2
|
+
export * from './Params.ts';
|
|
3
|
+
export * from './Payload.ts';
|
|
4
|
+
export * from './Query.ts';
|
|
5
|
+
export * from './Schema.ts';
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
1
|
+
export * from './Config.ts';
|
|
2
|
+
export * from './Params.ts';
|
|
3
|
+
export * from './Payload.ts';
|
|
4
|
+
export * from './Query.ts';
|
|
5
|
+
export * from './Schema.ts';
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\nexport const SchemaStatsDivinerSchema: SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\nexport const SchemaStatsDivinerSchema: SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`\nexport const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`\n\nexport type SchemaStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: SchemaStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsPayload = Payload<{\n count: Record<string, number>\n //the name of the schema that the count is for. If name is undefined, then it is the count for all schemas\n name?: string\n schema: SchemaStatsDivinerSchema\n}>\n\nexport const isSchemaStatsPayload = (x?: Payload | null): x is SchemaStatsPayload => x?.schema === SchemaStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`\nexport const SchemaStatsQuerySchema: SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`\n\nexport type SchemaStatsQueryPayload = Query<{ schema: SchemaStatsQuerySchema }>\nexport const isSchemaStatsQueryPayload = (x?: Payload | null): x is SchemaStatsQueryPayload => x?.schema === SchemaStatsQuerySchema\n"],"mappings":";;;;AACO,IAAMA,2BAAqD;;;ACK3D,IAAMC,iCAAiE,GAAGC,wBAAAA;;;ACK1E,IAAMC,uBAAuB,wBAACC,MAAgDA,GAAGC,WAAWC,0BAA/D;;;ACN7B,IAAMC,yBAAiD,GAAGC,wBAAAA;AAG1D,IAAMC,4BAA4B,wBAACC,MAAqDA,GAAGC,WAAWJ,wBAApE;","names":["SchemaStatsDivinerSchema","SchemaStatsDivinerConfigSchema","SchemaStatsDivinerSchema","isSchemaStatsPayload","x","schema","SchemaStatsDivinerSchema","SchemaStatsQuerySchema","SchemaStatsDivinerSchema","isSchemaStatsQueryPayload","x","schema"]}
|
package/dist/node/Config.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
2
|
import { Payload } from '@xyo-network/payload-model';
|
|
3
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
3
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
4
4
|
export type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`;
|
|
5
5
|
export declare const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema;
|
|
6
6
|
export type SchemaStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<T & {
|
package/dist/node/Config.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
2
|
import { Payload } from '@xyo-network/payload-model';
|
|
3
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
3
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
4
4
|
export type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`;
|
|
5
5
|
export declare const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema;
|
|
6
6
|
export type SchemaStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<T & {
|
package/dist/node/Config.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
2
|
import { Payload } from '@xyo-network/payload-model';
|
|
3
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
3
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
4
4
|
export type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`;
|
|
5
5
|
export declare const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema;
|
|
6
6
|
export type SchemaStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<T & {
|
package/dist/node/Params.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { SchemaStatsDivinerConfig } from './Config.
|
|
3
|
+
import { SchemaStatsDivinerConfig } from './Config.ts';
|
|
4
4
|
export type SchemaStatsDivinerParams = DivinerParams<AnyConfigSchema<SchemaStatsDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
package/dist/node/Params.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { SchemaStatsDivinerConfig } from './Config.
|
|
3
|
+
import { SchemaStatsDivinerConfig } from './Config.ts';
|
|
4
4
|
export type SchemaStatsDivinerParams = DivinerParams<AnyConfigSchema<SchemaStatsDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
package/dist/node/Params.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import { SchemaStatsDivinerConfig } from './Config.
|
|
3
|
+
import { SchemaStatsDivinerConfig } from './Config.ts';
|
|
4
4
|
export type SchemaStatsDivinerParams = DivinerParams<AnyConfigSchema<SchemaStatsDivinerConfig>>;
|
|
5
5
|
//# sourceMappingURL=Params.d.ts.map
|
package/dist/node/Payload.d.cts
CHANGED
package/dist/node/Payload.d.mts
CHANGED
package/dist/node/Payload.d.ts
CHANGED
package/dist/node/Query.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
2
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
3
3
|
export type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`;
|
|
4
4
|
export declare const SchemaStatsQuerySchema: SchemaStatsQuerySchema;
|
|
5
5
|
export type SchemaStatsQueryPayload = Query<{
|
package/dist/node/Query.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
2
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
3
3
|
export type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`;
|
|
4
4
|
export declare const SchemaStatsQuerySchema: SchemaStatsQuerySchema;
|
|
5
5
|
export type SchemaStatsQueryPayload = Query<{
|
package/dist/node/Query.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload, Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
2
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts';
|
|
3
3
|
export type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`;
|
|
4
4
|
export declare const SchemaStatsQuerySchema: SchemaStatsQuerySchema;
|
|
5
5
|
export type SchemaStatsQueryPayload = Query<{
|
package/dist/node/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config.
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export * from './Config.ts'\nexport * from './Params.ts'\nexport * from './Payload.ts'\nexport * from './Query.ts'\nexport * from './Schema.ts'\n","export type SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\nexport const SchemaStatsDivinerSchema: SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`\nexport const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`\n\nexport type SchemaStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: SchemaStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsPayload = Payload<{\n count: Record<string, number>\n //the name of the schema that the count is for. If name is undefined, then it is the count for all schemas\n name?: string\n schema: SchemaStatsDivinerSchema\n}>\n\nexport const isSchemaStatsPayload = (x?: Payload | null): x is SchemaStatsPayload => x?.schema === SchemaStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`\nexport const SchemaStatsQuerySchema: SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`\n\nexport type SchemaStatsQueryPayload = Query<{ schema: SchemaStatsQuerySchema }>\nexport const isSchemaStatsQueryPayload = (x?: Payload | null): x is SchemaStatsQueryPayload => x?.schema === SchemaStatsQuerySchema\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;ACCO,IAAMA,2BAAqD;;;ACK3D,IAAMC,iCAAiE,GAAGC,wBAAAA;;;ACK1E,IAAMC,uBAAuB,wBAACC,OAAgDA,uBAAGC,YAAWC,0BAA/D;;;ACN7B,IAAMC,yBAAiD,GAAGC,wBAAAA;AAG1D,IAAMC,4BAA4B,wBAACC,OAAqDA,uBAAGC,YAAWJ,wBAApE;","names":["SchemaStatsDivinerSchema","SchemaStatsDivinerConfigSchema","SchemaStatsDivinerSchema","isSchemaStatsPayload","x","schema","SchemaStatsDivinerSchema","SchemaStatsQuerySchema","SchemaStatsDivinerSchema","isSchemaStatsQueryPayload","x","schema"]}
|
package/dist/node/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
1
|
+
export * from './Config.ts';
|
|
2
|
+
export * from './Params.ts';
|
|
3
|
+
export * from './Payload.ts';
|
|
4
|
+
export * from './Query.ts';
|
|
5
|
+
export * from './Schema.ts';
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/node/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
1
|
+
export * from './Config.ts';
|
|
2
|
+
export * from './Params.ts';
|
|
3
|
+
export * from './Payload.ts';
|
|
4
|
+
export * from './Query.ts';
|
|
5
|
+
export * from './Schema.ts';
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/node/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
1
|
+
export * from './Config.ts';
|
|
2
|
+
export * from './Params.ts';
|
|
3
|
+
export * from './Payload.ts';
|
|
4
|
+
export * from './Query.ts';
|
|
5
|
+
export * from './Schema.ts';
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\nexport const SchemaStatsDivinerSchema: SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts","../../src/Payload.ts","../../src/Query.ts"],"sourcesContent":["export type SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\nexport const SchemaStatsDivinerSchema: SchemaStatsDivinerSchema = 'network.xyo.diviner.schema.stats'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\nimport { Payload } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`\nexport const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`\n\nexport type SchemaStatsDivinerConfig<T extends Payload = Payload> = DivinerConfig<\n T & {\n schema: SchemaStatsDivinerConfigSchema\n }\n>\n","import { Payload } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsPayload = Payload<{\n count: Record<string, number>\n //the name of the schema that the count is for. If name is undefined, then it is the count for all schemas\n name?: string\n schema: SchemaStatsDivinerSchema\n}>\n\nexport const isSchemaStatsPayload = (x?: Payload | null): x is SchemaStatsPayload => x?.schema === SchemaStatsDivinerSchema\n","import { Payload, Query } from '@xyo-network/payload-model'\n\nimport { SchemaStatsDivinerSchema } from './Schema.ts'\n\nexport type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`\nexport const SchemaStatsQuerySchema: SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`\n\nexport type SchemaStatsQueryPayload = Query<{ schema: SchemaStatsQuerySchema }>\nexport const isSchemaStatsQueryPayload = (x?: Payload | null): x is SchemaStatsQueryPayload => x?.schema === SchemaStatsQuerySchema\n"],"mappings":";;;;AACO,IAAMA,2BAAqD;;;ACK3D,IAAMC,iCAAiE,GAAGC,wBAAAA;;;ACK1E,IAAMC,uBAAuB,wBAACC,OAAgDA,uBAAGC,YAAWC,0BAA/D;;;ACN7B,IAAMC,yBAAiD,GAAGC,wBAAAA;AAG1D,IAAMC,4BAA4B,wBAACC,OAAqDA,uBAAGC,YAAWJ,wBAApE;","names":["SchemaStatsDivinerSchema","SchemaStatsDivinerConfigSchema","SchemaStatsDivinerSchema","isSchemaStatsPayload","x","schema","SchemaStatsDivinerSchema","SchemaStatsQuerySchema","SchemaStatsDivinerSchema","isSchemaStatsQueryPayload","x","schema"]}
|
package/package.json
CHANGED
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/diviner-model": "^2.110.
|
|
14
|
-
"@xyo-network/module-model": "^2.110.
|
|
15
|
-
"@xyo-network/payload-model": "^2.110.
|
|
13
|
+
"@xyo-network/diviner-model": "^2.110.17",
|
|
14
|
+
"@xyo-network/module-model": "^2.110.17",
|
|
15
|
+
"@xyo-network/payload-model": "^2.110.17"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@xylabs/ts-scripts-yarn3": "^3.14.1",
|
|
@@ -58,6 +58,6 @@
|
|
|
58
58
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": false,
|
|
61
|
-
"version": "2.110.
|
|
61
|
+
"version": "2.110.17",
|
|
62
62
|
"type": "module"
|
|
63
63
|
}
|
package/src/Config.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DivinerConfig } from '@xyo-network/diviner-model'
|
|
2
2
|
import { Payload } from '@xyo-network/payload-model'
|
|
3
3
|
|
|
4
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
4
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts'
|
|
5
5
|
|
|
6
6
|
export type SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`
|
|
7
7
|
export const SchemaStatsDivinerConfigSchema: SchemaStatsDivinerConfigSchema = `${SchemaStatsDivinerSchema}.config`
|
package/src/Params.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DivinerParams } from '@xyo-network/diviner-model'
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model'
|
|
3
3
|
|
|
4
|
-
import { SchemaStatsDivinerConfig } from './Config.
|
|
4
|
+
import { SchemaStatsDivinerConfig } from './Config.ts'
|
|
5
5
|
|
|
6
6
|
export type SchemaStatsDivinerParams = DivinerParams<AnyConfigSchema<SchemaStatsDivinerConfig>>
|
package/src/Payload.ts
CHANGED
package/src/Query.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Payload, Query } from '@xyo-network/payload-model'
|
|
2
2
|
|
|
3
|
-
import { SchemaStatsDivinerSchema } from './Schema.
|
|
3
|
+
import { SchemaStatsDivinerSchema } from './Schema.ts'
|
|
4
4
|
|
|
5
5
|
export type SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`
|
|
6
6
|
export const SchemaStatsQuerySchema: SchemaStatsQuerySchema = `${SchemaStatsDivinerSchema}.query`
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from './Config.
|
|
2
|
-
export * from './Params.
|
|
3
|
-
export * from './Payload.
|
|
4
|
-
export * from './Query.
|
|
5
|
-
export * from './Schema.
|
|
1
|
+
export * from './Config.ts'
|
|
2
|
+
export * from './Params.ts'
|
|
3
|
+
export * from './Payload.ts'
|
|
4
|
+
export * from './Query.ts'
|
|
5
|
+
export * from './Schema.ts'
|