@oneie/sdk 0.14.8 → 0.14.10
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/README.md +16 -1
- package/dist/broadcast.d.ts +25 -0
- package/dist/broadcast.d.ts.map +1 -1
- package/dist/client.d.ts +1 -0
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +27 -4
- package/dist/client.js.map +1 -1
- package/dist/gateway.d.ts +17 -1
- package/dist/gateway.d.ts.map +1 -1
- package/dist/gateway.js +40 -10
- package/dist/gateway.js.map +1 -1
- package/dist/receivers.d.ts +230 -1
- package/dist/receivers.d.ts.map +1 -1
- package/dist/receivers.js +267 -9
- package/dist/receivers.js.map +1 -1
- package/dist/types.d.ts +6 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/dist/work-contract-grammar.json +19 -1
- package/package.json +1 -1
package/dist/receivers.d.ts
CHANGED
|
@@ -347,10 +347,10 @@ export declare const RECEIVERS: {
|
|
|
347
347
|
visitorHash: z.ZodOptional<z.ZodString>;
|
|
348
348
|
freeText: z.ZodOptional<z.ZodString>;
|
|
349
349
|
source: z.ZodEnum<{
|
|
350
|
+
event: "event";
|
|
350
351
|
door: "door";
|
|
351
352
|
chat: "chat";
|
|
352
353
|
asked: "asked";
|
|
353
|
-
event: "event";
|
|
354
354
|
}>;
|
|
355
355
|
}, z.core.$strip>, z.ZodObject<{
|
|
356
356
|
ok: z.ZodBoolean;
|
|
@@ -953,18 +953,94 @@ export declare const RECEIVERS: {
|
|
|
953
953
|
name: z.ZodString;
|
|
954
954
|
tags: z.ZodArray<z.ZodString>;
|
|
955
955
|
weight: z.ZodNumber;
|
|
956
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
957
|
+
contextDocs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
958
|
+
}, z.core.$strip>>;
|
|
959
|
+
}, z.core.$strip>>;
|
|
960
|
+
"tasks:everywhere": Receiver<z.ZodObject<{
|
|
961
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
962
|
+
closed: z.ZodOptional<z.ZodBoolean>;
|
|
963
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
964
|
+
ok: z.ZodBoolean;
|
|
965
|
+
tasks: z.ZodArray<z.ZodObject<{
|
|
966
|
+
id: z.ZodString;
|
|
967
|
+
name: z.ZodString;
|
|
968
|
+
tags: z.ZodArray<z.ZodString>;
|
|
969
|
+
weight: z.ZodNumber;
|
|
970
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
971
|
+
contextDocs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
972
|
+
workspace: z.ZodString;
|
|
973
|
+
status: z.ZodString;
|
|
974
|
+
dueAt: z.ZodOptional<z.ZodString>;
|
|
975
|
+
assignee: z.ZodOptional<z.ZodString>;
|
|
976
|
+
mine: z.ZodBoolean;
|
|
977
|
+
claimable: z.ZodBoolean;
|
|
978
|
+
offeredByMe: z.ZodBoolean;
|
|
979
|
+
closedAt: z.ZodOptional<z.ZodString>;
|
|
956
980
|
}, z.core.$strip>>;
|
|
957
981
|
}, z.core.$strip>>;
|
|
958
982
|
"tasks:create": Receiver<z.ZodObject<{
|
|
959
983
|
title: z.ZodString;
|
|
960
984
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
961
985
|
assignee: z.ZodOptional<z.ZodString>;
|
|
986
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
962
987
|
workspace: z.ZodOptional<z.ZodString>;
|
|
963
988
|
}, z.core.$strip>, z.ZodObject<{
|
|
964
989
|
ok: z.ZodBoolean;
|
|
965
990
|
tid: z.ZodOptional<z.ZodString>;
|
|
966
991
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
967
992
|
}, z.core.$strip>>;
|
|
993
|
+
"tasks:claim": Receiver<z.ZodObject<{
|
|
994
|
+
tid: z.ZodString;
|
|
995
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
996
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
997
|
+
ok: z.ZodOptional<z.ZodBoolean>;
|
|
998
|
+
tid: z.ZodOptional<z.ZodString>;
|
|
999
|
+
status: z.ZodOptional<z.ZodString>;
|
|
1000
|
+
claimant: z.ZodOptional<z.ZodString>;
|
|
1001
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1002
|
+
}, z.core.$strip>>;
|
|
1003
|
+
"tasks:undepend": Receiver<z.ZodObject<{
|
|
1004
|
+
tid: z.ZodString;
|
|
1005
|
+
blockedBy: z.ZodString;
|
|
1006
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
1007
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1008
|
+
ok: z.ZodOptional<z.ZodBoolean>;
|
|
1009
|
+
tid: z.ZodOptional<z.ZodString>;
|
|
1010
|
+
blockedBy: z.ZodOptional<z.ZodString>;
|
|
1011
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1012
|
+
}, z.core.$strip>>;
|
|
1013
|
+
"tasks:launch": Receiver<z.ZodObject<{
|
|
1014
|
+
tids: z.ZodArray<z.ZodString>;
|
|
1015
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
1016
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1017
|
+
ok: z.ZodBoolean;
|
|
1018
|
+
results: z.ZodArray<z.ZodObject<{
|
|
1019
|
+
tid: z.ZodString;
|
|
1020
|
+
ok: z.ZodBoolean;
|
|
1021
|
+
actorId: z.ZodOptional<z.ZodString>;
|
|
1022
|
+
reason: z.ZodOptional<z.ZodEnum<{
|
|
1023
|
+
blocked: "blocked";
|
|
1024
|
+
unassigned: "unassigned";
|
|
1025
|
+
"human-assignee": "human-assignee";
|
|
1026
|
+
forbidden: "forbidden";
|
|
1027
|
+
fire_failed: "fire_failed";
|
|
1028
|
+
}>>;
|
|
1029
|
+
}, z.core.$strip>>;
|
|
1030
|
+
}, z.core.$strip>>;
|
|
1031
|
+
"tasks:link": Receiver<z.ZodObject<{
|
|
1032
|
+
tid: z.ZodString;
|
|
1033
|
+
slug: z.ZodString;
|
|
1034
|
+
docs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1035
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
1036
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1037
|
+
ok: z.ZodOptional<z.ZodBoolean>;
|
|
1038
|
+
tid: z.ZodOptional<z.ZodString>;
|
|
1039
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
1040
|
+
docs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1041
|
+
status: z.ZodOptional<z.ZodString>;
|
|
1042
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1043
|
+
}, z.core.$strip>>;
|
|
968
1044
|
"agents:register": Receiver<z.ZodObject<{
|
|
969
1045
|
uid: z.ZodString;
|
|
970
1046
|
kind: z.ZodOptional<z.ZodString>;
|
|
@@ -1618,6 +1694,10 @@ export declare const RECEIVERS: {
|
|
|
1618
1694
|
kind: z.ZodOptional<z.ZodString>;
|
|
1619
1695
|
body: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>;
|
|
1620
1696
|
content: z.ZodOptional<z.ZodString>;
|
|
1697
|
+
action: z.ZodOptional<z.ZodObject<{
|
|
1698
|
+
label: z.ZodString;
|
|
1699
|
+
redirect: z.ZodString;
|
|
1700
|
+
}, z.core.$strip>>;
|
|
1621
1701
|
}, z.core.$strip>, z.ZodObject<{
|
|
1622
1702
|
ok: z.ZodBoolean;
|
|
1623
1703
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1649,6 +1729,17 @@ export declare const RECEIVERS: {
|
|
|
1649
1729
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
1650
1730
|
error: z.ZodOptional<z.ZodString>;
|
|
1651
1731
|
}, z.core.$strip>>;
|
|
1732
|
+
"push:subscribe": Receiver<z.ZodObject<{
|
|
1733
|
+
endpoint: z.ZodString;
|
|
1734
|
+
keys: z.ZodObject<{
|
|
1735
|
+
p256dh: z.ZodString;
|
|
1736
|
+
auth: z.ZodString;
|
|
1737
|
+
}, z.core.$strip>;
|
|
1738
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
1739
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1740
|
+
ok: z.ZodBoolean;
|
|
1741
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1742
|
+
}, z.core.$strip>>;
|
|
1652
1743
|
"thread:append": Receiver<z.ZodObject<{
|
|
1653
1744
|
slug: z.ZodString;
|
|
1654
1745
|
group: z.ZodString;
|
|
@@ -2323,6 +2414,19 @@ export declare const RECEIVERS: {
|
|
|
2323
2414
|
duration_min: z.ZodNumber;
|
|
2324
2415
|
price: z.ZodNumber;
|
|
2325
2416
|
currency: z.ZodString;
|
|
2417
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2418
|
+
location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2419
|
+
intake: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2420
|
+
key: z.ZodString;
|
|
2421
|
+
label: z.ZodString;
|
|
2422
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
2423
|
+
number: "number";
|
|
2424
|
+
text: "text";
|
|
2425
|
+
choice: "choice";
|
|
2426
|
+
}>>;
|
|
2427
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2428
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2429
|
+
}, z.core.$strip>>>;
|
|
2326
2430
|
}, z.core.$strip>>;
|
|
2327
2431
|
slots: z.ZodArray<z.ZodObject<{
|
|
2328
2432
|
date: z.ZodString;
|
|
@@ -2330,6 +2434,37 @@ export declare const RECEIVERS: {
|
|
|
2330
2434
|
}, z.core.$strip>>;
|
|
2331
2435
|
error: z.ZodOptional<z.ZodString>;
|
|
2332
2436
|
}, z.core.$strip>>;
|
|
2437
|
+
"booking:list-services": Receiver<z.ZodObject<{
|
|
2438
|
+
slug: z.ZodString;
|
|
2439
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2440
|
+
services: z.ZodArray<z.ZodObject<{
|
|
2441
|
+
service_id: z.ZodString;
|
|
2442
|
+
name: z.ZodString;
|
|
2443
|
+
duration_min: z.ZodNumber;
|
|
2444
|
+
price: z.ZodNumber;
|
|
2445
|
+
currency: z.ZodString;
|
|
2446
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2447
|
+
location: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2448
|
+
buffer_min: z.ZodOptional<z.ZodNumber>;
|
|
2449
|
+
tz: z.ZodOptional<z.ZodString>;
|
|
2450
|
+
hours_json: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
|
|
2451
|
+
start: z.ZodString;
|
|
2452
|
+
end: z.ZodString;
|
|
2453
|
+
}, z.core.$strip>>>>;
|
|
2454
|
+
intake: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2455
|
+
key: z.ZodString;
|
|
2456
|
+
label: z.ZodString;
|
|
2457
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
2458
|
+
number: "number";
|
|
2459
|
+
text: "text";
|
|
2460
|
+
choice: "choice";
|
|
2461
|
+
}>>;
|
|
2462
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2463
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2464
|
+
}, z.core.$strip>>>;
|
|
2465
|
+
}, z.core.$strip>>;
|
|
2466
|
+
error: z.ZodOptional<z.ZodString>;
|
|
2467
|
+
}, z.core.$strip>>;
|
|
2333
2468
|
"booking:create": Receiver<z.ZodObject<{
|
|
2334
2469
|
slug: z.ZodString;
|
|
2335
2470
|
service: z.ZodString;
|
|
@@ -2338,7 +2473,9 @@ export declare const RECEIVERS: {
|
|
|
2338
2473
|
customer: z.ZodObject<{
|
|
2339
2474
|
name: z.ZodString;
|
|
2340
2475
|
email: z.ZodOptional<z.ZodString>;
|
|
2476
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
2341
2477
|
}, z.core.$strip>;
|
|
2478
|
+
details: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>;
|
|
2342
2479
|
paymentRail: z.ZodOptional<z.ZodEnum<{
|
|
2343
2480
|
stripe: "stripe";
|
|
2344
2481
|
sui: "sui";
|
|
@@ -2379,6 +2516,20 @@ export declare const RECEIVERS: {
|
|
|
2379
2516
|
}, z.core.$strip>>>;
|
|
2380
2517
|
tz: z.ZodOptional<z.ZodString>;
|
|
2381
2518
|
active: z.ZodOptional<z.ZodBoolean>;
|
|
2519
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2520
|
+
location: z.ZodOptional<z.ZodString>;
|
|
2521
|
+
buffer_min: z.ZodOptional<z.ZodNumber>;
|
|
2522
|
+
intake: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2523
|
+
key: z.ZodString;
|
|
2524
|
+
label: z.ZodString;
|
|
2525
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
2526
|
+
number: "number";
|
|
2527
|
+
text: "text";
|
|
2528
|
+
choice: "choice";
|
|
2529
|
+
}>>;
|
|
2530
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2531
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2532
|
+
}, z.core.$strip>>>;
|
|
2382
2533
|
}, z.core.$strip>, z.ZodObject<{
|
|
2383
2534
|
ok: z.ZodBoolean;
|
|
2384
2535
|
service_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2396,14 +2547,36 @@ export declare const RECEIVERS: {
|
|
|
2396
2547
|
slot_time: z.ZodString;
|
|
2397
2548
|
customer_name: z.ZodString;
|
|
2398
2549
|
status: z.ZodString;
|
|
2550
|
+
customer_phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2551
|
+
details: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>>;
|
|
2399
2552
|
}, z.core.$strip>>;
|
|
2400
2553
|
error: z.ZodOptional<z.ZodString>;
|
|
2401
2554
|
}, z.core.$strip>>;
|
|
2402
2555
|
"booking:cancel": Receiver<z.ZodObject<{
|
|
2403
2556
|
slug: z.ZodString;
|
|
2404
2557
|
ref: z.ZodString;
|
|
2558
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2559
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
2560
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2561
|
+
ok: z.ZodBoolean;
|
|
2562
|
+
error: z.ZodOptional<z.ZodString>;
|
|
2563
|
+
}, z.core.$strip>>;
|
|
2564
|
+
"booking:reschedule": Receiver<z.ZodObject<{
|
|
2565
|
+
slug: z.ZodString;
|
|
2566
|
+
ref: z.ZodString;
|
|
2567
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2568
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
2569
|
+
newDate: z.ZodString;
|
|
2570
|
+
newTime: z.ZodString;
|
|
2405
2571
|
}, z.core.$strip>, z.ZodObject<{
|
|
2406
2572
|
ok: z.ZodBoolean;
|
|
2573
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
2574
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
2575
|
+
pending: "pending";
|
|
2576
|
+
confirmed: "confirmed";
|
|
2577
|
+
}>>;
|
|
2578
|
+
slotDate: z.ZodOptional<z.ZodString>;
|
|
2579
|
+
slotTime: z.ZodOptional<z.ZodString>;
|
|
2407
2580
|
error: z.ZodOptional<z.ZodString>;
|
|
2408
2581
|
}, z.core.$strip>>;
|
|
2409
2582
|
"workflow:list": Receiver<z.ZodObject<{
|
|
@@ -2471,6 +2644,16 @@ export declare const RECEIVERS: {
|
|
|
2471
2644
|
}, z.core.$strip>>>;
|
|
2472
2645
|
error: z.ZodOptional<z.ZodString>;
|
|
2473
2646
|
}, z.core.$strip>>;
|
|
2647
|
+
"workflow:preview-step": Receiver<z.ZodObject<{
|
|
2648
|
+
workflowId: z.ZodString;
|
|
2649
|
+
stepId: z.ZodString;
|
|
2650
|
+
mockTrigger: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2651
|
+
mockSteps: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2652
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2653
|
+
receiver: z.ZodNullable<z.ZodString>;
|
|
2654
|
+
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2655
|
+
error: z.ZodOptional<z.ZodString>;
|
|
2656
|
+
}, z.core.$strip>>;
|
|
2474
2657
|
"workflow:create": Receiver<z.ZodObject<{
|
|
2475
2658
|
slug: z.ZodOptional<z.ZodString>;
|
|
2476
2659
|
name: z.ZodString;
|
|
@@ -2903,6 +3086,52 @@ export declare const RECEIVERS: {
|
|
|
2903
3086
|
}, z.core.$strip>, z.ZodObject<{
|
|
2904
3087
|
broadcast: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2905
3088
|
}, z.core.$strip>>;
|
|
3089
|
+
"segment:create": Receiver<z.ZodObject<{
|
|
3090
|
+
workspace: z.ZodString;
|
|
3091
|
+
name: z.ZodString;
|
|
3092
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3093
|
+
definition: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3094
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3095
|
+
id: z.ZodString;
|
|
3096
|
+
}, z.core.$strip>>;
|
|
3097
|
+
"segment:update": Receiver<z.ZodObject<{
|
|
3098
|
+
workspace: z.ZodString;
|
|
3099
|
+
id: z.ZodString;
|
|
3100
|
+
name: z.ZodOptional<z.ZodString>;
|
|
3101
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3102
|
+
definition: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3103
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3104
|
+
ok: z.ZodBoolean;
|
|
3105
|
+
}, z.core.$strip>>;
|
|
3106
|
+
"segment:list": Receiver<z.ZodObject<{
|
|
3107
|
+
workspace: z.ZodString;
|
|
3108
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3109
|
+
segments: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3110
|
+
}, z.core.$strip>>;
|
|
3111
|
+
"segment:get": Receiver<z.ZodObject<{
|
|
3112
|
+
workspace: z.ZodString;
|
|
3113
|
+
id: z.ZodString;
|
|
3114
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3115
|
+
segment: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3116
|
+
}, z.core.$strip>>;
|
|
3117
|
+
"segment:preview": Receiver<z.ZodObject<{
|
|
3118
|
+
workspace: z.ZodString;
|
|
3119
|
+
definition: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3120
|
+
channel: z.ZodOptional<z.ZodEnum<{
|
|
3121
|
+
email: "email";
|
|
3122
|
+
sms: "sms";
|
|
3123
|
+
whatsapp: "whatsapp";
|
|
3124
|
+
}>>;
|
|
3125
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3126
|
+
count: z.ZodNumber;
|
|
3127
|
+
sample: z.ZodArray<z.ZodString>;
|
|
3128
|
+
}, z.core.$strip>>;
|
|
3129
|
+
"segment:delete": Receiver<z.ZodObject<{
|
|
3130
|
+
workspace: z.ZodString;
|
|
3131
|
+
id: z.ZodString;
|
|
3132
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3133
|
+
ok: z.ZodBoolean;
|
|
3134
|
+
}, z.core.$strip>>;
|
|
2906
3135
|
"broadcast:test": Receiver<z.ZodObject<{
|
|
2907
3136
|
workspace: z.ZodString;
|
|
2908
3137
|
broadcastId: z.ZodString;
|
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;AAcxB;;;;;;;;;;;;;GAaG;AAEH;sEACsE;AACtE,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC;AAEhC,+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,mEAAmE;IACnE,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB;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;;;;;;;;;;;OAWG;IACH,QAAQ,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE,CAAC;IAE9B;;;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;AAID;;;;;;;GAOG;AACH,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"receivers.d.ts","sourceRoot":"","sources":["../src/receivers.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmyGc,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"}
|