@xyo-network/diviner-stateful 2.90.23 → 2.91.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/browser/Config.d.cts +4 -3
- package/dist/browser/Config.d.cts.map +1 -1
- package/dist/browser/Config.d.mts +4 -3
- package/dist/browser/Config.d.mts.map +1 -1
- package/dist/browser/Config.d.ts +4 -3
- package/dist/browser/Config.d.ts.map +1 -1
- package/dist/browser/Diviner.d.cts +12 -12
- package/dist/browser/Diviner.d.cts.map +1 -1
- package/dist/browser/Diviner.d.mts +12 -12
- package/dist/browser/Diviner.d.mts.map +1 -1
- package/dist/browser/Diviner.d.ts +12 -12
- package/dist/browser/Diviner.d.ts.map +1 -1
- package/dist/browser/DivinerMixin.d.cts +147 -64
- package/dist/browser/DivinerMixin.d.cts.map +1 -1
- package/dist/browser/DivinerMixin.d.mts +147 -64
- package/dist/browser/DivinerMixin.d.mts.map +1 -1
- package/dist/browser/DivinerMixin.d.ts +147 -64
- package/dist/browser/DivinerMixin.d.ts.map +1 -1
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/Config.d.cts +4 -3
- package/dist/node/Config.d.cts.map +1 -1
- package/dist/node/Config.d.mts +4 -3
- package/dist/node/Config.d.mts.map +1 -1
- package/dist/node/Config.d.ts +4 -3
- package/dist/node/Config.d.ts.map +1 -1
- package/dist/node/Diviner.d.cts +12 -12
- package/dist/node/Diviner.d.cts.map +1 -1
- package/dist/node/Diviner.d.mts +12 -12
- package/dist/node/Diviner.d.mts.map +1 -1
- package/dist/node/Diviner.d.ts +12 -12
- package/dist/node/Diviner.d.ts.map +1 -1
- package/dist/node/DivinerMixin.d.cts +147 -64
- package/dist/node/DivinerMixin.d.cts.map +1 -1
- package/dist/node/DivinerMixin.d.mts +147 -64
- package/dist/node/DivinerMixin.d.mts.map +1 -1
- package/dist/node/DivinerMixin.d.ts +147 -64
- package/dist/node/DivinerMixin.d.ts.map +1 -1
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.js.map +1 -1
- package/package.json +22 -21
- package/src/Config.ts +4 -3
- package/src/Diviner.ts +3 -2
- package/src/DivinerMixin.ts +3 -2
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
|
+
import { ModuleIdentifier } from '@xyo-network/module-model';
|
|
2
3
|
/**
|
|
3
4
|
* The schema for a Stateful Diviner config
|
|
4
5
|
*/
|
|
@@ -13,9 +14,9 @@ export type StatefulDivinerConfigSchema = typeof StatefulDivinerConfigSchema;
|
|
|
13
14
|
export type StatefulDivinerConfig = DivinerConfig<{
|
|
14
15
|
schema: StatefulDivinerConfigSchema;
|
|
15
16
|
stateStore: {
|
|
16
|
-
archivist:
|
|
17
|
-
boundWitnessDiviner:
|
|
18
|
-
payloadDiviner:
|
|
17
|
+
archivist: ModuleIdentifier;
|
|
18
|
+
boundWitnessDiviner: ModuleIdentifier;
|
|
19
|
+
payloadDiviner: ModuleIdentifier;
|
|
19
20
|
};
|
|
20
21
|
}>;
|
|
21
22
|
//# sourceMappingURL=Config.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;
|
|
1
|
+
{"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AAI5D;;GAEG;AACH,eAAO,MAAM,2BAA2B,uCAA6C,CAAA;AACrF;;GAEG;AACH,MAAM,MAAM,2BAA2B,GAAG,OAAO,2BAA2B,CAAA;AAE5E;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,aAAa,CAAC;IAChD,MAAM,EAAE,2BAA2B,CAAA;IACnC,UAAU,EAAE;QACV,SAAS,EAAE,gBAAgB,CAAA;QAC3B,mBAAmB,EAAE,gBAAgB,CAAA;QACrC,cAAc,EAAE,gBAAgB,CAAA;KACjC,CAAA;CACF,CAAC,CAAA"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
|
+
import { ModuleIdentifier } from '@xyo-network/module-model';
|
|
2
3
|
/**
|
|
3
4
|
* The schema for a Stateful Diviner config
|
|
4
5
|
*/
|
|
@@ -13,9 +14,9 @@ export type StatefulDivinerConfigSchema = typeof StatefulDivinerConfigSchema;
|
|
|
13
14
|
export type StatefulDivinerConfig = DivinerConfig<{
|
|
14
15
|
schema: StatefulDivinerConfigSchema;
|
|
15
16
|
stateStore: {
|
|
16
|
-
archivist:
|
|
17
|
-
boundWitnessDiviner:
|
|
18
|
-
payloadDiviner:
|
|
17
|
+
archivist: ModuleIdentifier;
|
|
18
|
+
boundWitnessDiviner: ModuleIdentifier;
|
|
19
|
+
payloadDiviner: ModuleIdentifier;
|
|
19
20
|
};
|
|
20
21
|
}>;
|
|
21
22
|
//# sourceMappingURL=Config.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;
|
|
1
|
+
{"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AAI5D;;GAEG;AACH,eAAO,MAAM,2BAA2B,uCAA6C,CAAA;AACrF;;GAEG;AACH,MAAM,MAAM,2BAA2B,GAAG,OAAO,2BAA2B,CAAA;AAE5E;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,aAAa,CAAC;IAChD,MAAM,EAAE,2BAA2B,CAAA;IACnC,UAAU,EAAE;QACV,SAAS,EAAE,gBAAgB,CAAA;QAC3B,mBAAmB,EAAE,gBAAgB,CAAA;QACrC,cAAc,EAAE,gBAAgB,CAAA;KACjC,CAAA;CACF,CAAC,CAAA"}
|
package/dist/browser/Config.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
|
+
import { ModuleIdentifier } from '@xyo-network/module-model';
|
|
2
3
|
/**
|
|
3
4
|
* The schema for a Stateful Diviner config
|
|
4
5
|
*/
|
|
@@ -13,9 +14,9 @@ export type StatefulDivinerConfigSchema = typeof StatefulDivinerConfigSchema;
|
|
|
13
14
|
export type StatefulDivinerConfig = DivinerConfig<{
|
|
14
15
|
schema: StatefulDivinerConfigSchema;
|
|
15
16
|
stateStore: {
|
|
16
|
-
archivist:
|
|
17
|
-
boundWitnessDiviner:
|
|
18
|
-
payloadDiviner:
|
|
17
|
+
archivist: ModuleIdentifier;
|
|
18
|
+
boundWitnessDiviner: ModuleIdentifier;
|
|
19
|
+
payloadDiviner: ModuleIdentifier;
|
|
19
20
|
};
|
|
20
21
|
}>;
|
|
21
22
|
//# sourceMappingURL=Config.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;
|
|
1
|
+
{"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AAI5D;;GAEG;AACH,eAAO,MAAM,2BAA2B,uCAA6C,CAAA;AACrF;;GAEG;AACH,MAAM,MAAM,2BAA2B,GAAG,OAAO,2BAA2B,CAAA;AAE5E;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,aAAa,CAAC;IAChD,MAAM,EAAE,2BAA2B,CAAA;IACnC,UAAU,EAAE;QACV,SAAS,EAAE,gBAAgB,CAAA;QAC3B,mBAAmB,EAAE,gBAAgB,CAAA;QACrC,cAAc,EAAE,gBAAgB,CAAA;KACjC,CAAA;CACF,CAAC,CAAA"}
|
|
@@ -40,8 +40,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
40
40
|
schema: "network.xyo.archivist.config";
|
|
41
41
|
readonly security?: {
|
|
42
42
|
readonly allowAnonymous?: boolean | undefined;
|
|
43
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
43
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
45
45
|
} | undefined;
|
|
46
46
|
readonly sign?: boolean | undefined;
|
|
47
47
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -57,8 +57,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
57
57
|
schema: "network.xyo.archivist.config";
|
|
58
58
|
readonly security?: {
|
|
59
59
|
readonly allowAnonymous?: boolean | undefined;
|
|
60
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
61
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
60
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
61
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
62
62
|
} | undefined;
|
|
63
63
|
readonly sign?: boolean | undefined;
|
|
64
64
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -91,8 +91,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
91
91
|
schema: "network.xyo.diviner.config";
|
|
92
92
|
readonly security?: {
|
|
93
93
|
readonly allowAnonymous?: boolean | undefined;
|
|
94
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
95
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
94
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
95
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
96
96
|
} | undefined;
|
|
97
97
|
readonly sign?: boolean | undefined;
|
|
98
98
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -108,8 +108,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
108
108
|
schema: "network.xyo.diviner.config";
|
|
109
109
|
readonly security?: {
|
|
110
110
|
readonly allowAnonymous?: boolean | undefined;
|
|
111
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
112
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
111
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
112
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
113
113
|
} | undefined;
|
|
114
114
|
readonly sign?: boolean | undefined;
|
|
115
115
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -147,8 +147,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
147
147
|
schema: "network.xyo.diviner.config";
|
|
148
148
|
readonly security?: {
|
|
149
149
|
readonly allowAnonymous?: boolean | undefined;
|
|
150
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
151
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
150
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
151
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
152
152
|
} | undefined;
|
|
153
153
|
readonly sign?: boolean | undefined;
|
|
154
154
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -164,8 +164,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
164
164
|
schema: "network.xyo.diviner.config";
|
|
165
165
|
readonly security?: {
|
|
166
166
|
readonly allowAnonymous?: boolean | undefined;
|
|
167
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
168
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
167
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
168
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
169
169
|
} | undefined;
|
|
170
170
|
readonly sign?: boolean | undefined;
|
|
171
171
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAA;AAGjE,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D,OAAO,EAAuB,aAAa,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AACvG,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAA;AAC7D,OAAO,EAAiB,WAAW,EAAqB,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAE1G,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAA;AAG9D,OAAO,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAA;AAIhD;;GAEG;AACH,8BAAsB,eAAe,CACnC,OAAO,SAAS,qBAAqB,GAAG,qBAAqB,EAC7D,GAAG,SAAS,OAAO,GAAG,OAAO,EAC7B,IAAI,SAAS,OAAO,GAAG,OAAO,EAC9B,UAAU,SAAS,sBAAsB,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,IAAI,CAAC,GAAG,sBAAsB,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,IAAI,CAAC,EACxI,MAAM,SAAS,eAAe,GAAG,eAAe,CAChD,SAAQ,eAAe,CAAC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC;IACvD,gBAAyB,aAAa,EAAE,MAAM,EAAE,CAAqD;IAErG;;OAEG;IACH,SAAS,CAAC,UAAU,CAAC,EAAE,QAAQ,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAA;IAEpD;;;;;;OAMG;cACa,WAAW,CAAC,SAAS,EAAE,QAAQ,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;IASpE;;;;OAIG;cACa,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAMzC;;;;OAIG;cACa,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAMnD;;;;OAIG;cACa,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAM9C;;;OAGG;cACa,aAAa,IAAI,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,GAAG,SAAS,CAAC;CAwCpF"}
|
|
@@ -40,8 +40,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
40
40
|
schema: "network.xyo.archivist.config";
|
|
41
41
|
readonly security?: {
|
|
42
42
|
readonly allowAnonymous?: boolean | undefined;
|
|
43
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
43
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
45
45
|
} | undefined;
|
|
46
46
|
readonly sign?: boolean | undefined;
|
|
47
47
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -57,8 +57,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
57
57
|
schema: "network.xyo.archivist.config";
|
|
58
58
|
readonly security?: {
|
|
59
59
|
readonly allowAnonymous?: boolean | undefined;
|
|
60
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
61
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
60
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
61
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
62
62
|
} | undefined;
|
|
63
63
|
readonly sign?: boolean | undefined;
|
|
64
64
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -91,8 +91,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
91
91
|
schema: "network.xyo.diviner.config";
|
|
92
92
|
readonly security?: {
|
|
93
93
|
readonly allowAnonymous?: boolean | undefined;
|
|
94
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
95
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
94
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
95
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
96
96
|
} | undefined;
|
|
97
97
|
readonly sign?: boolean | undefined;
|
|
98
98
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -108,8 +108,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
108
108
|
schema: "network.xyo.diviner.config";
|
|
109
109
|
readonly security?: {
|
|
110
110
|
readonly allowAnonymous?: boolean | undefined;
|
|
111
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
112
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
111
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
112
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
113
113
|
} | undefined;
|
|
114
114
|
readonly sign?: boolean | undefined;
|
|
115
115
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -147,8 +147,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
147
147
|
schema: "network.xyo.diviner.config";
|
|
148
148
|
readonly security?: {
|
|
149
149
|
readonly allowAnonymous?: boolean | undefined;
|
|
150
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
151
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
150
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
151
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
152
152
|
} | undefined;
|
|
153
153
|
readonly sign?: boolean | undefined;
|
|
154
154
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -164,8 +164,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
164
164
|
schema: "network.xyo.diviner.config";
|
|
165
165
|
readonly security?: {
|
|
166
166
|
readonly allowAnonymous?: boolean | undefined;
|
|
167
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
168
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
167
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
168
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
169
169
|
} | undefined;
|
|
170
170
|
readonly sign?: boolean | undefined;
|
|
171
171
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAA;AAGjE,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D,OAAO,EAAuB,aAAa,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AACvG,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAA;AAC7D,OAAO,EAAiB,WAAW,EAAqB,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAE1G,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAA;AAG9D,OAAO,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAA;AAIhD;;GAEG;AACH,8BAAsB,eAAe,CACnC,OAAO,SAAS,qBAAqB,GAAG,qBAAqB,EAC7D,GAAG,SAAS,OAAO,GAAG,OAAO,EAC7B,IAAI,SAAS,OAAO,GAAG,OAAO,EAC9B,UAAU,SAAS,sBAAsB,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,IAAI,CAAC,GAAG,sBAAsB,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,IAAI,CAAC,EACxI,MAAM,SAAS,eAAe,GAAG,eAAe,CAChD,SAAQ,eAAe,CAAC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC;IACvD,gBAAyB,aAAa,EAAE,MAAM,EAAE,CAAqD;IAErG;;OAEG;IACH,SAAS,CAAC,UAAU,CAAC,EAAE,QAAQ,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAA;IAEpD;;;;;;OAMG;cACa,WAAW,CAAC,SAAS,EAAE,QAAQ,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;IASpE;;;;OAIG;cACa,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAMzC;;;;OAIG;cACa,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAMnD;;;;OAIG;cACa,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAM9C;;;OAGG;cACa,aAAa,IAAI,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,GAAG,SAAS,CAAC;CAwCpF"}
|
|
@@ -40,8 +40,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
40
40
|
schema: "network.xyo.archivist.config";
|
|
41
41
|
readonly security?: {
|
|
42
42
|
readonly allowAnonymous?: boolean | undefined;
|
|
43
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
43
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
45
45
|
} | undefined;
|
|
46
46
|
readonly sign?: boolean | undefined;
|
|
47
47
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -57,8 +57,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
57
57
|
schema: "network.xyo.archivist.config";
|
|
58
58
|
readonly security?: {
|
|
59
59
|
readonly allowAnonymous?: boolean | undefined;
|
|
60
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
61
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
60
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
61
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
62
62
|
} | undefined;
|
|
63
63
|
readonly sign?: boolean | undefined;
|
|
64
64
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -91,8 +91,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
91
91
|
schema: "network.xyo.diviner.config";
|
|
92
92
|
readonly security?: {
|
|
93
93
|
readonly allowAnonymous?: boolean | undefined;
|
|
94
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
95
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
94
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
95
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
96
96
|
} | undefined;
|
|
97
97
|
readonly sign?: boolean | undefined;
|
|
98
98
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -108,8 +108,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
108
108
|
schema: "network.xyo.diviner.config";
|
|
109
109
|
readonly security?: {
|
|
110
110
|
readonly allowAnonymous?: boolean | undefined;
|
|
111
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
112
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
111
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
112
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
113
113
|
} | undefined;
|
|
114
114
|
readonly sign?: boolean | undefined;
|
|
115
115
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -147,8 +147,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
147
147
|
schema: "network.xyo.diviner.config";
|
|
148
148
|
readonly security?: {
|
|
149
149
|
readonly allowAnonymous?: boolean | undefined;
|
|
150
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
151
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
150
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
151
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
152
152
|
} | undefined;
|
|
153
153
|
readonly sign?: boolean | undefined;
|
|
154
154
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -164,8 +164,8 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
164
164
|
schema: "network.xyo.diviner.config";
|
|
165
165
|
readonly security?: {
|
|
166
166
|
readonly allowAnonymous?: boolean | undefined;
|
|
167
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
168
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
167
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
168
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
169
169
|
} | undefined;
|
|
170
170
|
readonly sign?: boolean | undefined;
|
|
171
171
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAA;AAGjE,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D,OAAO,EAAuB,aAAa,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AACvG,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAA;AAC7D,OAAO,EAAiB,WAAW,EAAqB,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAE1G,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAA;AAG9D,OAAO,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAA;AAIhD;;GAEG;AACH,8BAAsB,eAAe,CACnC,OAAO,SAAS,qBAAqB,GAAG,qBAAqB,EAC7D,GAAG,SAAS,OAAO,GAAG,OAAO,EAC7B,IAAI,SAAS,OAAO,GAAG,OAAO,EAC9B,UAAU,SAAS,sBAAsB,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,IAAI,CAAC,GAAG,sBAAsB,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,IAAI,CAAC,EACxI,MAAM,SAAS,eAAe,GAAG,eAAe,CAChD,SAAQ,eAAe,CAAC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC;IACvD,gBAAyB,aAAa,EAAE,MAAM,EAAE,CAAqD;IAErG;;OAEG;IACH,SAAS,CAAC,UAAU,CAAC,EAAE,QAAQ,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAA;IAEpD;;;;;;OAMG;cACa,WAAW,CAAC,SAAS,EAAE,QAAQ,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;IASpE;;;;OAIG;cACa,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAMzC;;;;OAIG;cACa,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAMnD;;;;OAIG;cACa,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAM9C;;;OAGG;cACa,aAAa,IAAI,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,GAAG,SAAS,CAAC;CAwCpF"}
|