@xyo-network/location-certainty-plugin 2.46.4 → 2.47.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/docs.json +914 -593
- package/dist/types/Plugin.d.ts +3 -1
- package/dist/types/Plugin.d.ts.map +1 -1
- package/package.json +12 -12
- package/src/Plugin.ts +1 -1
package/dist/types/Plugin.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { ModuleParams } from '@xyo-network/module';
|
|
2
2
|
import { PayloadSetDivinerPlugin } from '@xyo-network/payloadset-plugin';
|
|
3
|
-
|
|
3
|
+
import { LocationCertaintyDiviner } from './Diviner';
|
|
4
|
+
export declare const LocationCertaintyPlugin: () => PayloadSetDivinerPlugin<LocationCertaintyDiviner, ModuleParams<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
4
5
|
name?: string | undefined;
|
|
5
6
|
security?: {
|
|
7
|
+
allowAnonymous?: boolean | undefined;
|
|
6
8
|
allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
7
9
|
disallowed?: Record<string, string[]> | undefined;
|
|
8
10
|
} | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAElD,OAAO,EAA0B,uBAAuB,EAAE,MAAM,gCAAgC,CAAA;
|
|
1
|
+
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAElD,OAAO,EAA0B,uBAAuB,EAAE,MAAM,gCAAgC,CAAA;AAEhG,OAAO,EAAE,wBAAwB,EAAkC,MAAM,WAAW,CAAA;AAEpF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;GAQjC,CAAA"}
|
package/package.json
CHANGED
|
@@ -10,17 +10,17 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/diviner": "^2.
|
|
14
|
-
"@xyo-network/diviner-model": "^2.
|
|
15
|
-
"@xyo-network/elevation-payload-plugin": "^2.
|
|
16
|
-
"@xyo-network/elevation-plugin": "^2.
|
|
17
|
-
"@xyo-network/location-certainty-payload-plugin": "^2.
|
|
18
|
-
"@xyo-network/location-payload-plugin": "^2.
|
|
19
|
-
"@xyo-network/module": "^2.
|
|
20
|
-
"@xyo-network/payload-builder": "^2.
|
|
21
|
-
"@xyo-network/payload-model": "^2.
|
|
22
|
-
"@xyo-network/payloadset-plugin": "^2.
|
|
23
|
-
"@xyo-network/shared": "^2.
|
|
13
|
+
"@xyo-network/diviner": "^2.47.1",
|
|
14
|
+
"@xyo-network/diviner-model": "^2.47.1",
|
|
15
|
+
"@xyo-network/elevation-payload-plugin": "^2.47.1",
|
|
16
|
+
"@xyo-network/elevation-plugin": "^2.47.1",
|
|
17
|
+
"@xyo-network/location-certainty-payload-plugin": "^2.47.1",
|
|
18
|
+
"@xyo-network/location-payload-plugin": "^2.47.1",
|
|
19
|
+
"@xyo-network/module": "^2.47.1",
|
|
20
|
+
"@xyo-network/payload-builder": "^2.47.1",
|
|
21
|
+
"@xyo-network/payload-model": "^2.47.1",
|
|
22
|
+
"@xyo-network/payloadset-plugin": "^2.47.1",
|
|
23
|
+
"@xyo-network/shared": "^2.47.1"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@xylabs/ts-scripts-yarn3": "^2.14.15",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
},
|
|
61
61
|
"sideEffects": false,
|
|
62
62
|
"types": "dist/types/index.d.ts",
|
|
63
|
-
"version": "2.
|
|
63
|
+
"version": "2.47.1"
|
|
64
64
|
}
|
package/src/Plugin.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { createPayloadSetPlugin, PayloadSetDivinerPlugin } from '@xyo-network/pa
|
|
|
6
6
|
import { LocationCertaintyDiviner, LocationCertaintyDivinerConfig } from './Diviner'
|
|
7
7
|
|
|
8
8
|
export const LocationCertaintyPlugin = () =>
|
|
9
|
-
createPayloadSetPlugin<PayloadSetDivinerPlugin<ModuleParams<LocationCertaintyDivinerConfig>>>(
|
|
9
|
+
createPayloadSetPlugin<PayloadSetDivinerPlugin<LocationCertaintyDiviner, ModuleParams<LocationCertaintyDivinerConfig>>>(
|
|
10
10
|
{ required: { [LocationCertaintySchema]: 1 }, schema: PayloadSetSchema },
|
|
11
11
|
{
|
|
12
12
|
diviner: async (params) => {
|