@xyo-network/diviner-coin-user-locations-model 4.1.2 → 4.1.3
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/index.d.ts +6 -32
- package/package.json +6 -6
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,32 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
declare const CoinUserLocationsDivinerSchema: "co.coinapp.diviner.user.locations";
|
|
8
|
-
type CoinUserLocationsDivinerSchema = typeof CoinUserLocationsDivinerSchema;
|
|
9
|
-
declare const CoinUserLocationsDivinerConfigSchema: "co.coinapp.diviner.user.locations.config";
|
|
10
|
-
type CoinUserLocationsDivinerConfigSchema = typeof CoinUserLocationsDivinerConfigSchema;
|
|
11
|
-
declare const CoinUserLocationsQuerySchema: "co.coinapp.diviner.user.locations.query";
|
|
12
|
-
type CoinUserLocationsQuerySchema = typeof CoinUserLocationsQuerySchema;
|
|
13
|
-
|
|
14
|
-
type CoinUserLocationsDivinerConfig = DivinerConfig<{
|
|
15
|
-
address?: string;
|
|
16
|
-
schema: CoinUserLocationsDivinerConfigSchema;
|
|
17
|
-
}>;
|
|
18
|
-
|
|
19
|
-
type CoinUserLocationsDivinerParams = DivinerParams<AnyConfigSchema<CoinUserLocationsDivinerConfig>>;
|
|
20
|
-
|
|
21
|
-
type CoinUserLocationsPayload = Payload<{
|
|
22
|
-
schema: CoinUserLocationsSchema;
|
|
23
|
-
}>;
|
|
24
|
-
declare const isCoinUserLocationsPayload: (x?: Payload | null) => x is CoinUserLocationsPayload;
|
|
25
|
-
|
|
26
|
-
type CoinUserLocationsQueryPayload = Query<{
|
|
27
|
-
schema: CoinUserLocationsQuerySchema;
|
|
28
|
-
} & Omit<PayloadFindFilter, 'schema'>>;
|
|
29
|
-
declare const isCoinUserLocationsQueryPayload: (x?: unknown | null) => x is CoinUserLocationsQueryPayload;
|
|
30
|
-
|
|
31
|
-
export { CoinUserLocationsDivinerConfigSchema, CoinUserLocationsDivinerSchema, CoinUserLocationsQuerySchema, CoinUserLocationsSchema, isCoinUserLocationsPayload, isCoinUserLocationsQueryPayload };
|
|
32
|
-
export type { CoinUserLocationsDivinerConfig, CoinUserLocationsDivinerParams, CoinUserLocationsPayload, CoinUserLocationsQueryPayload };
|
|
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
|
+
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-coin-user-locations-model",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.3",
|
|
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": "^4.1.
|
|
33
|
-
"@xyo-network/module-model": "^4.1.
|
|
34
|
-
"@xyo-network/payload-model": "^4.1.
|
|
32
|
+
"@xyo-network/diviner-model": "^4.1.3",
|
|
33
|
+
"@xyo-network/module-model": "^4.1.3",
|
|
34
|
+
"@xyo-network/payload-model": "^4.1.3"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.
|
|
38
|
-
"@xylabs/tsconfig": "^7.0.0-rc.
|
|
37
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.27",
|
|
38
|
+
"@xylabs/tsconfig": "^7.0.0-rc.27",
|
|
39
39
|
"typescript": "^5.8.3"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|