@xyo-network/diviner-address-space-model 3.6.9 → 3.6.11
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/neutral/Schema.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
1
|
+
export declare const AddressSpaceSchema: "network.xyo.diviner.address.space";
|
|
2
|
+
export type AddressSpaceSchema = typeof AddressSpaceSchema;
|
|
3
3
|
//# sourceMappingURL=Schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,EAAG,mCAA4C,CAAA;AAC9E,MAAM,MAAM,kBAAkB,GAAG,OAAO,kBAAkB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export const AddressSpaceSchema = 'network.xyo.diviner.address.space' as const\nexport type AddressSpaceSchema = typeof AddressSpaceSchema\n","import type { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { AddressSpaceSchema } from './Schema.ts'\n\nexport type AddressSpaceDivinerConfigSchema = `${AddressSpaceSchema}.diviner.config`\nexport const AddressSpaceDivinerConfigSchema: AddressSpaceDivinerConfigSchema = `${AddressSpaceSchema}.diviner.config`\n\nexport type AddressSpaceDivinerConfig = DivinerConfig<{\n address?: string\n schema: AddressSpaceDivinerConfigSchema\n}>\n\nexport type AddressSpaceBatchDivinerConfigSchema = `${AddressSpaceSchema}.batch.diviner.config`\nexport const AddressSpaceBatchDivinerConfigSchema: AddressSpaceBatchDivinerConfigSchema = `${AddressSpaceSchema}.batch.diviner.config`\n\nexport type AddressSpaceBatchDivinerConfig = DivinerConfig<{\n address?: string\n schema: AddressSpaceBatchDivinerConfigSchema\n}>\n"],"mappings":";AAAO,IAAM,qBAAqB;;;ACK3B,IAAM,kCAAmE,GAAG,kBAAkB;AAQ9F,IAAM,uCAA6E,GAAG,kBAAkB;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-address-space-model",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.11",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xyo-network/diviner-model": "^3.6.
|
|
33
|
-
"@xyo-network/module-model": "^3.6.
|
|
32
|
+
"@xyo-network/diviner-model": "^3.6.11",
|
|
33
|
+
"@xyo-network/module-model": "^3.6.11"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@xylabs/ts-scripts-yarn3": "^4.2.6",
|
|
37
37
|
"@xylabs/tsconfig": "^4.2.6",
|
|
38
|
-
"typescript": "^5.7.
|
|
38
|
+
"typescript": "^5.7.3"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
package/src/Schema.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
1
|
+
export const AddressSpaceSchema = 'network.xyo.diviner.address.space' as const
|
|
2
|
+
export type AddressSpaceSchema = typeof AddressSpaceSchema
|