@myko/core 4.4.2 → 4.4.3

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.
@@ -108,6 +108,33 @@ import type { SetClientWindbackTime as _SetClientWindbackTime } from "./SetClien
108
108
  import type { SetLogLevel as _SetLogLevel } from "./SetLogLevel";
109
109
  import type { WindbackStatus as _WindbackStatus } from "./WindbackStatus";
110
110
  import type { WindbackStatusOutput } from "./WindbackStatusOutput";
111
+ export declare class GetClientsByQuery {
112
+ static readonly queryId: "GetClientsByQuery";
113
+ static readonly queryItemType: "Client";
114
+ readonly queryId: "GetClientsByQuery";
115
+ readonly queryItemType: "Client";
116
+ readonly query: Omit<_GetClientsByQuery, "tx" | "createdAt">;
117
+ readonly $res: () => Client[];
118
+ constructor(args: Omit<_GetClientsByQuery, "tx" | "createdAt">);
119
+ }
120
+ export declare class GetAllClients {
121
+ static readonly queryId: "GetAllClients";
122
+ static readonly queryItemType: "Client";
123
+ readonly queryId: "GetAllClients";
124
+ readonly queryItemType: "Client";
125
+ readonly query: Omit<_GetAllClients, "tx" | "createdAt">;
126
+ readonly $res: () => Client[];
127
+ constructor(args: Omit<_GetAllClients, "tx" | "createdAt">);
128
+ }
129
+ export declare class GetClientsByIds {
130
+ static readonly queryId: "GetClientsByIds";
131
+ static readonly queryItemType: "Client";
132
+ readonly queryId: "GetClientsByIds";
133
+ readonly queryItemType: "Client";
134
+ readonly query: Omit<_GetClientsByIds, "tx" | "createdAt">;
135
+ readonly $res: () => Client[];
136
+ constructor(args: Omit<_GetClientsByIds, "tx" | "createdAt">);
137
+ }
111
138
  export declare class GetServersByIds {
112
139
  static readonly queryId: "GetServersByIds";
113
140
  static readonly queryItemType: "Server";
@@ -117,15 +144,6 @@ export declare class GetServersByIds {
117
144
  readonly $res: () => Server[];
118
145
  constructor(args: Omit<_GetServersByIds, "tx" | "createdAt">);
119
146
  }
120
- export declare class GetServersByQuery {
121
- static readonly queryId: "GetServersByQuery";
122
- static readonly queryItemType: "Server";
123
- readonly queryId: "GetServersByQuery";
124
- readonly queryItemType: "Server";
125
- readonly query: Omit<_GetServersByQuery, "tx" | "createdAt">;
126
- readonly $res: () => Server[];
127
- constructor(args: Omit<_GetServersByQuery, "tx" | "createdAt">);
128
- }
129
147
  export declare class GetAllServers {
130
148
  static readonly queryId: "GetAllServers";
131
149
  static readonly queryItemType: "Server";
@@ -135,6 +153,15 @@ export declare class GetAllServers {
135
153
  readonly $res: () => Server[];
136
154
  constructor(args: Omit<_GetAllServers, "tx" | "createdAt">);
137
155
  }
156
+ export declare class GetServersByQuery {
157
+ static readonly queryId: "GetServersByQuery";
158
+ static readonly queryItemType: "Server";
159
+ readonly queryId: "GetServersByQuery";
160
+ readonly queryItemType: "Server";
161
+ readonly query: Omit<_GetServersByQuery, "tx" | "createdAt">;
162
+ readonly $res: () => Server[];
163
+ constructor(args: Omit<_GetServersByQuery, "tx" | "createdAt">);
164
+ }
138
165
  export declare class GetConnectedServer {
139
166
  static readonly queryId: "GetConnectedServer";
140
167
  static readonly queryItemType: "Server";
@@ -153,74 +180,19 @@ export declare class GetPeerServers {
153
180
  readonly $res: () => Server[];
154
181
  constructor(args: Omit<_GetPeerServers, "tx" | "createdAt">);
155
182
  }
156
- export declare class GetClientsByQuery {
157
- static readonly queryId: "GetClientsByQuery";
158
- static readonly queryItemType: "Client";
159
- readonly queryId: "GetClientsByQuery";
160
- readonly queryItemType: "Client";
161
- readonly query: Omit<_GetClientsByQuery, "tx" | "createdAt">;
162
- readonly $res: () => Client[];
163
- constructor(args: Omit<_GetClientsByQuery, "tx" | "createdAt">);
164
- }
165
- export declare class GetAllClients {
166
- static readonly queryId: "GetAllClients";
167
- static readonly queryItemType: "Client";
168
- readonly queryId: "GetAllClients";
169
- readonly queryItemType: "Client";
170
- readonly query: Omit<_GetAllClients, "tx" | "createdAt">;
171
- readonly $res: () => Client[];
172
- constructor(args: Omit<_GetAllClients, "tx" | "createdAt">);
173
- }
174
- export declare class GetClientsByIds {
175
- static readonly queryId: "GetClientsByIds";
176
- static readonly queryItemType: "Client";
177
- readonly queryId: "GetClientsByIds";
178
- readonly queryItemType: "Client";
179
- readonly query: Omit<_GetClientsByIds, "tx" | "createdAt">;
180
- readonly $res: () => Client[];
181
- constructor(args: Omit<_GetClientsByIds, "tx" | "createdAt">);
182
- }
183
- export declare class GetServerById {
184
- static readonly reportId: "GetServerById";
185
- readonly reportId: "GetServerById";
186
- readonly report: Omit<_GetServerById, "tx">;
187
- readonly $res: () => Server | null;
188
- constructor(args: Omit<_GetServerById, "tx">);
189
- }
190
- export declare class ServerStats {
191
- static readonly reportId: "ServerStats";
192
- readonly reportId: "ServerStats";
193
- readonly report: Omit<_ServerStats, "tx">;
194
- readonly $res: () => ServerStatsOutput;
195
- constructor(args: Omit<_ServerStats, "tx">);
196
- }
197
- export declare class CountAllServers {
198
- static readonly reportId: "CountAllServers";
199
- readonly reportId: "CountAllServers";
200
- readonly report: Omit<_CountAllServers, "tx">;
201
- readonly $res: () => ServerCount;
202
- constructor(args: Omit<_CountAllServers, "tx">);
203
- }
204
- export declare class CountServers {
205
- static readonly reportId: "CountServers";
206
- readonly reportId: "CountServers";
207
- readonly report: Omit<_CountServers, "tx">;
208
- readonly $res: () => ServerCount;
209
- constructor(args: Omit<_CountServers, "tx">);
210
- }
211
- export declare class GetItemsByTypeAndIds {
212
- static readonly reportId: "GetItemsByTypeAndIds";
213
- readonly reportId: "GetItemsByTypeAndIds";
214
- readonly report: Omit<_GetItemsByTypeAndIds, "tx">;
215
- readonly $res: () => JsonValue[];
216
- constructor(args: Omit<_GetItemsByTypeAndIds, "tx">);
183
+ export declare class ExportEntityTree {
184
+ static readonly reportId: "ExportEntityTree";
185
+ readonly reportId: "ExportEntityTree";
186
+ readonly report: Omit<_ExportEntityTree, "tx">;
187
+ readonly $res: () => EntityTreeExport;
188
+ constructor(args: Omit<_ExportEntityTree, "tx">);
217
189
  }
218
- export declare class GetPersistHealth {
219
- static readonly reportId: "GetPersistHealth";
220
- readonly reportId: "GetPersistHealth";
221
- readonly report: Omit<_GetPersistHealth, "tx">;
222
- readonly $res: () => PersistHealthStatus;
223
- constructor(args: Omit<_GetPersistHealth, "tx">);
190
+ export declare class EventsForTransaction {
191
+ static readonly reportId: "EventsForTransaction";
192
+ readonly reportId: "EventsForTransaction";
193
+ readonly report: Omit<_EventsForTransaction, "tx">;
194
+ readonly $res: () => MEvent[];
195
+ constructor(args: Omit<_EventsForTransaction, "tx">);
224
196
  }
225
197
  export declare class ChildEntities {
226
198
  static readonly reportId: "ChildEntities";
@@ -229,6 +201,27 @@ export declare class ChildEntities {
229
201
  readonly $res: () => ItemStub[];
230
202
  constructor(args: Omit<_ChildEntities, "tx">);
231
203
  }
204
+ export declare class Loggers {
205
+ static readonly reportId: "Loggers";
206
+ readonly reportId: "Loggers";
207
+ readonly report: Omit<_Loggers, "tx">;
208
+ readonly $res: () => string[];
209
+ constructor(args: Omit<_Loggers, "tx">);
210
+ }
211
+ export declare class ChildEntitiesAllTime {
212
+ static readonly reportId: "ChildEntitiesAllTime";
213
+ readonly reportId: "ChildEntitiesAllTime";
214
+ readonly report: Omit<_ChildEntitiesAllTime, "tx">;
215
+ readonly $res: () => ItemStub[];
216
+ constructor(args: Omit<_ChildEntitiesAllTime, "tx">);
217
+ }
218
+ export declare class ServerLogLevel {
219
+ static readonly reportId: "ServerLogLevel";
220
+ readonly reportId: "ServerLogLevel";
221
+ readonly report: Omit<_ServerLogLevel, "tx">;
222
+ readonly $res: () => LogLevel;
223
+ constructor(args: Omit<_ServerLogLevel, "tx">);
224
+ }
232
225
  export declare class PeerAlive {
233
226
  static readonly reportId: "PeerAlive";
234
227
  readonly reportId: "PeerAlive";
@@ -243,6 +236,20 @@ export declare class EntitySnapshotDifference {
243
236
  readonly $res: () => EntitySnapshotDifferenceData;
244
237
  constructor(args: Omit<_EntitySnapshotDifference, "tx">);
245
238
  }
239
+ export declare class GetItemsByTypeAndIds {
240
+ static readonly reportId: "GetItemsByTypeAndIds";
241
+ readonly reportId: "GetItemsByTypeAndIds";
242
+ readonly report: Omit<_GetItemsByTypeAndIds, "tx">;
243
+ readonly $res: () => JsonValue[];
244
+ constructor(args: Omit<_GetItemsByTypeAndIds, "tx">);
245
+ }
246
+ export declare class GetPersistHealth {
247
+ static readonly reportId: "GetPersistHealth";
248
+ readonly reportId: "GetPersistHealth";
249
+ readonly report: Omit<_GetPersistHealth, "tx">;
250
+ readonly $res: () => PersistHealthStatus;
251
+ constructor(args: Omit<_GetPersistHealth, "tx">);
252
+ }
246
253
  export declare class FullChildEntities {
247
254
  static readonly reportId: "FullChildEntities";
248
255
  readonly reportId: "FullChildEntities";
@@ -250,33 +257,19 @@ export declare class FullChildEntities {
250
257
  readonly $res: () => ItemStub[];
251
258
  constructor(args: Omit<_FullChildEntities, "tx">);
252
259
  }
253
- export declare class ChildEntitiesAllTime {
254
- static readonly reportId: "ChildEntitiesAllTime";
255
- readonly reportId: "ChildEntitiesAllTime";
256
- readonly report: Omit<_ChildEntitiesAllTime, "tx">;
257
- readonly $res: () => ItemStub[];
258
- constructor(args: Omit<_ChildEntitiesAllTime, "tx">);
259
- }
260
- export declare class EventsForTransaction {
261
- static readonly reportId: "EventsForTransaction";
262
- readonly reportId: "EventsForTransaction";
263
- readonly report: Omit<_EventsForTransaction, "tx">;
264
- readonly $res: () => MEvent[];
265
- constructor(args: Omit<_EventsForTransaction, "tx">);
266
- }
267
- export declare class ServerLogLevel {
268
- static readonly reportId: "ServerLogLevel";
269
- readonly reportId: "ServerLogLevel";
270
- readonly report: Omit<_ServerLogLevel, "tx">;
271
- readonly $res: () => LogLevel;
272
- constructor(args: Omit<_ServerLogLevel, "tx">);
260
+ export declare class EntitySearch {
261
+ static readonly reportId: "EntitySearch";
262
+ readonly reportId: "EntitySearch";
263
+ readonly report: Omit<_EntitySearch, "tx">;
264
+ readonly $res: () => EntitySearchResult;
265
+ constructor(args: Omit<_EntitySearch, "tx">);
273
266
  }
274
- export declare class Loggers {
275
- static readonly reportId: "Loggers";
276
- readonly reportId: "Loggers";
277
- readonly report: Omit<_Loggers, "tx">;
278
- readonly $res: () => string[];
279
- constructor(args: Omit<_Loggers, "tx">);
267
+ export declare class ClientStatus {
268
+ static readonly reportId: "ClientStatus";
269
+ readonly reportId: "ClientStatus";
270
+ readonly report: Omit<_ClientStatus, "tx">;
271
+ readonly $res: () => ClientStatusOutput;
272
+ constructor(args: Omit<_ClientStatus, "tx">);
280
273
  }
281
274
  export declare class CountClients {
282
275
  static readonly reportId: "CountClients";
@@ -306,40 +299,33 @@ export declare class WindbackStatus {
306
299
  readonly $res: () => WindbackStatusOutput;
307
300
  constructor(args: Omit<_WindbackStatus, "tx">);
308
301
  }
309
- export declare class ClientStatus {
310
- static readonly reportId: "ClientStatus";
311
- readonly reportId: "ClientStatus";
312
- readonly report: Omit<_ClientStatus, "tx">;
313
- readonly $res: () => ClientStatusOutput;
314
- constructor(args: Omit<_ClientStatus, "tx">);
315
- }
316
- export declare class EntitySearch {
317
- static readonly reportId: "EntitySearch";
318
- readonly reportId: "EntitySearch";
319
- readonly report: Omit<_EntitySearch, "tx">;
320
- readonly $res: () => EntitySearchResult;
321
- constructor(args: Omit<_EntitySearch, "tx">);
302
+ export declare class ServerStats {
303
+ static readonly reportId: "ServerStats";
304
+ readonly reportId: "ServerStats";
305
+ readonly report: Omit<_ServerStats, "tx">;
306
+ readonly $res: () => ServerStatsOutput;
307
+ constructor(args: Omit<_ServerStats, "tx">);
322
308
  }
323
- export declare class ExportEntityTree {
324
- static readonly reportId: "ExportEntityTree";
325
- readonly reportId: "ExportEntityTree";
326
- readonly report: Omit<_ExportEntityTree, "tx">;
327
- readonly $res: () => EntityTreeExport;
328
- constructor(args: Omit<_ExportEntityTree, "tx">);
309
+ export declare class CountAllServers {
310
+ static readonly reportId: "CountAllServers";
311
+ readonly reportId: "CountAllServers";
312
+ readonly report: Omit<_CountAllServers, "tx">;
313
+ readonly $res: () => ServerCount;
314
+ constructor(args: Omit<_CountAllServers, "tx">);
329
315
  }
330
- export declare class DeleteServers {
331
- static readonly commandId: "DeleteServers";
332
- readonly commandId: "DeleteServers";
333
- readonly command: Omit<_DeleteServers, "tx" | "createdAt">;
334
- readonly $res: () => DeleteServersResult;
335
- constructor(args: Omit<_DeleteServers, "tx" | "createdAt">);
316
+ export declare class CountServers {
317
+ static readonly reportId: "CountServers";
318
+ readonly reportId: "CountServers";
319
+ readonly report: Omit<_CountServers, "tx">;
320
+ readonly $res: () => ServerCount;
321
+ constructor(args: Omit<_CountServers, "tx">);
336
322
  }
337
- export declare class DeleteServer {
338
- static readonly commandId: "DeleteServer";
339
- readonly commandId: "DeleteServer";
340
- readonly command: Omit<_DeleteServer, "tx" | "createdAt">;
341
- readonly $res: () => DeleteServerResult;
342
- constructor(args: Omit<_DeleteServer, "tx" | "createdAt">);
323
+ export declare class GetServerById {
324
+ static readonly reportId: "GetServerById";
325
+ readonly reportId: "GetServerById";
326
+ readonly report: Omit<_GetServerById, "tx">;
327
+ readonly $res: () => Server | null;
328
+ constructor(args: Omit<_GetServerById, "tx">);
343
329
  }
344
330
  export declare class ImportItems {
345
331
  static readonly commandId: "ImportItems";
@@ -383,39 +369,53 @@ export declare class ClearClientWindbackTime {
383
369
  readonly $res: () => boolean;
384
370
  constructor(args: Omit<_ClearClientWindbackTime, "tx" | "createdAt">);
385
371
  }
372
+ export declare class DeleteServer {
373
+ static readonly commandId: "DeleteServer";
374
+ readonly commandId: "DeleteServer";
375
+ readonly command: Omit<_DeleteServer, "tx" | "createdAt">;
376
+ readonly $res: () => DeleteServerResult;
377
+ constructor(args: Omit<_DeleteServer, "tx" | "createdAt">);
378
+ }
379
+ export declare class DeleteServers {
380
+ static readonly commandId: "DeleteServers";
381
+ readonly commandId: "DeleteServers";
382
+ readonly command: Omit<_DeleteServers, "tx" | "createdAt">;
383
+ readonly $res: () => DeleteServersResult;
384
+ constructor(args: Omit<_DeleteServers, "tx" | "createdAt">);
385
+ }
386
386
  export declare const items: {
387
- Server: (args: Server) => {
388
- item: Server;
389
- itemType: string;
390
- };
391
387
  Client: (args: Client) => {
392
388
  item: Client;
393
389
  itemType: string;
394
390
  };
391
+ Server: (args: Server) => {
392
+ item: Server;
393
+ itemType: string;
394
+ };
395
395
  };
396
396
  export declare const MykoEvent: {
397
- readonly ViewResponse: "ws:m:view-response";
397
+ readonly ReportError: "ws:m:report-error";
398
+ readonly EventBatch: "ws:m:event-batch";
399
+ readonly View: "ws:m:view";
400
+ readonly Query: "ws:m:query";
401
+ readonly QueryError: "ws:m:query-error";
402
+ readonly QueryCancel: "ws:m:query-cancel";
398
403
  readonly ViewCancel: "ws:m:view-cancel";
399
404
  readonly ViewError: "ws:m:view-error";
400
- readonly Report: "ws:m:report";
401
- readonly CommandError: "ws:m:command-error";
402
- readonly CommandResponse: "ws:m:command-response";
403
- readonly Benchmark: "ws:m:benchmark";
404
405
  readonly Command: "ws:m:command";
405
- readonly QueryError: "ws:m:query-error";
406
- readonly Ping: "ws:m:ping";
407
- readonly QueryCancel: "ws:m:query-cancel";
408
- readonly ReportCancel: "ws:m:report-cancel";
409
- readonly QueryWindow: "ws:m:query-window";
410
- readonly Query: "ws:m:query";
411
- readonly ReportError: "ws:m:report-error";
412
406
  readonly ReportResponse: "ws:m:report-response";
413
- readonly View: "ws:m:view";
414
- readonly EventBatch: "ws:m:event-batch";
415
- readonly ViewWindow: "ws:m:view-window";
407
+ readonly QueryWindow: "ws:m:query-window";
408
+ readonly Ping: "ws:m:ping";
416
409
  readonly ProtocolSwitch: "ws:m:protocol-switch";
410
+ readonly Report: "ws:m:report";
411
+ readonly ViewWindow: "ws:m:view-window";
417
412
  readonly QueryResponse: "ws:m:query-response";
413
+ readonly CommandResponse: "ws:m:command-response";
418
414
  readonly Event: "ws:m:event";
415
+ readonly CommandError: "ws:m:command-error";
416
+ readonly Benchmark: "ws:m:benchmark";
417
+ readonly ReportCancel: "ws:m:report-cancel";
418
+ readonly ViewResponse: "ws:m:view-response";
419
419
  };
420
420
  export type MykoEventType = typeof MykoEvent[keyof typeof MykoEvent];
421
421
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/generated/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/generated/index.ts"],"names":[],"mappings":"AAGA,8EAA8E;AAC9E,MAAM,MAAM,EAAE,GAAG,MAAM,CAAC;AAGxB,YAAY,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,YAAY,EAAE,2BAA2B,EAAE,MAAM,+BAA+B,CAAC;AACjF,YAAY,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AACvC,YAAY,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,YAAY,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAC3C,YAAY,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,YAAY,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACnD,YAAY,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,YAAY,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,YAAY,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,YAAY,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,YAAY,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AACjE,YAAY,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,YAAY,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,YAAY,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,YAAY,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AACjE,YAAY,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,YAAY,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AACnF,YAAY,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,YAAY,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACvD,YAAY,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACnD,YAAY,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACvD,YAAY,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,YAAY,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAC3C,YAAY,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAC3C,YAAY,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AACvC,YAAY,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,YAAY,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,YAAY,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AACrD,YAAY,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AACrD,YAAY,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AACjE,YAAY,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAC3C,YAAY,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,YAAY,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,YAAY,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,YAAY,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,YAAY,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACvD,cAAc,wBAAwB,CAAC;AACvC,YAAY,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AACvC,YAAY,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,YAAY,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAC3C,YAAY,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,YAAY,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AAC7E,YAAY,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,YAAY,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,YAAY,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,YAAY,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AACnE,YAAY,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACvD,YAAY,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,YAAY,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACnD,YAAY,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AACrD,YAAY,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAGjD,OAAO,KAAK,EAAE,aAAa,IAAI,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,KAAK,EAAE,oBAAoB,IAAI,qBAAqB,EAAE,MAAM,wBAAwB,CAAC;AAC5F,OAAO,KAAK,EAAE,uBAAuB,IAAI,wBAAwB,EAAE,MAAM,2BAA2B,CAAC;AACrG,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AACvC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,KAAK,EAAE,YAAY,IAAI,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,KAAK,EAAE,eAAe,IAAI,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAC7E,OAAO,KAAK,EAAE,eAAe,IAAI,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAC7E,OAAO,KAAK,EAAE,YAAY,IAAI,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpE,OAAO,KAAK,EAAE,YAAY,IAAI,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpE,OAAO,KAAK,EAAE,YAAY,IAAI,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,KAAK,EAAE,aAAa,IAAI,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,KAAK,EAAE,YAAY,IAAI,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,KAAK,EAAE,aAAa,IAAI,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,KAAK,EAAE,YAAY,IAAI,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,KAAK,EAAE,wBAAwB,IAAI,yBAAyB,EAAE,MAAM,4BAA4B,CAAC;AACxG,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AACnF,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,KAAK,EAAE,oBAAoB,IAAI,qBAAqB,EAAE,MAAM,wBAAwB,CAAC;AAC5F,OAAO,KAAK,EAAE,gBAAgB,IAAI,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAChF,OAAO,KAAK,EAAE,iBAAiB,IAAI,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AACnF,OAAO,KAAK,EAAE,aAAa,IAAI,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,KAAK,EAAE,aAAa,IAAI,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,KAAK,EAAE,aAAa,IAAI,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,KAAK,EAAE,eAAe,IAAI,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAC7E,OAAO,KAAK,EAAE,iBAAiB,IAAI,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AACnF,OAAO,KAAK,EAAE,kBAAkB,IAAI,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AACtF,OAAO,KAAK,EAAE,oBAAoB,IAAI,qBAAqB,EAAE,MAAM,wBAAwB,CAAC;AAC5F,OAAO,KAAK,EAAE,cAAc,IAAI,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAC1E,OAAO,KAAK,EAAE,gBAAgB,IAAI,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAChF,OAAO,KAAK,EAAE,aAAa,IAAI,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,KAAK,EAAE,eAAe,IAAI,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAC7E,OAAO,KAAK,EAAE,iBAAiB,IAAI,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AACnF,OAAO,KAAK,EAAE,WAAW,IAAI,YAAY,EAAE,MAAM,eAAe,CAAC;AACjE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAC3C,OAAO,KAAK,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAC3C,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AACvC,OAAO,KAAK,EAAE,SAAS,IAAI,UAAU,EAAE,MAAM,aAAa,CAAC;AAC3D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AACvC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,KAAK,EAAE,cAAc,IAAI,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAC1E,OAAO,KAAK,EAAE,WAAW,IAAI,YAAY,EAAE,MAAM,eAAe,CAAC;AACjE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,KAAK,EAAE,qBAAqB,IAAI,sBAAsB,EAAE,MAAM,yBAAyB,CAAC;AAC/F,OAAO,KAAK,EAAE,WAAW,IAAI,YAAY,EAAE,MAAM,eAAe,CAAC;AACjE,OAAO,KAAK,EAAE,cAAc,IAAI,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAC1E,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAGnE,qBAAa,iBAAiB;IAC5B,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAG,mBAAmB,CAAU;IACvD,MAAM,CAAC,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAClD,QAAQ,CAAC,OAAO,EAAG,mBAAmB,CAAU;IAChD,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAC3C,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,kBAAkB,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IAC7D,SAAiB,IAAI,EAAE,MAAM,MAAM,EAAE,CAAC;gBAE1B,IAAI,EAAE,IAAI,CAAC,kBAAkB,EAAE,IAAI,GAAG,WAAW,CAAC;CAG/D;AAED,qBAAa,aAAa;IACxB,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAG,eAAe,CAAU;IACnD,MAAM,CAAC,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAClD,QAAQ,CAAC,OAAO,EAAG,eAAe,CAAU;IAC5C,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAC3C,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IACzD,SAAiB,IAAI,EAAE,MAAM,MAAM,EAAE,CAAC;gBAE1B,IAAI,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,GAAG,WAAW,CAAC;CAG3D;AAED,qBAAa,eAAe;IAC1B,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAG,iBAAiB,CAAU;IACrD,MAAM,CAAC,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAClD,QAAQ,CAAC,OAAO,EAAG,iBAAiB,CAAU;IAC9C,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAC3C,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,gBAAgB,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IAC3D,SAAiB,IAAI,EAAE,MAAM,MAAM,EAAE,CAAC;gBAE1B,IAAI,EAAE,IAAI,CAAC,gBAAgB,EAAE,IAAI,GAAG,WAAW,CAAC;CAG7D;AAED,qBAAa,eAAe;IAC1B,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAG,iBAAiB,CAAU;IACrD,MAAM,CAAC,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAClD,QAAQ,CAAC,OAAO,EAAG,iBAAiB,CAAU;IAC9C,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAC3C,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,gBAAgB,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IAC3D,SAAiB,IAAI,EAAE,MAAM,MAAM,EAAE,CAAC;gBAE1B,IAAI,EAAE,IAAI,CAAC,gBAAgB,EAAE,IAAI,GAAG,WAAW,CAAC;CAG7D;AAED,qBAAa,aAAa;IACxB,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAG,eAAe,CAAU;IACnD,MAAM,CAAC,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAClD,QAAQ,CAAC,OAAO,EAAG,eAAe,CAAU;IAC5C,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAC3C,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IACzD,SAAiB,IAAI,EAAE,MAAM,MAAM,EAAE,CAAC;gBAE1B,IAAI,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,GAAG,WAAW,CAAC;CAG3D;AAED,qBAAa,iBAAiB;IAC5B,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAG,mBAAmB,CAAU;IACvD,MAAM,CAAC,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAClD,QAAQ,CAAC,OAAO,EAAG,mBAAmB,CAAU;IAChD,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAC3C,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,kBAAkB,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IAC7D,SAAiB,IAAI,EAAE,MAAM,MAAM,EAAE,CAAC;gBAE1B,IAAI,EAAE,IAAI,CAAC,kBAAkB,EAAE,IAAI,GAAG,WAAW,CAAC;CAG/D;AAED,qBAAa,kBAAkB;IAC7B,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAG,oBAAoB,CAAU;IACxD,MAAM,CAAC,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAClD,QAAQ,CAAC,OAAO,EAAG,oBAAoB,CAAU;IACjD,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAC3C,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,mBAAmB,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IAC9D,SAAiB,IAAI,EAAE,MAAM,MAAM,EAAE,CAAC;gBAE1B,IAAI,EAAE,IAAI,CAAC,mBAAmB,EAAE,IAAI,GAAG,WAAW,CAAC;CAGhE;AAED,qBAAa,cAAc;IACzB,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAG,gBAAgB,CAAU;IACpD,MAAM,CAAC,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAClD,QAAQ,CAAC,OAAO,EAAG,gBAAgB,CAAU;IAC7C,QAAQ,CAAC,aAAa,EAAG,QAAQ,CAAU;IAC3C,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,eAAe,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IAC1D,SAAiB,IAAI,EAAE,MAAM,MAAM,EAAE,CAAC;gBAE1B,IAAI,EAAE,IAAI,CAAC,eAAe,EAAE,IAAI,GAAG,WAAW,CAAC;CAG5D;AAKD,qBAAa,gBAAgB;IAC3B,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,kBAAkB,CAAU;IACvD,QAAQ,CAAC,QAAQ,EAAG,kBAAkB,CAAU;IAChD,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,iBAAiB,EAAE,IAAI,CAAC,CAAC;IAC/C,SAAiB,IAAI,EAAE,MAAM,gBAAgB,CAAC;gBAElC,IAAI,EAAE,IAAI,CAAC,iBAAiB,EAAE,IAAI,CAAC;CAGhD;AAED,qBAAa,oBAAoB;IAC/B,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,sBAAsB,CAAU;IAC3D,QAAQ,CAAC,QAAQ,EAAG,sBAAsB,CAAU;IACpD,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,qBAAqB,EAAE,IAAI,CAAC,CAAC;IACnD,SAAiB,IAAI,EAAE,MAAM,MAAM,EAAE,CAAC;gBAE1B,IAAI,EAAE,IAAI,CAAC,qBAAqB,EAAE,IAAI,CAAC;CAGpD;AAED,qBAAa,aAAa;IACxB,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,eAAe,CAAU;IACpD,QAAQ,CAAC,QAAQ,EAAG,eAAe,CAAU;IAC7C,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5C,SAAiB,IAAI,EAAE,MAAM,QAAQ,EAAE,CAAC;gBAE5B,IAAI,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC;CAG7C;AAED,qBAAa,OAAO;IAClB,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,SAAS,CAAU;IAC9C,QAAQ,CAAC,QAAQ,EAAG,SAAS,CAAU;IACvC,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;IACtC,SAAiB,IAAI,EAAE,MAAM,MAAM,EAAE,CAAC;gBAE1B,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC;CAGvC;AAED,qBAAa,oBAAoB;IAC/B,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,sBAAsB,CAAU;IAC3D,QAAQ,CAAC,QAAQ,EAAG,sBAAsB,CAAU;IACpD,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,qBAAqB,EAAE,IAAI,CAAC,CAAC;IACnD,SAAiB,IAAI,EAAE,MAAM,QAAQ,EAAE,CAAC;gBAE5B,IAAI,EAAE,IAAI,CAAC,qBAAqB,EAAE,IAAI,CAAC;CAGpD;AAED,qBAAa,cAAc;IACzB,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,gBAAgB,CAAU;IACrD,QAAQ,CAAC,QAAQ,EAAG,gBAAgB,CAAU;IAC9C,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;IAC7C,SAAiB,IAAI,EAAE,MAAM,QAAQ,CAAC;gBAE1B,IAAI,EAAE,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC;CAG9C;AAED,qBAAa,SAAS;IACpB,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,WAAW,CAAU;IAChD,QAAQ,CAAC,QAAQ,EAAG,WAAW,CAAU;IACzC,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,CAAC;IACxC,SAAiB,IAAI,EAAE,MAAM,MAAM,CAAC;gBAExB,IAAI,EAAE,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC;CAGzC;AAED,qBAAa,wBAAwB;IACnC,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,0BAA0B,CAAU;IAC/D,QAAQ,CAAC,QAAQ,EAAG,0BAA0B,CAAU;IACxD,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,yBAAyB,EAAE,IAAI,CAAC,CAAC;IACvD,SAAiB,IAAI,EAAE,MAAM,4BAA4B,CAAC;gBAE9C,IAAI,EAAE,IAAI,CAAC,yBAAyB,EAAE,IAAI,CAAC;CAGxD;AAED,qBAAa,oBAAoB;IAC/B,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,sBAAsB,CAAU;IAC3D,QAAQ,CAAC,QAAQ,EAAG,sBAAsB,CAAU;IACpD,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,qBAAqB,EAAE,IAAI,CAAC,CAAC;IACnD,SAAiB,IAAI,EAAE,MAAM,SAAS,EAAE,CAAC;gBAE7B,IAAI,EAAE,IAAI,CAAC,qBAAqB,EAAE,IAAI,CAAC;CAGpD;AAED,qBAAa,gBAAgB;IAC3B,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,kBAAkB,CAAU;IACvD,QAAQ,CAAC,QAAQ,EAAG,kBAAkB,CAAU;IAChD,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,iBAAiB,EAAE,IAAI,CAAC,CAAC;IAC/C,SAAiB,IAAI,EAAE,MAAM,mBAAmB,CAAC;gBAErC,IAAI,EAAE,IAAI,CAAC,iBAAiB,EAAE,IAAI,CAAC;CAGhD;AAED,qBAAa,iBAAiB;IAC5B,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,mBAAmB,CAAU;IACxD,QAAQ,CAAC,QAAQ,EAAG,mBAAmB,CAAU;IACjD,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,kBAAkB,EAAE,IAAI,CAAC,CAAC;IAChD,SAAiB,IAAI,EAAE,MAAM,QAAQ,EAAE,CAAC;gBAE5B,IAAI,EAAE,IAAI,CAAC,kBAAkB,EAAE,IAAI,CAAC;CAGjD;AAED,qBAAa,YAAY;IACvB,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,cAAc,CAAU;IACnD,QAAQ,CAAC,QAAQ,EAAG,cAAc,CAAU;IAC5C,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;IAC3C,SAAiB,IAAI,EAAE,MAAM,kBAAkB,CAAC;gBAEpC,IAAI,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC;CAG5C;AAED,qBAAa,YAAY;IACvB,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,cAAc,CAAU;IACnD,QAAQ,CAAC,QAAQ,EAAG,cAAc,CAAU;IAC5C,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;IAC3C,SAAiB,IAAI,EAAE,MAAM,kBAAkB,CAAC;gBAEpC,IAAI,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC;CAG5C;AAED,qBAAa,YAAY;IACvB,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,cAAc,CAAU;IACnD,QAAQ,CAAC,QAAQ,EAAG,cAAc,CAAU;IAC5C,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;IAC3C,SAAiB,IAAI,EAAE,MAAM,WAAW,CAAC;gBAE7B,IAAI,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC;CAG5C;AAED,qBAAa,eAAe;IAC1B,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,iBAAiB,CAAU;IACtD,QAAQ,CAAC,QAAQ,EAAG,iBAAiB,CAAU;IAC/C,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC,CAAC;IAC9C,SAAiB,IAAI,EAAE,MAAM,WAAW,CAAC;gBAE7B,IAAI,EAAE,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC;CAG/C;AAED,qBAAa,aAAa;IACxB,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,eAAe,CAAU;IACpD,QAAQ,CAAC,QAAQ,EAAG,eAAe,CAAU;IAC7C,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5C,SAAiB,IAAI,EAAE,MAAM,MAAM,GAAG,IAAI,CAAC;gBAE/B,IAAI,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC;CAG7C;AAED,qBAAa,cAAc;IACzB,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,gBAAgB,CAAU;IACrD,QAAQ,CAAC,QAAQ,EAAG,gBAAgB,CAAU;IAC9C,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;IAC7C,SAAiB,IAAI,EAAE,MAAM,oBAAoB,CAAC;gBAEtC,IAAI,EAAE,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC;CAG9C;AAED,qBAAa,WAAW;IACtB,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,aAAa,CAAU;IAClD,QAAQ,CAAC,QAAQ,EAAG,aAAa,CAAU;IAC3C,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;IAC1C,SAAiB,IAAI,EAAE,MAAM,iBAAiB,CAAC;gBAEnC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC;CAG3C;AAED,qBAAa,eAAe;IAC1B,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,iBAAiB,CAAU;IACtD,QAAQ,CAAC,QAAQ,EAAG,iBAAiB,CAAU;IAC/C,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC,CAAC;IAC9C,SAAiB,IAAI,EAAE,MAAM,WAAW,CAAC;gBAE7B,IAAI,EAAE,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC;CAG/C;AAED,qBAAa,YAAY;IACvB,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,cAAc,CAAU;IACnD,QAAQ,CAAC,QAAQ,EAAG,cAAc,CAAU;IAC5C,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;IAC3C,SAAiB,IAAI,EAAE,MAAM,WAAW,CAAC;gBAE7B,IAAI,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC;CAG5C;AAED,qBAAa,aAAa;IACxB,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,eAAe,CAAU;IACpD,QAAQ,CAAC,QAAQ,EAAG,eAAe,CAAU;IAC7C,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5C,SAAiB,IAAI,EAAE,MAAM,MAAM,GAAG,IAAI,CAAC;gBAE/B,IAAI,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC;CAG7C;AAGD,qBAAa,WAAW;IACtB,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAG,aAAa,CAAU;IACnD,QAAQ,CAAC,SAAS,EAAG,aAAa,CAAU;IAC5C,QAAQ,CAAC,OAAO,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IACzD,SAAiB,IAAI,EAAE,MAAM,MAAM,CAAC;gBAExB,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,GAAG,WAAW,CAAC;CAGzD;AAED,qBAAa,WAAW;IACtB,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAG,aAAa,CAAU;IACnD,QAAQ,CAAC,SAAS,EAAG,aAAa,CAAU;IAC5C,QAAQ,CAAC,OAAO,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IACzD,SAAiB,IAAI,EAAE,MAAM,OAAO,CAAC;gBAEzB,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,GAAG,WAAW,CAAC;CAGzD;AAED,qBAAa,aAAa;IACxB,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAG,eAAe,CAAU;IACrD,QAAQ,CAAC,SAAS,EAAG,eAAe,CAAU;IAC9C,QAAQ,CAAC,OAAO,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IAC3D,SAAiB,IAAI,EAAE,MAAM,mBAAmB,CAAC;gBAErC,IAAI,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,GAAG,WAAW,CAAC;CAG3D;AAED,qBAAa,qBAAqB;IAChC,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAG,uBAAuB,CAAU;IAC7D,QAAQ,CAAC,SAAS,EAAG,uBAAuB,CAAU;IACtD,QAAQ,CAAC,OAAO,EAAE,IAAI,CAAC,sBAAsB,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IACnE,SAAiB,IAAI,EAAE,MAAM,OAAO,CAAC;gBAEzB,IAAI,EAAE,IAAI,CAAC,sBAAsB,EAAE,IAAI,GAAG,WAAW,CAAC;CAGnE;AAED,qBAAa,YAAY;IACvB,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAG,cAAc,CAAU;IACpD,QAAQ,CAAC,SAAS,EAAG,cAAc,CAAU;IAC7C,QAAQ,CAAC,OAAO,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IAC1D,SAAiB,IAAI,EAAE,MAAM,kBAAkB,CAAC;gBAEpC,IAAI,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,GAAG,WAAW,CAAC;CAG1D;AAED,qBAAa,uBAAuB;IAClC,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAG,yBAAyB,CAAU;IAC/D,QAAQ,CAAC,SAAS,EAAG,yBAAyB,CAAU;IACxD,QAAQ,CAAC,OAAO,EAAE,IAAI,CAAC,wBAAwB,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IACrE,SAAiB,IAAI,EAAE,MAAM,OAAO,CAAC;gBAEzB,IAAI,EAAE,IAAI,CAAC,wBAAwB,EAAE,IAAI,GAAG,WAAW,CAAC;CAGrE;AAED,qBAAa,YAAY;IACvB,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAG,cAAc,CAAU;IACpD,QAAQ,CAAC,SAAS,EAAG,cAAc,CAAU;IAC7C,QAAQ,CAAC,OAAO,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IAC1D,SAAiB,IAAI,EAAE,MAAM,kBAAkB,CAAC;gBAEpC,IAAI,EAAE,IAAI,CAAC,aAAa,EAAE,IAAI,GAAG,WAAW,CAAC;CAG1D;AAED,qBAAa,aAAa;IACxB,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAG,eAAe,CAAU;IACrD,QAAQ,CAAC,SAAS,EAAG,eAAe,CAAU;IAC9C,QAAQ,CAAC,OAAO,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,GAAG,WAAW,CAAC,CAAC;IAC3D,SAAiB,IAAI,EAAE,MAAM,mBAAmB,CAAC;gBAErC,IAAI,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,GAAG,WAAW,CAAC;CAG3D;AAGD,eAAO,MAAM,KAAK;mBACD,MAAM;;;;mBACN,MAAM;;;;CACtB,CAAC;AAGF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;CAuBZ,CAAC;AACX,MAAM,MAAM,aAAa,GAAG,OAAO,SAAS,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC"}
@@ -1,81 +1,81 @@
1
1
  // Auto-generated by type_gen - do not edit manually
2
2
  export * from "./serde_json/JsonValue";
3
3
  // Query classes
4
- export class GetServersByIds {
5
- static queryId = "GetServersByIds";
6
- static queryItemType = "Server";
7
- queryId = "GetServersByIds";
8
- queryItemType = "Server";
4
+ export class GetClientsByQuery {
5
+ static queryId = "GetClientsByQuery";
6
+ static queryItemType = "Client";
7
+ queryId = "GetClientsByQuery";
8
+ queryItemType = "Client";
9
9
  query;
10
10
  constructor(args) {
11
11
  this.query = args;
12
12
  }
13
13
  }
14
- export class GetServersByQuery {
15
- static queryId = "GetServersByQuery";
16
- static queryItemType = "Server";
17
- queryId = "GetServersByQuery";
18
- queryItemType = "Server";
14
+ export class GetAllClients {
15
+ static queryId = "GetAllClients";
16
+ static queryItemType = "Client";
17
+ queryId = "GetAllClients";
18
+ queryItemType = "Client";
19
19
  query;
20
20
  constructor(args) {
21
21
  this.query = args;
22
22
  }
23
23
  }
24
- export class GetAllServers {
25
- static queryId = "GetAllServers";
26
- static queryItemType = "Server";
27
- queryId = "GetAllServers";
28
- queryItemType = "Server";
24
+ export class GetClientsByIds {
25
+ static queryId = "GetClientsByIds";
26
+ static queryItemType = "Client";
27
+ queryId = "GetClientsByIds";
28
+ queryItemType = "Client";
29
29
  query;
30
30
  constructor(args) {
31
31
  this.query = args;
32
32
  }
33
33
  }
34
- export class GetConnectedServer {
35
- static queryId = "GetConnectedServer";
34
+ export class GetServersByIds {
35
+ static queryId = "GetServersByIds";
36
36
  static queryItemType = "Server";
37
- queryId = "GetConnectedServer";
37
+ queryId = "GetServersByIds";
38
38
  queryItemType = "Server";
39
39
  query;
40
40
  constructor(args) {
41
41
  this.query = args;
42
42
  }
43
43
  }
44
- export class GetPeerServers {
45
- static queryId = "GetPeerServers";
44
+ export class GetAllServers {
45
+ static queryId = "GetAllServers";
46
46
  static queryItemType = "Server";
47
- queryId = "GetPeerServers";
47
+ queryId = "GetAllServers";
48
48
  queryItemType = "Server";
49
49
  query;
50
50
  constructor(args) {
51
51
  this.query = args;
52
52
  }
53
53
  }
54
- export class GetClientsByQuery {
55
- static queryId = "GetClientsByQuery";
56
- static queryItemType = "Client";
57
- queryId = "GetClientsByQuery";
58
- queryItemType = "Client";
54
+ export class GetServersByQuery {
55
+ static queryId = "GetServersByQuery";
56
+ static queryItemType = "Server";
57
+ queryId = "GetServersByQuery";
58
+ queryItemType = "Server";
59
59
  query;
60
60
  constructor(args) {
61
61
  this.query = args;
62
62
  }
63
63
  }
64
- export class GetAllClients {
65
- static queryId = "GetAllClients";
66
- static queryItemType = "Client";
67
- queryId = "GetAllClients";
68
- queryItemType = "Client";
64
+ export class GetConnectedServer {
65
+ static queryId = "GetConnectedServer";
66
+ static queryItemType = "Server";
67
+ queryId = "GetConnectedServer";
68
+ queryItemType = "Server";
69
69
  query;
70
70
  constructor(args) {
71
71
  this.query = args;
72
72
  }
73
73
  }
74
- export class GetClientsByIds {
75
- static queryId = "GetClientsByIds";
76
- static queryItemType = "Client";
77
- queryId = "GetClientsByIds";
78
- queryItemType = "Client";
74
+ export class GetPeerServers {
75
+ static queryId = "GetPeerServers";
76
+ static queryItemType = "Server";
77
+ queryId = "GetPeerServers";
78
+ queryItemType = "Server";
79
79
  query;
80
80
  constructor(args) {
81
81
  this.query = args;
@@ -83,57 +83,49 @@ export class GetClientsByIds {
83
83
  }
84
84
  // View classes
85
85
  // Report classes
86
- export class GetServerById {
87
- static reportId = "GetServerById";
88
- reportId = "GetServerById";
89
- report;
90
- constructor(args) {
91
- this.report = args;
92
- }
93
- }
94
- export class ServerStats {
95
- static reportId = "ServerStats";
96
- reportId = "ServerStats";
86
+ export class ExportEntityTree {
87
+ static reportId = "ExportEntityTree";
88
+ reportId = "ExportEntityTree";
97
89
  report;
98
90
  constructor(args) {
99
91
  this.report = args;
100
92
  }
101
93
  }
102
- export class CountAllServers {
103
- static reportId = "CountAllServers";
104
- reportId = "CountAllServers";
94
+ export class EventsForTransaction {
95
+ static reportId = "EventsForTransaction";
96
+ reportId = "EventsForTransaction";
105
97
  report;
106
98
  constructor(args) {
107
99
  this.report = args;
108
100
  }
109
101
  }
110
- export class CountServers {
111
- static reportId = "CountServers";
112
- reportId = "CountServers";
102
+ export class ChildEntities {
103
+ static reportId = "ChildEntities";
104
+ reportId = "ChildEntities";
113
105
  report;
114
106
  constructor(args) {
115
107
  this.report = args;
116
108
  }
117
109
  }
118
- export class GetItemsByTypeAndIds {
119
- static reportId = "GetItemsByTypeAndIds";
120
- reportId = "GetItemsByTypeAndIds";
110
+ export class Loggers {
111
+ static reportId = "Loggers";
112
+ reportId = "Loggers";
121
113
  report;
122
114
  constructor(args) {
123
115
  this.report = args;
124
116
  }
125
117
  }
126
- export class GetPersistHealth {
127
- static reportId = "GetPersistHealth";
128
- reportId = "GetPersistHealth";
118
+ export class ChildEntitiesAllTime {
119
+ static reportId = "ChildEntitiesAllTime";
120
+ reportId = "ChildEntitiesAllTime";
129
121
  report;
130
122
  constructor(args) {
131
123
  this.report = args;
132
124
  }
133
125
  }
134
- export class ChildEntities {
135
- static reportId = "ChildEntities";
136
- reportId = "ChildEntities";
126
+ export class ServerLogLevel {
127
+ static reportId = "ServerLogLevel";
128
+ reportId = "ServerLogLevel";
137
129
  report;
138
130
  constructor(args) {
139
131
  this.report = args;
@@ -155,41 +147,41 @@ export class EntitySnapshotDifference {
155
147
  this.report = args;
156
148
  }
157
149
  }
158
- export class FullChildEntities {
159
- static reportId = "FullChildEntities";
160
- reportId = "FullChildEntities";
150
+ export class GetItemsByTypeAndIds {
151
+ static reportId = "GetItemsByTypeAndIds";
152
+ reportId = "GetItemsByTypeAndIds";
161
153
  report;
162
154
  constructor(args) {
163
155
  this.report = args;
164
156
  }
165
157
  }
166
- export class ChildEntitiesAllTime {
167
- static reportId = "ChildEntitiesAllTime";
168
- reportId = "ChildEntitiesAllTime";
158
+ export class GetPersistHealth {
159
+ static reportId = "GetPersistHealth";
160
+ reportId = "GetPersistHealth";
169
161
  report;
170
162
  constructor(args) {
171
163
  this.report = args;
172
164
  }
173
165
  }
174
- export class EventsForTransaction {
175
- static reportId = "EventsForTransaction";
176
- reportId = "EventsForTransaction";
166
+ export class FullChildEntities {
167
+ static reportId = "FullChildEntities";
168
+ reportId = "FullChildEntities";
177
169
  report;
178
170
  constructor(args) {
179
171
  this.report = args;
180
172
  }
181
173
  }
182
- export class ServerLogLevel {
183
- static reportId = "ServerLogLevel";
184
- reportId = "ServerLogLevel";
174
+ export class EntitySearch {
175
+ static reportId = "EntitySearch";
176
+ reportId = "EntitySearch";
185
177
  report;
186
178
  constructor(args) {
187
179
  this.report = args;
188
180
  }
189
181
  }
190
- export class Loggers {
191
- static reportId = "Loggers";
192
- reportId = "Loggers";
182
+ export class ClientStatus {
183
+ static reportId = "ClientStatus";
184
+ reportId = "ClientStatus";
193
185
  report;
194
186
  constructor(args) {
195
187
  this.report = args;
@@ -227,47 +219,39 @@ export class WindbackStatus {
227
219
  this.report = args;
228
220
  }
229
221
  }
230
- export class ClientStatus {
231
- static reportId = "ClientStatus";
232
- reportId = "ClientStatus";
222
+ export class ServerStats {
223
+ static reportId = "ServerStats";
224
+ reportId = "ServerStats";
233
225
  report;
234
226
  constructor(args) {
235
227
  this.report = args;
236
228
  }
237
229
  }
238
- export class EntitySearch {
239
- static reportId = "EntitySearch";
240
- reportId = "EntitySearch";
230
+ export class CountAllServers {
231
+ static reportId = "CountAllServers";
232
+ reportId = "CountAllServers";
241
233
  report;
242
234
  constructor(args) {
243
235
  this.report = args;
244
236
  }
245
237
  }
246
- export class ExportEntityTree {
247
- static reportId = "ExportEntityTree";
248
- reportId = "ExportEntityTree";
238
+ export class CountServers {
239
+ static reportId = "CountServers";
240
+ reportId = "CountServers";
249
241
  report;
250
242
  constructor(args) {
251
243
  this.report = args;
252
244
  }
253
245
  }
254
- // Command classes
255
- export class DeleteServers {
256
- static commandId = "DeleteServers";
257
- commandId = "DeleteServers";
258
- command;
259
- constructor(args) {
260
- this.command = args;
261
- }
262
- }
263
- export class DeleteServer {
264
- static commandId = "DeleteServer";
265
- commandId = "DeleteServer";
266
- command;
246
+ export class GetServerById {
247
+ static reportId = "GetServerById";
248
+ reportId = "GetServerById";
249
+ report;
267
250
  constructor(args) {
268
- this.command = args;
251
+ this.report = args;
269
252
  }
270
253
  }
254
+ // Command classes
271
255
  export class ImportItems {
272
256
  static commandId = "ImportItems";
273
257
  commandId = "ImportItems";
@@ -316,34 +300,50 @@ export class ClearClientWindbackTime {
316
300
  this.command = args;
317
301
  }
318
302
  }
303
+ export class DeleteServer {
304
+ static commandId = "DeleteServer";
305
+ commandId = "DeleteServer";
306
+ command;
307
+ constructor(args) {
308
+ this.command = args;
309
+ }
310
+ }
311
+ export class DeleteServers {
312
+ static commandId = "DeleteServers";
313
+ commandId = "DeleteServers";
314
+ command;
315
+ constructor(args) {
316
+ this.command = args;
317
+ }
318
+ }
319
319
  // Item constructors
320
320
  export const items = {
321
- Server: (args) => ({ item: args, itemType: "Server" }),
322
321
  Client: (args) => ({ item: args, itemType: "Client" }),
322
+ Server: (args) => ({ item: args, itemType: "Server" }),
323
323
  };
324
324
  // Message events
325
325
  export const MykoEvent = {
326
- ViewResponse: "ws:m:view-response",
326
+ ReportError: "ws:m:report-error",
327
+ EventBatch: "ws:m:event-batch",
328
+ View: "ws:m:view",
329
+ Query: "ws:m:query",
330
+ QueryError: "ws:m:query-error",
331
+ QueryCancel: "ws:m:query-cancel",
327
332
  ViewCancel: "ws:m:view-cancel",
328
333
  ViewError: "ws:m:view-error",
329
- Report: "ws:m:report",
330
- CommandError: "ws:m:command-error",
331
- CommandResponse: "ws:m:command-response",
332
- Benchmark: "ws:m:benchmark",
333
334
  Command: "ws:m:command",
334
- QueryError: "ws:m:query-error",
335
- Ping: "ws:m:ping",
336
- QueryCancel: "ws:m:query-cancel",
337
- ReportCancel: "ws:m:report-cancel",
338
- QueryWindow: "ws:m:query-window",
339
- Query: "ws:m:query",
340
- ReportError: "ws:m:report-error",
341
335
  ReportResponse: "ws:m:report-response",
342
- View: "ws:m:view",
343
- EventBatch: "ws:m:event-batch",
344
- ViewWindow: "ws:m:view-window",
336
+ QueryWindow: "ws:m:query-window",
337
+ Ping: "ws:m:ping",
345
338
  ProtocolSwitch: "ws:m:protocol-switch",
339
+ Report: "ws:m:report",
340
+ ViewWindow: "ws:m:view-window",
346
341
  QueryResponse: "ws:m:query-response",
342
+ CommandResponse: "ws:m:command-response",
347
343
  Event: "ws:m:event",
344
+ CommandError: "ws:m:command-error",
345
+ Benchmark: "ws:m:benchmark",
346
+ ReportCancel: "ws:m:report-cancel",
347
+ ViewResponse: "ws:m:view-response",
348
348
  };
349
349
  // Shared constants
package/package.json CHANGED
@@ -43,5 +43,5 @@
43
43
  },
44
44
  "type": "module",
45
45
  "types": "./dist/index.d.ts",
46
- "version": "4.4.2"
46
+ "version": "4.4.3"
47
47
  }