@contractspec/lib.jobs 1.57.0 → 1.59.0
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/contracts/index.d.ts +494 -500
- package/dist/contracts/index.d.ts.map +1 -1
- package/dist/contracts/index.js +298 -461
- package/dist/entities/index.d.ts +117 -122
- package/dist/entities/index.d.ts.map +1 -1
- package/dist/entities/index.js +170 -193
- package/dist/events.d.ts +297 -303
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +199 -351
- package/dist/handlers/gmail-sync-handler.d.ts +5 -9
- package/dist/handlers/gmail-sync-handler.d.ts.map +1 -1
- package/dist/handlers/gmail-sync-handler.js +8 -8
- package/dist/handlers/index.d.ts +5 -9
- package/dist/handlers/index.d.ts.map +1 -1
- package/dist/handlers/index.js +53 -10
- package/dist/handlers/ping-job.d.ts +6 -10
- package/dist/handlers/ping-job.d.ts.map +1 -1
- package/dist/handlers/ping-job.js +13 -12
- package/dist/handlers/storage-document-handler.d.ts +7 -11
- package/dist/handlers/storage-document-handler.d.ts.map +1 -1
- package/dist/handlers/storage-document-handler.js +15 -13
- package/dist/index.d.ts +7 -24
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1366 -64
- package/dist/jobs.capability.d.ts +2 -7
- package/dist/jobs.capability.d.ts.map +1 -1
- package/dist/jobs.capability.js +29 -33
- package/dist/jobs.feature.d.ts +1 -6
- package/dist/jobs.feature.d.ts.map +1 -1
- package/dist/jobs.feature.js +45 -108
- package/dist/node/contracts/index.js +318 -0
- package/dist/node/entities/index.js +174 -0
- package/dist/node/events.js +200 -0
- package/dist/node/handlers/gmail-sync-handler.js +9 -0
- package/dist/node/handlers/index.js +55 -0
- package/dist/node/handlers/ping-job.js +14 -0
- package/dist/node/handlers/storage-document-handler.js +16 -0
- package/dist/node/index.js +1368 -0
- package/dist/node/jobs.capability.js +28 -0
- package/dist/node/jobs.feature.js +46 -0
- package/dist/node/queue/gcp-cloud-tasks.js +66 -0
- package/dist/node/queue/gcp-pubsub.js +54 -0
- package/dist/node/queue/index.js +478 -0
- package/dist/node/queue/memory-queue.js +160 -0
- package/dist/node/queue/register-defined-job.js +15 -0
- package/dist/node/queue/scaleway-sqs-queue.js +206 -0
- package/dist/node/queue/types.js +10 -0
- package/dist/node/scheduler/index.js +117 -0
- package/dist/queue/gcp-cloud-tasks.d.ts +33 -36
- package/dist/queue/gcp-cloud-tasks.d.ts.map +1 -1
- package/dist/queue/gcp-cloud-tasks.js +65 -59
- package/dist/queue/gcp-pubsub.d.ts +18 -21
- package/dist/queue/gcp-pubsub.d.ts.map +1 -1
- package/dist/queue/gcp-pubsub.js +53 -45
- package/dist/queue/index.d.ts +6 -15
- package/dist/queue/index.d.ts.map +1 -1
- package/dist/queue/index.js +476 -20
- package/dist/queue/memory-queue.d.ts +25 -29
- package/dist/queue/memory-queue.d.ts.map +1 -1
- package/dist/queue/memory-queue.js +159 -138
- package/dist/queue/register-defined-job.d.ts +3 -7
- package/dist/queue/register-defined-job.d.ts.map +1 -1
- package/dist/queue/register-defined-job.js +14 -14
- package/dist/queue/scaleway-sqs-queue.d.ts +31 -35
- package/dist/queue/scaleway-sqs-queue.d.ts.map +1 -1
- package/dist/queue/scaleway-sqs-queue.js +205 -173
- package/dist/queue/types.d.ts +2 -8
- package/dist/queue/types.d.ts.map +1 -1
- package/dist/queue/types.js +11 -12
- package/dist/scheduler/index.d.ts +68 -72
- package/dist/scheduler/index.d.ts.map +1 -1
- package/dist/scheduler/index.js +113 -141
- package/package.json +176 -50
- package/dist/_virtual/_rolldown/runtime.js +0 -36
- package/dist/contracts/index.js.map +0 -1
- package/dist/entities/index.js.map +0 -1
- package/dist/events.js.map +0 -1
- package/dist/handlers/gmail-sync-handler.js.map +0 -1
- package/dist/handlers/index.js.map +0 -1
- package/dist/handlers/ping-job.js.map +0 -1
- package/dist/handlers/storage-document-handler.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/jobs.capability.js.map +0 -1
- package/dist/jobs.feature.js.map +0 -1
- package/dist/queue/gcp-cloud-tasks.js.map +0 -1
- package/dist/queue/gcp-pubsub.js.map +0 -1
- package/dist/queue/index.js.map +0 -1
- package/dist/queue/memory-queue.js.map +0 -1
- package/dist/queue/register-defined-job.js.map +0 -1
- package/dist/queue/scaleway-sqs-queue.js.map +0 -1
- package/dist/queue/types.js.map +0 -1
- package/dist/scheduler/index.js.map +0 -1
|
@@ -1,140 +1,161 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
// @bun
|
|
2
|
+
// src/queue/types.ts
|
|
3
|
+
export * from "@contractspec/lib.contracts/jobs/queue";
|
|
4
|
+
import {
|
|
5
|
+
calculateBackoff,
|
|
6
|
+
DEFAULT_RETRY_POLICY
|
|
7
|
+
} from "@contractspec/lib.contracts/jobs/queue";
|
|
3
8
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
9
|
+
// src/queue/memory-queue.ts
|
|
10
|
+
import { randomUUID } from "crypto";
|
|
11
|
+
class MemoryJobQueue {
|
|
12
|
+
jobs = new Map;
|
|
13
|
+
handlers = new Map;
|
|
14
|
+
timer;
|
|
15
|
+
activeCount = 0;
|
|
16
|
+
pollIntervalMs;
|
|
17
|
+
concurrency;
|
|
18
|
+
retryPolicy;
|
|
19
|
+
constructor(options = {}) {
|
|
20
|
+
this.pollIntervalMs = options.pollIntervalMs ?? 200;
|
|
21
|
+
this.concurrency = options.concurrency ?? 5;
|
|
22
|
+
this.retryPolicy = options.retryPolicy ?? DEFAULT_RETRY_POLICY;
|
|
23
|
+
}
|
|
24
|
+
async enqueue(jobType, payload, options = {}) {
|
|
25
|
+
if (options.dedupeKey) {
|
|
26
|
+
const existing = Array.from(this.jobs.values()).find((j) => j.dedupeKey === options.dedupeKey && j.status === "pending");
|
|
27
|
+
if (existing) {
|
|
28
|
+
return existing;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
const now = new Date;
|
|
32
|
+
const scheduledAt = options.delaySeconds ? new Date(now.getTime() + options.delaySeconds * 1000) : now;
|
|
33
|
+
const job = {
|
|
34
|
+
id: randomUUID(),
|
|
35
|
+
type: jobType,
|
|
36
|
+
version: "1.0.0",
|
|
37
|
+
payload,
|
|
38
|
+
status: "pending",
|
|
39
|
+
priority: options.priority ?? 0,
|
|
40
|
+
attempts: 0,
|
|
41
|
+
maxRetries: options.maxRetries ?? this.retryPolicy.maxRetries,
|
|
42
|
+
createdAt: now,
|
|
43
|
+
updatedAt: now,
|
|
44
|
+
scheduledAt,
|
|
45
|
+
dedupeKey: options.dedupeKey,
|
|
46
|
+
tenantId: options.tenantId,
|
|
47
|
+
userId: options.userId,
|
|
48
|
+
traceId: options.traceId,
|
|
49
|
+
metadata: options.metadata
|
|
50
|
+
};
|
|
51
|
+
if (options.timeoutMs) {
|
|
52
|
+
job.timeoutAt = new Date(now.getTime() + options.timeoutMs);
|
|
53
|
+
}
|
|
54
|
+
this.jobs.set(job.id, job);
|
|
55
|
+
return job;
|
|
56
|
+
}
|
|
57
|
+
register(jobType, handler) {
|
|
58
|
+
this.handlers.set(jobType, handler);
|
|
59
|
+
}
|
|
60
|
+
start() {
|
|
61
|
+
if (this.timer)
|
|
62
|
+
return;
|
|
63
|
+
this.timer = setInterval(() => {
|
|
64
|
+
this.processNext();
|
|
65
|
+
}, this.pollIntervalMs);
|
|
66
|
+
}
|
|
67
|
+
async stop() {
|
|
68
|
+
if (this.timer) {
|
|
69
|
+
clearInterval(this.timer);
|
|
70
|
+
this.timer = undefined;
|
|
71
|
+
}
|
|
72
|
+
while (this.activeCount > 0) {
|
|
73
|
+
await new Promise((resolve) => setTimeout(resolve, 50));
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
async getJob(jobId) {
|
|
77
|
+
return this.jobs.get(jobId) ?? null;
|
|
78
|
+
}
|
|
79
|
+
async cancelJob(jobId) {
|
|
80
|
+
const job = this.jobs.get(jobId);
|
|
81
|
+
if (!job || job.status !== "pending") {
|
|
82
|
+
return false;
|
|
83
|
+
}
|
|
84
|
+
job.status = "cancelled";
|
|
85
|
+
job.updatedAt = new Date;
|
|
86
|
+
return true;
|
|
87
|
+
}
|
|
88
|
+
async getStats() {
|
|
89
|
+
const stats = {
|
|
90
|
+
pending: 0,
|
|
91
|
+
running: 0,
|
|
92
|
+
completed: 0,
|
|
93
|
+
failed: 0,
|
|
94
|
+
deadLetter: 0
|
|
95
|
+
};
|
|
96
|
+
for (const job of this.jobs.values()) {
|
|
97
|
+
switch (job.status) {
|
|
98
|
+
case "pending":
|
|
99
|
+
stats.pending++;
|
|
100
|
+
break;
|
|
101
|
+
case "running":
|
|
102
|
+
stats.running++;
|
|
103
|
+
break;
|
|
104
|
+
case "completed":
|
|
105
|
+
stats.completed++;
|
|
106
|
+
break;
|
|
107
|
+
case "failed":
|
|
108
|
+
stats.failed++;
|
|
109
|
+
break;
|
|
110
|
+
case "dead_letter":
|
|
111
|
+
stats.deadLetter++;
|
|
112
|
+
break;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
return stats;
|
|
116
|
+
}
|
|
117
|
+
async processNext() {
|
|
118
|
+
if (this.activeCount >= this.concurrency)
|
|
119
|
+
return;
|
|
120
|
+
const now = new Date;
|
|
121
|
+
const pendingJobs = Array.from(this.jobs.values()).filter((j) => j.status === "pending" && (!j.scheduledAt || j.scheduledAt <= now)).sort((a, b) => {
|
|
122
|
+
if (a.priority !== b.priority) {
|
|
123
|
+
return b.priority - a.priority;
|
|
124
|
+
}
|
|
125
|
+
return (a.scheduledAt?.getTime() ?? 0) - (b.scheduledAt?.getTime() ?? 0);
|
|
126
|
+
});
|
|
127
|
+
const job = pendingJobs[0];
|
|
128
|
+
if (!job)
|
|
129
|
+
return;
|
|
130
|
+
const handler = this.handlers.get(job.type);
|
|
131
|
+
if (!handler)
|
|
132
|
+
return;
|
|
133
|
+
this.activeCount++;
|
|
134
|
+
job.status = "running";
|
|
135
|
+
job.startedAt = new Date;
|
|
136
|
+
job.updatedAt = new Date;
|
|
137
|
+
job.attempts += 1;
|
|
138
|
+
try {
|
|
139
|
+
const result = await handler(job);
|
|
140
|
+
job.status = "completed";
|
|
141
|
+
job.completedAt = new Date;
|
|
142
|
+
job.result = result;
|
|
143
|
+
} catch (error) {
|
|
144
|
+
const errorMessage = error instanceof Error ? error.message : "Unknown error";
|
|
145
|
+
job.lastError = errorMessage;
|
|
146
|
+
if (job.attempts >= job.maxRetries) {
|
|
147
|
+
job.status = "dead_letter";
|
|
148
|
+
} else {
|
|
149
|
+
const backoff = calculateBackoff(job.attempts, this.retryPolicy);
|
|
150
|
+
job.status = "pending";
|
|
151
|
+
job.scheduledAt = new Date(Date.now() + backoff);
|
|
152
|
+
}
|
|
153
|
+
} finally {
|
|
154
|
+
job.updatedAt = new Date;
|
|
155
|
+
this.activeCount--;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
export {
|
|
160
|
+
MemoryJobQueue
|
|
136
161
|
};
|
|
137
|
-
|
|
138
|
-
//#endregion
|
|
139
|
-
export { MemoryJobQueue };
|
|
140
|
-
//# sourceMappingURL=memory-queue.js.map
|
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
//#region src/queue/register-defined-job.d.ts
|
|
5
|
-
declare function registerDefinedJob<TPayload>(queue: JobQueue, def: DefinedJob<TPayload>): void;
|
|
6
|
-
//#endregion
|
|
7
|
-
export { registerDefinedJob };
|
|
1
|
+
import type { DefinedJob } from '@contractspec/lib.contracts/jobs/define-job';
|
|
2
|
+
import type { JobQueue } from '@contractspec/lib.contracts/jobs/queue';
|
|
3
|
+
export declare function registerDefinedJob<TPayload>(queue: JobQueue, def: DefinedJob<TPayload>): void;
|
|
8
4
|
//# sourceMappingURL=register-defined-job.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"register-defined-job.d.ts","
|
|
1
|
+
{"version":3,"file":"register-defined-job.d.ts","sourceRoot":"","sources":["../../src/queue/register-defined-job.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,6CAA6C,CAAC;AAC9E,OAAO,KAAK,EAGV,QAAQ,EACT,MAAM,wCAAwC,CAAC;AAEhD,wBAAgB,kBAAkB,CAAC,QAAQ,EACzC,KAAK,EAAE,QAAQ,EACf,GAAG,EAAE,UAAU,CAAC,QAAQ,CAAC,GACxB,IAAI,CAYN"}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
|
|
1
|
+
// @bun
|
|
2
|
+
// src/queue/register-defined-job.ts
|
|
2
3
|
function registerDefinedJob(queue, def) {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
4
|
+
const wrapped = async (job) => {
|
|
5
|
+
const payload = def.schema.parse(job.payload);
|
|
6
|
+
const typedJob = {
|
|
7
|
+
...job,
|
|
8
|
+
payload
|
|
9
|
+
};
|
|
10
|
+
await def.handler(payload, typedJob);
|
|
11
|
+
};
|
|
12
|
+
queue.register(def.type, wrapped);
|
|
12
13
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
//# sourceMappingURL=register-defined-job.js.map
|
|
14
|
+
export {
|
|
15
|
+
registerDefinedJob
|
|
16
|
+
};
|
|
@@ -1,39 +1,35 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
accessKeyId: string;
|
|
7
|
-
secretAccessKey: string;
|
|
1
|
+
import type { Logger } from '@contractspec/lib.logger';
|
|
2
|
+
import type { EnqueueOptions, Job, JobHandler, JobQueue } from './types';
|
|
3
|
+
export interface ScalewaySqsQueueCredentials {
|
|
4
|
+
accessKeyId: string;
|
|
5
|
+
secretAccessKey: string;
|
|
8
6
|
}
|
|
9
|
-
interface ScalewaySqsQueueConfig {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
7
|
+
export interface ScalewaySqsQueueConfig {
|
|
8
|
+
queueUrl: string;
|
|
9
|
+
region?: string;
|
|
10
|
+
endpoint?: string;
|
|
11
|
+
waitTimeSeconds?: number;
|
|
12
|
+
maxNumberOfMessages?: number;
|
|
13
|
+
visibilityTimeoutSeconds?: number;
|
|
14
|
+
credentials?: ScalewaySqsQueueCredentials;
|
|
15
|
+
logger?: Logger;
|
|
18
16
|
}
|
|
19
|
-
declare class ScalewaySqsJobQueue implements
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
17
|
+
export declare class ScalewaySqsJobQueue implements JobQueue {
|
|
18
|
+
private readonly sqs;
|
|
19
|
+
private readonly queueUrl;
|
|
20
|
+
private readonly waitTimeSeconds;
|
|
21
|
+
private readonly maxNumberOfMessages;
|
|
22
|
+
private readonly visibilityTimeoutSeconds;
|
|
23
|
+
private readonly handlers;
|
|
24
|
+
private readonly logger?;
|
|
25
|
+
private running;
|
|
26
|
+
constructor(config: ScalewaySqsQueueConfig);
|
|
27
|
+
enqueue<TPayload>(jobType: string, payload: TPayload, options?: EnqueueOptions): Promise<Job<TPayload>>;
|
|
28
|
+
register<TPayload, TResult = void>(jobType: string, handler: JobHandler<TPayload, TResult>): void;
|
|
29
|
+
start(): void;
|
|
30
|
+
stop(): Promise<void>;
|
|
31
|
+
private pollLoop;
|
|
32
|
+
private deleteMessage;
|
|
33
|
+
private sleep;
|
|
36
34
|
}
|
|
37
|
-
//#endregion
|
|
38
|
-
export { ScalewaySqsJobQueue, ScalewaySqsQueueConfig, ScalewaySqsQueueCredentials };
|
|
39
35
|
//# sourceMappingURL=scaleway-sqs-queue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scaleway-sqs-queue.d.ts","
|
|
1
|
+
{"version":3,"file":"scaleway-sqs-queue.d.ts","sourceRoot":"","sources":["../../src/queue/scaleway-sqs-queue.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,0BAA0B,CAAC;AAEvD,OAAO,KAAK,EAAE,cAAc,EAAE,GAAG,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAEzE,MAAM,WAAW,2BAA2B;IAC1C,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,sBAAsB;IACrC,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,WAAW,CAAC,EAAE,2BAA2B,CAAC;IAC1C,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAQD,qBAAa,mBAAoB,YAAW,QAAQ;IAClD,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAY;IAChC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;IAClC,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAS;IACzC,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAAS;IAC7C,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAAS;IAClD,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAiC;IAC1D,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAS;IACjC,OAAO,CAAC,OAAO,CAAS;gBAEZ,MAAM,EAAE,sBAAsB;IAiCpC,OAAO,CAAC,QAAQ,EACpB,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,QAAQ,EACjB,OAAO,GAAE,cAAmB,GAC3B,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IA0CzB,QAAQ,CAAC,QAAQ,EAAE,OAAO,GAAG,IAAI,EAC/B,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,UAAU,CAAC,QAAQ,EAAE,OAAO,CAAC,GACrC,IAAI;IAOP,KAAK,IAAI,IAAI;IAWP,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;YAKb,QAAQ;YA+GR,aAAa;YAeb,KAAK;CAGpB"}
|