@xyo-network/diviner-coin-user-locations-model 6.0.0 → 6.0.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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Payload.d.ts","sourceRoot":"","sources":["../../src/Payload.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"Payload.d.ts","sourceRoot":"","sources":["../../src/Payload.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAA;AAE3D,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAA;AAErD,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC;IAAE,MAAM,EAAE,uBAAuB,CAAA;CAAE,CAAC,CAAA;AACnF,eAAO,MAAM,0BAA0B,GAAI,IAAI,OAAO,GAAG,IAAI,KAAG,CAAC,IAAI,wBAAiE,CAAA"}
|
package/dist/neutral/Query.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { PayloadFindFilter, Query } from '@xyo-network/
|
|
1
|
+
import type { PayloadFindFilter, Query } from '@xyo-network/sdk-protocol-js';
|
|
2
2
|
import { CoinUserLocationsQuerySchema } from './Schema.ts';
|
|
3
3
|
export type CoinUserLocationsQueryPayload = Query<{
|
|
4
4
|
schema: CoinUserLocationsQuerySchema;
|
|
5
5
|
} & Omit<PayloadFindFilter, 'schema'>>;
|
|
6
|
-
export declare const isCoinUserLocationsQueryPayload: (x?: unknown
|
|
6
|
+
export declare const isCoinUserLocationsQueryPayload: (x?: unknown) => x is CoinUserLocationsQueryPayload;
|
|
7
7
|
//# sourceMappingURL=Query.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Query.d.ts","sourceRoot":"","sources":["../../src/Query.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"Query.d.ts","sourceRoot":"","sources":["../../src/Query.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,KAAK,EAAE,MAAM,8BAA8B,CAAA;AAG5E,OAAO,EAAE,4BAA4B,EAAE,MAAM,aAAa,CAAA;AAE1D,MAAM,MAAM,6BAA6B,GAAG,KAAK,CAAC;IAAE,MAAM,EAAE,4BAA4B,CAAA;CAAE,GAAG,IAAI,CAAC,iBAAiB,EAAE,QAAQ,CAAC,CAAC,CAAA;AAC/H,eAAO,MAAM,+BAA+B,qDAAqF,CAAA"}
|
package/dist/neutral/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/Schema.ts
|
|
2
|
-
import { asSchema } from "@xyo-network/
|
|
2
|
+
import { asSchema } from "@xyo-network/sdk-protocol-js";
|
|
3
3
|
var CoinUserLocationsSchema = asSchema("co.coinapp.user.locations", true);
|
|
4
4
|
var CoinUserLocationsDivinerSchema = asSchema("co.coinapp.diviner.user.locations", true);
|
|
5
5
|
var CoinUserLocationsDivinerConfigSchema = asSchema(`${CoinUserLocationsDivinerSchema}.config`, true);
|
|
@@ -9,7 +9,7 @@ var CoinUserLocationsQuerySchema = asSchema(`${CoinUserLocationsDivinerSchema}.q
|
|
|
9
9
|
var isCoinUserLocationsPayload = (x) => x?.schema === CoinUserLocationsSchema;
|
|
10
10
|
|
|
11
11
|
// src/Query.ts
|
|
12
|
-
import { isPayloadOfSchemaType } from "@xyo-network/
|
|
12
|
+
import { isPayloadOfSchemaType } from "@xyo-network/sdk-protocol-js";
|
|
13
13
|
var isCoinUserLocationsQueryPayload = isPayloadOfSchemaType(CoinUserLocationsQuerySchema);
|
|
14
14
|
export {
|
|
15
15
|
CoinUserLocationsDivinerConfigSchema,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Schema.ts", "../../src/Payload.ts", "../../src/Query.ts"],
|
|
4
|
-
"sourcesContent": ["import { asSchema } from '@xyo-network/
|
|
4
|
+
"sourcesContent": ["import { asSchema } from '@xyo-network/sdk-protocol-js'\n\nexport const CoinUserLocationsSchema = asSchema('co.coinapp.user.locations', true)\nexport type CoinUserLocationsSchema = typeof CoinUserLocationsSchema\n\nexport const CoinUserLocationsDivinerSchema = asSchema('co.coinapp.diviner.user.locations', true)\nexport type CoinUserLocationsDivinerSchema = typeof CoinUserLocationsDivinerSchema\n\nexport const CoinUserLocationsDivinerConfigSchema = asSchema(`${CoinUserLocationsDivinerSchema}.config`, true)\nexport type CoinUserLocationsDivinerConfigSchema = typeof CoinUserLocationsDivinerConfigSchema\n\nexport const CoinUserLocationsQuerySchema = asSchema(`${CoinUserLocationsDivinerSchema}.query`, true)\nexport type CoinUserLocationsQuerySchema = typeof CoinUserLocationsQuerySchema\n", "import type { Payload } from '@xyo-network/sdk-protocol-js'\n\nimport { CoinUserLocationsSchema } from './Schema.ts'\n\nexport type CoinUserLocationsPayload = Payload<{ schema: CoinUserLocationsSchema }>\nexport const isCoinUserLocationsPayload = (x?: Payload | null): x is CoinUserLocationsPayload => x?.schema === CoinUserLocationsSchema\n", "import type { PayloadFindFilter, Query } from '@xyo-network/sdk-protocol-js'\nimport { isPayloadOfSchemaType } from '@xyo-network/sdk-protocol-js'\n\nimport { CoinUserLocationsQuerySchema } from './Schema.ts'\n\nexport type CoinUserLocationsQueryPayload = Query<{ schema: CoinUserLocationsQuerySchema } & Omit<PayloadFindFilter, 'schema'>>\nexport const isCoinUserLocationsQueryPayload = isPayloadOfSchemaType<CoinUserLocationsQueryPayload>(CoinUserLocationsQuerySchema)\n"],
|
|
5
5
|
"mappings": ";AAAA,SAAS,gBAAgB;AAElB,IAAM,0BAA0B,SAAS,6BAA6B,IAAI;AAG1E,IAAM,iCAAiC,SAAS,qCAAqC,IAAI;AAGzF,IAAM,uCAAuC,SAAS,GAAG,8BAA8B,WAAW,IAAI;AAGtG,IAAM,+BAA+B,SAAS,GAAG,8BAA8B,UAAU,IAAI;;;ACN7F,IAAM,6BAA6B,CAAC,MAAsD,GAAG,WAAW;;;ACJ/G,SAAS,6BAA6B;AAK/B,IAAM,kCAAkC,sBAAqD,4BAA4B;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-coin-user-locations-model",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -34,45 +34,69 @@
|
|
|
34
34
|
"README.md"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@xyo-network/diviner-model": "~6.0.
|
|
38
|
-
"@xyo-network/module-model": "~6.0.
|
|
37
|
+
"@xyo-network/diviner-model": "~6.0.1",
|
|
38
|
+
"@xyo-network/module-model": "~6.0.1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
+
"@bitauth/libauth": "~3.0",
|
|
42
|
+
"@metamask/providers": "^22.1",
|
|
43
|
+
"@noble/post-quantum": "~0.6.1",
|
|
41
44
|
"@opentelemetry/api": "^1.9.1",
|
|
42
45
|
"@opentelemetry/sdk-trace-base": "^2.7.1",
|
|
43
46
|
"@scure/base": "~2.2.0",
|
|
44
|
-
"@
|
|
45
|
-
"@xylabs/
|
|
46
|
-
"@xylabs/
|
|
47
|
-
"@
|
|
48
|
-
"@
|
|
49
|
-
"@
|
|
50
|
-
"@xyo-network/
|
|
47
|
+
"@scure/bip39": "~2.2",
|
|
48
|
+
"@xylabs/geo": "^6.0",
|
|
49
|
+
"@xylabs/sdk-js": "^6.0.4",
|
|
50
|
+
"@xylabs/threads": "^6.0",
|
|
51
|
+
"@xylabs/toolchain": "~8.1.6",
|
|
52
|
+
"@xylabs/tsconfig": "~8.1.6",
|
|
53
|
+
"@xyo-network/sdk-protocol-js": "~6.0.5",
|
|
54
|
+
"ajv": "^8.20",
|
|
51
55
|
"async-mutex": "^0.5.0",
|
|
52
56
|
"bn.js": "^5.2.3",
|
|
53
57
|
"buffer": "^6.0.3",
|
|
54
|
-
"
|
|
58
|
+
"debug": "~4.4",
|
|
55
59
|
"eslint": "^10.4.0",
|
|
56
60
|
"ethers": "^6.16.0",
|
|
61
|
+
"hash-wasm": "~4.12",
|
|
62
|
+
"idb": "^8.0",
|
|
63
|
+
"lru-cache": "^11.3",
|
|
64
|
+
"mapbox-gl": "^3.23",
|
|
65
|
+
"observable-fns": "~0.6",
|
|
57
66
|
"pako": "~2.1.0",
|
|
67
|
+
"store2": "~2.14",
|
|
58
68
|
"typescript": "~6.0.3",
|
|
69
|
+
"wasm-feature-detect": "~1.8",
|
|
70
|
+
"webextension-polyfill": "^0.12",
|
|
59
71
|
"zod": "^4.4.3"
|
|
60
72
|
},
|
|
61
73
|
"peerDependencies": {
|
|
74
|
+
"@bitauth/libauth": "~3.0",
|
|
75
|
+
"@metamask/providers": "^22.1",
|
|
76
|
+
"@noble/post-quantum": "~0.6.1",
|
|
62
77
|
"@opentelemetry/api": "^1.9",
|
|
63
78
|
"@opentelemetry/sdk-trace-base": "^2.7",
|
|
64
79
|
"@scure/base": "~2.2",
|
|
80
|
+
"@scure/bip39": "~2.2",
|
|
81
|
+
"@xylabs/geo": "^6.0",
|
|
65
82
|
"@xylabs/sdk-js": "^6.0",
|
|
66
|
-
"@
|
|
67
|
-
"@xyo-network/
|
|
68
|
-
"
|
|
69
|
-
"@xyo-network/payload-model": "~6.0",
|
|
83
|
+
"@xylabs/threads": "^6.0",
|
|
84
|
+
"@xyo-network/sdk-protocol-js": "~6.0",
|
|
85
|
+
"ajv": "^8.20",
|
|
70
86
|
"async-mutex": "^0.5",
|
|
71
87
|
"bn.js": "^5.2",
|
|
72
88
|
"buffer": "^6.0",
|
|
73
|
-
"
|
|
89
|
+
"debug": "~4.4",
|
|
74
90
|
"ethers": "^6.16",
|
|
91
|
+
"hash-wasm": "~4.12",
|
|
92
|
+
"idb": "^8.0",
|
|
93
|
+
"lru-cache": "^11.3",
|
|
94
|
+
"mapbox-gl": "^3.23",
|
|
95
|
+
"observable-fns": "~0.6",
|
|
75
96
|
"pako": "~2.1",
|
|
97
|
+
"store2": "~2.14",
|
|
98
|
+
"wasm-feature-detect": "~1.8",
|
|
99
|
+
"webextension-polyfill": "^0.12",
|
|
76
100
|
"zod": "^4.4"
|
|
77
101
|
},
|
|
78
102
|
"publishConfig": {
|