@xyo-network/sentinel-model 3.9.18 → 3.9.20
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/neutral/Automation.d.ts +35 -0
- package/dist/neutral/Automation.d.ts.map +1 -0
- package/dist/neutral/Config.d.ts +15 -0
- package/dist/neutral/Config.d.ts.map +1 -0
- package/dist/neutral/EventData.d.ts +5 -0
- package/dist/neutral/EventData.d.ts.map +1 -0
- package/dist/neutral/EventsModels/JobEnd.d.ts +12 -0
- package/dist/neutral/EventsModels/JobEnd.d.ts.map +1 -0
- package/dist/neutral/EventsModels/JobStart.d.ts +10 -0
- package/dist/neutral/EventsModels/JobStart.d.ts.map +1 -0
- package/dist/neutral/EventsModels/ReportEnd.d.ts +13 -0
- package/dist/neutral/EventsModels/ReportEnd.d.ts.map +1 -0
- package/dist/neutral/EventsModels/ReportStart.d.ts +10 -0
- package/dist/neutral/EventsModels/ReportStart.d.ts.map +1 -0
- package/dist/neutral/EventsModels/TaskEnd.d.ts +14 -0
- package/dist/neutral/EventsModels/TaskEnd.d.ts.map +1 -0
- package/dist/neutral/EventsModels/TaskStart.d.ts +13 -0
- package/dist/neutral/EventsModels/TaskStart.d.ts.map +1 -0
- package/dist/neutral/EventsModels/index.d.ts +7 -0
- package/dist/neutral/EventsModels/index.d.ts.map +1 -0
- package/dist/neutral/Instance.d.ts +10 -0
- package/dist/neutral/Instance.d.ts.map +1 -0
- package/dist/neutral/Job.d.ts +5 -0
- package/dist/neutral/Job.d.ts.map +1 -0
- package/dist/neutral/Module.d.ts +8 -0
- package/dist/neutral/Module.d.ts.map +1 -0
- package/dist/neutral/Params.d.ts +5 -0
- package/dist/neutral/Params.d.ts.map +1 -0
- package/dist/neutral/Queries/Report.d.ts +7 -0
- package/dist/neutral/Queries/Report.d.ts.map +1 -0
- package/dist/neutral/Queries/index.d.ts +6 -0
- package/dist/neutral/Queries/index.d.ts.map +1 -0
- package/dist/neutral/ResolvedTask.d.ts +14 -0
- package/dist/neutral/ResolvedTask.d.ts.map +1 -0
- package/dist/neutral/Sentinel.d.ts +9 -0
- package/dist/neutral/Sentinel.d.ts.map +1 -0
- package/dist/neutral/Task.d.ts +15 -0
- package/dist/neutral/Task.d.ts.map +1 -0
- package/dist/neutral/attachable/AttachableInstance.d.ts +13 -0
- package/dist/neutral/attachable/AttachableInstance.d.ts.map +1 -0
- package/dist/neutral/attachable/asAttachableInstance.d.ts +65 -0
- package/dist/neutral/attachable/asAttachableInstance.d.ts.map +1 -0
- package/dist/neutral/attachable/index.d.ts +4 -0
- package/dist/neutral/attachable/index.d.ts.map +1 -0
- package/dist/neutral/attachable/isAttachableInstance.d.ts +6 -0
- package/dist/neutral/attachable/isAttachableInstance.d.ts.map +1 -0
- package/dist/neutral/index.d.ts +15 -442
- package/dist/neutral/index.d.ts.map +1 -0
- package/dist/neutral/typeChecks.d.ts +215 -0
- package/dist/neutral/typeChecks.d.ts.map +1 -0
- package/package.json +12 -12
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
import type { SentinelInstance } from './Instance.ts';
|
|
2
|
+
import type { SentinelModule } from './Module.ts';
|
|
3
|
+
export declare const isSentinelInstance: import("@xylabs/object").TypeCheck<SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
4
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
5
|
+
addToResolvers?: boolean;
|
|
6
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
7
|
+
allowNameResolution?: boolean;
|
|
8
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("./Config.ts").SentinelConfig>;
|
|
9
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
10
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
11
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
12
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
13
|
+
}, import("./EventData.ts").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
14
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
15
|
+
addToResolvers?: boolean;
|
|
16
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
17
|
+
allowNameResolution?: boolean;
|
|
18
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("@xyo-network/module-model").ModuleConfig>;
|
|
19
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
20
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
21
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
22
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
23
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>;
|
|
24
|
+
export declare const isSentinelModule: import("@xyo-network/module-model").ModuleTypeCheck<SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
25
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
26
|
+
addToResolvers?: boolean;
|
|
27
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
28
|
+
allowNameResolution?: boolean;
|
|
29
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("./Config.ts").SentinelConfig>;
|
|
30
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
31
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
32
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
33
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
34
|
+
}, import("./EventData.ts").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
35
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
36
|
+
addToResolvers?: boolean;
|
|
37
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
38
|
+
allowNameResolution?: boolean;
|
|
39
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("@xyo-network/module-model").ModuleConfig>;
|
|
40
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
41
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
42
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
43
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
44
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>;
|
|
45
|
+
export declare const asSentinelModule: {
|
|
46
|
+
<TType extends SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
47
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
48
|
+
addToResolvers?: boolean;
|
|
49
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
50
|
+
allowNameResolution?: boolean;
|
|
51
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("./Config.ts").SentinelConfig>;
|
|
52
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
53
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
54
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
55
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
56
|
+
}, import("./EventData.ts").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
57
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
58
|
+
addToResolvers?: boolean;
|
|
59
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
60
|
+
allowNameResolution?: boolean;
|
|
61
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("@xyo-network/module-model").ModuleConfig>;
|
|
62
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
63
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
64
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
65
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
66
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: import("@xylabs/promise").AnyNonPromise, config?: import("@xylabs/object").TypeCheckConfig): TType | undefined;
|
|
67
|
+
<TType extends SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
68
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
69
|
+
addToResolvers?: boolean;
|
|
70
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
71
|
+
allowNameResolution?: boolean;
|
|
72
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("./Config.ts").SentinelConfig>;
|
|
73
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
74
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
75
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
76
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
77
|
+
}, import("./EventData.ts").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
78
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
79
|
+
addToResolvers?: boolean;
|
|
80
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
81
|
+
allowNameResolution?: boolean;
|
|
82
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("@xyo-network/module-model").ModuleConfig>;
|
|
83
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
84
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
85
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
86
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
87
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: import("@xylabs/promise").AnyNonPromise, assert: import("@xylabs/object").StringOrAlertFunction<SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
88
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
89
|
+
addToResolvers?: boolean;
|
|
90
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
91
|
+
allowNameResolution?: boolean;
|
|
92
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("./Config.ts").SentinelConfig>;
|
|
93
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
94
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
95
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
96
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
97
|
+
}, import("./EventData.ts").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
98
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
99
|
+
addToResolvers?: boolean;
|
|
100
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
101
|
+
allowNameResolution?: boolean;
|
|
102
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("@xyo-network/module-model").ModuleConfig>;
|
|
103
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
104
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
105
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
106
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
107
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>, config?: import("@xylabs/object").TypeCheckConfig): TType;
|
|
108
|
+
};
|
|
109
|
+
export declare const asSentinelInstance: {
|
|
110
|
+
<TType extends SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
111
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
112
|
+
addToResolvers?: boolean;
|
|
113
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
114
|
+
allowNameResolution?: boolean;
|
|
115
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("./Config.ts").SentinelConfig>;
|
|
116
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
117
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
118
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
119
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
120
|
+
}, import("./EventData.ts").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
121
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
122
|
+
addToResolvers?: boolean;
|
|
123
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
124
|
+
allowNameResolution?: boolean;
|
|
125
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("@xyo-network/module-model").ModuleConfig>;
|
|
126
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
127
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
128
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
129
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
130
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: import("@xylabs/promise").AnyNonPromise, config?: import("@xylabs/object").TypeCheckConfig): TType | undefined;
|
|
131
|
+
<TType extends SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
132
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
133
|
+
addToResolvers?: boolean;
|
|
134
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
135
|
+
allowNameResolution?: boolean;
|
|
136
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("./Config.ts").SentinelConfig>;
|
|
137
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
138
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
139
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
140
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
141
|
+
}, import("./EventData.ts").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
142
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
143
|
+
addToResolvers?: boolean;
|
|
144
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
145
|
+
allowNameResolution?: boolean;
|
|
146
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("@xyo-network/module-model").ModuleConfig>;
|
|
147
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
148
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
149
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
150
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
151
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: import("@xylabs/promise").AnyNonPromise, assert: import("@xylabs/object").StringOrAlertFunction<SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
152
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
153
|
+
addToResolvers?: boolean;
|
|
154
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
155
|
+
allowNameResolution?: boolean;
|
|
156
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("./Config.ts").SentinelConfig>;
|
|
157
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
158
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
159
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
160
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
161
|
+
}, import("./EventData.ts").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
162
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
163
|
+
addToResolvers?: boolean;
|
|
164
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
165
|
+
allowNameResolution?: boolean;
|
|
166
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("@xyo-network/module-model").ModuleConfig>;
|
|
167
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
168
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
169
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
170
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
171
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>, config?: import("@xylabs/object").TypeCheckConfig): TType;
|
|
172
|
+
};
|
|
173
|
+
export declare const withSentinelModule: <R>(mod: any, closure: (mod: SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
174
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
175
|
+
addToResolvers?: boolean;
|
|
176
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
177
|
+
allowNameResolution?: boolean;
|
|
178
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("./Config.ts").SentinelConfig>;
|
|
179
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
180
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
181
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
182
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
183
|
+
}, import("./EventData.ts").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
184
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
185
|
+
addToResolvers?: boolean;
|
|
186
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
187
|
+
allowNameResolution?: boolean;
|
|
188
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("@xyo-network/module-model").ModuleConfig>;
|
|
189
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
190
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
191
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
192
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
193
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>) => R) => R | undefined;
|
|
194
|
+
export declare const withSentinelInstance: <R>(mod: any, closure: (mod: SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
195
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
196
|
+
addToResolvers?: boolean;
|
|
197
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
198
|
+
allowNameResolution?: boolean;
|
|
199
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("./Config.ts").SentinelConfig>;
|
|
200
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
201
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
202
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
203
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
204
|
+
}, import("./EventData.ts").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
205
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
206
|
+
addToResolvers?: boolean;
|
|
207
|
+
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
208
|
+
allowNameResolution?: boolean;
|
|
209
|
+
config: import("@xyo-network/module-model").AnyConfigSchema<import("@xyo-network/module-model").ModuleConfig>;
|
|
210
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
211
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
212
|
+
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
213
|
+
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
214
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>) => R) => R | undefined;
|
|
215
|
+
//# sourceMappingURL=typeChecks.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAA;AACrD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAGjD,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;kEAA+F,CAAA;AAC9H,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;kEAA4E,CAAA;AAEzG,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;qFANI,iBACjC,iCAAiC,gBAAoB;;;;;;;;;;;;;;;;;;;;;qFAEe,iBAAiB;;;;;;;;;;;;;;;;;;;;wFAC/B,gBAAoB;CAEF,CAAA;AACxE,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;qFAPE,iBACjC,iCAAiC,gBAAoB;;;;;;;;;;;;;;;;;;;;;qFAEe,iBAAiB;;;;;;;;;;;;;;;;;;;;wFAC/B,gBAAoB;CAGE,CAAA;AAC5E,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;yFAAuC,CAAA;AACtE,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;yFAAyC,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/sentinel-model",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.20",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -33,19 +33,19 @@
|
|
|
33
33
|
"@xylabs/object": "^4.5.1",
|
|
34
34
|
"@xylabs/promise": "^4.5.1",
|
|
35
35
|
"@xylabs/typeof": "^4.5.1",
|
|
36
|
-
"@xyo-network/account-model": "^3.9.
|
|
37
|
-
"@xyo-network/archivist-model": "^3.9.
|
|
38
|
-
"@xyo-network/boundwitness-model": "^3.9.
|
|
39
|
-
"@xyo-network/diviner-model": "^3.9.
|
|
40
|
-
"@xyo-network/module-events": "^3.9.
|
|
41
|
-
"@xyo-network/module-model": "^3.9.
|
|
42
|
-
"@xyo-network/payload-model": "^3.9.
|
|
43
|
-
"@xyo-network/witness-model": "^3.9.
|
|
36
|
+
"@xyo-network/account-model": "^3.9.20",
|
|
37
|
+
"@xyo-network/archivist-model": "^3.9.20",
|
|
38
|
+
"@xyo-network/boundwitness-model": "^3.9.20",
|
|
39
|
+
"@xyo-network/diviner-model": "^3.9.20",
|
|
40
|
+
"@xyo-network/module-events": "^3.9.20",
|
|
41
|
+
"@xyo-network/module-model": "^3.9.20",
|
|
42
|
+
"@xyo-network/payload-model": "^3.9.20",
|
|
43
|
+
"@xyo-network/witness-model": "^3.9.20"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@xylabs/ts-scripts-yarn3": "^5.0.
|
|
47
|
-
"@xylabs/tsconfig": "^5.0.
|
|
48
|
-
"typescript": "^5.
|
|
46
|
+
"@xylabs/ts-scripts-yarn3": "^5.0.39",
|
|
47
|
+
"@xylabs/tsconfig": "^5.0.39",
|
|
48
|
+
"typescript": "^5.8.2"
|
|
49
49
|
},
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|