@xyo-network/sentinel-wrapper 3.8.0 → 3.8.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/neutral/index.d.ts +309 -2
- package/dist/neutral/index.mjs.map +1 -1
- package/package.json +20 -20
- package/src/Wrapper.ts +3 -3
- package/dist/neutral/Wrapper.d.ts +0 -303
- package/dist/neutral/Wrapper.d.ts.map +0 -1
- package/dist/neutral/index.d.ts.map +0 -1
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,2 +1,309 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as _xyo_network_sentinel_model from '@xyo-network/sentinel-model';
|
|
2
|
+
import { SentinelModule, SentinelInstance } from '@xyo-network/sentinel-model';
|
|
3
|
+
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
4
|
+
import { ModuleQueryResult } from '@xyo-network/module-model';
|
|
5
|
+
import * as _xyo_network_payload_model from '@xyo-network/payload-model';
|
|
6
|
+
import { Payload } from '@xyo-network/payload-model';
|
|
7
|
+
import * as _xylabs_object from '@xylabs/object';
|
|
8
|
+
import { AccountInstance } from '@xyo-network/account-model';
|
|
9
|
+
import { ArchivistInstance } from '@xyo-network/archivist-model';
|
|
10
|
+
import { ModuleWrapper } from '@xyo-network/module-wrapper';
|
|
11
|
+
import { WitnessInstance } from '@xyo-network/witness-model';
|
|
12
|
+
|
|
13
|
+
declare class SentinelWrapper<TModule extends SentinelModule = SentinelModule> extends ModuleWrapper<TModule> implements SentinelInstance<TModule['params']> {
|
|
14
|
+
static readonly instanceIdentityCheck: _xylabs_object.TypeCheck<SentinelInstance<_xylabs_object.BaseParamsFields & {
|
|
15
|
+
account?: AccountInstance | "random";
|
|
16
|
+
addToResolvers?: boolean;
|
|
17
|
+
additionalSigners?: AccountInstance[];
|
|
18
|
+
allowNameResolution?: boolean;
|
|
19
|
+
config: _xylabs_object.DeepRestrictToStringKeys<{
|
|
20
|
+
schema: _xyo_network_payload_model.Schema;
|
|
21
|
+
readonly archiving?: {
|
|
22
|
+
readonly archivists?: string[] | undefined;
|
|
23
|
+
readonly queries?: string[] | undefined;
|
|
24
|
+
} | undefined;
|
|
25
|
+
readonly allowedQueries?: string[] | undefined;
|
|
26
|
+
readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
|
|
27
|
+
readonly consoleLogger?: _xylabs_logger.LogLevel | undefined;
|
|
28
|
+
readonly labels?: {
|
|
29
|
+
[x: string]: string | undefined;
|
|
30
|
+
} | undefined;
|
|
31
|
+
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
32
|
+
readonly paging?: {
|
|
33
|
+
[x: string]: {
|
|
34
|
+
size?: number | undefined;
|
|
35
|
+
};
|
|
36
|
+
} | undefined;
|
|
37
|
+
readonly retry?: {
|
|
38
|
+
backoff?: number | undefined;
|
|
39
|
+
interval?: number | undefined;
|
|
40
|
+
retries?: number | undefined;
|
|
41
|
+
} | undefined;
|
|
42
|
+
readonly security?: {
|
|
43
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
44
|
+
readonly allowed?: {
|
|
45
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
46
|
+
} | undefined;
|
|
47
|
+
readonly disallowed?: {
|
|
48
|
+
[x: string]: Lowercase<string>[];
|
|
49
|
+
} | undefined;
|
|
50
|
+
} | undefined;
|
|
51
|
+
readonly sign?: boolean | undefined;
|
|
52
|
+
readonly storeQueries?: boolean | undefined;
|
|
53
|
+
readonly timestamp?: boolean | undefined;
|
|
54
|
+
automations?: ({
|
|
55
|
+
schema: "network.xyo.automation";
|
|
56
|
+
type: "interval";
|
|
57
|
+
end?: number | undefined;
|
|
58
|
+
frequency?: number | undefined;
|
|
59
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
60
|
+
remaining?: number | undefined;
|
|
61
|
+
start: number;
|
|
62
|
+
} | {
|
|
63
|
+
schema: "network.xyo.automation.interval";
|
|
64
|
+
type: "interval";
|
|
65
|
+
end?: number | undefined;
|
|
66
|
+
frequency?: number | undefined;
|
|
67
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
68
|
+
remaining?: number | undefined;
|
|
69
|
+
start: number;
|
|
70
|
+
} | {
|
|
71
|
+
schema: "network.xyo.automation.event";
|
|
72
|
+
type: "interval";
|
|
73
|
+
end?: number | undefined;
|
|
74
|
+
frequency?: number | undefined;
|
|
75
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
76
|
+
remaining?: number | undefined;
|
|
77
|
+
start: number;
|
|
78
|
+
} | {
|
|
79
|
+
schema: "network.xyo.automation";
|
|
80
|
+
type: "event";
|
|
81
|
+
} | {
|
|
82
|
+
schema: "network.xyo.automation.interval";
|
|
83
|
+
type: "event";
|
|
84
|
+
} | {
|
|
85
|
+
schema: "network.xyo.automation.event";
|
|
86
|
+
type: "event";
|
|
87
|
+
})[] | undefined;
|
|
88
|
+
synchronous?: boolean | undefined;
|
|
89
|
+
tasks: ({
|
|
90
|
+
endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
91
|
+
input?: string | boolean | string[] | undefined;
|
|
92
|
+
mod: _xyo_network_module_model.ModuleIdentifier;
|
|
93
|
+
required?: boolean | undefined;
|
|
94
|
+
} | {
|
|
95
|
+
endPoint?: "divine" | undefined;
|
|
96
|
+
input?: string | boolean | string[] | undefined;
|
|
97
|
+
mod: _xyo_network_module_model.ModuleIdentifier;
|
|
98
|
+
required?: boolean | undefined;
|
|
99
|
+
} | {
|
|
100
|
+
endPoint?: "observe" | undefined;
|
|
101
|
+
input?: string | boolean | string[] | undefined;
|
|
102
|
+
mod: _xyo_network_module_model.ModuleIdentifier;
|
|
103
|
+
required?: boolean | undefined;
|
|
104
|
+
} | {
|
|
105
|
+
endPoint?: string | undefined;
|
|
106
|
+
input?: string | boolean | string[] | undefined;
|
|
107
|
+
mod: _xyo_network_module_model.ModuleIdentifier;
|
|
108
|
+
required?: boolean | undefined;
|
|
109
|
+
})[];
|
|
110
|
+
throwErrors?: boolean | undefined;
|
|
111
|
+
}>;
|
|
112
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
113
|
+
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
114
|
+
}, _xyo_network_sentinel_model.SentinelModuleEventData<_xyo_network_module_model.Module<_xylabs_object.BaseParamsFields & {
|
|
115
|
+
account?: AccountInstance | "random";
|
|
116
|
+
addToResolvers?: boolean;
|
|
117
|
+
additionalSigners?: AccountInstance[];
|
|
118
|
+
allowNameResolution?: boolean;
|
|
119
|
+
config: _xylabs_object.DeepRestrictToStringKeys<{
|
|
120
|
+
schema: _xyo_network_payload_model.Schema;
|
|
121
|
+
readonly archiving?: {
|
|
122
|
+
readonly archivists?: string[] | undefined;
|
|
123
|
+
readonly queries?: string[] | undefined;
|
|
124
|
+
} | undefined;
|
|
125
|
+
readonly allowedQueries?: string[] | undefined;
|
|
126
|
+
readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
|
|
127
|
+
readonly consoleLogger?: _xylabs_logger.LogLevel | undefined;
|
|
128
|
+
readonly labels?: {
|
|
129
|
+
[x: string]: string | undefined;
|
|
130
|
+
} | undefined;
|
|
131
|
+
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
132
|
+
readonly paging?: {
|
|
133
|
+
[x: string]: {
|
|
134
|
+
size?: number | undefined;
|
|
135
|
+
};
|
|
136
|
+
} | undefined;
|
|
137
|
+
readonly retry?: {
|
|
138
|
+
backoff?: number | undefined;
|
|
139
|
+
interval?: number | undefined;
|
|
140
|
+
retries?: number | undefined;
|
|
141
|
+
} | undefined;
|
|
142
|
+
readonly security?: {
|
|
143
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
144
|
+
readonly allowed?: {
|
|
145
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
146
|
+
} | undefined;
|
|
147
|
+
readonly disallowed?: {
|
|
148
|
+
[x: string]: Lowercase<string>[];
|
|
149
|
+
} | undefined;
|
|
150
|
+
} | undefined;
|
|
151
|
+
readonly sign?: boolean | undefined;
|
|
152
|
+
readonly storeQueries?: boolean | undefined;
|
|
153
|
+
readonly timestamp?: boolean | undefined;
|
|
154
|
+
}>;
|
|
155
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
156
|
+
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
157
|
+
}, _xyo_network_module_model.ModuleEventData<object>>>>>;
|
|
158
|
+
static readonly moduleIdentityCheck: _xyo_network_module_model.ModuleTypeCheck<SentinelModule<_xylabs_object.BaseParamsFields & {
|
|
159
|
+
account?: AccountInstance | "random";
|
|
160
|
+
addToResolvers?: boolean;
|
|
161
|
+
additionalSigners?: AccountInstance[];
|
|
162
|
+
allowNameResolution?: boolean;
|
|
163
|
+
config: _xylabs_object.DeepRestrictToStringKeys<{
|
|
164
|
+
schema: _xyo_network_payload_model.Schema;
|
|
165
|
+
readonly archiving?: {
|
|
166
|
+
readonly archivists?: string[] | undefined;
|
|
167
|
+
readonly queries?: string[] | undefined;
|
|
168
|
+
} | undefined;
|
|
169
|
+
readonly allowedQueries?: string[] | undefined;
|
|
170
|
+
readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
|
|
171
|
+
readonly consoleLogger?: _xylabs_logger.LogLevel | undefined;
|
|
172
|
+
readonly labels?: {
|
|
173
|
+
[x: string]: string | undefined;
|
|
174
|
+
} | undefined;
|
|
175
|
+
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
176
|
+
readonly paging?: {
|
|
177
|
+
[x: string]: {
|
|
178
|
+
size?: number | undefined;
|
|
179
|
+
};
|
|
180
|
+
} | undefined;
|
|
181
|
+
readonly retry?: {
|
|
182
|
+
backoff?: number | undefined;
|
|
183
|
+
interval?: number | undefined;
|
|
184
|
+
retries?: number | undefined;
|
|
185
|
+
} | undefined;
|
|
186
|
+
readonly security?: {
|
|
187
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
188
|
+
readonly allowed?: {
|
|
189
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
190
|
+
} | undefined;
|
|
191
|
+
readonly disallowed?: {
|
|
192
|
+
[x: string]: Lowercase<string>[];
|
|
193
|
+
} | undefined;
|
|
194
|
+
} | undefined;
|
|
195
|
+
readonly sign?: boolean | undefined;
|
|
196
|
+
readonly storeQueries?: boolean | undefined;
|
|
197
|
+
readonly timestamp?: boolean | undefined;
|
|
198
|
+
automations?: ({
|
|
199
|
+
schema: "network.xyo.automation";
|
|
200
|
+
type: "interval";
|
|
201
|
+
end?: number | undefined;
|
|
202
|
+
frequency?: number | undefined;
|
|
203
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
204
|
+
remaining?: number | undefined;
|
|
205
|
+
start: number;
|
|
206
|
+
} | {
|
|
207
|
+
schema: "network.xyo.automation.interval";
|
|
208
|
+
type: "interval";
|
|
209
|
+
end?: number | undefined;
|
|
210
|
+
frequency?: number | undefined;
|
|
211
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
212
|
+
remaining?: number | undefined;
|
|
213
|
+
start: number;
|
|
214
|
+
} | {
|
|
215
|
+
schema: "network.xyo.automation.event";
|
|
216
|
+
type: "interval";
|
|
217
|
+
end?: number | undefined;
|
|
218
|
+
frequency?: number | undefined;
|
|
219
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
220
|
+
remaining?: number | undefined;
|
|
221
|
+
start: number;
|
|
222
|
+
} | {
|
|
223
|
+
schema: "network.xyo.automation";
|
|
224
|
+
type: "event";
|
|
225
|
+
} | {
|
|
226
|
+
schema: "network.xyo.automation.interval";
|
|
227
|
+
type: "event";
|
|
228
|
+
} | {
|
|
229
|
+
schema: "network.xyo.automation.event";
|
|
230
|
+
type: "event";
|
|
231
|
+
})[] | undefined;
|
|
232
|
+
synchronous?: boolean | undefined;
|
|
233
|
+
tasks: ({
|
|
234
|
+
endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
235
|
+
input?: string | boolean | string[] | undefined;
|
|
236
|
+
mod: _xyo_network_module_model.ModuleIdentifier;
|
|
237
|
+
required?: boolean | undefined;
|
|
238
|
+
} | {
|
|
239
|
+
endPoint?: "divine" | undefined;
|
|
240
|
+
input?: string | boolean | string[] | undefined;
|
|
241
|
+
mod: _xyo_network_module_model.ModuleIdentifier;
|
|
242
|
+
required?: boolean | undefined;
|
|
243
|
+
} | {
|
|
244
|
+
endPoint?: "observe" | undefined;
|
|
245
|
+
input?: string | boolean | string[] | undefined;
|
|
246
|
+
mod: _xyo_network_module_model.ModuleIdentifier;
|
|
247
|
+
required?: boolean | undefined;
|
|
248
|
+
} | {
|
|
249
|
+
endPoint?: string | undefined;
|
|
250
|
+
input?: string | boolean | string[] | undefined;
|
|
251
|
+
mod: _xyo_network_module_model.ModuleIdentifier;
|
|
252
|
+
required?: boolean | undefined;
|
|
253
|
+
})[];
|
|
254
|
+
throwErrors?: boolean | undefined;
|
|
255
|
+
}>;
|
|
256
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
257
|
+
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
258
|
+
}, _xyo_network_sentinel_model.SentinelModuleEventData<_xyo_network_module_model.Module<_xylabs_object.BaseParamsFields & {
|
|
259
|
+
account?: AccountInstance | "random";
|
|
260
|
+
addToResolvers?: boolean;
|
|
261
|
+
additionalSigners?: AccountInstance[];
|
|
262
|
+
allowNameResolution?: boolean;
|
|
263
|
+
config: _xylabs_object.DeepRestrictToStringKeys<{
|
|
264
|
+
schema: _xyo_network_payload_model.Schema;
|
|
265
|
+
readonly archiving?: {
|
|
266
|
+
readonly archivists?: string[] | undefined;
|
|
267
|
+
readonly queries?: string[] | undefined;
|
|
268
|
+
} | undefined;
|
|
269
|
+
readonly allowedQueries?: string[] | undefined;
|
|
270
|
+
readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
|
|
271
|
+
readonly consoleLogger?: _xylabs_logger.LogLevel | undefined;
|
|
272
|
+
readonly labels?: {
|
|
273
|
+
[x: string]: string | undefined;
|
|
274
|
+
} | undefined;
|
|
275
|
+
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
276
|
+
readonly paging?: {
|
|
277
|
+
[x: string]: {
|
|
278
|
+
size?: number | undefined;
|
|
279
|
+
};
|
|
280
|
+
} | undefined;
|
|
281
|
+
readonly retry?: {
|
|
282
|
+
backoff?: number | undefined;
|
|
283
|
+
interval?: number | undefined;
|
|
284
|
+
retries?: number | undefined;
|
|
285
|
+
} | undefined;
|
|
286
|
+
readonly security?: {
|
|
287
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
288
|
+
readonly allowed?: {
|
|
289
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
290
|
+
} | undefined;
|
|
291
|
+
readonly disallowed?: {
|
|
292
|
+
[x: string]: Lowercase<string>[];
|
|
293
|
+
} | undefined;
|
|
294
|
+
} | undefined;
|
|
295
|
+
readonly sign?: boolean | undefined;
|
|
296
|
+
readonly storeQueries?: boolean | undefined;
|
|
297
|
+
readonly timestamp?: boolean | undefined;
|
|
298
|
+
}>;
|
|
299
|
+
ephemeralQueryAccountEnabled?: boolean;
|
|
300
|
+
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
301
|
+
}, _xyo_network_module_model.ModuleEventData<object>>>>>;
|
|
302
|
+
static readonly requiredQueries: string[];
|
|
303
|
+
archivists(): Promise<ArchivistInstance[]>;
|
|
304
|
+
report(payloads?: Payload[]): Promise<Payload[]>;
|
|
305
|
+
reportQuery(payloads?: Payload[], account?: AccountInstance): Promise<ModuleQueryResult>;
|
|
306
|
+
witnesses(): Promise<WitnessInstance[]>;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
export { SentinelWrapper };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Wrapper.ts"],"sourcesContent":["import type { AccountInstance } from '@xyo-network/account-model'\nimport type { ArchivistInstance } from '@xyo-network/archivist-model'\nimport type { ModuleQueryResult } from '@xyo-network/module-model'\nimport { constructableModuleWrapper, ModuleWrapper } from '@xyo-network/module-wrapper'\nimport type { Payload } from '@xyo-network/payload-model'\nimport type {\n SentinelInstance,\n SentinelModule,\n SentinelReportQuery,\n} from '@xyo-network/sentinel-model'\nimport {\n isSentinelInstance,\n isSentinelModule,\n SentinelReportQuerySchema,\n} from '@xyo-network/sentinel-model'\nimport type { WitnessInstance } from '@xyo-network/witness-model'\n\nconstructableModuleWrapper()\nexport class SentinelWrapper<TModule extends SentinelModule = SentinelModule>\n extends ModuleWrapper<TModule>\n implements SentinelInstance<TModule['params']> {\n static override instanceIdentityCheck = isSentinelInstance\n static override moduleIdentityCheck = isSentinelModule\n static override requiredQueries = [SentinelReportQuerySchema, ...super.requiredQueries]\n\n archivists(): Promise<ArchivistInstance[]> {\n throw new Error('Not supported')\n }\n\n async report(payloads?: Payload[]): Promise<Payload[]> {\n const queryPayload: SentinelReportQuery = { schema: SentinelReportQuerySchema }\n return await this.sendQuery(queryPayload, payloads)\n }\n\n async reportQuery(payloads?: Payload[], account?: AccountInstance): Promise<ModuleQueryResult> {\n const queryPayload: SentinelReportQuery = { schema: SentinelReportQuerySchema }\n return await this.sendQueryRaw(queryPayload, payloads, account)\n }\n\n witnesses(): Promise<WitnessInstance[]> {\n throw new Error('Not supported')\n }\n}\n"],"mappings":";AAGA,SAAS,4BAA4B,qBAAqB;AAO1D;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAGP,2BAA2B;AACpB,IAAM,kBAAN,cACG,cACuC;AAAA,EAC/C,
|
|
1
|
+
{"version":3,"sources":["../../src/Wrapper.ts"],"sourcesContent":["import type { AccountInstance } from '@xyo-network/account-model'\nimport type { ArchivistInstance } from '@xyo-network/archivist-model'\nimport type { ModuleQueryResult } from '@xyo-network/module-model'\nimport { constructableModuleWrapper, ModuleWrapper } from '@xyo-network/module-wrapper'\nimport type { Payload } from '@xyo-network/payload-model'\nimport type {\n SentinelInstance,\n SentinelModule,\n SentinelReportQuery,\n} from '@xyo-network/sentinel-model'\nimport {\n isSentinelInstance,\n isSentinelModule,\n SentinelReportQuerySchema,\n} from '@xyo-network/sentinel-model'\nimport type { WitnessInstance } from '@xyo-network/witness-model'\n\nconstructableModuleWrapper()\nexport class SentinelWrapper<TModule extends SentinelModule = SentinelModule>\n extends ModuleWrapper<TModule>\n implements SentinelInstance<TModule['params']> {\n static override readonly instanceIdentityCheck = isSentinelInstance\n static override readonly moduleIdentityCheck = isSentinelModule\n static override readonly requiredQueries = [SentinelReportQuerySchema, ...super.requiredQueries]\n\n archivists(): Promise<ArchivistInstance[]> {\n throw new Error('Not supported')\n }\n\n async report(payloads?: Payload[]): Promise<Payload[]> {\n const queryPayload: SentinelReportQuery = { schema: SentinelReportQuerySchema }\n return await this.sendQuery(queryPayload, payloads)\n }\n\n async reportQuery(payloads?: Payload[], account?: AccountInstance): Promise<ModuleQueryResult> {\n const queryPayload: SentinelReportQuery = { schema: SentinelReportQuerySchema }\n return await this.sendQueryRaw(queryPayload, payloads, account)\n }\n\n witnesses(): Promise<WitnessInstance[]> {\n throw new Error('Not supported')\n }\n}\n"],"mappings":";AAGA,SAAS,4BAA4B,qBAAqB;AAO1D;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAGP,2BAA2B;AACpB,IAAM,kBAAN,cACG,cACuC;AAAA,EAC/C,OAAyB,wBAAwB;AAAA,EACjD,OAAyB,sBAAsB;AAAA,EAC/C,OAAyB,kBAAkB,CAAC,2BAA2B,GAAG,MAAM,eAAe;AAAA,EAE/F,aAA2C;AACzC,UAAM,IAAI,MAAM,eAAe;AAAA,EACjC;AAAA,EAEA,MAAM,OAAO,UAA0C;AACrD,UAAM,eAAoC,EAAE,QAAQ,0BAA0B;AAC9E,WAAO,MAAM,KAAK,UAAU,cAAc,QAAQ;AAAA,EACpD;AAAA,EAEA,MAAM,YAAY,UAAsB,SAAuD;AAC7F,UAAM,eAAoC,EAAE,QAAQ,0BAA0B;AAC9E,WAAO,MAAM,KAAK,aAAa,cAAc,UAAU,OAAO;AAAA,EAChE;AAAA,EAEA,YAAwC;AACtC,UAAM,IAAI,MAAM,eAAe;AAAA,EACjC;AACF;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/sentinel-wrapper",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.1",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,30 +29,30 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xyo-network/account-model": "^3.8.
|
|
33
|
-
"@xyo-network/archivist-model": "^3.8.
|
|
34
|
-
"@xyo-network/module-model": "^3.8.
|
|
35
|
-
"@xyo-network/module-wrapper": "^3.8.
|
|
36
|
-
"@xyo-network/payload-model": "^3.8.
|
|
37
|
-
"@xyo-network/sentinel-model": "^3.8.
|
|
38
|
-
"@xyo-network/witness-model": "^3.8.
|
|
32
|
+
"@xyo-network/account-model": "^3.8.1",
|
|
33
|
+
"@xyo-network/archivist-model": "^3.8.1",
|
|
34
|
+
"@xyo-network/module-model": "^3.8.1",
|
|
35
|
+
"@xyo-network/module-wrapper": "^3.8.1",
|
|
36
|
+
"@xyo-network/payload-model": "^3.8.1",
|
|
37
|
+
"@xyo-network/sentinel-model": "^3.8.1",
|
|
38
|
+
"@xyo-network/witness-model": "^3.8.1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@xylabs/delay": "^4.5.1",
|
|
42
|
-
"@xylabs/ts-scripts-yarn3": "^
|
|
43
|
-
"@xylabs/tsconfig": "^
|
|
42
|
+
"@xylabs/ts-scripts-yarn3": "^5.0.22",
|
|
43
|
+
"@xylabs/tsconfig": "^5.0.22",
|
|
44
44
|
"@xylabs/vitest-extended": "^4.5.1",
|
|
45
|
-
"@xyo-network/abstract-witness": "^3.8.
|
|
46
|
-
"@xyo-network/account": "^3.8.
|
|
47
|
-
"@xyo-network/archivist-memory": "^3.8.
|
|
48
|
-
"@xyo-network/boundwitness-model": "^3.8.
|
|
49
|
-
"@xyo-network/module-model": "^3.8.
|
|
50
|
-
"@xyo-network/node-memory": "^3.8.
|
|
51
|
-
"@xyo-network/payload-builder": "^3.8.
|
|
52
|
-
"@xyo-network/sentinel-memory": "^3.8.
|
|
53
|
-
"@xyo-network/witness-adhoc": "^3.8.
|
|
45
|
+
"@xyo-network/abstract-witness": "^3.8.1",
|
|
46
|
+
"@xyo-network/account": "^3.8.1",
|
|
47
|
+
"@xyo-network/archivist-memory": "^3.8.1",
|
|
48
|
+
"@xyo-network/boundwitness-model": "^3.8.1",
|
|
49
|
+
"@xyo-network/module-model": "^3.8.1",
|
|
50
|
+
"@xyo-network/node-memory": "^3.8.1",
|
|
51
|
+
"@xyo-network/payload-builder": "^3.8.1",
|
|
52
|
+
"@xyo-network/sentinel-memory": "^3.8.1",
|
|
53
|
+
"@xyo-network/witness-adhoc": "^3.8.1",
|
|
54
54
|
"typescript": "^5.7.3",
|
|
55
|
-
"vitest": "^3.0.
|
|
55
|
+
"vitest": "^3.0.5"
|
|
56
56
|
},
|
|
57
57
|
"publishConfig": {
|
|
58
58
|
"access": "public"
|
package/src/Wrapper.ts
CHANGED
|
@@ -19,9 +19,9 @@ constructableModuleWrapper()
|
|
|
19
19
|
export class SentinelWrapper<TModule extends SentinelModule = SentinelModule>
|
|
20
20
|
extends ModuleWrapper<TModule>
|
|
21
21
|
implements SentinelInstance<TModule['params']> {
|
|
22
|
-
static override instanceIdentityCheck = isSentinelInstance
|
|
23
|
-
static override moduleIdentityCheck = isSentinelModule
|
|
24
|
-
static override requiredQueries = [SentinelReportQuerySchema, ...super.requiredQueries]
|
|
22
|
+
static override readonly instanceIdentityCheck = isSentinelInstance
|
|
23
|
+
static override readonly moduleIdentityCheck = isSentinelModule
|
|
24
|
+
static override readonly requiredQueries = [SentinelReportQuerySchema, ...super.requiredQueries]
|
|
25
25
|
|
|
26
26
|
archivists(): Promise<ArchivistInstance[]> {
|
|
27
27
|
throw new Error('Not supported')
|
|
@@ -1,303 +0,0 @@
|
|
|
1
|
-
import type { AccountInstance } from '@xyo-network/account-model';
|
|
2
|
-
import type { ArchivistInstance } from '@xyo-network/archivist-model';
|
|
3
|
-
import type { ModuleQueryResult } from '@xyo-network/module-model';
|
|
4
|
-
import { ModuleWrapper } from '@xyo-network/module-wrapper';
|
|
5
|
-
import type { Payload } from '@xyo-network/payload-model';
|
|
6
|
-
import type { SentinelInstance, SentinelModule } from '@xyo-network/sentinel-model';
|
|
7
|
-
import type { WitnessInstance } from '@xyo-network/witness-model';
|
|
8
|
-
export declare class SentinelWrapper<TModule extends SentinelModule = SentinelModule> extends ModuleWrapper<TModule> implements SentinelInstance<TModule['params']> {
|
|
9
|
-
static instanceIdentityCheck: import("@xylabs/object").TypeCheck<SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
10
|
-
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
11
|
-
addToResolvers?: boolean;
|
|
12
|
-
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
13
|
-
allowNameResolution?: boolean;
|
|
14
|
-
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
15
|
-
schema: import("@xyo-network/payload-model").Schema;
|
|
16
|
-
readonly archiving?: {
|
|
17
|
-
readonly archivists?: string[] | undefined;
|
|
18
|
-
readonly queries?: string[] | undefined;
|
|
19
|
-
} | undefined;
|
|
20
|
-
readonly allowedQueries?: string[] | undefined;
|
|
21
|
-
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
22
|
-
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
23
|
-
readonly labels?: {
|
|
24
|
-
[x: string]: string | undefined;
|
|
25
|
-
} | undefined;
|
|
26
|
-
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
27
|
-
readonly paging?: {
|
|
28
|
-
[x: string]: {
|
|
29
|
-
size?: number | undefined;
|
|
30
|
-
};
|
|
31
|
-
} | undefined;
|
|
32
|
-
readonly retry?: {
|
|
33
|
-
backoff?: number | undefined;
|
|
34
|
-
interval?: number | undefined;
|
|
35
|
-
retries?: number | undefined;
|
|
36
|
-
} | undefined;
|
|
37
|
-
readonly security?: {
|
|
38
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
39
|
-
readonly allowed?: {
|
|
40
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
41
|
-
} | undefined;
|
|
42
|
-
readonly disallowed?: {
|
|
43
|
-
[x: string]: Lowercase<string>[];
|
|
44
|
-
} | undefined;
|
|
45
|
-
} | undefined;
|
|
46
|
-
readonly sign?: boolean | undefined;
|
|
47
|
-
readonly storeQueries?: boolean | undefined;
|
|
48
|
-
readonly timestamp?: boolean | undefined;
|
|
49
|
-
automations?: ({
|
|
50
|
-
schema: "network.xyo.automation";
|
|
51
|
-
type: "interval";
|
|
52
|
-
end?: number | undefined;
|
|
53
|
-
frequency?: number | undefined;
|
|
54
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
55
|
-
remaining?: number | undefined;
|
|
56
|
-
start: number;
|
|
57
|
-
} | {
|
|
58
|
-
schema: "network.xyo.automation.interval";
|
|
59
|
-
type: "interval";
|
|
60
|
-
end?: number | undefined;
|
|
61
|
-
frequency?: number | undefined;
|
|
62
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
63
|
-
remaining?: number | undefined;
|
|
64
|
-
start: number;
|
|
65
|
-
} | {
|
|
66
|
-
schema: "network.xyo.automation.event";
|
|
67
|
-
type: "interval";
|
|
68
|
-
end?: number | undefined;
|
|
69
|
-
frequency?: number | undefined;
|
|
70
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
71
|
-
remaining?: number | undefined;
|
|
72
|
-
start: number;
|
|
73
|
-
} | {
|
|
74
|
-
schema: "network.xyo.automation";
|
|
75
|
-
type: "event";
|
|
76
|
-
} | {
|
|
77
|
-
schema: "network.xyo.automation.interval";
|
|
78
|
-
type: "event";
|
|
79
|
-
} | {
|
|
80
|
-
schema: "network.xyo.automation.event";
|
|
81
|
-
type: "event";
|
|
82
|
-
})[] | undefined;
|
|
83
|
-
synchronous?: boolean | undefined;
|
|
84
|
-
tasks: ({
|
|
85
|
-
endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
86
|
-
input?: string | boolean | string[] | undefined;
|
|
87
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
88
|
-
required?: boolean | undefined;
|
|
89
|
-
} | {
|
|
90
|
-
endPoint?: "divine" | undefined;
|
|
91
|
-
input?: string | boolean | string[] | undefined;
|
|
92
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
93
|
-
required?: boolean | undefined;
|
|
94
|
-
} | {
|
|
95
|
-
endPoint?: "observe" | undefined;
|
|
96
|
-
input?: string | boolean | string[] | undefined;
|
|
97
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
98
|
-
required?: boolean | undefined;
|
|
99
|
-
} | {
|
|
100
|
-
endPoint?: string | undefined;
|
|
101
|
-
input?: string | boolean | string[] | undefined;
|
|
102
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
103
|
-
required?: boolean | undefined;
|
|
104
|
-
})[];
|
|
105
|
-
throwErrors?: boolean | undefined;
|
|
106
|
-
}>;
|
|
107
|
-
ephemeralQueryAccountEnabled?: boolean;
|
|
108
|
-
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
109
|
-
}, import("@xyo-network/sentinel-model").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
110
|
-
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
111
|
-
addToResolvers?: boolean;
|
|
112
|
-
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
113
|
-
allowNameResolution?: boolean;
|
|
114
|
-
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
115
|
-
schema: import("@xyo-network/payload-model").Schema;
|
|
116
|
-
readonly archiving?: {
|
|
117
|
-
readonly archivists?: string[] | undefined;
|
|
118
|
-
readonly queries?: string[] | undefined;
|
|
119
|
-
} | undefined;
|
|
120
|
-
readonly allowedQueries?: string[] | undefined;
|
|
121
|
-
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
122
|
-
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
123
|
-
readonly labels?: {
|
|
124
|
-
[x: string]: string | undefined;
|
|
125
|
-
} | undefined;
|
|
126
|
-
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
127
|
-
readonly paging?: {
|
|
128
|
-
[x: string]: {
|
|
129
|
-
size?: number | undefined;
|
|
130
|
-
};
|
|
131
|
-
} | undefined;
|
|
132
|
-
readonly retry?: {
|
|
133
|
-
backoff?: number | undefined;
|
|
134
|
-
interval?: number | undefined;
|
|
135
|
-
retries?: number | undefined;
|
|
136
|
-
} | undefined;
|
|
137
|
-
readonly security?: {
|
|
138
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
139
|
-
readonly allowed?: {
|
|
140
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
141
|
-
} | undefined;
|
|
142
|
-
readonly disallowed?: {
|
|
143
|
-
[x: string]: Lowercase<string>[];
|
|
144
|
-
} | undefined;
|
|
145
|
-
} | undefined;
|
|
146
|
-
readonly sign?: boolean | undefined;
|
|
147
|
-
readonly storeQueries?: boolean | undefined;
|
|
148
|
-
readonly timestamp?: boolean | undefined;
|
|
149
|
-
}>;
|
|
150
|
-
ephemeralQueryAccountEnabled?: boolean;
|
|
151
|
-
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
152
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>;
|
|
153
|
-
static moduleIdentityCheck: import("@xyo-network/module-model").ModuleTypeCheck<SentinelModule<import("@xylabs/object").BaseParamsFields & {
|
|
154
|
-
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
155
|
-
addToResolvers?: boolean;
|
|
156
|
-
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
157
|
-
allowNameResolution?: boolean;
|
|
158
|
-
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
159
|
-
schema: import("@xyo-network/payload-model").Schema;
|
|
160
|
-
readonly archiving?: {
|
|
161
|
-
readonly archivists?: string[] | undefined;
|
|
162
|
-
readonly queries?: string[] | undefined;
|
|
163
|
-
} | undefined;
|
|
164
|
-
readonly allowedQueries?: string[] | undefined;
|
|
165
|
-
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
166
|
-
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
167
|
-
readonly labels?: {
|
|
168
|
-
[x: string]: string | undefined;
|
|
169
|
-
} | undefined;
|
|
170
|
-
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
171
|
-
readonly paging?: {
|
|
172
|
-
[x: string]: {
|
|
173
|
-
size?: number | undefined;
|
|
174
|
-
};
|
|
175
|
-
} | undefined;
|
|
176
|
-
readonly retry?: {
|
|
177
|
-
backoff?: number | undefined;
|
|
178
|
-
interval?: number | undefined;
|
|
179
|
-
retries?: number | undefined;
|
|
180
|
-
} | undefined;
|
|
181
|
-
readonly security?: {
|
|
182
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
183
|
-
readonly allowed?: {
|
|
184
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
185
|
-
} | undefined;
|
|
186
|
-
readonly disallowed?: {
|
|
187
|
-
[x: string]: Lowercase<string>[];
|
|
188
|
-
} | undefined;
|
|
189
|
-
} | undefined;
|
|
190
|
-
readonly sign?: boolean | undefined;
|
|
191
|
-
readonly storeQueries?: boolean | undefined;
|
|
192
|
-
readonly timestamp?: boolean | undefined;
|
|
193
|
-
automations?: ({
|
|
194
|
-
schema: "network.xyo.automation";
|
|
195
|
-
type: "interval";
|
|
196
|
-
end?: number | undefined;
|
|
197
|
-
frequency?: number | undefined;
|
|
198
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
199
|
-
remaining?: number | undefined;
|
|
200
|
-
start: number;
|
|
201
|
-
} | {
|
|
202
|
-
schema: "network.xyo.automation.interval";
|
|
203
|
-
type: "interval";
|
|
204
|
-
end?: number | undefined;
|
|
205
|
-
frequency?: number | undefined;
|
|
206
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
207
|
-
remaining?: number | undefined;
|
|
208
|
-
start: number;
|
|
209
|
-
} | {
|
|
210
|
-
schema: "network.xyo.automation.event";
|
|
211
|
-
type: "interval";
|
|
212
|
-
end?: number | undefined;
|
|
213
|
-
frequency?: number | undefined;
|
|
214
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
215
|
-
remaining?: number | undefined;
|
|
216
|
-
start: number;
|
|
217
|
-
} | {
|
|
218
|
-
schema: "network.xyo.automation";
|
|
219
|
-
type: "event";
|
|
220
|
-
} | {
|
|
221
|
-
schema: "network.xyo.automation.interval";
|
|
222
|
-
type: "event";
|
|
223
|
-
} | {
|
|
224
|
-
schema: "network.xyo.automation.event";
|
|
225
|
-
type: "event";
|
|
226
|
-
})[] | undefined;
|
|
227
|
-
synchronous?: boolean | undefined;
|
|
228
|
-
tasks: ({
|
|
229
|
-
endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
230
|
-
input?: string | boolean | string[] | undefined;
|
|
231
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
232
|
-
required?: boolean | undefined;
|
|
233
|
-
} | {
|
|
234
|
-
endPoint?: "divine" | undefined;
|
|
235
|
-
input?: string | boolean | string[] | undefined;
|
|
236
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
237
|
-
required?: boolean | undefined;
|
|
238
|
-
} | {
|
|
239
|
-
endPoint?: "observe" | undefined;
|
|
240
|
-
input?: string | boolean | string[] | undefined;
|
|
241
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
242
|
-
required?: boolean | undefined;
|
|
243
|
-
} | {
|
|
244
|
-
endPoint?: string | undefined;
|
|
245
|
-
input?: string | boolean | string[] | undefined;
|
|
246
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
247
|
-
required?: boolean | undefined;
|
|
248
|
-
})[];
|
|
249
|
-
throwErrors?: boolean | undefined;
|
|
250
|
-
}>;
|
|
251
|
-
ephemeralQueryAccountEnabled?: boolean;
|
|
252
|
-
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
253
|
-
}, import("@xyo-network/sentinel-model").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
254
|
-
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
255
|
-
addToResolvers?: boolean;
|
|
256
|
-
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
257
|
-
allowNameResolution?: boolean;
|
|
258
|
-
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
259
|
-
schema: import("@xyo-network/payload-model").Schema;
|
|
260
|
-
readonly archiving?: {
|
|
261
|
-
readonly archivists?: string[] | undefined;
|
|
262
|
-
readonly queries?: string[] | undefined;
|
|
263
|
-
} | undefined;
|
|
264
|
-
readonly allowedQueries?: string[] | undefined;
|
|
265
|
-
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
266
|
-
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
267
|
-
readonly labels?: {
|
|
268
|
-
[x: string]: string | undefined;
|
|
269
|
-
} | undefined;
|
|
270
|
-
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
271
|
-
readonly paging?: {
|
|
272
|
-
[x: string]: {
|
|
273
|
-
size?: number | undefined;
|
|
274
|
-
};
|
|
275
|
-
} | undefined;
|
|
276
|
-
readonly retry?: {
|
|
277
|
-
backoff?: number | undefined;
|
|
278
|
-
interval?: number | undefined;
|
|
279
|
-
retries?: number | undefined;
|
|
280
|
-
} | undefined;
|
|
281
|
-
readonly security?: {
|
|
282
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
283
|
-
readonly allowed?: {
|
|
284
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
285
|
-
} | undefined;
|
|
286
|
-
readonly disallowed?: {
|
|
287
|
-
[x: string]: Lowercase<string>[];
|
|
288
|
-
} | undefined;
|
|
289
|
-
} | undefined;
|
|
290
|
-
readonly sign?: boolean | undefined;
|
|
291
|
-
readonly storeQueries?: boolean | undefined;
|
|
292
|
-
readonly timestamp?: boolean | undefined;
|
|
293
|
-
}>;
|
|
294
|
-
ephemeralQueryAccountEnabled?: boolean;
|
|
295
|
-
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
296
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>;
|
|
297
|
-
static requiredQueries: string[];
|
|
298
|
-
archivists(): Promise<ArchivistInstance[]>;
|
|
299
|
-
report(payloads?: Payload[]): Promise<Payload[]>;
|
|
300
|
-
reportQuery(payloads?: Payload[], account?: AccountInstance): Promise<ModuleQueryResult>;
|
|
301
|
-
witnesses(): Promise<WitnessInstance[]>;
|
|
302
|
-
}
|
|
303
|
-
//# sourceMappingURL=Wrapper.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Wrapper.d.ts","sourceRoot":"","sources":["../../src/Wrapper.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA"}
|