@xyo-network/diviner-indexing-model 7.2.3 → 7.3.1

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,2 @@
1
- export * from './Config.ts';
2
- export * from './Labels.ts';
3
- export * from './Params.ts';
4
- export * from './Schema.ts';
5
- export * from './Stage.ts';
6
- export * from './State.ts';
1
+ export * from '@xyo-network/diviner-indexing/model';
7
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,YAAY,CAAA;AAC1B,cAAc,YAAY,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,cAAc,qCAAqC,CAAA"}
@@ -1,43 +1,3 @@
1
- // src/Config.ts
2
- import {
3
- zodAsFactory,
4
- zodIsFactory,
5
- zodToFactory
6
- } from "@ariestools/sdk";
7
- import { DivinerConfigZod } from "@xyo-network/sdk/diviner-model";
8
- import {
9
- asSchema as asSchema2
10
- } from "@xyo-network/sdk-protocol";
11
- import * as z from "zod/mini";
12
-
13
- // src/Schema.ts
14
- import { asSchema } from "@xyo-network/sdk-protocol";
15
- var IndexingDivinerSchema = asSchema("network.xyo.diviner.indexing", true);
16
-
17
- // src/Config.ts
18
- var IndexingDivinerConfigSchema = asSchema2(`${IndexingDivinerSchema}.config`, true);
19
- var IndexingDivinerConfigZod = z.extend(DivinerConfigZod, {
20
- indexStore: z.optional(z.custom()),
21
- indexingDivinerStages: z.optional(z.custom()),
22
- payloadDivinerLimit: z.optional(z.number()),
23
- pollFrequency: z.optional(z.number()),
24
- schema: z.literal(IndexingDivinerConfigSchema),
25
- stateStore: z.optional(z.custom())
26
- });
27
- var isIndexingDivinerConfig = zodIsFactory(IndexingDivinerConfigZod);
28
- var asIndexingDivinerConfig = zodAsFactory(IndexingDivinerConfigZod, "asIndexingDivinerConfig");
29
- var toIndexingDivinerConfig = zodToFactory(IndexingDivinerConfigZod, "toIndexingDivinerConfig");
30
-
31
- // src/Stage.ts
32
- import { asSchema as asSchema3 } from "@xyo-network/sdk-protocol";
33
- var DivinerStageSchema = asSchema3("network.xyo.diviner.stage", true);
34
- export {
35
- DivinerStageSchema,
36
- IndexingDivinerConfigSchema,
37
- IndexingDivinerConfigZod,
38
- IndexingDivinerSchema,
39
- asIndexingDivinerConfig,
40
- isIndexingDivinerConfig,
41
- toIndexingDivinerConfig
42
- };
1
+ // src/index.ts
2
+ export * from "@xyo-network/diviner-indexing/model";
43
3
  //# sourceMappingURL=index.mjs.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
- "sources": ["../../src/Config.ts", "../../src/Schema.ts", "../../src/Stage.ts"],
4
- "sourcesContent": ["import type { EmptyObject, WithAdditional } from '@ariestools/sdk'\nimport {\n zodAsFactory, zodIsFactory, zodToFactory,\n} from '@ariestools/sdk'\nimport type { DivinerConfig, SearchableStorage } from '@xyo-network/sdk/diviner-model'\nimport { DivinerConfigZod } from '@xyo-network/sdk/diviner-model'\nimport {\n asSchema, type Payload, type Schema,\n} from '@xyo-network/sdk-protocol'\nimport * as z from 'zod/mini'\n\nimport { IndexingDivinerSchema } from './Schema.ts'\nimport type { IndexingDivinerStageConfig } from './Stage.ts'\n\nexport const IndexingDivinerConfigSchema: string & {\n readonly __schema: true\n} = asSchema(`${IndexingDivinerSchema}.config`, true)\nexport type IndexingDivinerConfigSchema = typeof IndexingDivinerConfigSchema\n\nexport const IndexingDivinerConfigZod: z.ZodMiniObject<\n Omit<(typeof DivinerConfigZod)['shape'], 'schema'> & {\n indexStore: z.ZodMiniOptional<z.ZodMiniCustom<SearchableStorage, SearchableStorage>>\n indexingDivinerStages: z.ZodMiniOptional<z.ZodMiniCustom<IndexingDivinerStageConfig, IndexingDivinerStageConfig>>\n payloadDivinerLimit: z.ZodMiniOptional<z.ZodMiniNumber<number>>\n pollFrequency: z.ZodMiniOptional<z.ZodMiniNumber<number>>\n schema: z.ZodMiniLiteral<IndexingDivinerConfigSchema>\n stateStore: z.ZodMiniOptional<z.ZodMiniCustom<SearchableStorage, SearchableStorage>>\n },\n z.core.$strip\n> = z.extend(DivinerConfigZod, {\n indexStore: z.optional(z.custom<SearchableStorage>()),\n indexingDivinerStages: z.optional(z.custom<IndexingDivinerStageConfig>()),\n payloadDivinerLimit: z.optional(z.number()),\n pollFrequency: z.optional(z.number()),\n schema: z.literal(IndexingDivinerConfigSchema),\n stateStore: z.optional(z.custom<SearchableStorage>()),\n})\n\nexport type IndexingDivinerConfigBase = z.infer<typeof IndexingDivinerConfigZod>\n\nexport const isIndexingDivinerConfig: ReturnType<typeof zodIsFactory<IndexingDivinerConfigBase>> = zodIsFactory(IndexingDivinerConfigZod)\nexport const asIndexingDivinerConfig: ReturnType<typeof zodAsFactory<IndexingDivinerConfigBase>>\n = zodAsFactory(IndexingDivinerConfigZod, 'asIndexingDivinerConfig')\nexport const toIndexingDivinerConfig: ReturnType<typeof zodToFactory<IndexingDivinerConfigBase>>\n = zodToFactory(IndexingDivinerConfigZod, 'toIndexingDivinerConfig')\n\nexport type IndexingDivinerConfig<TConfig extends Payload | EmptyObject | void = void, TSchema extends Schema | void = void> = DivinerConfig<\n WithAdditional<\n {\n /**\n * Where the diviner should store it's index\n */\n indexStore?: SearchableStorage\n /**\n * Config section for name/address of individual diviner stages\n */\n indexingDivinerStages?: IndexingDivinerStageConfig\n /**\n * The maximum number of payloads to index at a time\n */\n payloadDivinerLimit?: number\n /**\n * How often to poll for new payloads to index\n */\n pollFrequency?: number\n /**\n * The schema for the Diviner config\n */\n schema: IndexingDivinerConfigSchema\n /**\n * Where the diviner should persist its internal state\n */\n stateStore?: SearchableStorage\n },\n TConfig\n >,\n TSchema\n>\n", "import { asSchema } from '@xyo-network/sdk-protocol'\n\nexport const IndexingDivinerSchema: 'network.xyo.diviner.indexing' & {\n readonly __schema: true\n} = asSchema('network.xyo.diviner.indexing', true)\nexport type ImageThumbnailDivinerSchema = typeof IndexingDivinerSchema\n", "export const DivinerStageSchema: 'network.xyo.diviner.stage' & {\n readonly __schema: true\n} = asSchema('network.xyo.diviner.stage', true)\nexport type DivinerStageSchema = typeof DivinerStageSchema\n\nimport type { ModuleIdentifier } from '@xyo-network/sdk/module-model'\nimport { asSchema } from '@xyo-network/sdk-protocol'\n\n/**\n * The diviners for each stage of an indexing diviner\n */\nexport type IndexingDivinerStage\n /**\n * Transforms a diviner query into an index query\n */\n = | 'divinerQueryToIndexQueryDiviner'\n /**\n * Transforms the index candidates into indexes\n */\n | 'indexCandidateToIndexDiviner'\n /**\n * Transforms an index query response into a diviner divine query response\n */\n | 'indexQueryResponseToDivinerQueryResponseDiviner'\n /**\n * Uses the current state to determine the next batch of index candidates\n */\n | 'stateToIndexCandidateDiviner'\n\n/**\n * Config section for declaring each indexing diviner stage\n */\nexport type IndexingDivinerStageConfig = Record<IndexingDivinerStage, ModuleIdentifier>\n"],
5
- "mappings": ";AACA;AAAA,EACE;AAAA,EAAc;AAAA,EAAc;AAAA,OACvB;AAEP,SAAS,wBAAwB;AACjC;AAAA,EACE,YAAAA;AAAA,OACK;AACP,YAAY,OAAO;;;ACTnB,SAAS,gBAAgB;AAElB,IAAM,wBAET,SAAS,gCAAgC,IAAI;;;ADU1C,IAAM,8BAETC,UAAS,GAAG,qBAAqB,WAAW,IAAI;AAG7C,IAAM,2BAUP,SAAO,kBAAkB;AAAA,EAC7B,YAAc,WAAW,SAA0B,CAAC;AAAA,EACpD,uBAAyB,WAAW,SAAmC,CAAC;AAAA,EACxE,qBAAuB,WAAW,SAAO,CAAC;AAAA,EAC1C,eAAiB,WAAW,SAAO,CAAC;AAAA,EACpC,QAAU,UAAQ,2BAA2B;AAAA,EAC7C,YAAc,WAAW,SAA0B,CAAC;AACtD,CAAC;AAIM,IAAM,0BAAsF,aAAa,wBAAwB;AACjI,IAAM,0BACT,aAAa,0BAA0B,yBAAyB;AAC7D,IAAM,0BACT,aAAa,0BAA0B,yBAAyB;;;AEtCpE,SAAS,YAAAC,iBAAgB;AANlB,IAAM,qBAETA,UAAS,6BAA6B,IAAI;",
6
- "names": ["asSchema", "asSchema", "asSchema"]
3
+ "sources": ["../../src/index.ts"],
4
+ "sourcesContent": ["// Compatibility shim: this package re-exports from @xyo-network/diviner-indexing/model.\nexport * from '@xyo-network/diviner-indexing/model'\n"],
5
+ "mappings": ";AACA,cAAc;",
6
+ "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/diviner-indexing-model",
3
- "version": "7.2.3",
3
+ "version": "7.3.1",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -34,28 +34,24 @@
34
34
  "README.md"
35
35
  ],
36
36
  "dependencies": {
37
- "@xyo-network/sdk": "~7.2.3"
37
+ "@xyo-network/diviner-indexing": "~7.3.1"
38
38
  },
39
39
  "devDependencies": {
40
- "@ariestools/sdk": "~8.1.6",
41
- "@ariestools/toolchain": "~8.7.26",
42
- "@ariestools/tsconfig": "~8.7.26",
40
+ "@ariestools/sdk": "~8.1.9",
41
+ "@ariestools/toolchain": "~9.1.1",
42
+ "@ariestools/tsconfig": "~9.1.1",
43
43
  "@opentelemetry/api": "~1.9.1",
44
- "@xyo-network/sdk-protocol": "~7.2.3",
45
- "eslint": "~10.8.0",
44
+ "@xyo-network/sdk-protocol": "~7.3.3",
45
+ "eslint": "~10.9.0",
46
46
  "eslint-import-resolver-typescript": "~4.4.5",
47
47
  "typescript": "~6.0.3",
48
48
  "zod": "~4.4.3"
49
49
  },
50
- "peerDependencies": {
51
- "@ariestools/sdk": "^8.1",
52
- "@xyo-network/sdk-protocol": "^7.2",
53
- "zod": "^4.4"
54
- },
55
50
  "engines": {
56
51
  "node": "^24"
57
52
  },
58
53
  "publishConfig": {
59
54
  "access": "public"
60
- }
55
+ },
56
+ "deprecated": "Use @xyo-network/diviner-indexing/model instead. This package is a compatibility shim only and will not receive further updates."
61
57
  }
@@ -1,50 +0,0 @@
1
- import type { EmptyObject, WithAdditional } from '@ariestools/sdk';
2
- import { zodAsFactory, zodIsFactory, zodToFactory } from '@ariestools/sdk';
3
- import type { DivinerConfig, SearchableStorage } from '@xyo-network/sdk/diviner-model';
4
- import { DivinerConfigZod } from '@xyo-network/sdk/diviner-model';
5
- import { type Payload, type Schema } from '@xyo-network/sdk-protocol';
6
- import * as z from 'zod/mini';
7
- import type { IndexingDivinerStageConfig } from './Stage.ts';
8
- export declare const IndexingDivinerConfigSchema: string & {
9
- readonly __schema: true;
10
- };
11
- export type IndexingDivinerConfigSchema = typeof IndexingDivinerConfigSchema;
12
- export declare const IndexingDivinerConfigZod: z.ZodMiniObject<Omit<(typeof DivinerConfigZod)['shape'], 'schema'> & {
13
- indexStore: z.ZodMiniOptional<z.ZodMiniCustom<SearchableStorage, SearchableStorage>>;
14
- indexingDivinerStages: z.ZodMiniOptional<z.ZodMiniCustom<IndexingDivinerStageConfig, IndexingDivinerStageConfig>>;
15
- payloadDivinerLimit: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
16
- pollFrequency: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
17
- schema: z.ZodMiniLiteral<IndexingDivinerConfigSchema>;
18
- stateStore: z.ZodMiniOptional<z.ZodMiniCustom<SearchableStorage, SearchableStorage>>;
19
- }, z.core.$strip>;
20
- export type IndexingDivinerConfigBase = z.infer<typeof IndexingDivinerConfigZod>;
21
- export declare const isIndexingDivinerConfig: ReturnType<typeof zodIsFactory<IndexingDivinerConfigBase>>;
22
- export declare const asIndexingDivinerConfig: ReturnType<typeof zodAsFactory<IndexingDivinerConfigBase>>;
23
- export declare const toIndexingDivinerConfig: ReturnType<typeof zodToFactory<IndexingDivinerConfigBase>>;
24
- export type IndexingDivinerConfig<TConfig extends Payload | EmptyObject | void = void, TSchema extends Schema | void = void> = DivinerConfig<WithAdditional<{
25
- /**
26
- * Where the diviner should store it's index
27
- */
28
- indexStore?: SearchableStorage;
29
- /**
30
- * Config section for name/address of individual diviner stages
31
- */
32
- indexingDivinerStages?: IndexingDivinerStageConfig;
33
- /**
34
- * The maximum number of payloads to index at a time
35
- */
36
- payloadDivinerLimit?: number;
37
- /**
38
- * How often to poll for new payloads to index
39
- */
40
- pollFrequency?: number;
41
- /**
42
- * The schema for the Diviner config
43
- */
44
- schema: IndexingDivinerConfigSchema;
45
- /**
46
- * Where the diviner should persist its internal state
47
- */
48
- stateStore?: SearchableStorage;
49
- }, TConfig>, TSchema>;
50
- //# sourceMappingURL=Config.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAA;AAClE,OAAO,EACL,YAAY,EAAE,YAAY,EAAE,YAAY,EACzC,MAAM,iBAAiB,CAAA;AACxB,OAAO,KAAK,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAA;AACtF,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAA;AACjE,OAAO,EACK,KAAK,OAAO,EAAE,KAAK,MAAM,EACpC,MAAM,2BAA2B,CAAA;AAClC,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAG7B,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,YAAY,CAAA;AAE5D,eAAO,MAAM,2BAA2B,EAAE,MAAM,GAAG;IACjD,QAAQ,CAAC,QAAQ,EAAE,IAAI,CAAA;CAC4B,CAAA;AACrD,MAAM,MAAM,2BAA2B,GAAG,OAAO,2BAA2B,CAAA;AAE5E,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,aAAa,CACpD,IAAI,CAAC,CAAC,OAAO,gBAAgB,CAAC,CAAC,OAAO,CAAC,EAAE,QAAQ,CAAC,GAAG;IACnD,UAAU,EAAE,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,aAAa,CAAC,iBAAiB,EAAE,iBAAiB,CAAC,CAAC,CAAA;IACpF,qBAAqB,EAAE,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,aAAa,CAAC,0BAA0B,EAAE,0BAA0B,CAAC,CAAC,CAAA;IACjH,mBAAmB,EAAE,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,CAAA;IAC/D,aAAa,EAAE,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,CAAA;IACzD,MAAM,EAAE,CAAC,CAAC,cAAc,CAAC,2BAA2B,CAAC,CAAA;IACrD,UAAU,EAAE,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,aAAa,CAAC,iBAAiB,EAAE,iBAAiB,CAAC,CAAC,CAAA;CACrF,EACD,CAAC,CAAC,IAAI,CAAC,MAAM,CAQb,CAAA;AAEF,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAA;AAEhF,eAAO,MAAM,uBAAuB,EAAE,UAAU,CAAC,OAAO,YAAY,CAAC,yBAAyB,CAAC,CAA0C,CAAA;AACzI,eAAO,MAAM,uBAAuB,EAAE,UAAU,CAAC,OAAO,YAAY,CAAC,yBAAyB,CAAC,CAC1B,CAAA;AACrE,eAAO,MAAM,uBAAuB,EAAE,UAAU,CAAC,OAAO,YAAY,CAAC,yBAAyB,CAAC,CAC1B,CAAA;AAErE,MAAM,MAAM,qBAAqB,CAAC,OAAO,SAAS,OAAO,GAAG,WAAW,GAAG,IAAI,GAAG,IAAI,EAAE,OAAO,SAAS,MAAM,GAAG,IAAI,GAAG,IAAI,IAAI,aAAa,CAC1I,cAAc,CACZ;IACE;;OAEG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAA;IAC9B;;OAEG;IACH,qBAAqB,CAAC,EAAE,0BAA0B,CAAA;IAClD;;OAEG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAA;IAC5B;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB;;OAEG;IACH,MAAM,EAAE,2BAA2B,CAAA;IACnC;;OAEG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAA;CAC/B,EACD,OAAO,CACR,EACD,OAAO,CACR,CAAA"}
@@ -1,7 +0,0 @@
1
- import type { Labels } from '@xyo-network/sdk/module-model';
2
- import type { DivinerStageSchema, IndexingDivinerStage } from './Stage.ts';
3
- /**
4
- * Labels for Indexing Diviner Stage Diviners
5
- */
6
- export type IndexingDivinerStageLabels = Labels & Record<DivinerStageSchema, IndexingDivinerStage>;
7
- //# sourceMappingURL=Labels.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Labels.d.ts","sourceRoot":"","sources":["../../src/Labels.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,+BAA+B,CAAA;AAE3D,OAAO,KAAK,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,MAAM,YAAY,CAAA;AAE1E;;GAEG;AACH,MAAM,MAAM,0BAA0B,GAAG,MAAM,GAAG,MAAM,CAAC,kBAAkB,EAAE,oBAAoB,CAAC,CAAA"}
@@ -1,5 +0,0 @@
1
- import type { DivinerParams } from '@xyo-network/sdk/diviner-model';
2
- import type { AnyConfigSchema } from '@xyo-network/sdk/module-model';
3
- import type { IndexingDivinerConfig } from './Config.ts';
4
- export type IndexingDivinerParams = DivinerParams<AnyConfigSchema<IndexingDivinerConfig>>;
5
- //# sourceMappingURL=Params.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Params.d.ts","sourceRoot":"","sources":["../../src/Params.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAA;AACnE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAEpE,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAA;AAExD,MAAM,MAAM,qBAAqB,GAAG,aAAa,CAAC,eAAe,CAAC,qBAAqB,CAAC,CAAC,CAAA"}
@@ -1,5 +0,0 @@
1
- export declare const IndexingDivinerSchema: 'network.xyo.diviner.indexing' & {
2
- readonly __schema: true;
3
- };
4
- export type ImageThumbnailDivinerSchema = typeof IndexingDivinerSchema;
5
- //# sourceMappingURL=Schema.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,qBAAqB,EAAE,8BAA8B,GAAG;IACnE,QAAQ,CAAC,QAAQ,EAAE,IAAI,CAAA;CACyB,CAAA;AAClD,MAAM,MAAM,2BAA2B,GAAG,OAAO,qBAAqB,CAAA"}
@@ -1,26 +0,0 @@
1
- export declare const DivinerStageSchema: 'network.xyo.diviner.stage' & {
2
- readonly __schema: true;
3
- };
4
- export type DivinerStageSchema = typeof DivinerStageSchema;
5
- import type { ModuleIdentifier } from '@xyo-network/sdk/module-model';
6
- /**
7
- * The diviners for each stage of an indexing diviner
8
- */
9
- export type IndexingDivinerStage = 'divinerQueryToIndexQueryDiviner'
10
- /**
11
- * Transforms the index candidates into indexes
12
- */
13
- | 'indexCandidateToIndexDiviner'
14
- /**
15
- * Transforms an index query response into a diviner divine query response
16
- */
17
- | 'indexQueryResponseToDivinerQueryResponseDiviner'
18
- /**
19
- * Uses the current state to determine the next batch of index candidates
20
- */
21
- | 'stateToIndexCandidateDiviner';
22
- /**
23
- * Config section for declaring each indexing diviner stage
24
- */
25
- export type IndexingDivinerStageConfig = Record<IndexingDivinerStage, ModuleIdentifier>;
26
- //# sourceMappingURL=Stage.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Stage.d.ts","sourceRoot":"","sources":["../../src/Stage.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,EAAE,2BAA2B,GAAG;IAC7D,QAAQ,CAAC,QAAQ,EAAE,IAAI,CAAA;CACsB,CAAA;AAC/C,MAAM,MAAM,kBAAkB,GAAG,OAAO,kBAAkB,CAAA;AAE1D,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAA;AAGrE;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAI1B,iCAAiC;AACrC;;GAEG;GACC,8BAA8B;AAClC;;GAEG;GACC,iDAAiD;AACrD;;GAEG;GACC,8BAA8B,CAAA;AAEpC;;GAEG;AACH,MAAM,MAAM,0BAA0B,GAAG,MAAM,CAAC,oBAAoB,EAAE,gBAAgB,CAAC,CAAA"}
@@ -1,6 +0,0 @@
1
- import type { StateDictionary } from '@xyo-network/sdk/module-model';
2
- import type { Sequence } from '@xyo-network/sdk-protocol';
3
- export type IndexingDivinerState = StateDictionary & {
4
- cursor: Sequence;
5
- };
6
- //# sourceMappingURL=State.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"State.d.ts","sourceRoot":"","sources":["../../src/State.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AACpE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAA;AAEzD,MAAM,MAAM,oBAAoB,GAAG,eAAe,GAAG;IACnD,MAAM,EAAE,QAAQ,CAAA;CACjB,CAAA"}