@xyo-network/diviner-coin-user-locations-model 3.8.0 → 3.8.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.
- package/dist/neutral/index.d.ts +40 -6
- package/package.json +6 -6
- package/dist/neutral/Config.d.ts +0 -7
- package/dist/neutral/Config.d.ts.map +0 -1
- package/dist/neutral/Params.d.ts +0 -5
- package/dist/neutral/Params.d.ts.map +0 -1
- package/dist/neutral/Payload.d.ts +0 -7
- package/dist/neutral/Payload.d.ts.map +0 -1
- package/dist/neutral/Query.d.ts +0 -15
- package/dist/neutral/Query.d.ts.map +0 -1
- package/dist/neutral/Schema.d.ts +0 -9
- package/dist/neutral/Schema.d.ts.map +0 -1
- package/dist/neutral/index.d.ts.map +0 -1
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,6 +1,40 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { DivinerConfig, DivinerParams } from '@xyo-network/diviner-model';
|
|
2
|
+
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
+
import { Payload, Query, PayloadFindFilter } from '@xyo-network/payload-model';
|
|
4
|
+
import * as _xylabs_object from '@xylabs/object';
|
|
5
|
+
|
|
6
|
+
declare const CoinUserLocationsSchema: "co.coinapp.user.locations";
|
|
7
|
+
type CoinUserLocationsSchema = typeof CoinUserLocationsSchema;
|
|
8
|
+
declare const CoinUserLocationsDivinerSchema: "co.coinapp.diviner.user.locations";
|
|
9
|
+
type CoinUserLocationsDivinerSchema = typeof CoinUserLocationsDivinerSchema;
|
|
10
|
+
declare const CoinUserLocationsDivinerConfigSchema: "co.coinapp.diviner.user.locations.config";
|
|
11
|
+
type CoinUserLocationsDivinerConfigSchema = typeof CoinUserLocationsDivinerConfigSchema;
|
|
12
|
+
declare const CoinUserLocationsQuerySchema: "co.coinapp.diviner.user.locations.query";
|
|
13
|
+
type CoinUserLocationsQuerySchema = typeof CoinUserLocationsQuerySchema;
|
|
14
|
+
|
|
15
|
+
type CoinUserLocationsDivinerConfig = DivinerConfig<{
|
|
16
|
+
address?: string;
|
|
17
|
+
schema: CoinUserLocationsDivinerConfigSchema;
|
|
18
|
+
}>;
|
|
19
|
+
|
|
20
|
+
type CoinUserLocationsDivinerParams = DivinerParams<AnyConfigSchema<CoinUserLocationsDivinerConfig>>;
|
|
21
|
+
|
|
22
|
+
type CoinUserLocationsPayload = Payload<{
|
|
23
|
+
schema: CoinUserLocationsSchema;
|
|
24
|
+
}>;
|
|
25
|
+
declare const isCoinUserLocationsPayload: (x?: Payload | null) => x is CoinUserLocationsPayload;
|
|
26
|
+
|
|
27
|
+
type CoinUserLocationsQueryPayload = Query<{
|
|
28
|
+
schema: CoinUserLocationsQuerySchema;
|
|
29
|
+
} & Omit<PayloadFindFilter, 'schema'>>;
|
|
30
|
+
declare const isCoinUserLocationsQueryPayload: (x?: unknown | null) => x is _xylabs_object.DeepRestrictToStringKeys<{
|
|
31
|
+
schema: "co.coinapp.diviner.user.locations.query";
|
|
32
|
+
address?: Lowercase<string> | Lowercase<string>[] | undefined;
|
|
33
|
+
limit?: number | undefined;
|
|
34
|
+
order?: "desc" | "asc" | undefined;
|
|
35
|
+
budget?: number | undefined;
|
|
36
|
+
maxFrequency?: "once" | "second" | "minute" | "hour" | "day" | "week" | "month" | "year" | undefined;
|
|
37
|
+
minBid?: number | undefined;
|
|
38
|
+
}>;
|
|
39
|
+
|
|
40
|
+
export { type CoinUserLocationsDivinerConfig, CoinUserLocationsDivinerConfigSchema, type CoinUserLocationsDivinerParams, CoinUserLocationsDivinerSchema, type CoinUserLocationsPayload, type CoinUserLocationsQueryPayload, CoinUserLocationsQuerySchema, CoinUserLocationsSchema, isCoinUserLocationsPayload, isCoinUserLocationsQueryPayload };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-coin-user-locations-model",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.1",
|
|
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.8.
|
|
33
|
-
"@xyo-network/module-model": "^3.8.
|
|
34
|
-
"@xyo-network/payload-model": "^3.8.
|
|
32
|
+
"@xyo-network/diviner-model": "^3.8.1",
|
|
33
|
+
"@xyo-network/module-model": "^3.8.1",
|
|
34
|
+
"@xyo-network/payload-model": "^3.8.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@xylabs/ts-scripts-yarn3": "^
|
|
38
|
-
"@xylabs/tsconfig": "^
|
|
37
|
+
"@xylabs/ts-scripts-yarn3": "^5.0.22",
|
|
38
|
+
"@xylabs/tsconfig": "^5.0.22",
|
|
39
39
|
"typescript": "^5.7.3"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
package/dist/neutral/Config.d.ts
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
|
-
import type { CoinUserLocationsDivinerConfigSchema } from './Schema.ts';
|
|
3
|
-
export type CoinUserLocationsDivinerConfig = DivinerConfig<{
|
|
4
|
-
address?: string;
|
|
5
|
-
schema: CoinUserLocationsDivinerConfigSchema;
|
|
6
|
-
}>;
|
|
7
|
-
//# 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,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAE/D,OAAO,KAAK,EAAE,oCAAoC,EAAE,MAAM,aAAa,CAAA;AAEvE,MAAM,MAAM,8BAA8B,GAAG,aAAa,CAAC;IACzD,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,EAAE,oCAAoC,CAAA;CAC7C,CAAC,CAAA"}
|
package/dist/neutral/Params.d.ts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import type { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
|
-
import type { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
-
import type { CoinUserLocationsDivinerConfig } from './Config.ts';
|
|
4
|
-
export type CoinUserLocationsDivinerParams = DivinerParams<AnyConfigSchema<CoinUserLocationsDivinerConfig>>;
|
|
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,4BAA4B,CAAA;AAC/D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAEhE,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,aAAa,CAAA;AAEjE,MAAM,MAAM,8BAA8B,GAAG,aAAa,CAAC,eAAe,CAAC,8BAA8B,CAAC,CAAC,CAAA"}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
import { CoinUserLocationsSchema } from './Schema.ts';
|
|
3
|
-
export type CoinUserLocationsPayload = Payload<{
|
|
4
|
-
schema: CoinUserLocationsSchema;
|
|
5
|
-
}>;
|
|
6
|
-
export declare const isCoinUserLocationsPayload: (x?: Payload | null) => x is CoinUserLocationsPayload;
|
|
7
|
-
//# sourceMappingURL=Payload.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Payload.d.ts","sourceRoot":"","sources":["../../src/Payload.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAEzD,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,OAAQ,OAAO,GAAG,IAAI,KAAG,CAAC,IAAI,wBAAiE,CAAA"}
|
package/dist/neutral/Query.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { type PayloadFindFilter, type Query } from '@xyo-network/payload-model';
|
|
2
|
-
import { CoinUserLocationsQuerySchema } from './Schema.ts';
|
|
3
|
-
export type CoinUserLocationsQueryPayload = Query<{
|
|
4
|
-
schema: CoinUserLocationsQuerySchema;
|
|
5
|
-
} & Omit<PayloadFindFilter, 'schema'>>;
|
|
6
|
-
export declare const isCoinUserLocationsQueryPayload: (x?: unknown | null) => x is import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
7
|
-
schema: "co.coinapp.diviner.user.locations.query";
|
|
8
|
-
address?: Lowercase<string> | Lowercase<string>[] | undefined;
|
|
9
|
-
limit?: number | undefined;
|
|
10
|
-
order?: "desc" | "asc" | undefined;
|
|
11
|
-
budget?: number | undefined;
|
|
12
|
-
maxFrequency?: "once" | "second" | "minute" | "hour" | "day" | "week" | "month" | "year" | undefined;
|
|
13
|
-
minBid?: number | undefined;
|
|
14
|
-
}>;
|
|
15
|
-
//# sourceMappingURL=Query.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Query.d.ts","sourceRoot":"","sources":["../../src/Query.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,iBAAiB,EAAE,KAAK,KAAK,EACnC,MAAM,4BAA4B,CAAA;AAEnC,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;;;;;;;;EAAqF,CAAA"}
|
package/dist/neutral/Schema.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export declare const CoinUserLocationsSchema: "co.coinapp.user.locations";
|
|
2
|
-
export type CoinUserLocationsSchema = typeof CoinUserLocationsSchema;
|
|
3
|
-
export declare const CoinUserLocationsDivinerSchema: "co.coinapp.diviner.user.locations";
|
|
4
|
-
export type CoinUserLocationsDivinerSchema = typeof CoinUserLocationsDivinerSchema;
|
|
5
|
-
export declare const CoinUserLocationsDivinerConfigSchema: "co.coinapp.diviner.user.locations.config";
|
|
6
|
-
export type CoinUserLocationsDivinerConfigSchema = typeof CoinUserLocationsDivinerConfigSchema;
|
|
7
|
-
export declare const CoinUserLocationsQuerySchema: "co.coinapp.diviner.user.locations.query";
|
|
8
|
-
export type CoinUserLocationsQuerySchema = typeof CoinUserLocationsQuerySchema;
|
|
9
|
-
//# sourceMappingURL=Schema.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,uBAAuB,EAAG,2BAAoC,CAAA;AAC3E,MAAM,MAAM,uBAAuB,GAAG,OAAO,uBAAuB,CAAA;AAEpE,eAAO,MAAM,8BAA8B,EAAG,mCAA4C,CAAA;AAC1F,MAAM,MAAM,8BAA8B,GAAG,OAAO,8BAA8B,CAAA;AAElF,eAAO,MAAM,oCAAoC,4CAAsD,CAAA;AACvG,MAAM,MAAM,oCAAoC,GAAG,OAAO,oCAAoC,CAAA;AAE9F,eAAO,MAAM,4BAA4B,2CAAqD,CAAA;AAC9F,MAAM,MAAM,4BAA4B,GAAG,OAAO,4BAA4B,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,cAAc,CAAA;AAC5B,cAAc,YAAY,CAAA;AAC1B,cAAc,aAAa,CAAA"}
|