@xyo-network/archivist-model 2.87.0 → 2.87.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.
Files changed (39) hide show
  1. package/dist/browser/Archivist.d.cts +4 -2
  2. package/dist/browser/Archivist.d.cts.map +1 -1
  3. package/dist/browser/Archivist.d.mts +4 -2
  4. package/dist/browser/Archivist.d.mts.map +1 -1
  5. package/dist/browser/Archivist.d.ts +4 -2
  6. package/dist/browser/Archivist.d.ts.map +1 -1
  7. package/dist/browser/ArchivistInstance.d.cts +2 -1
  8. package/dist/browser/ArchivistInstance.d.cts.map +1 -1
  9. package/dist/browser/ArchivistInstance.d.mts +2 -1
  10. package/dist/browser/ArchivistInstance.d.mts.map +1 -1
  11. package/dist/browser/ArchivistInstance.d.ts +2 -1
  12. package/dist/browser/ArchivistInstance.d.ts.map +1 -1
  13. package/dist/browser/typeChecks.d.cts +352 -8
  14. package/dist/browser/typeChecks.d.cts.map +1 -1
  15. package/dist/browser/typeChecks.d.mts +352 -8
  16. package/dist/browser/typeChecks.d.mts.map +1 -1
  17. package/dist/browser/typeChecks.d.ts +352 -8
  18. package/dist/browser/typeChecks.d.ts.map +1 -1
  19. package/dist/node/Archivist.d.cts +4 -2
  20. package/dist/node/Archivist.d.cts.map +1 -1
  21. package/dist/node/Archivist.d.mts +4 -2
  22. package/dist/node/Archivist.d.mts.map +1 -1
  23. package/dist/node/Archivist.d.ts +4 -2
  24. package/dist/node/Archivist.d.ts.map +1 -1
  25. package/dist/node/ArchivistInstance.d.cts +2 -1
  26. package/dist/node/ArchivistInstance.d.cts.map +1 -1
  27. package/dist/node/ArchivistInstance.d.mts +2 -1
  28. package/dist/node/ArchivistInstance.d.mts.map +1 -1
  29. package/dist/node/ArchivistInstance.d.ts +2 -1
  30. package/dist/node/ArchivistInstance.d.ts.map +1 -1
  31. package/dist/node/typeChecks.d.cts +352 -8
  32. package/dist/node/typeChecks.d.cts.map +1 -1
  33. package/dist/node/typeChecks.d.mts +352 -8
  34. package/dist/node/typeChecks.d.mts.map +1 -1
  35. package/dist/node/typeChecks.d.ts +352 -8
  36. package/dist/node/typeChecks.d.ts.map +1 -1
  37. package/package.json +7 -7
  38. package/src/Archivist.ts +6 -10
  39. package/src/ArchivistInstance.ts +4 -2
@@ -1,15 +1,359 @@
1
1
  import { ArchivistModule } from './Archivist';
2
2
  import { ArchivistInstance } from './ArchivistInstance';
3
- export declare const isArchivistInstance: import("@xyo-network/object").TypeCheck<ArchivistInstance>;
4
- export declare const isArchivistModule: import("@xyo-network/module-model").ModuleTypeCheck<ArchivistModule>;
3
+ export declare const isArchivistInstance: import("@xyo-network/object").TypeCheck<ArchivistInstance<import("@xyo-network/object").BaseParamsFields & {
4
+ account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
5
+ config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
6
+ readonly archivist?: string | undefined;
7
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
8
+ readonly name?: string | undefined;
9
+ readonly paging?: Record<string, {
10
+ size?: number | undefined;
11
+ }> | undefined;
12
+ schema: "network.xyo.archivist.config";
13
+ readonly security?: {
14
+ readonly allowAnonymous?: boolean | undefined;
15
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
16
+ readonly disallowed?: Record<string, string[]> | undefined;
17
+ } | undefined;
18
+ readonly sign?: boolean | undefined;
19
+ readonly storeQueries?: boolean | undefined;
20
+ readonly timestamp?: boolean | undefined;
21
+ } & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
22
+ readonly archivist?: string | undefined;
23
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
24
+ readonly name?: string | undefined;
25
+ readonly paging?: Record<string, {
26
+ size?: number | undefined;
27
+ }> | undefined;
28
+ schema: "network.xyo.archivist.config";
29
+ readonly security?: {
30
+ readonly allowAnonymous?: boolean | undefined;
31
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
32
+ readonly disallowed?: Record<string, string[]> | undefined;
33
+ } | undefined;
34
+ readonly sign?: boolean | undefined;
35
+ readonly storeQueries?: boolean | undefined;
36
+ readonly timestamp?: boolean | undefined;
37
+ } & {
38
+ parents?: import("./Config").ArchivistParents | undefined;
39
+ requireAllParents?: boolean | undefined;
40
+ schema: "network.xyo.archivist.config";
41
+ storeParentReads?: boolean | undefined;
42
+ }, "schema"> & {
43
+ schema: string;
44
+ };
45
+ ephemeralQueryAccountEnabled?: boolean | undefined;
46
+ }, import("./Archivist").ArchivistModuleEventData>>;
47
+ export declare const isArchivistModule: import("@xyo-network/module-model").ModuleTypeCheck<ArchivistModule<import("@xyo-network/object").BaseParamsFields & {
48
+ account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
49
+ config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
50
+ readonly archivist?: string | undefined;
51
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
52
+ readonly name?: string | undefined;
53
+ readonly paging?: Record<string, {
54
+ size?: number | undefined;
55
+ }> | undefined;
56
+ schema: "network.xyo.archivist.config";
57
+ readonly security?: {
58
+ readonly allowAnonymous?: boolean | undefined;
59
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
60
+ readonly disallowed?: Record<string, string[]> | undefined;
61
+ } | undefined;
62
+ readonly sign?: boolean | undefined;
63
+ readonly storeQueries?: boolean | undefined;
64
+ readonly timestamp?: boolean | undefined;
65
+ } & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
66
+ readonly archivist?: string | undefined;
67
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
68
+ readonly name?: string | undefined;
69
+ readonly paging?: Record<string, {
70
+ size?: number | undefined;
71
+ }> | undefined;
72
+ schema: "network.xyo.archivist.config";
73
+ readonly security?: {
74
+ readonly allowAnonymous?: boolean | undefined;
75
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
76
+ readonly disallowed?: Record<string, string[]> | undefined;
77
+ } | undefined;
78
+ readonly sign?: boolean | undefined;
79
+ readonly storeQueries?: boolean | undefined;
80
+ readonly timestamp?: boolean | undefined;
81
+ } & {
82
+ parents?: import("./Config").ArchivistParents | undefined;
83
+ requireAllParents?: boolean | undefined;
84
+ schema: "network.xyo.archivist.config";
85
+ storeParentReads?: boolean | undefined;
86
+ }, "schema"> & {
87
+ schema: string;
88
+ };
89
+ ephemeralQueryAccountEnabled?: boolean | undefined;
90
+ }, import("./Archivist").ArchivistModuleEventData>>;
5
91
  export declare const asArchivistModule: {
6
- <TType extends ArchivistModule>(value: unknown, config?: import("@xyo-network/object").TypeCheckConfig | undefined): TType | undefined;
7
- <TType_1 extends ArchivistModule>(value: unknown, assert: string | (() => string), config?: import("@xyo-network/object").TypeCheckConfig | undefined): TType_1;
92
+ <TType extends ArchivistModule<import("@xyo-network/object").BaseParamsFields & {
93
+ account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
94
+ config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
95
+ readonly archivist?: string | undefined;
96
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
97
+ readonly name?: string | undefined;
98
+ readonly paging?: Record<string, {
99
+ size?: number | undefined;
100
+ }> | undefined;
101
+ schema: "network.xyo.archivist.config";
102
+ readonly security?: {
103
+ readonly allowAnonymous?: boolean | undefined;
104
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
105
+ readonly disallowed?: Record<string, string[]> | undefined;
106
+ } | undefined;
107
+ readonly sign?: boolean | undefined;
108
+ readonly storeQueries?: boolean | undefined;
109
+ readonly timestamp?: boolean | undefined;
110
+ } & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
111
+ readonly archivist?: string | undefined;
112
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
113
+ readonly name?: string | undefined;
114
+ readonly paging?: Record<string, {
115
+ size?: number | undefined;
116
+ }> | undefined;
117
+ schema: "network.xyo.archivist.config";
118
+ readonly security?: {
119
+ readonly allowAnonymous?: boolean | undefined;
120
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
121
+ readonly disallowed?: Record<string, string[]> | undefined;
122
+ } | undefined;
123
+ readonly sign?: boolean | undefined;
124
+ readonly storeQueries?: boolean | undefined;
125
+ readonly timestamp?: boolean | undefined;
126
+ } & {
127
+ parents?: import("./Config").ArchivistParents | undefined;
128
+ requireAllParents?: boolean | undefined;
129
+ schema: "network.xyo.archivist.config";
130
+ storeParentReads?: boolean | undefined;
131
+ }, "schema"> & {
132
+ schema: string;
133
+ };
134
+ ephemeralQueryAccountEnabled?: boolean | undefined;
135
+ }, import("./Archivist").ArchivistModuleEventData>>(value: unknown, config?: import("@xyo-network/object").TypeCheckConfig | undefined): TType | undefined;
136
+ <TType_1 extends ArchivistModule<import("@xyo-network/object").BaseParamsFields & {
137
+ account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
138
+ config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
139
+ readonly archivist?: string | undefined;
140
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
141
+ readonly name?: string | undefined;
142
+ readonly paging?: Record<string, {
143
+ size?: number | undefined;
144
+ }> | undefined;
145
+ schema: "network.xyo.archivist.config";
146
+ readonly security?: {
147
+ readonly allowAnonymous?: boolean | undefined;
148
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
149
+ readonly disallowed?: Record<string, string[]> | undefined;
150
+ } | undefined;
151
+ readonly sign?: boolean | undefined;
152
+ readonly storeQueries?: boolean | undefined;
153
+ readonly timestamp?: boolean | undefined;
154
+ } & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
155
+ readonly archivist?: string | undefined;
156
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
157
+ readonly name?: string | undefined;
158
+ readonly paging?: Record<string, {
159
+ size?: number | undefined;
160
+ }> | undefined;
161
+ schema: "network.xyo.archivist.config";
162
+ readonly security?: {
163
+ readonly allowAnonymous?: boolean | undefined;
164
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
165
+ readonly disallowed?: Record<string, string[]> | undefined;
166
+ } | undefined;
167
+ readonly sign?: boolean | undefined;
168
+ readonly storeQueries?: boolean | undefined;
169
+ readonly timestamp?: boolean | undefined;
170
+ } & {
171
+ parents?: import("./Config").ArchivistParents | undefined;
172
+ requireAllParents?: boolean | undefined;
173
+ schema: "network.xyo.archivist.config";
174
+ storeParentReads?: boolean | undefined;
175
+ }, "schema"> & {
176
+ schema: string;
177
+ };
178
+ ephemeralQueryAccountEnabled?: boolean | undefined;
179
+ }, import("./Archivist").ArchivistModuleEventData>>(value: unknown, assert: string | (() => string), config?: import("@xyo-network/object").TypeCheckConfig | undefined): TType_1;
8
180
  };
9
181
  export declare const asArchivistInstance: {
10
- <TType extends ArchivistInstance>(value: unknown, config?: import("@xyo-network/object").TypeCheckConfig | undefined): TType | undefined;
11
- <TType_1 extends ArchivistInstance>(value: unknown, assert: string | (() => string), config?: import("@xyo-network/object").TypeCheckConfig | undefined): TType_1;
182
+ <TType extends ArchivistInstance<import("@xyo-network/object").BaseParamsFields & {
183
+ account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
184
+ config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
185
+ readonly archivist?: string | undefined;
186
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
187
+ readonly name?: string | undefined;
188
+ readonly paging?: Record<string, {
189
+ size?: number | undefined;
190
+ }> | undefined;
191
+ schema: "network.xyo.archivist.config";
192
+ readonly security?: {
193
+ readonly allowAnonymous?: boolean | undefined;
194
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
195
+ readonly disallowed?: Record<string, string[]> | undefined;
196
+ } | undefined;
197
+ readonly sign?: boolean | undefined;
198
+ readonly storeQueries?: boolean | undefined;
199
+ readonly timestamp?: boolean | undefined;
200
+ } & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
201
+ readonly archivist?: string | undefined;
202
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
203
+ readonly name?: string | undefined;
204
+ readonly paging?: Record<string, {
205
+ size?: number | undefined;
206
+ }> | undefined;
207
+ schema: "network.xyo.archivist.config";
208
+ readonly security?: {
209
+ readonly allowAnonymous?: boolean | undefined;
210
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
211
+ readonly disallowed?: Record<string, string[]> | undefined;
212
+ } | undefined;
213
+ readonly sign?: boolean | undefined;
214
+ readonly storeQueries?: boolean | undefined;
215
+ readonly timestamp?: boolean | undefined;
216
+ } & {
217
+ parents?: import("./Config").ArchivistParents | undefined;
218
+ requireAllParents?: boolean | undefined;
219
+ schema: "network.xyo.archivist.config";
220
+ storeParentReads?: boolean | undefined;
221
+ }, "schema"> & {
222
+ schema: string;
223
+ };
224
+ ephemeralQueryAccountEnabled?: boolean | undefined;
225
+ }, import("./Archivist").ArchivistModuleEventData>>(value: unknown, config?: import("@xyo-network/object").TypeCheckConfig | undefined): TType | undefined;
226
+ <TType_1 extends ArchivistInstance<import("@xyo-network/object").BaseParamsFields & {
227
+ account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
228
+ config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
229
+ readonly archivist?: string | undefined;
230
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
231
+ readonly name?: string | undefined;
232
+ readonly paging?: Record<string, {
233
+ size?: number | undefined;
234
+ }> | undefined;
235
+ schema: "network.xyo.archivist.config";
236
+ readonly security?: {
237
+ readonly allowAnonymous?: boolean | undefined;
238
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
239
+ readonly disallowed?: Record<string, string[]> | undefined;
240
+ } | undefined;
241
+ readonly sign?: boolean | undefined;
242
+ readonly storeQueries?: boolean | undefined;
243
+ readonly timestamp?: boolean | undefined;
244
+ } & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
245
+ readonly archivist?: string | undefined;
246
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
247
+ readonly name?: string | undefined;
248
+ readonly paging?: Record<string, {
249
+ size?: number | undefined;
250
+ }> | undefined;
251
+ schema: "network.xyo.archivist.config";
252
+ readonly security?: {
253
+ readonly allowAnonymous?: boolean | undefined;
254
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
255
+ readonly disallowed?: Record<string, string[]> | undefined;
256
+ } | undefined;
257
+ readonly sign?: boolean | undefined;
258
+ readonly storeQueries?: boolean | undefined;
259
+ readonly timestamp?: boolean | undefined;
260
+ } & {
261
+ parents?: import("./Config").ArchivistParents | undefined;
262
+ requireAllParents?: boolean | undefined;
263
+ schema: "network.xyo.archivist.config";
264
+ storeParentReads?: boolean | undefined;
265
+ }, "schema"> & {
266
+ schema: string;
267
+ };
268
+ ephemeralQueryAccountEnabled?: boolean | undefined;
269
+ }, import("./Archivist").ArchivistModuleEventData>>(value: unknown, assert: string | (() => string), config?: import("@xyo-network/object").TypeCheckConfig | undefined): TType_1;
12
270
  };
13
- export declare const withArchivistModule: <R>(module: any, closure: (module: ArchivistModule) => R) => R | undefined;
14
- export declare const withArchivistInstance: <R>(module: any, closure: (module: ArchivistInstance) => R) => R | undefined;
271
+ export declare const withArchivistModule: <R>(module: any, closure: (module: ArchivistModule<import("@xyo-network/object").BaseParamsFields & {
272
+ account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
273
+ config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
274
+ readonly archivist?: string | undefined;
275
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
276
+ readonly name?: string | undefined;
277
+ readonly paging?: Record<string, {
278
+ size?: number | undefined;
279
+ }> | undefined;
280
+ schema: "network.xyo.archivist.config";
281
+ readonly security?: {
282
+ readonly allowAnonymous?: boolean | undefined;
283
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
284
+ readonly disallowed?: Record<string, string[]> | undefined;
285
+ } | undefined;
286
+ readonly sign?: boolean | undefined;
287
+ readonly storeQueries?: boolean | undefined;
288
+ readonly timestamp?: boolean | undefined;
289
+ } & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
290
+ readonly archivist?: string | undefined;
291
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
292
+ readonly name?: string | undefined;
293
+ readonly paging?: Record<string, {
294
+ size?: number | undefined;
295
+ }> | undefined;
296
+ schema: "network.xyo.archivist.config";
297
+ readonly security?: {
298
+ readonly allowAnonymous?: boolean | undefined;
299
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
300
+ readonly disallowed?: Record<string, string[]> | undefined;
301
+ } | undefined;
302
+ readonly sign?: boolean | undefined;
303
+ readonly storeQueries?: boolean | undefined;
304
+ readonly timestamp?: boolean | undefined;
305
+ } & {
306
+ parents?: import("./Config").ArchivistParents | undefined;
307
+ requireAllParents?: boolean | undefined;
308
+ schema: "network.xyo.archivist.config";
309
+ storeParentReads?: boolean | undefined;
310
+ }, "schema"> & {
311
+ schema: string;
312
+ };
313
+ ephemeralQueryAccountEnabled?: boolean | undefined;
314
+ }, import("./Archivist").ArchivistModuleEventData>) => R) => R | undefined;
315
+ export declare const withArchivistInstance: <R>(module: any, closure: (module: ArchivistInstance<import("@xyo-network/object").BaseParamsFields & {
316
+ account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
317
+ config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
318
+ readonly archivist?: string | undefined;
319
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
320
+ readonly name?: string | undefined;
321
+ readonly paging?: Record<string, {
322
+ size?: number | undefined;
323
+ }> | undefined;
324
+ schema: "network.xyo.archivist.config";
325
+ readonly security?: {
326
+ readonly allowAnonymous?: boolean | undefined;
327
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
328
+ readonly disallowed?: Record<string, string[]> | undefined;
329
+ } | undefined;
330
+ readonly sign?: boolean | undefined;
331
+ readonly storeQueries?: boolean | undefined;
332
+ readonly timestamp?: boolean | undefined;
333
+ } & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
334
+ readonly archivist?: string | undefined;
335
+ readonly labels?: import("@xyo-network/module-model").Labels | undefined;
336
+ readonly name?: string | undefined;
337
+ readonly paging?: Record<string, {
338
+ size?: number | undefined;
339
+ }> | undefined;
340
+ schema: "network.xyo.archivist.config";
341
+ readonly security?: {
342
+ readonly allowAnonymous?: boolean | undefined;
343
+ readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
344
+ readonly disallowed?: Record<string, string[]> | undefined;
345
+ } | undefined;
346
+ readonly sign?: boolean | undefined;
347
+ readonly storeQueries?: boolean | undefined;
348
+ readonly timestamp?: boolean | undefined;
349
+ } & {
350
+ parents?: import("./Config").ArchivistParents | undefined;
351
+ requireAllParents?: boolean | undefined;
352
+ schema: "network.xyo.archivist.config";
353
+ storeParentReads?: boolean | undefined;
354
+ }, "schema"> & {
355
+ schema: string;
356
+ };
357
+ ephemeralQueryAccountEnabled?: boolean | undefined;
358
+ }, import("./Archivist").ArchivistModuleEventData>) => R) => R | undefined;
15
359
  //# sourceMappingURL=typeChecks.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAGvD,eAAO,MAAM,mBAAmB,4DAA6F,CAAA;AAC7H,eAAO,MAAM,iBAAiB,sEAA2E,CAAA;AAEzG,eAAO,MAAM,iBAAiB;;;CAA4C,CAAA;AAC1E,eAAO,MAAM,mBAAmB;;;CAA8C,CAAA;AAC9E,eAAO,MAAM,mBAAmB,4EAAwC,CAAA;AACxE,eAAO,MAAM,qBAAqB,8EAA0C,CAAA"}
1
+ {"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAGvD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mDAA6F,CAAA;AAC7H,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mDAA2E,CAAA;AAEzG,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4C,CAAA;AAC1E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA8C,CAAA;AAC9E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0EAAwC,CAAA;AACxE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0EAA0C,CAAA"}