@xyo-network/react-manifest 4.4.5 → 4.4.6

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.
@@ -1,8 +1,6 @@
1
1
  import * as _xyo_network_node_memory from '@xyo-network/node-memory';
2
- import * as _xyo_network_node_model from '@xyo-network/node-model';
3
- import * as _xylabs_logger from '@xylabs/logger';
4
2
  import * as _xyo_network_module_model from '@xyo-network/module-model';
5
- import * as _xyo_network_payload_model from '@xyo-network/payload-model';
3
+ import * as _xyo_network_node_model from '@xyo-network/node-model';
6
4
  import * as _xyo_network_account_model from '@xyo-network/account-model';
7
5
  import * as _xylabs_object from '@xylabs/object';
8
6
  import { PackageManifestPayload, Manifest, ManifestWrapper } from '@xyo-network/manifest';
@@ -26,44 +24,11 @@ declare class ManifestNodeBuilder {
26
24
  addToResolvers?: boolean;
27
25
  additionalSigners?: _xyo_network_account_model.AccountInstance[];
28
26
  allowNameResolution?: boolean;
29
- config: _xylabs_object.DeepRestrictToStringKeys<{
30
- schema: _xyo_network_payload_model.Schema;
31
- readonly labels?: {
32
- [x: string]: string | undefined;
33
- } | undefined;
34
- readonly name?: _xyo_network_module_model.ModuleName | undefined;
35
- readonly archiving?: {
36
- readonly archivists?: string[] | undefined;
37
- readonly queries?: string[] | undefined;
38
- } | undefined;
39
- readonly allowedQueries?: string[] | undefined;
40
- readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
41
- readonly consoleLogger?: _xylabs_logger.LogLevel | undefined;
42
- readonly paging?: {
43
- [x: string]: {
44
- size?: number | undefined;
45
- };
46
- } | undefined;
47
- readonly retry?: {
48
- backoff?: number | undefined;
49
- interval?: number | undefined;
50
- retries?: number | undefined;
51
- } | undefined;
52
- readonly security?: {
53
- readonly allowAnonymous?: boolean | undefined;
54
- readonly allowed?: {
55
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
56
- } | undefined;
57
- readonly disallowed?: {
58
- [x: string]: Lowercase<string>[];
59
- } | undefined;
60
- } | undefined;
61
- readonly sign?: boolean | undefined;
62
- readonly storeQueries?: boolean | undefined;
63
- readonly timestamp?: boolean | undefined;
64
- }>;
27
+ config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_node_model.NodeConfig>;
65
28
  ephemeralQueryAccountEnabled?: boolean;
66
29
  moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
30
+ privateChildren?: _xyo_network_module_model.ModuleInstance[];
31
+ publicChildren?: _xyo_network_module_model.ModuleInstance[];
67
32
  }, _xyo_network_node_model.NodeModuleEventData>>;
68
33
  randomWallet(): Promise<WalletInstance>;
69
34
  }
@@ -78,44 +43,11 @@ declare const buildManifestNodes: (manifestNodes?: CreatablePackageManifest[]) =
78
43
  addToResolvers?: boolean;
79
44
  additionalSigners?: _xyo_network_account_model.AccountInstance[];
80
45
  allowNameResolution?: boolean;
81
- config: _xylabs_object.DeepRestrictToStringKeys<{
82
- schema: _xyo_network_payload_model.Schema;
83
- readonly labels?: {
84
- [x: string]: string | undefined;
85
- } | undefined;
86
- readonly name?: _xyo_network_module_model.ModuleName | undefined;
87
- readonly archiving?: {
88
- readonly archivists?: string[] | undefined;
89
- readonly queries?: string[] | undefined;
90
- } | undefined;
91
- readonly allowedQueries?: string[] | undefined;
92
- readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
93
- readonly consoleLogger?: _xylabs_logger.LogLevel | undefined;
94
- readonly paging?: {
95
- [x: string]: {
96
- size?: number | undefined;
97
- };
98
- } | undefined;
99
- readonly retry?: {
100
- backoff?: number | undefined;
101
- interval?: number | undefined;
102
- retries?: number | undefined;
103
- } | undefined;
104
- readonly security?: {
105
- readonly allowAnonymous?: boolean | undefined;
106
- readonly allowed?: {
107
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
108
- } | undefined;
109
- readonly disallowed?: {
110
- [x: string]: Lowercase<string>[];
111
- } | undefined;
112
- } | undefined;
113
- readonly sign?: boolean | undefined;
114
- readonly storeQueries?: boolean | undefined;
115
- readonly timestamp?: boolean | undefined;
116
- }>;
46
+ config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_node_model.NodeConfig>;
117
47
  ephemeralQueryAccountEnabled?: boolean;
118
48
  moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
49
+ privateChildren?: _xyo_network_module_model.ModuleInstance[];
50
+ publicChildren?: _xyo_network_module_model.ModuleInstance[];
119
51
  }, _xyo_network_node_model.NodeModuleEventData> | undefined>;
120
52
 
121
53
  export { type CreatablePackageManifest, ManifestNodeBuilder, ManifestNodeProvider, type ManifestNodeProviderProps, buildManifestNodes };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/react-manifest",
3
- "version": "4.4.5",
3
+ "version": "4.4.6",
4
4
  "description": "Common React library for all XYO projects that use React",
5
5
  "keywords": [
6
6
  "xyo",
@@ -45,27 +45,27 @@
45
45
  "dependencies": {
46
46
  "@scure/bip39": "^1.5.4",
47
47
  "@xylabs/react-promise": "^5.3.23",
48
- "@xyo-network/account": "^3.9.2",
49
- "@xyo-network/manifest": "^3.9.2",
50
- "@xyo-network/module-factory-locator": "^3.9.2",
51
- "@xyo-network/react-node-provider": "^4.4.5",
52
- "@xyo-network/wallet-model": "^3.9.2"
48
+ "@xyo-network/account": "^3.9.17",
49
+ "@xyo-network/manifest": "^3.9.17",
50
+ "@xyo-network/module-factory-locator": "^3.9.17",
51
+ "@xyo-network/react-node-provider": "^4.4.6",
52
+ "@xyo-network/wallet-model": "^3.9.17"
53
53
  },
54
54
  "devDependencies": {
55
- "@mui/icons-material": "^6.4.4",
56
- "@mui/material": "^6.4.4",
57
- "@mui/styles": "^6.4.4",
58
- "@storybook/react": "^8.5.5",
59
- "@xylabs/ts-scripts-yarn3": "^5.0.24",
60
- "@xylabs/tsconfig-react": "^5.0.24",
61
- "@xyo-network/diviner-abstract": "^3.9.2",
62
- "@xyo-network/diviner-model": "^3.9.2",
63
- "@xyo-network/diviner-payload-memory": "^3.9.2",
64
- "@xyo-network/payload-model": "^3.9.2",
65
- "@xyo-network/witness-timestamp": "^3.9.2",
55
+ "@mui/icons-material": "^6.4.5",
56
+ "@mui/material": "^6.4.5",
57
+ "@mui/styles": "^6.4.5",
58
+ "@storybook/react": "^8.6.0",
59
+ "@xylabs/ts-scripts-yarn3": "^5.0.25",
60
+ "@xylabs/tsconfig-react": "^5.0.25",
61
+ "@xyo-network/diviner-abstract": "^3.9.17",
62
+ "@xyo-network/diviner-model": "^3.9.17",
63
+ "@xyo-network/diviner-payload-memory": "^3.9.17",
64
+ "@xyo-network/payload-model": "^3.9.17",
65
+ "@xyo-network/witness-timestamp": "^3.9.17",
66
66
  "react": "^18.3.1",
67
67
  "react-dom": "^18.3.1",
68
- "storybook": "^8.5.5",
68
+ "storybook": "^8.6.0",
69
69
  "typescript": "^5.7.3"
70
70
  },
71
71
  "peerDependencies": {