@oneie/sdk 0.14.13 → 0.15.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/.build-fingerprint +1 -1
- package/dist/client.d.ts +1 -1
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +2 -2
- package/dist/client.js.map +1 -1
- package/dist/generated/fn-map.d.ts +2 -2
- package/dist/generated/fn-map.d.ts.map +1 -1
- package/dist/generated/fn-map.js +266 -2
- package/dist/generated/fn-map.js.map +1 -1
- package/dist/generated/schemas.d.ts +11 -1
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +9 -0
- package/dist/generated/schemas.js.map +1 -1
- package/dist/generated/types.d.ts +3 -0
- package/dist/generated/types.d.ts.map +1 -1
- package/dist/receivers.d.ts +374 -2
- package/dist/receivers.d.ts.map +1 -1
- package/dist/receivers.js +793 -5
- package/dist/receivers.js.map +1 -1
- package/dist/tasks-bulk.d.ts +90 -0
- package/dist/tasks-bulk.d.ts.map +1 -0
- package/dist/tasks-bulk.js +376 -0
- package/dist/tasks-bulk.js.map +1 -0
- package/dist/types.d.ts +9 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/dist/work-contract-grammar.json +38 -0
- package/package.json +3 -3
package/dist/receivers.d.ts
CHANGED
|
@@ -255,6 +255,7 @@ export declare const RECEIVERS: {
|
|
|
255
255
|
}, z.core.$strip>>;
|
|
256
256
|
"world:invite-client": Receiver<z.ZodObject<{
|
|
257
257
|
slug: z.ZodString;
|
|
258
|
+
child: z.ZodOptional<z.ZodString>;
|
|
258
259
|
name: z.ZodOptional<z.ZodString>;
|
|
259
260
|
email: z.ZodOptional<z.ZodString>;
|
|
260
261
|
plan: z.ZodOptional<z.ZodEnum<{
|
|
@@ -355,6 +356,44 @@ export declare const RECEIVERS: {
|
|
|
355
356
|
}, z.core.$strip>, z.ZodObject<{
|
|
356
357
|
ok: z.ZodBoolean;
|
|
357
358
|
}, z.core.$strip>>;
|
|
359
|
+
/**
|
|
360
|
+
* The only non-HTTP door to a workspace's brand. Tokens previously reached R2
|
|
361
|
+
* through `pages/api/{branding,settings,onboarding}.ts` only, so a workflow
|
|
362
|
+
* step, an agent, the CLI and MCP could not persist a theme at all.
|
|
363
|
+
*
|
|
364
|
+
* `auth: "manage_workspace"` is chosen because it is already in
|
|
365
|
+
* bind-receiver.ts's AUTH_POLICY mapping to the ENFORCED `tenant` class — an
|
|
366
|
+
* invented label would fall through `AUTH_POLICY[label] ?? 'authenticated'`
|
|
367
|
+
* to the WARN-only class and ship a workspace write with no enforced floor.
|
|
368
|
+
*
|
|
369
|
+
* `cost: "free"` is a declaration, not an omission: an R2 read+put costs no
|
|
370
|
+
* provider dollars, and per text/credit-allocation.md an UNDECLARED cost must
|
|
371
|
+
* not read as free. `reversible: false` is honest — the response reports which
|
|
372
|
+
* keys were written but not their prior values, so the caller cannot restore
|
|
373
|
+
* them from it. Handler: one.ie/web/src/lib/resolvers/brand.ts.
|
|
374
|
+
*
|
|
375
|
+
* The write is held to WCAG AA by the SAME `auditBrandContrast` the brand
|
|
376
|
+
* editor route calls, so a theme written by a workflow step meets the bar a
|
|
377
|
+
* human-written one does.
|
|
378
|
+
*/
|
|
379
|
+
"world:set-brand-tokens": Receiver<z.ZodObject<{
|
|
380
|
+
workspace: z.ZodString;
|
|
381
|
+
tokens: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
382
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
383
|
+
ok: z.ZodBoolean;
|
|
384
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
385
|
+
written: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
386
|
+
bytes: z.ZodOptional<z.ZodNumber>;
|
|
387
|
+
ignored: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
388
|
+
error: z.ZodOptional<z.ZodString>;
|
|
389
|
+
invalid: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
390
|
+
field: z.ZodString;
|
|
391
|
+
value: z.ZodString;
|
|
392
|
+
reason: z.ZodString;
|
|
393
|
+
}, z.core.$strip>>>;
|
|
394
|
+
failures: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
395
|
+
warnings: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
396
|
+
}, z.core.$strip>>;
|
|
358
397
|
"world:remove-group": Receiver<z.ZodObject<{
|
|
359
398
|
gid: z.ZodString;
|
|
360
399
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -624,6 +663,32 @@ export declare const RECEIVERS: {
|
|
|
624
663
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
625
664
|
authUrl: z.ZodOptional<z.ZodString>;
|
|
626
665
|
}, z.core.$strip>>;
|
|
666
|
+
"git:pr": Receiver<z.ZodObject<{
|
|
667
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
668
|
+
head: z.ZodString;
|
|
669
|
+
base: z.ZodOptional<z.ZodString>;
|
|
670
|
+
title: z.ZodString;
|
|
671
|
+
body: z.ZodOptional<z.ZodString>;
|
|
672
|
+
draft: z.ZodOptional<z.ZodBoolean>;
|
|
673
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
674
|
+
ok: z.ZodBoolean;
|
|
675
|
+
url: z.ZodOptional<z.ZodString>;
|
|
676
|
+
number: z.ZodOptional<z.ZodNumber>;
|
|
677
|
+
updated: z.ZodOptional<z.ZodBoolean>;
|
|
678
|
+
repo: z.ZodOptional<z.ZodString>;
|
|
679
|
+
error: z.ZodOptional<z.ZodString>;
|
|
680
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
681
|
+
}, z.core.$strip>>;
|
|
682
|
+
"tools:composio": Receiver<z.ZodObject<{
|
|
683
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
684
|
+
tool: z.ZodString;
|
|
685
|
+
args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
686
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
687
|
+
ok: z.ZodBoolean;
|
|
688
|
+
tool: z.ZodOptional<z.ZodString>;
|
|
689
|
+
result: z.ZodOptional<z.ZodUnknown>;
|
|
690
|
+
error: z.ZodOptional<z.ZodString>;
|
|
691
|
+
}, z.core.$strip>>;
|
|
627
692
|
"brand:set": Receiver<z.ZodObject<{
|
|
628
693
|
slug: z.ZodString;
|
|
629
694
|
tokens: z.ZodObject<{
|
|
@@ -933,8 +998,8 @@ export declare const RECEIVERS: {
|
|
|
933
998
|
world: Receiver<z.ZodObject<{
|
|
934
999
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
935
1000
|
fan: z.ZodOptional<z.ZodEnum<{
|
|
936
|
-
all: "all";
|
|
937
1001
|
one: "one";
|
|
1002
|
+
all: "all";
|
|
938
1003
|
}>>;
|
|
939
1004
|
deliver: z.ZodOptional<z.ZodBoolean>;
|
|
940
1005
|
reply: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1095,6 +1160,50 @@ export declare const RECEIVERS: {
|
|
|
1095
1160
|
deduped: z.ZodOptional<z.ZodBoolean>;
|
|
1096
1161
|
error: z.ZodOptional<z.ZodString>;
|
|
1097
1162
|
}, z.core.$strip>>;
|
|
1163
|
+
"factory:size": Receiver<z.ZodObject<{
|
|
1164
|
+
paths: z.ZodArray<z.ZodString>;
|
|
1165
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
1166
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1167
|
+
ok: z.ZodBoolean;
|
|
1168
|
+
tier: z.ZodOptional<z.ZodEnum<{
|
|
1169
|
+
PATCH: "PATCH";
|
|
1170
|
+
FIX: "FIX";
|
|
1171
|
+
FEATURE: "FEATURE";
|
|
1172
|
+
SCHEMA: "SCHEMA";
|
|
1173
|
+
}>>;
|
|
1174
|
+
spine: z.ZodOptional<z.ZodString>;
|
|
1175
|
+
classifier: z.ZodOptional<z.ZodString>;
|
|
1176
|
+
ceilingTokens: z.ZodOptional<z.ZodNumber>;
|
|
1177
|
+
pins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1178
|
+
surfaces: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1179
|
+
risk: z.ZodOptional<z.ZodString>;
|
|
1180
|
+
ratcheted: z.ZodOptional<z.ZodBoolean>;
|
|
1181
|
+
produces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1182
|
+
what: z.ZodString;
|
|
1183
|
+
source: z.ZodString;
|
|
1184
|
+
}, z.core.$strip>>>;
|
|
1185
|
+
gates: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1186
|
+
what: z.ZodString;
|
|
1187
|
+
source: z.ZodString;
|
|
1188
|
+
}, z.core.$strip>>>;
|
|
1189
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1190
|
+
}, z.core.$strip>>;
|
|
1191
|
+
"factory:recon": Receiver<z.ZodObject<{
|
|
1192
|
+
intent: z.ZodString;
|
|
1193
|
+
paths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1194
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1195
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1196
|
+
ok: z.ZodBoolean;
|
|
1197
|
+
verdict: z.ZodOptional<z.ZodEnum<{
|
|
1198
|
+
split: "split";
|
|
1199
|
+
sizeable: "sizeable";
|
|
1200
|
+
idea: "idea";
|
|
1201
|
+
dupe: "dupe";
|
|
1202
|
+
}>>;
|
|
1203
|
+
paths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1204
|
+
route: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1205
|
+
named: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1206
|
+
}, z.core.$strip>>;
|
|
1098
1207
|
"factory:attempt": Receiver<z.ZodObject<{
|
|
1099
1208
|
phase: z.ZodEnum<{
|
|
1100
1209
|
close: "close";
|
|
@@ -1131,6 +1240,118 @@ export declare const RECEIVERS: {
|
|
|
1131
1240
|
deduped: z.ZodOptional<z.ZodBoolean>;
|
|
1132
1241
|
error: z.ZodOptional<z.ZodString>;
|
|
1133
1242
|
}, z.core.$strip>>;
|
|
1243
|
+
"deploy:event": Receiver<z.ZodObject<{
|
|
1244
|
+
run: z.ZodString;
|
|
1245
|
+
target: z.ZodString;
|
|
1246
|
+
stage: z.ZodOptional<z.ZodEnum<{
|
|
1247
|
+
credentials: "credentials";
|
|
1248
|
+
tree: "tree";
|
|
1249
|
+
typecheck: "typecheck";
|
|
1250
|
+
tests: "tests";
|
|
1251
|
+
build: "build";
|
|
1252
|
+
smoke: "smoke";
|
|
1253
|
+
approval: "approval";
|
|
1254
|
+
migrations: "migrations";
|
|
1255
|
+
ship: "ship";
|
|
1256
|
+
health: "health";
|
|
1257
|
+
}>>;
|
|
1258
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1259
|
+
ok: "ok";
|
|
1260
|
+
start: "start";
|
|
1261
|
+
fail: "fail";
|
|
1262
|
+
}>>;
|
|
1263
|
+
verdict: z.ZodOptional<z.ZodEnum<{
|
|
1264
|
+
green: "green";
|
|
1265
|
+
red: "red";
|
|
1266
|
+
}>>;
|
|
1267
|
+
sha: z.ZodOptional<z.ZodString>;
|
|
1268
|
+
door: z.ZodOptional<z.ZodString>;
|
|
1269
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
1270
|
+
env: z.ZodOptional<z.ZodString>;
|
|
1271
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
1272
|
+
wallMs: z.ZodOptional<z.ZodNumber>;
|
|
1273
|
+
detail: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1274
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
1275
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1276
|
+
ok: z.ZodBoolean;
|
|
1277
|
+
runId: z.ZodOptional<z.ZodString>;
|
|
1278
|
+
stage: z.ZodOptional<z.ZodString>;
|
|
1279
|
+
status: z.ZodOptional<z.ZodString>;
|
|
1280
|
+
verdict: z.ZodOptional<z.ZodString>;
|
|
1281
|
+
events: z.ZodOptional<z.ZodNumber>;
|
|
1282
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
1283
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1284
|
+
}, z.core.$strip>>;
|
|
1285
|
+
"factory:event": Receiver<z.ZodObject<{
|
|
1286
|
+
job: z.ZodString;
|
|
1287
|
+
stage: z.ZodEnum<{
|
|
1288
|
+
close: "close";
|
|
1289
|
+
claim: "claim";
|
|
1290
|
+
build: "build";
|
|
1291
|
+
ready: "ready";
|
|
1292
|
+
review: "review";
|
|
1293
|
+
prove: "prove";
|
|
1294
|
+
}>;
|
|
1295
|
+
status: z.ZodEnum<{
|
|
1296
|
+
ok: "ok";
|
|
1297
|
+
start: "start";
|
|
1298
|
+
fail: "fail";
|
|
1299
|
+
}>;
|
|
1300
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
1301
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1302
|
+
detail: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1303
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
1304
|
+
env: z.ZodOptional<z.ZodString>;
|
|
1305
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
1306
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1307
|
+
ok: z.ZodBoolean;
|
|
1308
|
+
runId: z.ZodOptional<z.ZodString>;
|
|
1309
|
+
stage: z.ZodOptional<z.ZodString>;
|
|
1310
|
+
status: z.ZodOptional<z.ZodString>;
|
|
1311
|
+
events: z.ZodOptional<z.ZodNumber>;
|
|
1312
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
1313
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1314
|
+
}, z.core.$strip>>;
|
|
1315
|
+
"story:chain": Receiver<z.ZodObject<{
|
|
1316
|
+
minMembers: z.ZodOptional<z.ZodNumber>;
|
|
1317
|
+
origin: z.ZodOptional<z.ZodString>;
|
|
1318
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
1319
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1320
|
+
ok: z.ZodBoolean;
|
|
1321
|
+
count: z.ZodNumber;
|
|
1322
|
+
minMembers: z.ZodOptional<z.ZodNumber>;
|
|
1323
|
+
stories: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1324
|
+
origin: z.ZodString;
|
|
1325
|
+
members: z.ZodNumber;
|
|
1326
|
+
first: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1327
|
+
last: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1328
|
+
}, z.core.$strip>>>;
|
|
1329
|
+
}, z.core.$strip>>;
|
|
1330
|
+
"story:event": Receiver<z.ZodObject<{
|
|
1331
|
+
origin: z.ZodString;
|
|
1332
|
+
event: z.ZodEnum<{
|
|
1333
|
+
told: "told";
|
|
1334
|
+
framed: "framed";
|
|
1335
|
+
view: "view";
|
|
1336
|
+
complete: "complete";
|
|
1337
|
+
share: "share";
|
|
1338
|
+
convert: "convert";
|
|
1339
|
+
retell: "retell";
|
|
1340
|
+
}>;
|
|
1341
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
1342
|
+
parent: z.ZodOptional<z.ZodString>;
|
|
1343
|
+
frame: z.ZodOptional<z.ZodString>;
|
|
1344
|
+
medium: z.ZodOptional<z.ZodString>;
|
|
1345
|
+
board: z.ZodOptional<z.ZodString>;
|
|
1346
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
1347
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1348
|
+
ok: z.ZodBoolean;
|
|
1349
|
+
origin: z.ZodOptional<z.ZodString>;
|
|
1350
|
+
event: z.ZodOptional<z.ZodString>;
|
|
1351
|
+
deduped: z.ZodOptional<z.ZodBoolean>;
|
|
1352
|
+
marked: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1353
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1354
|
+
}, z.core.$strip>>;
|
|
1134
1355
|
"do:halt": Receiver<z.ZodObject<{
|
|
1135
1356
|
slug: z.ZodString;
|
|
1136
1357
|
release: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1150,11 +1371,13 @@ export declare const RECEIVERS: {
|
|
|
1150
1371
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1151
1372
|
assignee: z.ZodOptional<z.ZodString>;
|
|
1152
1373
|
notes: z.ZodOptional<z.ZodString>;
|
|
1374
|
+
parent: z.ZodOptional<z.ZodString>;
|
|
1153
1375
|
workspace: z.ZodOptional<z.ZodString>;
|
|
1154
1376
|
}, z.core.$strip>, z.ZodObject<{
|
|
1155
1377
|
ok: z.ZodBoolean;
|
|
1156
1378
|
tid: z.ZodOptional<z.ZodString>;
|
|
1157
1379
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1380
|
+
parent: z.ZodOptional<z.ZodString>;
|
|
1158
1381
|
}, z.core.$strip>>;
|
|
1159
1382
|
"tasks:claim": Receiver<z.ZodObject<{
|
|
1160
1383
|
tid: z.ZodOptional<z.ZodString>;
|
|
@@ -1207,8 +1430,29 @@ export declare const RECEIVERS: {
|
|
|
1207
1430
|
title: z.ZodOptional<z.ZodString>;
|
|
1208
1431
|
error: z.ZodOptional<z.ZodString>;
|
|
1209
1432
|
}, z.core.$strip>>;
|
|
1433
|
+
"tasks:generate": Receiver<z.ZodObject<{
|
|
1434
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1435
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1436
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
1437
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1438
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
1439
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1440
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
1441
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1442
|
+
ok: z.ZodBoolean;
|
|
1443
|
+
created: z.ZodOptional<z.ZodNumber>;
|
|
1444
|
+
deduped: z.ZodOptional<z.ZodNumber>;
|
|
1445
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
1446
|
+
tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1447
|
+
tid: z.ZodString;
|
|
1448
|
+
title: z.ZodString;
|
|
1449
|
+
deduped: z.ZodOptional<z.ZodBoolean>;
|
|
1450
|
+
}, z.core.$strip>>>;
|
|
1451
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1452
|
+
}, z.core.$strip>>;
|
|
1210
1453
|
"tasks:list": Receiver<z.ZodObject<{
|
|
1211
1454
|
tag: z.ZodString;
|
|
1455
|
+
status: z.ZodOptional<z.ZodString>;
|
|
1212
1456
|
workspace: z.ZodOptional<z.ZodString>;
|
|
1213
1457
|
}, z.core.$strip>, z.ZodObject<{
|
|
1214
1458
|
ok: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1284,6 +1528,8 @@ export declare const RECEIVERS: {
|
|
|
1284
1528
|
slug: z.ZodOptional<z.ZodString>;
|
|
1285
1529
|
body: z.ZodOptional<z.ZodString>;
|
|
1286
1530
|
workspace: z.ZodOptional<z.ZodString>;
|
|
1531
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
1532
|
+
author: z.ZodOptional<z.ZodString>;
|
|
1287
1533
|
}, z.core.$strip>, z.ZodObject<{
|
|
1288
1534
|
ok: z.ZodOptional<z.ZodBoolean>;
|
|
1289
1535
|
tid: z.ZodOptional<z.ZodString>;
|
|
@@ -1295,12 +1541,15 @@ export declare const RECEIVERS: {
|
|
|
1295
1541
|
title: z.ZodString;
|
|
1296
1542
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1297
1543
|
assignee: z.ZodOptional<z.ZodString>;
|
|
1544
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
1545
|
+
blockedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1298
1546
|
workspace: z.ZodOptional<z.ZodString>;
|
|
1299
1547
|
}, z.core.$strip>, z.ZodObject<{
|
|
1300
1548
|
ok: z.ZodOptional<z.ZodBoolean>;
|
|
1301
1549
|
tid: z.ZodOptional<z.ZodString>;
|
|
1302
1550
|
parent: z.ZodOptional<z.ZodString>;
|
|
1303
1551
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1552
|
+
blockedBy: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1304
1553
|
error: z.ZodOptional<z.ZodString>;
|
|
1305
1554
|
}, z.core.$strip>>;
|
|
1306
1555
|
"tasks:depend": Receiver<z.ZodObject<{
|
|
@@ -1362,7 +1611,11 @@ export declare const RECEIVERS: {
|
|
|
1362
1611
|
"human-assignee": "human-assignee";
|
|
1363
1612
|
forbidden: "forbidden";
|
|
1364
1613
|
fire_failed: "fire_failed";
|
|
1614
|
+
unspecced: "unspecced";
|
|
1615
|
+
spec_unreadable: "spec_unreadable";
|
|
1365
1616
|
}>>;
|
|
1617
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
1618
|
+
warning: z.ZodOptional<z.ZodString>;
|
|
1366
1619
|
}, z.core.$strip>>;
|
|
1367
1620
|
}, z.core.$strip>>;
|
|
1368
1621
|
"tasks:link": Receiver<z.ZodObject<{
|
|
@@ -1742,6 +1995,7 @@ export declare const RECEIVERS: {
|
|
|
1742
1995
|
since: z.ZodOptional<z.ZodNumber>;
|
|
1743
1996
|
from: z.ZodOptional<z.ZodNumber>;
|
|
1744
1997
|
to: z.ZodOptional<z.ZodNumber>;
|
|
1998
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
1745
1999
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
1746
2000
|
id: z.ZodString;
|
|
1747
2001
|
from: z.ZodString;
|
|
@@ -1754,6 +2008,7 @@ export declare const RECEIVERS: {
|
|
|
1754
2008
|
}>;
|
|
1755
2009
|
revenue: z.ZodNumber;
|
|
1756
2010
|
ts: z.ZodNumber;
|
|
2011
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
1757
2012
|
}, z.core.$strip>>>;
|
|
1758
2013
|
"stats:current": Receiver<z.ZodObject<{}, z.core.$strip>, z.ZodObject<{
|
|
1759
2014
|
units: z.ZodObject<{
|
|
@@ -2011,6 +2266,26 @@ export declare const RECEIVERS: {
|
|
|
2011
2266
|
used: z.ZodNumber;
|
|
2012
2267
|
soft: z.ZodBoolean;
|
|
2013
2268
|
}, z.core.$strip>>;
|
|
2269
|
+
"id:resolve": Receiver<z.ZodObject<{
|
|
2270
|
+
ref: z.ZodString;
|
|
2271
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2272
|
+
ok: z.ZodBoolean;
|
|
2273
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
2274
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
2275
|
+
lane: z.ZodOptional<z.ZodEnum<{
|
|
2276
|
+
minted: "minted";
|
|
2277
|
+
derived: "derived";
|
|
2278
|
+
}>>;
|
|
2279
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2280
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2281
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
2282
|
+
source: z.ZodOptional<z.ZodString>;
|
|
2283
|
+
id_prefix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2284
|
+
provenance: z.ZodOptional<z.ZodString>;
|
|
2285
|
+
count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2286
|
+
generated_at: z.ZodOptional<z.ZodString>;
|
|
2287
|
+
error: z.ZodOptional<z.ZodString>;
|
|
2288
|
+
}, z.core.$strip>>;
|
|
2014
2289
|
"plugins:list": Receiver<z.ZodObject<{}, z.core.$strip>, z.ZodObject<{
|
|
2015
2290
|
plugins: z.ZodArray<z.ZodObject<{
|
|
2016
2291
|
name: z.ZodString;
|
|
@@ -2148,6 +2423,10 @@ export declare const RECEIVERS: {
|
|
|
2148
2423
|
content: z.ZodString;
|
|
2149
2424
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
2150
2425
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2426
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
2427
|
+
user: "user";
|
|
2428
|
+
assistant: "assistant";
|
|
2429
|
+
}>>;
|
|
2151
2430
|
}, z.core.$strip>, z.ZodObject<{
|
|
2152
2431
|
ok: z.ZodBoolean;
|
|
2153
2432
|
threadId: z.ZodOptional<z.ZodString>;
|
|
@@ -2314,6 +2593,33 @@ export declare const RECEIVERS: {
|
|
|
2314
2593
|
}, z.core.$strip>>;
|
|
2315
2594
|
error: z.ZodOptional<z.ZodString>;
|
|
2316
2595
|
}, z.core.$strip>>;
|
|
2596
|
+
"event:track": Receiver<z.ZodObject<{
|
|
2597
|
+
id: z.ZodString;
|
|
2598
|
+
ts: z.ZodNumber;
|
|
2599
|
+
slug: z.ZodString;
|
|
2600
|
+
event: z.ZodString;
|
|
2601
|
+
source: z.ZodString;
|
|
2602
|
+
visitor_hash: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2603
|
+
agent_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2604
|
+
variant: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2605
|
+
thread_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2606
|
+
actor_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2607
|
+
actor_type: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2608
|
+
channel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2609
|
+
campaign: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2610
|
+
link_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2611
|
+
referrer: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2612
|
+
user_agent_class: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2613
|
+
locale: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2614
|
+
payload: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2615
|
+
consent_state: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2616
|
+
region: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2617
|
+
tags: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
2618
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2619
|
+
ok: z.ZodBoolean;
|
|
2620
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2621
|
+
error: z.ZodOptional<z.ZodString>;
|
|
2622
|
+
}, z.core.$strip>>;
|
|
2317
2623
|
"funnel:create": Receiver<z.ZodObject<{
|
|
2318
2624
|
workspaceSlug: z.ZodString;
|
|
2319
2625
|
slug: z.ZodString;
|
|
@@ -2591,8 +2897,8 @@ export declare const RECEIVERS: {
|
|
|
2591
2897
|
kind: z.ZodOptional<z.ZodEnum<{
|
|
2592
2898
|
agent: "agent";
|
|
2593
2899
|
skill: "skill";
|
|
2594
|
-
workflow: "workflow";
|
|
2595
2900
|
view: "view";
|
|
2901
|
+
workflow: "workflow";
|
|
2596
2902
|
playbook: "playbook";
|
|
2597
2903
|
}>>;
|
|
2598
2904
|
ref: z.ZodOptional<z.ZodString>;
|
|
@@ -2665,6 +2971,7 @@ export declare const RECEIVERS: {
|
|
|
2665
2971
|
chain: z.ZodString;
|
|
2666
2972
|
address: z.ZodString;
|
|
2667
2973
|
}, z.core.$strip>>>;
|
|
2974
|
+
agentCaps: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2668
2975
|
delegated: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2669
2976
|
error: z.ZodOptional<z.ZodString>;
|
|
2670
2977
|
}, z.core.$strip>>;
|
|
@@ -2687,6 +2994,21 @@ export declare const RECEIVERS: {
|
|
|
2687
2994
|
}, z.core.$strip>>>;
|
|
2688
2995
|
error: z.ZodOptional<z.ZodString>;
|
|
2689
2996
|
}, z.core.$strip>>;
|
|
2997
|
+
"wallet:transfer": Receiver<z.ZodObject<{
|
|
2998
|
+
to: z.ZodString;
|
|
2999
|
+
amount: z.ZodNumber;
|
|
3000
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
3001
|
+
from: z.ZodOptional<z.ZodString>;
|
|
3002
|
+
transferId: z.ZodOptional<z.ZodString>;
|
|
3003
|
+
memo: z.ZodOptional<z.ZodString>;
|
|
3004
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3005
|
+
ok: z.ZodBoolean;
|
|
3006
|
+
from: z.ZodOptional<z.ZodString>;
|
|
3007
|
+
to: z.ZodOptional<z.ZodString>;
|
|
3008
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
3009
|
+
transferId: z.ZodOptional<z.ZodString>;
|
|
3010
|
+
error: z.ZodOptional<z.ZodString>;
|
|
3011
|
+
}, z.core.$strip>>;
|
|
2690
3012
|
"wallet:send": Receiver<z.ZodObject<{
|
|
2691
3013
|
to: z.ZodString;
|
|
2692
3014
|
chain: z.ZodString;
|
|
@@ -3610,8 +3932,19 @@ export declare const RECEIVERS: {
|
|
|
3610
3932
|
runs: z.ZodNumber;
|
|
3611
3933
|
failures: z.ZodNumber;
|
|
3612
3934
|
avgMs: z.ZodNullable<z.ZodNumber>;
|
|
3935
|
+
minMs: z.ZodNullable<z.ZodNumber>;
|
|
3613
3936
|
maxMs: z.ZodNullable<z.ZodNumber>;
|
|
3937
|
+
totalMs: z.ZodNumber;
|
|
3938
|
+
share: z.ZodNullable<z.ZodNumber>;
|
|
3614
3939
|
lastAt: z.ZodNullable<z.ZodNumber>;
|
|
3940
|
+
messages: z.ZodArray<z.ZodObject<{
|
|
3941
|
+
kind: z.ZodString;
|
|
3942
|
+
status: z.ZodNullable<z.ZodString>;
|
|
3943
|
+
latencyMs: z.ZodNullable<z.ZodNumber>;
|
|
3944
|
+
at: z.ZodNumber;
|
|
3945
|
+
text: z.ZodString;
|
|
3946
|
+
}, z.core.$strip>>;
|
|
3947
|
+
series: z.ZodArray<z.ZodNumber>;
|
|
3615
3948
|
}, z.core.$strip>>;
|
|
3616
3949
|
error: z.ZodOptional<z.ZodString>;
|
|
3617
3950
|
}, z.core.$strip>>;
|
|
@@ -4463,6 +4796,18 @@ export declare const RECEIVERS: {
|
|
|
4463
4796
|
skipped: z.ZodOptional<z.ZodNumber>;
|
|
4464
4797
|
reason: z.ZodOptional<z.ZodString>;
|
|
4465
4798
|
}, z.core.$strip>>;
|
|
4799
|
+
"health:diagnose": Receiver<z.ZodObject<{}, z.core.$strip>, z.ZodObject<{
|
|
4800
|
+
ok: z.ZodBoolean;
|
|
4801
|
+
verdict: z.ZodOptional<z.ZodEnum<{
|
|
4802
|
+
healthy: "healthy";
|
|
4803
|
+
degraded: "degraded";
|
|
4804
|
+
unhealthy: "unhealthy";
|
|
4805
|
+
}>>;
|
|
4806
|
+
symptoms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4807
|
+
surfaces: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
|
|
4808
|
+
sick: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
|
|
4809
|
+
checkedAt: z.ZodOptional<z.ZodString>;
|
|
4810
|
+
}, z.core.$strip>>;
|
|
4466
4811
|
"seo:backlinks-summary": Receiver<z.ZodObject<{
|
|
4467
4812
|
target: z.ZodString;
|
|
4468
4813
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4517,6 +4862,33 @@ export declare const RECEIVERS: {
|
|
|
4517
4862
|
data: z.ZodOptional<z.ZodUnknown>;
|
|
4518
4863
|
error: z.ZodOptional<z.ZodString>;
|
|
4519
4864
|
}, z.core.$strip>>;
|
|
4865
|
+
"promise:make": Receiver<z.ZodObject<{
|
|
4866
|
+
slug: z.ZodString;
|
|
4867
|
+
terms: z.ZodString;
|
|
4868
|
+
proof: z.ZodString;
|
|
4869
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4870
|
+
ok: z.ZodBoolean;
|
|
4871
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
4872
|
+
state: z.ZodOptional<z.ZodLiteral<"promised">>;
|
|
4873
|
+
terms_hash: z.ZodOptional<z.ZodString>;
|
|
4874
|
+
error: z.ZodOptional<z.ZodString>;
|
|
4875
|
+
}, z.core.$strip>>;
|
|
4876
|
+
"promise:settle": Receiver<z.ZodObject<{
|
|
4877
|
+
slug: z.ZodString;
|
|
4878
|
+
kept: z.ZodOptional<z.ZodBoolean>;
|
|
4879
|
+
composite: z.ZodOptional<z.ZodNumber>;
|
|
4880
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4881
|
+
ok: z.ZodBoolean;
|
|
4882
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
4883
|
+
state: z.ZodOptional<z.ZodEnum<{
|
|
4884
|
+
dissolved: "dissolved";
|
|
4885
|
+
"settled-kept": "settled-kept";
|
|
4886
|
+
"settled-broken": "settled-broken";
|
|
4887
|
+
}>>;
|
|
4888
|
+
strength: z.ZodOptional<z.ZodNumber>;
|
|
4889
|
+
resistance: z.ZodOptional<z.ZodNumber>;
|
|
4890
|
+
error: z.ZodOptional<z.ZodString>;
|
|
4891
|
+
}, z.core.$strip>>;
|
|
4520
4892
|
};
|
|
4521
4893
|
/** A declared receiver name — `keyof` the catalog. */
|
|
4522
4894
|
export type ReceiverName = keyof typeof RECEIVERS;
|
package/dist/receivers.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"receivers.d.ts","sourceRoot":"","sources":["../src/receivers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAaxB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAEpD;;;;;;;;;;;;;GAaG;AAEH;;;;;;;;;;;GAWG;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,CAAC;AAE/B,8EAA8E;AAC9E,YAAY,EAAE,UAAU,EAAE,CAAC;AAE3B,+DAA+D;AAC/D,MAAM,MAAM,YAAY,GAAG,MAAM,GAAG,UAAU,GAAG;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC;AAEnE,oDAAoD;AACpD,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,UAAU,GAAG,SAAS,CAAC;AAEzD,6CAA6C;AAC7C,MAAM,MAAM,cAAc,GAAG,QAAQ,GAAG,KAAK,CAAC;AAE9C;;;GAGG;AACH,MAAM,WAAW,QAAQ,CACvB,GAAG,SAAS,CAAC,CAAC,UAAU,GAAG,CAAC,CAAC,UAAU,EACvC,GAAG,SAAS,CAAC,CAAC,UAAU,GAAG,CAAC,CAAC,UAAU;IAEvC,iDAAiD;IACjD,QAAQ,EAAE,MAAM,CAAC;IACjB,yDAAyD;IACzD,OAAO,EAAE,MAAM,CAAC;IAChB,6EAA6E;IAC7E,OAAO,EAAE,GAAG,CAAC;IACb,oCAAoC;IACpC,QAAQ,EAAE,GAAG,CAAC;IACd,gEAAgE;IAChE,MAAM,EAAE,cAAc,CAAC;IACvB;;;iCAG6B;IAC7B,IAAI,CAAC,EAAE,SAAS,CAAC;IAEjB;;;;;;;;;;;OAWG;IACH,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB;2EACuE;IACvE,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,OAAO,CAAC;IAGnC,wDAAwD;IACxD,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,qDAAqD;IACrD,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,0CAA0C;IAC1C,OAAO,CAAC,EAAE,UAAU,CAAC;IACrB,2EAA2E;IAC3E,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,0EAA0E;IAC1E,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,2EAA2E;IAC3E,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,kEAAkE;IAClE,QAAQ,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,gEAAgE;IAChE,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;;;;;;;;;;;;;;;OAkBG;IACH,QAAQ,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,OAAO,CAAC;QAAC,GAAG,CAAC,EAAE,OAAO,GAAG;YAAE,IAAI,CAAC,EAAE,MAAM,CAAA;SAAE,CAAA;KAAE,CAAC;IAEjE;;;OAGG;IACH,OAAO,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,OAAO,KAAK,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;CACrF;AAED;;;GAGG;AACH,wBAAgB,QAAQ,CAAC,GAAG,SAAS,CAAC,CAAC,UAAU,EAAE,GAAG,SAAS,CAAC,CAAC,UAAU,EACzE,CAAC,EAAE,QAAQ,CAAC,GAAG,EAAE,GAAG,CAAC,GACpB,QAAQ,CAAC,GAAG,EAAE,GAAG,CAAC,CAEpB;AACD;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,WAAW,GAAI,UAAU,MAAM,KAAG,MAAiD,CAAC;AAIjG;;;;;;;GAOG;AACH,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"receivers.d.ts","sourceRoot":"","sources":["../src/receivers.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6zK+B,CAAC;AAErC,sDAAsD;AACtD,MAAM,MAAM,YAAY,GAAG,MAAM,OAAO,SAAS,CAAC;AAElD,+CAA+C;AAC/C,MAAM,MAAM,KAAK,CAAC,CAAC,SAAS,YAAY,IACtC,CAAC,OAAO,SAAS,CAAC,CAAC,CAAC,CAAC,SAAS,QAAQ,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;AAEzF,iDAAiD;AACjD,MAAM,MAAM,KAAK,CAAC,CAAC,SAAS,YAAY,IACtC,CAAC,OAAO,SAAS,CAAC,CAAC,CAAC,CAAC,SAAS,QAAQ,CAAC,CAAC,CAAC,UAAU,EAAE,MAAM,GAAG,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;AAE1F;;;;;GAKG;AACH,eAAO,MAAM,OAAO;IAClB,iFAAiF;;IAEjF,wDAAwD;;IAExD,iEAAiE;;IAEjE,mDAAmD;;IAEnD,8DAA8D;;IAE9D,wFAAwF;;CAEvC,CAAC;AAEpD,8BAA8B;AAC9B,MAAM,MAAM,UAAU,GAAG,MAAM,OAAO,OAAO,CAAC"}
|