@xyo-network/diviner-coin-user-locations-model 3.9.1 → 3.9.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 +1 -10
- package/package.json +4 -4
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { DivinerConfig, DivinerParams } from '@xyo-network/diviner-model';
|
|
2
2
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
3
|
import { Payload, Query, PayloadFindFilter } from '@xyo-network/payload-model';
|
|
4
|
-
import * as _xylabs_object from '@xylabs/object';
|
|
5
4
|
|
|
6
5
|
declare const CoinUserLocationsSchema: "co.coinapp.user.locations";
|
|
7
6
|
type CoinUserLocationsSchema = typeof CoinUserLocationsSchema;
|
|
@@ -27,14 +26,6 @@ declare const isCoinUserLocationsPayload: (x?: Payload | null) => x is CoinUserL
|
|
|
27
26
|
type CoinUserLocationsQueryPayload = Query<{
|
|
28
27
|
schema: CoinUserLocationsQuerySchema;
|
|
29
28
|
} & Omit<PayloadFindFilter, 'schema'>>;
|
|
30
|
-
declare const isCoinUserLocationsQueryPayload: (x?: unknown | null) => x is
|
|
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
|
-
}>;
|
|
29
|
+
declare const isCoinUserLocationsQueryPayload: (x?: unknown | null) => x is CoinUserLocationsQueryPayload;
|
|
39
30
|
|
|
40
31
|
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.9.
|
|
3
|
+
"version": "3.9.3",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xyo-network/diviner-model": "^3.9.
|
|
33
|
-
"@xyo-network/module-model": "^3.9.
|
|
34
|
-
"@xyo-network/payload-model": "^3.9.
|
|
32
|
+
"@xyo-network/diviner-model": "^3.9.3",
|
|
33
|
+
"@xyo-network/module-model": "^3.9.3",
|
|
34
|
+
"@xyo-network/payload-model": "^3.9.3"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@xylabs/ts-scripts-yarn3": "^5.0.24",
|