@xyo-network/react-sentinel 4.4.4 → 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.
- package/dist/browser/index.d.ts +6 -131
- package/package.json +25 -25
package/dist/browser/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { CardProps, CardContentProps, CardHeaderProps } from '@mui/material';
|
|
2
|
-
import * as _xyo_network_payload_model from '@xyo-network/payload-model';
|
|
3
2
|
import { Payload } from '@xyo-network/payload-model';
|
|
4
3
|
import { ModuleRenderProps } from '@xyo-network/react-module';
|
|
5
4
|
import * as _xyo_network_sentinel_model from '@xyo-network/sentinel-model';
|
|
@@ -16,7 +15,6 @@ import * as _xyo_network_account_model from '@xyo-network/account-model';
|
|
|
16
15
|
import { AccountInstance } from '@xyo-network/account-model';
|
|
17
16
|
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
18
17
|
import { ModuleIdentifier } from '@xyo-network/module-model';
|
|
19
|
-
import * as _xylabs_logger from '@xylabs/logger';
|
|
20
18
|
import * as _xylabs_object from '@xylabs/object';
|
|
21
19
|
import { ModuleFromNodeConfig, WeakModuleFromNodeConfig } from '@xyo-network/react-node';
|
|
22
20
|
|
|
@@ -82,144 +80,21 @@ declare const useSentinelContext: () => {
|
|
|
82
80
|
addToResolvers?: boolean;
|
|
83
81
|
additionalSigners?: _xyo_network_account_model.AccountInstance[];
|
|
84
82
|
allowNameResolution?: boolean;
|
|
85
|
-
config:
|
|
86
|
-
schema: _xyo_network_payload_model.Schema;
|
|
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 labels?: {
|
|
95
|
-
[x: string]: string | undefined;
|
|
96
|
-
} | undefined;
|
|
97
|
-
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
98
|
-
readonly paging?: {
|
|
99
|
-
[x: string]: {
|
|
100
|
-
size?: number | undefined;
|
|
101
|
-
};
|
|
102
|
-
} | undefined;
|
|
103
|
-
readonly retry?: {
|
|
104
|
-
backoff?: number | undefined;
|
|
105
|
-
interval?: number | undefined;
|
|
106
|
-
retries?: number | undefined;
|
|
107
|
-
} | undefined;
|
|
108
|
-
readonly security?: {
|
|
109
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
110
|
-
readonly allowed?: {
|
|
111
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
112
|
-
} | undefined;
|
|
113
|
-
readonly disallowed?: {
|
|
114
|
-
[x: string]: Lowercase<string>[];
|
|
115
|
-
} | undefined;
|
|
116
|
-
} | undefined;
|
|
117
|
-
readonly sign?: boolean | undefined;
|
|
118
|
-
readonly storeQueries?: boolean | undefined;
|
|
119
|
-
readonly timestamp?: boolean | undefined;
|
|
120
|
-
automations?: ({
|
|
121
|
-
schema: "network.xyo.automation.interval";
|
|
122
|
-
type: "interval";
|
|
123
|
-
end?: number | undefined;
|
|
124
|
-
frequency?: number | undefined;
|
|
125
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
126
|
-
remaining?: number | undefined;
|
|
127
|
-
start: number;
|
|
128
|
-
} | {
|
|
129
|
-
schema: "network.xyo.automation.event";
|
|
130
|
-
type: "interval";
|
|
131
|
-
end?: number | undefined;
|
|
132
|
-
frequency?: number | undefined;
|
|
133
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
134
|
-
remaining?: number | undefined;
|
|
135
|
-
start: number;
|
|
136
|
-
} | {
|
|
137
|
-
schema: "network.xyo.automation";
|
|
138
|
-
type: "interval";
|
|
139
|
-
end?: number | undefined;
|
|
140
|
-
frequency?: number | undefined;
|
|
141
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
142
|
-
remaining?: number | undefined;
|
|
143
|
-
start: number;
|
|
144
|
-
} | {
|
|
145
|
-
schema: "network.xyo.automation.interval";
|
|
146
|
-
type: "event";
|
|
147
|
-
} | {
|
|
148
|
-
schema: "network.xyo.automation.event";
|
|
149
|
-
type: "event";
|
|
150
|
-
} | {
|
|
151
|
-
schema: "network.xyo.automation";
|
|
152
|
-
type: "event";
|
|
153
|
-
})[] | undefined;
|
|
154
|
-
synchronous?: boolean | undefined;
|
|
155
|
-
tasks: ({
|
|
156
|
-
endPoint?: "observe" | undefined;
|
|
157
|
-
input?: string | boolean | string[] | undefined;
|
|
158
|
-
mod: _xyo_network_module_model.ModuleIdentifier;
|
|
159
|
-
required?: boolean | undefined;
|
|
160
|
-
} | {
|
|
161
|
-
endPoint?: "divine" | undefined;
|
|
162
|
-
input?: string | boolean | string[] | undefined;
|
|
163
|
-
mod: _xyo_network_module_model.ModuleIdentifier;
|
|
164
|
-
required?: boolean | undefined;
|
|
165
|
-
} | {
|
|
166
|
-
endPoint?: "clear" | "all" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
167
|
-
input?: string | boolean | string[] | undefined;
|
|
168
|
-
mod: _xyo_network_module_model.ModuleIdentifier;
|
|
169
|
-
required?: boolean | undefined;
|
|
170
|
-
} | {
|
|
171
|
-
endPoint?: string | undefined;
|
|
172
|
-
input?: string | boolean | string[] | undefined;
|
|
173
|
-
mod: _xyo_network_module_model.ModuleIdentifier;
|
|
174
|
-
required?: boolean | undefined;
|
|
175
|
-
})[];
|
|
176
|
-
throwErrors?: boolean | undefined;
|
|
177
|
-
}>;
|
|
83
|
+
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_sentinel_model.SentinelConfig<void, void>>;
|
|
178
84
|
ephemeralQueryAccountEnabled?: boolean;
|
|
179
85
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
86
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
87
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
180
88
|
}, _xyo_network_sentinel_model.SentinelModuleEventData<_xyo_network_module_model.Module<_xylabs_object.BaseParamsFields & {
|
|
181
89
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
182
90
|
addToResolvers?: boolean;
|
|
183
91
|
additionalSigners?: _xyo_network_account_model.AccountInstance[];
|
|
184
92
|
allowNameResolution?: boolean;
|
|
185
|
-
config:
|
|
186
|
-
schema: _xyo_network_payload_model.Schema;
|
|
187
|
-
readonly archiving?: {
|
|
188
|
-
readonly archivists?: string[] | undefined;
|
|
189
|
-
readonly queries?: string[] | undefined;
|
|
190
|
-
} | undefined;
|
|
191
|
-
readonly allowedQueries?: string[] | undefined;
|
|
192
|
-
readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
|
|
193
|
-
readonly consoleLogger?: _xylabs_logger.LogLevel | undefined;
|
|
194
|
-
readonly labels?: {
|
|
195
|
-
[x: string]: string | undefined;
|
|
196
|
-
} | undefined;
|
|
197
|
-
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
198
|
-
readonly paging?: {
|
|
199
|
-
[x: string]: {
|
|
200
|
-
size?: number | undefined;
|
|
201
|
-
};
|
|
202
|
-
} | undefined;
|
|
203
|
-
readonly retry?: {
|
|
204
|
-
backoff?: number | undefined;
|
|
205
|
-
interval?: number | undefined;
|
|
206
|
-
retries?: number | undefined;
|
|
207
|
-
} | undefined;
|
|
208
|
-
readonly security?: {
|
|
209
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
210
|
-
readonly allowed?: {
|
|
211
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
212
|
-
} | undefined;
|
|
213
|
-
readonly disallowed?: {
|
|
214
|
-
[x: string]: Lowercase<string>[];
|
|
215
|
-
} | undefined;
|
|
216
|
-
} | undefined;
|
|
217
|
-
readonly sign?: boolean | undefined;
|
|
218
|
-
readonly storeQueries?: boolean | undefined;
|
|
219
|
-
readonly timestamp?: boolean | undefined;
|
|
220
|
-
}>;
|
|
93
|
+
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
221
94
|
ephemeralQueryAccountEnabled?: boolean;
|
|
222
95
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
96
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
97
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
223
98
|
}, _xyo_network_module_model.ModuleEventData<object>>>> | undefined;
|
|
224
99
|
status: SentinelReportStatus | undefined;
|
|
225
100
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/react-sentinel",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.6",
|
|
4
4
|
"description": "Common React library for all XYO projects that use React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xyo",
|
|
@@ -49,37 +49,37 @@
|
|
|
49
49
|
"@xylabs/react-button": "^5.3.23",
|
|
50
50
|
"@xylabs/react-flexbox": "^5.3.23",
|
|
51
51
|
"@xylabs/react-promise": "^5.3.23",
|
|
52
|
-
"@xyo-network/account-model": "^3.9.
|
|
53
|
-
"@xyo-network/archivist-model": "^3.9.
|
|
54
|
-
"@xyo-network/boundwitness-model": "^3.9.
|
|
55
|
-
"@xyo-network/module-model": "^3.9.
|
|
56
|
-
"@xyo-network/payload-model": "^3.9.
|
|
57
|
-
"@xyo-network/react-module": "^4.4.
|
|
58
|
-
"@xyo-network/react-node": "^4.4.
|
|
59
|
-
"@xyo-network/react-payload-raw-info": "^4.4.
|
|
60
|
-
"@xyo-network/react-shared": "^4.4.
|
|
61
|
-
"@xyo-network/react-witness": "^4.4.
|
|
62
|
-
"@xyo-network/sentinel-memory": "^3.9.
|
|
63
|
-
"@xyo-network/sentinel-model": "^3.9.
|
|
64
|
-
"@xyo-network/witness-model": "^3.9.
|
|
52
|
+
"@xyo-network/account-model": "^3.9.17",
|
|
53
|
+
"@xyo-network/archivist-model": "^3.9.17",
|
|
54
|
+
"@xyo-network/boundwitness-model": "^3.9.17",
|
|
55
|
+
"@xyo-network/module-model": "^3.9.17",
|
|
56
|
+
"@xyo-network/payload-model": "^3.9.17",
|
|
57
|
+
"@xyo-network/react-module": "^4.4.6",
|
|
58
|
+
"@xyo-network/react-node": "^4.4.6",
|
|
59
|
+
"@xyo-network/react-payload-raw-info": "^4.4.6",
|
|
60
|
+
"@xyo-network/react-shared": "^4.4.6",
|
|
61
|
+
"@xyo-network/react-witness": "^4.4.6",
|
|
62
|
+
"@xyo-network/sentinel-memory": "^3.9.17",
|
|
63
|
+
"@xyo-network/sentinel-model": "^3.9.17",
|
|
64
|
+
"@xyo-network/witness-model": "^3.9.17"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@emotion/react": "^11.14.0",
|
|
68
68
|
"@emotion/styled": "^11.14.0",
|
|
69
|
-
"@mui/icons-material": "^6.4.
|
|
70
|
-
"@mui/material": "^6.4.
|
|
71
|
-
"@mui/styles": "^6.4.
|
|
72
|
-
"@storybook/react": "^8.
|
|
73
|
-
"@xylabs/ts-scripts-yarn3": "^5.0.
|
|
74
|
-
"@xylabs/tsconfig-react": "^5.0.
|
|
75
|
-
"@xyo-network/account": "^3.9.
|
|
76
|
-
"@xyo-network/evm-call-witness": "^3.4.
|
|
77
|
-
"@xyo-network/manifest": "^3.9.
|
|
78
|
-
"@xyo-network/module-factory-locator": "^3.9.
|
|
69
|
+
"@mui/icons-material": "^6.4.5",
|
|
70
|
+
"@mui/material": "^6.4.5",
|
|
71
|
+
"@mui/styles": "^6.4.5",
|
|
72
|
+
"@storybook/react": "^8.6.0",
|
|
73
|
+
"@xylabs/ts-scripts-yarn3": "^5.0.25",
|
|
74
|
+
"@xylabs/tsconfig-react": "^5.0.25",
|
|
75
|
+
"@xyo-network/account": "^3.9.17",
|
|
76
|
+
"@xyo-network/evm-call-witness": "^3.4.2",
|
|
77
|
+
"@xyo-network/manifest": "^3.9.17",
|
|
78
|
+
"@xyo-network/module-factory-locator": "^3.9.17",
|
|
79
79
|
"ethers": "^6.13.5",
|
|
80
80
|
"react": "^18.3.1",
|
|
81
81
|
"react-dom": "^18.3.1",
|
|
82
|
-
"storybook": "^8.
|
|
82
|
+
"storybook": "^8.6.0",
|
|
83
83
|
"typescript": "^5.7.3"
|
|
84
84
|
},
|
|
85
85
|
"peerDependencies": {
|