@observa/sdk 2.4.0 → 2.4.5

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 (79) hide show
  1. package/README.md +140 -176
  2. package/dist/apis/ingestApi.d.ts +1 -15
  3. package/dist/apis/ingestApi.d.ts.map +1 -1
  4. package/dist/apis/ingestApi.js +2 -151
  5. package/dist/apis/ingestApi.js.map +1 -1
  6. package/dist/apis/uptimeApi.js +1 -1
  7. package/dist/apis/uptimeApi.js.map +1 -1
  8. package/dist/domain/ingest.d.ts +4 -33
  9. package/dist/domain/ingest.d.ts.map +1 -1
  10. package/dist/http/httpClient.d.ts +5 -2
  11. package/dist/http/httpClient.d.ts.map +1 -1
  12. package/dist/http/httpClient.js +44 -8
  13. package/dist/http/httpClient.js.map +1 -1
  14. package/dist/index.d.ts +18 -507
  15. package/dist/index.d.ts.map +1 -1
  16. package/dist/index.js +17 -582
  17. package/dist/index.js.map +1 -1
  18. package/dist/sdk.d.ts +4 -9
  19. package/dist/sdk.d.ts.map +1 -1
  20. package/dist/sdk.js +7 -19
  21. package/dist/sdk.js.map +1 -1
  22. package/package.json +9 -16
  23. package/dist/src/apis/ingestApi.d.ts +0 -22
  24. package/dist/src/apis/ingestApi.js +0 -167
  25. package/dist/src/apis/ingestApi.js.map +0 -1
  26. package/dist/src/apis/uptimeApi.d.ts +0 -11
  27. package/dist/src/apis/uptimeApi.js +0 -39
  28. package/dist/src/apis/uptimeApi.js.map +0 -1
  29. package/dist/src/domain/ingest.d.ts +0 -47
  30. package/dist/src/domain/ingest.js +0 -2
  31. package/dist/src/domain/ingest.js.map +0 -1
  32. package/dist/src/domain/uptime.d.ts +0 -23
  33. package/dist/src/domain/uptime.js +0 -2
  34. package/dist/src/domain/uptime.js.map +0 -1
  35. package/dist/src/http/errors.d.ts +0 -33
  36. package/dist/src/http/errors.js +0 -54
  37. package/dist/src/http/errors.js.map +0 -1
  38. package/dist/src/http/httpClient.d.ts +0 -45
  39. package/dist/src/http/httpClient.js +0 -165
  40. package/dist/src/http/httpClient.js.map +0 -1
  41. package/dist/src/index.d.ts +0 -12
  42. package/dist/src/index.js +0 -7
  43. package/dist/src/index.js.map +0 -1
  44. package/dist/src/sdk.d.ts +0 -23
  45. package/dist/src/sdk.js +0 -40
  46. package/dist/src/sdk.js.map +0 -1
  47. package/dist/src/utils/processContext.d.ts +0 -34
  48. package/dist/src/utils/processContext.js +0 -47
  49. package/dist/src/utils/processContext.js.map +0 -1
  50. package/dist/src/utils/validate.d.ts +0 -2
  51. package/dist/src/utils/validate.js +0 -12
  52. package/dist/src/utils/validate.js.map +0 -1
  53. package/dist/tests/httpClient.test.d.ts +0 -1
  54. package/dist/tests/httpClient.test.js +0 -47
  55. package/dist/tests/httpClient.test.js.map +0 -1
  56. package/dist/tests/ingestApi.test.d.ts +0 -1
  57. package/dist/tests/ingestApi.test.js +0 -65
  58. package/dist/tests/ingestApi.test.js.map +0 -1
  59. package/dist/tests/observaSdk.integration.test.d.ts +0 -1
  60. package/dist/tests/observaSdk.integration.test.js +0 -51
  61. package/dist/tests/observaSdk.integration.test.js.map +0 -1
  62. package/dist/tests/sdk.test.d.ts +0 -1
  63. package/dist/tests/sdk.test.js +0 -104
  64. package/dist/tests/sdk.test.js.map +0 -1
  65. package/dist/tsconfig.build.tsbuildinfo +0 -1
  66. package/dist/utils/processContext.d.ts +0 -35
  67. package/dist/utils/processContext.d.ts.map +0 -1
  68. package/dist/utils/processContext.js +0 -47
  69. package/dist/utils/processContext.js.map +0 -1
  70. package/src/apis/ingestApi.ts +0 -199
  71. package/src/apis/uptimeApi.ts +0 -58
  72. package/src/domain/ingest.ts +0 -93
  73. package/src/domain/uptime.ts +0 -86
  74. package/src/http/errors.ts +0 -88
  75. package/src/http/httpClient.ts +0 -284
  76. package/src/index.ts +0 -68
  77. package/src/sdk.ts +0 -107
  78. package/src/utils/processContext.ts +0 -84
  79. package/src/utils/validate.ts +0 -19
package/dist/index.d.ts CHANGED
@@ -1,523 +1,34 @@
1
- type ProcessContextStatic = {
2
- versions?: NodeJS.ProcessVersions;
3
- node?: string;
4
- platform?: NodeJS.Platform;
5
- arch?: string;
6
- releaseName?: string;
7
- };
8
- type ProcessContextDynamic = {
9
- pid?: number;
10
- uptimeSeconds?: number;
11
- memory?: NodeJS.MemoryUsage;
12
- };
13
- type ProcessContext = ProcessContextStatic & ProcessContextDynamic;
14
- type ProcessContextOptions = {
15
- includeStatic?: boolean;
16
- includeDynamic?: boolean;
17
- includeVersions?: boolean;
18
- includeRuntime?: boolean;
19
- includePid?: boolean;
20
- includeUptime?: boolean;
21
- includeMemory?: boolean;
22
- };
23
- type ProcessContextStaticOptions = {
24
- includeVersions?: boolean;
25
- includeRuntime?: boolean;
26
- };
27
- type ProcessContextDynamicOptions = {
28
- includePid?: boolean;
29
- includeUptime?: boolean;
30
- includeMemory?: boolean;
31
- };
32
- declare function getProcessContext(options?: ProcessContextOptions): ProcessContext;
33
- declare function getProcessContextStatic(options?: ProcessContextStaticOptions): ProcessContextStatic;
34
- declare function getProcessContextDynamic(options?: ProcessContextDynamicOptions): ProcessContextDynamic;
35
-
36
1
  /**
37
- * Severity levels for events.
2
+ * Main SDK.
38
3
  */
39
- type IngestLevel = 'debug' | 'info' | 'warn' | 'error' | 'fatal';
40
- type StacktraceFrame = {
41
- filename?: string;
42
- function?: string;
43
- lineno?: number;
44
- colno?: number;
45
- in_app?: boolean;
46
- };
47
- type Stacktrace = {
48
- frames: StacktraceFrame[];
49
- };
50
- type IngestException = {
51
- type: string;
52
- value: string;
53
- stacktrace?: Stacktrace;
54
- };
55
- type RequestContext = {
56
- requestId?: string;
57
- userId?: string;
58
- [key: string]: unknown;
59
- };
60
- type IngestEventContext = {
61
- system?: ProcessContextDynamic;
62
- runtime?: ProcessContextStatic;
63
- request?: RequestContext;
64
- };
4
+ export { ObservaSDK } from './sdk';
65
5
  /**
66
- * Ingestion event.
6
+ * SDK options.
67
7
  */
68
- type IngestEvent = {
69
- /**
70
- * Unique event identifier.
71
- */
72
- event_id?: string;
73
- /**
74
- * Event ISO timestamp.
75
- */
76
- timestamp?: string;
77
- schema_version?: number;
78
- /**
79
- * Severity level.
80
- */
81
- level?: IngestLevel;
82
- /**
83
- * Main message.
84
- */
85
- message?: string;
86
- exception?: IngestException;
87
- context?: IngestEventContext;
88
- tags?: Record<string, string>;
89
- extra?: Record<string, unknown>;
90
- };
8
+ export type { ObservaSDKOptions } from './sdk';
91
9
  /**
92
- * Payload for sending an event to the backend.
10
+ * Base HTTP client.
93
11
  */
94
- type IngestRequest = {
95
- /**
96
- * Project DSN. Uses the SDK default when omitted.
97
- */
98
- dsnKey?: string;
99
- /**
100
- * Public key for frontend/mobile projects.
101
- */
102
- publicKey?: string;
103
- /**
104
- * Event to record.
105
- */
106
- event: IngestEvent;
107
- idempotencyKey?: string;
108
- sdkVersion?: string;
109
- };
12
+ export { HttpClient } from './http/httpClient';
110
13
  /**
111
- * Response after sending an event.
14
+ * HTTP types.
112
15
  */
113
- type IngestResponse = {
114
- /**
115
- * Assigned event identifier.
116
- */
117
- event_id: string;
118
- };
119
-
16
+ export type { HttpClientOptions, RequestOptions, RetryPolicy, AuthMode } from './http/httpClient';
120
17
  /**
121
- * Authentication mode per request.
18
+ * Typed SDK errors.
122
19
  */
123
- type AuthMode = 'apiKey' | 'none';
20
+ export { SdkError, ValidationError, AuthError, ForbiddenError, NotFoundError, ConflictError, RateLimitError, ServerError, NetworkError, TimeoutError, } from './http/errors';
124
21
  /**
125
- * Supported HTTP methods.
22
+ * Domain APIs.
126
23
  */
127
- type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
24
+ export { UptimeApi } from './apis/uptimeApi';
25
+ export { IngestApi } from './apis/ingestApi';
128
26
  /**
129
- * Serializable query parameters.
27
+ * Uptime types.
130
28
  */
131
- type QueryParams = Record<string, string | number | boolean | undefined>;
29
+ export type { UptimeEvent, UptimeStatus, UptimeHeartbeatInput, UptimeSummary } from './domain/uptime';
132
30
  /**
133
- * Retry policy for transient errors.
31
+ * Ingestion types.
134
32
  */
135
- type RetryPolicy = {
136
- /**
137
- * Number of additional retries.
138
- */
139
- retries: number;
140
- /**
141
- * Computes the delay between retries.
142
- */
143
- retryDelayMs?: (attempt: number, response?: Response, error?: unknown) => number;
144
- /**
145
- * Determines whether a response or error should be retried.
146
- */
147
- retryOn?: (response?: Response, error?: unknown) => boolean;
148
- };
149
- /**
150
- * Base HTTP client configuration.
151
- */
152
- type HttpClientOptions = {
153
- /**
154
- * Backend base URL.
155
- */
156
- baseUrl: string;
157
- /**
158
- * API key used for SDK authentication.
159
- */
160
- apiKey?: string;
161
- /**
162
- * Request timeout in milliseconds.
163
- */
164
- timeoutMs?: number;
165
- /**
166
- * Global headers.
167
- */
168
- headers?: Record<string, string>;
169
- /**
170
- * Retry policy.
171
- */
172
- retry?: RetryPolicy;
173
- };
174
- /**
175
- * Per-request options.
176
- */
177
- type RequestOptions = {
178
- method: HttpMethod;
179
- path: string;
180
- query?: QueryParams;
181
- body?: unknown;
182
- headers?: Record<string, string>;
183
- /**
184
- * Defines whether the request requires an apiKey or is public.
185
- */
186
- auth?: AuthMode;
187
- };
188
- /**
189
- * Base HTTP client for the SDK.
190
- */
191
- declare class HttpClient {
192
- private apiKey?;
193
- private readonly baseUrl;
194
- private readonly timeoutMs;
195
- private readonly headers;
196
- private readonly retry?;
197
- private healthCheckPromise?;
198
- /**
199
- * Creates an HTTP client with baseUrl and optional apiKey.
200
- */
201
- constructor(options: HttpClientOptions);
202
- /**
203
- * Updates the API key at runtime.
204
- */
205
- setApiKey(apiKey?: string): void;
206
- /**
207
- * Checks if an API key is configured.
208
- */
209
- hasApiKey(): boolean;
210
- startHealthCheck(healthCheck: () => Promise<unknown>): void;
211
- /**
212
- * GET request.
213
- */
214
- get<T>(path: string, options?: Omit<RequestOptions, 'method' | 'path'>): Promise<T>;
215
- /**
216
- * POST request.
217
- */
218
- post<T>(path: string, body?: unknown, options?: Omit<RequestOptions, 'method' | 'path' | 'body'>): Promise<T>;
219
- /**
220
- * PUT request.
221
- */
222
- put<T>(path: string, body?: unknown, options?: Omit<RequestOptions, 'method' | 'path' | 'body'>): Promise<T>;
223
- /**
224
- * PATCH request.
225
- */
226
- patch<T>(path: string, body?: unknown, options?: Omit<RequestOptions, 'method' | 'path' | 'body'>): Promise<T>;
227
- /**
228
- * DELETE request.
229
- */
230
- delete<T>(path: string, options?: Omit<RequestOptions, 'method' | 'path'>): Promise<T>;
231
- /**
232
- * Executes a request with retry logic.
233
- */
234
- request<T>(options: RequestOptions): Promise<T>;
235
- /**
236
- * Executes a request without retry and returns response + data.
237
- */
238
- private execute;
239
- /**
240
- * Builds the final URL with query params.
241
- */
242
- private buildUrl;
243
- /**
244
- * Parses the body as JSON when possible.
245
- */
246
- private readBody;
247
- private parseRetryAfter;
248
- /**
249
- * Simple delay for retries.
250
- */
251
- private delay;
252
- }
253
-
254
- type IngestNormalizationOptions = {
255
- schemaVersion?: number;
256
- includeContext?: boolean;
257
- includeSystemContext?: boolean;
258
- includeRuntimeContext?: boolean;
259
- maxEventBytes?: number;
260
- maxFrames?: number;
261
- maxMessageLength?: number;
262
- maxExceptionValueLength?: number;
263
- };
264
- /**
265
- * Event ingestion API.
266
- */
267
- declare class IngestApi {
268
- private readonly http;
269
- private readonly defaultDsnKey?;
270
- private readonly normalization?;
271
- private readonly defaultPublicKey?;
272
- /**
273
- * Creates the ingestion client with an optional default DSN and PublicKey.
274
- */
275
- constructor(http: HttpClient, defaultDsnKey?: string | undefined, normalization?: IngestNormalizationOptions | undefined, defaultPublicKey?: string | undefined);
276
- /**
277
- * Sends an event to the ingestion backend.
278
- */
279
- event(input: IngestRequest): Promise<IngestResponse>;
280
- health(dsnKey?: string, publicKey?: string): Promise<{
281
- ok: boolean;
282
- }>;
283
- }
284
-
285
- /**
286
- * Possible uptime statuses.
287
- */
288
- type UptimeStatus = 'up' | 'down' | 'degraded';
289
- /**
290
- * Recorded uptime event.
291
- */
292
- type UptimeEvent = {
293
- /**
294
- * Event identifier.
295
- */
296
- id: string;
297
- /**
298
- * Project the event belongs to.
299
- */
300
- projectId: string;
301
- /**
302
- * Uptime status.
303
- */
304
- status: UptimeStatus;
305
- /**
306
- * Optional message for the event.
307
- */
308
- message?: string;
309
- /**
310
- * Response time in milliseconds.
311
- */
312
- responseTimeMs?: number;
313
- /**
314
- * ISO timestamp of the check.
315
- */
316
- checkedAt?: string;
317
- /**
318
- * ISO timestamp of backend creation.
319
- */
320
- createdAt?: string;
321
- };
322
- /**
323
- * Payload for sending an uptime heartbeat.
324
- */
325
- type UptimeHeartbeatInput = {
326
- /**
327
- * Project DSN. Uses the SDK default when omitted.
328
- */
329
- dsnKey?: string;
330
- /**
331
- * Reported status.
332
- */
333
- status: UptimeStatus;
334
- /**
335
- * Response time in milliseconds.
336
- */
337
- responseTimeMs?: number;
338
- /**
339
- * ISO timestamp of the check.
340
- */
341
- checkedAt?: string;
342
- /**
343
- * Optional message.
344
- */
345
- message?: string;
346
- };
347
- /**
348
- * Daily uptime summary.
349
- */
350
- type UptimeSummary = {
351
- /**
352
- * ISO date of the summary.
353
- */
354
- date: string;
355
- /**
356
- * Hours without data.
357
- */
358
- missingHours?: number;
359
- /**
360
- * Accumulated delay minutes.
361
- */
362
- delayMinutes?: number;
363
- /**
364
- * Number of delayed events.
365
- */
366
- delayedCount?: number;
367
- };
368
-
369
- /**
370
- * Uptime API for heartbeats and public reads.
371
- */
372
- declare class UptimeApi {
373
- private readonly http;
374
- private readonly defaultDsnKey?;
375
- /**
376
- * Creates the uptime client with an optional default DSN.
377
- */
378
- constructor(http: HttpClient, defaultDsnKey?: string | undefined);
379
- /**
380
- * Records an uptime heartbeat.
381
- */
382
- recordHeartbeat(input: UptimeHeartbeatInput): Promise<UptimeEvent>;
383
- /**
384
- * Lists a project's daily uptime history.
385
- */
386
- history(projectId: string, date: string): Promise<UptimeEvent[]>;
387
- /**
388
- * Gets the latest uptime event for a project.
389
- */
390
- latest(projectId: string): Promise<UptimeEvent | null>;
391
- /**
392
- * Summarizes daily uptime.
393
- */
394
- summary(projectId: string, days?: number, delayThresholdMinutes?: number): Promise<UptimeSummary[]>;
395
- }
396
-
397
- /**
398
- * SDK configuration options.
399
- */
400
- type ObservaSDKOptions = {
401
- /**
402
- * Organization API key used to authenticate SDK requests.
403
- */
404
- apiKey?: string;
405
- /**
406
- * Project DSN used to identify the destination of events and heartbeats.
407
- */
408
- dsnKey: string;
409
- /**
410
- * Public key for frontend/mobile projects.
411
- */
412
- publicKey?: string;
413
- baseUrl?: string;
414
- /**
415
- * HTTP request timeout in milliseconds.
416
- */
417
- timeoutMs?: number;
418
- /**
419
- * Retry policy for transient errors.
420
- */
421
- retry?: RetryPolicy;
422
- /**
423
- * Additional headers sent with every request.
424
- */
425
- headers?: Record<string, string>;
426
- ingest?: IngestNormalizationOptions;
427
- };
428
- /**
429
- * Main SDK for error ingestion and uptime heartbeats.
430
- */
431
- declare class ObservaSDK {
432
- /**
433
- * Uptime API (heartbeats and public reads).
434
- */
435
- readonly uptime: UptimeApi;
436
- /**
437
- * Event ingestion API.
438
- */
439
- readonly ingest: IngestApi;
440
- private readonly http;
441
- /**
442
- * Creates an SDK instance with required dsnKey and either apiKey or publicKey.
443
- */
444
- constructor(options: ObservaSDKOptions);
445
- /**
446
- * Updates the API key used by the SDK at runtime.
447
- */
448
- setApiKey(apiKey: string): void;
449
- getProcessContext(options?: ProcessContextOptions): ProcessContext;
450
- getProcessContextStatic(options?: ProcessContextStaticOptions): ProcessContextStatic;
451
- getProcessContextDynamic(options?: ProcessContextDynamicOptions): ProcessContextDynamic;
452
- }
453
-
454
- /**
455
- * Additional data to enrich SDK errors.
456
- */
457
- type ErrorDetails = {
458
- status?: number;
459
- code?: string;
460
- details?: unknown;
461
- retryAfter?: number;
462
- };
463
- /**
464
- * Base SDK error.
465
- */
466
- declare class SdkError extends Error {
467
- readonly status?: number;
468
- readonly code?: string;
469
- readonly details?: unknown;
470
- /**
471
- * Creates an error with optional metadata.
472
- */
473
- constructor(message: string, details?: ErrorDetails);
474
- }
475
- /**
476
- * Input validation error.
477
- */
478
- declare class ValidationError extends SdkError {
479
- }
480
- /**
481
- * Authentication error.
482
- */
483
- declare class AuthError extends SdkError {
484
- }
485
- /**
486
- * Error caused by insufficient permissions.
487
- */
488
- declare class ForbiddenError extends SdkError {
489
- }
490
- /**
491
- * Error when a resource does not exist.
492
- */
493
- declare class NotFoundError extends SdkError {
494
- }
495
- /**
496
- * Error caused by a state conflict.
497
- */
498
- declare class ConflictError extends SdkError {
499
- }
500
- /**
501
- * Error caused by rate limiting.
502
- */
503
- declare class RateLimitError extends SdkError {
504
- readonly retryAfter?: number;
505
- constructor(message: string, details?: ErrorDetails);
506
- }
507
- /**
508
- * Server-side error.
509
- */
510
- declare class ServerError extends SdkError {
511
- }
512
- /**
513
- * Network error.
514
- */
515
- declare class NetworkError extends SdkError {
516
- }
517
- /**
518
- * Request timeout error.
519
- */
520
- declare class TimeoutError extends SdkError {
521
- }
522
-
523
- export { AuthError, type AuthMode, ConflictError, ForbiddenError, HttpClient, type HttpClientOptions, IngestApi, type IngestEvent, type IngestEventContext, type IngestException, type IngestLevel, type IngestNormalizationOptions, type IngestRequest, type IngestResponse, NetworkError, NotFoundError, ObservaSDK, type ObservaSDKOptions, type ProcessContext, type ProcessContextDynamic, type ProcessContextDynamicOptions, type ProcessContextOptions, type ProcessContextStatic, type ProcessContextStaticOptions, RateLimitError, type RequestContext, type RequestOptions, type RetryPolicy, SdkError, ServerError, type Stacktrace, type StacktraceFrame, TimeoutError, UptimeApi, type UptimeEvent, type UptimeHeartbeatInput, type UptimeStatus, type UptimeSummary, ValidationError, getProcessContext, getProcessContextDynamic, getProcessContextStatic };
33
+ export type { IngestEvent, IngestLevel, IngestRequest, IngestResponse } from './domain/ingest';
34
+ //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,UAAU,EAAE,MAAM,OAAO,CAAA;AAClC;;GAEG;AACH,YAAY,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAE9C;;GAEG;AACH,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;AAC9C;;GAEG;AACH,YAAY,EAAE,iBAAiB,EAAE,cAAc,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAA;AAEjG;;GAEG;AACH,OAAO,EACL,QAAQ,EACR,eAAe,EACf,SAAS,EACT,cAAc,EACd,aAAa,EACb,aAAa,EACb,cAAc,EACd,WAAW,EACX,YAAY,EACZ,YAAY,GACb,MAAM,eAAe,CAAA;AAEtB;;GAEG;AACH,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAA;AAC5C,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAA;AAC5C,YAAY,EAAE,0BAA0B,EAAE,MAAM,kBAAkB,CAAA;AAElE;;GAEG;AACH,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AACrG;;GAEG;AACH,YAAY,EACV,WAAW,EACX,kBAAkB,EAClB,eAAe,EACf,WAAW,EACX,aAAa,EACb,cAAc,EACd,cAAc,EACd,UAAU,EACV,eAAe,GAChB,MAAM,iBAAiB,CAAA;AACxB,YAAY,EACV,cAAc,EACd,qBAAqB,EACrB,4BAA4B,EAC5B,qBAAqB,EACrB,oBAAoB,EACpB,2BAA2B,GAC5B,MAAM,wBAAwB,CAAA;AAC/B,OAAO,EAAE,iBAAiB,EAAE,wBAAwB,EAAE,uBAAuB,EAAE,MAAM,wBAAwB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,UAAU,EAAE,MAAM,OAAO,CAAA;AAClC;;GAEG;AACH,YAAY,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAE9C;;GAEG;AACH,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;AAC9C;;GAEG;AACH,YAAY,EAAE,iBAAiB,EAAE,cAAc,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAA;AAEjG;;GAEG;AACH,OAAO,EACL,QAAQ,EACR,eAAe,EACf,SAAS,EACT,cAAc,EACd,aAAa,EACb,aAAa,EACb,cAAc,EACd,WAAW,EACX,YAAY,EACZ,YAAY,GACb,MAAM,eAAe,CAAA;AAEtB;;GAEG;AACH,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAA;AAC5C,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAA;AAE5C;;GAEG;AACH,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AACrG;;GAEG;AACH,YAAY,EAAE,WAAW,EAAE,WAAW,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAA"}