@xyo-network/bowser-system-info-plugin 3.4.1 → 3.4.2
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/index.d.ts +9 -41
- package/package.json +13 -13
package/dist/browser/index.d.ts
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { WitnessConfig, WitnessParams, WitnessModule } from '@xyo-network/witness-model';
|
|
2
2
|
import * as _xyo_network_payloadset_plugin from '@xyo-network/payloadset-plugin';
|
|
3
|
-
import * as _store__xylabs_logger_npm_4_5_1_a411051254_package from '.store/@xylabs-logger-npm-4.5.1-a411051254/package';
|
|
4
3
|
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
5
4
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
5
|
+
import * as _store__xyo_network_account_model_virtual_8ffda77307_package from '.store/@xyo-network-account-model-virtual-8ffda77307/package';
|
|
6
|
+
import * as _store__xylabs_object_npm_4_5_1_e31c389195_package from '.store/@xylabs-object-npm-4.5.1-e31c389195/package';
|
|
6
7
|
import * as _xyo_network_payload_model from '@xyo-network/payload-model';
|
|
7
8
|
import { Schema, Payload } from '@xyo-network/payload-model';
|
|
8
|
-
import * as _store__xyo_network_account_model_virtual_3a3814c98f_package from '.store/@xyo-network-account-model-virtual-3a3814c98f/package';
|
|
9
|
-
import * as _store__xylabs_object_npm_4_5_1_e31c389195_package from '.store/@xylabs-object-npm-4.5.1-e31c389195/package';
|
|
10
9
|
import { AbstractWitness } from '@xyo-network/abstract-witness';
|
|
11
10
|
import Bowser from 'bowser';
|
|
12
11
|
|
|
@@ -23,53 +22,22 @@ declare class BowserSystemInfoWitness<TParams extends BowserSystemInfoWitnessPar
|
|
|
23
22
|
protected get bowser(): Bowser.Parser.ParsedResult;
|
|
24
23
|
protected observeHandler(payloads?: Payload[]): {
|
|
25
24
|
schema: "network.xyo.system.info.bowser";
|
|
25
|
+
$sources?: Lowercase<string>[] | undefined;
|
|
26
|
+
$opCodes?: _xyo_network_payload_model.OpCode[];
|
|
26
27
|
bowser: Bowser.Parser.ParsedResult;
|
|
27
28
|
}[];
|
|
28
29
|
}
|
|
29
30
|
|
|
30
31
|
declare const BowserSystemInfoPlugin: () => _xyo_network_payloadset_plugin.PayloadSetWitnessPlugin<BowserSystemInfoWitness<_store__xylabs_object_npm_4_5_1_e31c389195_package.BaseParamsFields & {
|
|
31
|
-
account?:
|
|
32
|
+
account?: _store__xyo_network_account_model_virtual_8ffda77307_package.AccountInstance | "random";
|
|
32
33
|
addToResolvers?: boolean;
|
|
33
|
-
additionalSigners?:
|
|
34
|
+
additionalSigners?: _store__xyo_network_account_model_virtual_8ffda77307_package.AccountInstance[];
|
|
34
35
|
allowNameResolution?: boolean;
|
|
35
|
-
config:
|
|
36
|
-
schema: _xyo_network_payload_model.Schema;
|
|
37
|
-
readonly archiving?: {
|
|
38
|
-
readonly archivists?: string[] | undefined;
|
|
39
|
-
readonly queries?: string[] | undefined;
|
|
40
|
-
} | undefined;
|
|
41
|
-
readonly allowedQueries?: string[] | undefined;
|
|
42
|
-
readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
|
|
43
|
-
readonly consoleLogger?: _store__xylabs_logger_npm_4_5_1_a411051254_package.LogLevel | undefined;
|
|
44
|
-
readonly labels?: {
|
|
45
|
-
[x: string]: string | undefined;
|
|
46
|
-
} | undefined;
|
|
47
|
-
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
48
|
-
readonly paging?: {
|
|
49
|
-
[x: string]: {
|
|
50
|
-
size?: number | undefined;
|
|
51
|
-
};
|
|
52
|
-
} | undefined;
|
|
53
|
-
readonly retry?: {
|
|
54
|
-
backoff?: number | undefined;
|
|
55
|
-
interval?: number | undefined;
|
|
56
|
-
retries?: number | undefined;
|
|
57
|
-
} | undefined;
|
|
58
|
-
readonly security?: {
|
|
59
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
60
|
-
readonly allowed?: {
|
|
61
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
62
|
-
} | undefined;
|
|
63
|
-
readonly disallowed?: {
|
|
64
|
-
[x: string]: Lowercase<string>[];
|
|
65
|
-
} | undefined;
|
|
66
|
-
} | undefined;
|
|
67
|
-
readonly sign?: boolean | undefined;
|
|
68
|
-
readonly storeQueries?: boolean | undefined;
|
|
69
|
-
readonly timestamp?: boolean | undefined;
|
|
70
|
-
}>;
|
|
36
|
+
config: _xyo_network_module_model.AnyConfigSchema<BowserSystemInfoWitnessConfig>;
|
|
71
37
|
ephemeralQueryAccountEnabled?: boolean;
|
|
72
38
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
39
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
40
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
73
41
|
}>>;
|
|
74
42
|
|
|
75
43
|
export { BowserSystemInfoPlugin, BowserSystemInfoWitness, type BowserSystemInfoWitnessConfig, BowserSystemInfoWitnessConfigSchema, type BowserSystemInfoWitnessParams, BowserSystemInfoPlugin as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/bowser-system-info-plugin",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.2",
|
|
4
4
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,23 +29,23 @@
|
|
|
29
29
|
"module": "dist/browser/index.mjs",
|
|
30
30
|
"types": "dist/browser/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xyo-network/abstract-witness": "^3.
|
|
33
|
-
"@xyo-network/bowser-system-info-payload-plugin": "^3.4.
|
|
34
|
-
"@xyo-network/module-model": "^3.
|
|
35
|
-
"@xyo-network/payload-model": "^3.
|
|
36
|
-
"@xyo-network/payloadset-plugin": "^3.
|
|
37
|
-
"@xyo-network/witness-model": "^3.
|
|
32
|
+
"@xyo-network/abstract-witness": "^3.9.16",
|
|
33
|
+
"@xyo-network/bowser-system-info-payload-plugin": "^3.4.2",
|
|
34
|
+
"@xyo-network/module-model": "^3.9.16",
|
|
35
|
+
"@xyo-network/payload-model": "^3.9.16",
|
|
36
|
+
"@xyo-network/payloadset-plugin": "^3.9.16",
|
|
37
|
+
"@xyo-network/witness-model": "^3.9.16",
|
|
38
38
|
"bowser": "^2.11.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@xylabs/ts-scripts-yarn3": "^5.0.
|
|
42
|
-
"@xylabs/tsconfig-dom": "^5.0.
|
|
41
|
+
"@xylabs/ts-scripts-yarn3": "^5.0.24",
|
|
42
|
+
"@xylabs/tsconfig-dom": "^5.0.24",
|
|
43
43
|
"@xylabs/vitest-extended": "^4.5.1",
|
|
44
|
-
"@xyo-network/payload-validator": "^3.
|
|
45
|
-
"@xyo-network/payload-wrapper": "^3.
|
|
46
|
-
"@xyo-network/schema-name-validator": "^3.
|
|
44
|
+
"@xyo-network/payload-validator": "^3.9.16",
|
|
45
|
+
"@xyo-network/payload-wrapper": "^3.9.16",
|
|
46
|
+
"@xyo-network/schema-name-validator": "^3.9.16",
|
|
47
47
|
"typescript": "^5.7.3",
|
|
48
|
-
"vitest": "^3.0.
|
|
48
|
+
"vitest": "^3.0.6"
|
|
49
49
|
},
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|