@oneie/sdk 0.14.4 → 0.14.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.
- package/dist/generated/schemas.d.ts +122 -31
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +75 -34
- package/dist/generated/schemas.js.map +1 -1
- package/dist/market.d.ts +57 -0
- package/dist/market.d.ts.map +1 -1
- package/dist/market.js +74 -1
- package/dist/market.js.map +1 -1
- package/dist/receivers.d.ts +359 -0
- package/dist/receivers.d.ts.map +1 -1
- package/dist/receivers.js +360 -4
- package/dist/receivers.js.map +1 -1
- package/dist/types.d.ts +3 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/dist/wallet.d.ts +43 -0
- package/dist/wallet.d.ts.map +1 -0
- package/dist/wallet.js +237 -0
- package/dist/wallet.js.map +1 -0
- package/dist/work-contract-grammar.json +459 -0
- package/dist/work-contract.d.ts +44 -0
- package/dist/work-contract.d.ts.map +1 -0
- package/dist/work-contract.js +208 -0
- package/dist/work-contract.js.map +1 -0
- package/package.json +13 -1
package/dist/receivers.d.ts
CHANGED
|
@@ -60,6 +60,21 @@ export interface Receiver<Req extends z.ZodTypeAny = z.ZodTypeAny, Res extends z
|
|
|
60
60
|
examples?: Array<z.infer<Req>>;
|
|
61
61
|
/** Migration target if retiring — agents read this and move. */
|
|
62
62
|
deprecated?: string;
|
|
63
|
+
/**
|
|
64
|
+
* Outward surfaces this receiver opts INTO (fan-out · projection). Default
|
|
65
|
+
* closed: omit ⇒ a receiver is reachable by name (HTTP/CLI/MCP/A2A — by-name
|
|
66
|
+
* universality, never gated) but NOT auto-offered to the chat model. Flag
|
|
67
|
+
* `chat: true` and `chatToolsFor(ctx)` derives a validated chat tool that
|
|
68
|
+
* dispatches through the one door (`ask`) — no per-tool channels code. It runs
|
|
69
|
+
* ALONGSIDE the curated `defineWorkspaceTool` tools (which carry chat-specific
|
|
70
|
+
* shaping the registry can't infer); a curated tool of the same name wins.
|
|
71
|
+
* There is deliberately no `surfaces.http` — by-name reachability is the
|
|
72
|
+
* feature. Cron/webhook bindings live in the trigger table, not here.
|
|
73
|
+
* See `text/actions-fan-out.md`.
|
|
74
|
+
*/
|
|
75
|
+
surfaces?: {
|
|
76
|
+
chat?: boolean;
|
|
77
|
+
};
|
|
63
78
|
/**
|
|
64
79
|
* Bound in the service, not the SDK. Contract-only declarations omit it;
|
|
65
80
|
* `world-receivers.ts` and channels tool modules attach it.
|
|
@@ -322,6 +337,27 @@ export declare const RECEIVERS: {
|
|
|
322
337
|
region: z.ZodOptional<z.ZodString>;
|
|
323
338
|
reason: z.ZodOptional<z.ZodString>;
|
|
324
339
|
}, z.core.$strip>>;
|
|
340
|
+
"visitor:identify": Receiver<z.ZodObject<{
|
|
341
|
+
email: z.ZodOptional<z.ZodString>;
|
|
342
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
343
|
+
name: z.ZodOptional<z.ZodString>;
|
|
344
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
345
|
+
channel: z.ZodOptional<z.ZodString>;
|
|
346
|
+
sender: z.ZodOptional<z.ZodString>;
|
|
347
|
+
visitorHash: z.ZodOptional<z.ZodString>;
|
|
348
|
+
freeText: z.ZodOptional<z.ZodString>;
|
|
349
|
+
source: z.ZodEnum<{
|
|
350
|
+
door: "door";
|
|
351
|
+
chat: "chat";
|
|
352
|
+
asked: "asked";
|
|
353
|
+
event: "event";
|
|
354
|
+
}>;
|
|
355
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
356
|
+
ok: z.ZodBoolean;
|
|
357
|
+
aid: z.ZodOptional<z.ZodString>;
|
|
358
|
+
merged: z.ZodOptional<z.ZodBoolean>;
|
|
359
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
360
|
+
}, z.core.$strip>>;
|
|
325
361
|
"world:update-contact": Receiver<z.ZodObject<{
|
|
326
362
|
aid: z.ZodString;
|
|
327
363
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -559,6 +595,16 @@ export declare const RECEIVERS: {
|
|
|
559
595
|
}, z.core.$strip>, z.ZodObject<{
|
|
560
596
|
ok: z.ZodBoolean;
|
|
561
597
|
}, z.core.$strip>>;
|
|
598
|
+
"world:publish-agent": Receiver<z.ZodObject<{
|
|
599
|
+
slug: z.ZodString;
|
|
600
|
+
name: z.ZodString;
|
|
601
|
+
content: z.ZodString;
|
|
602
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
603
|
+
ok: z.ZodBoolean;
|
|
604
|
+
url: z.ZodString;
|
|
605
|
+
name: z.ZodString;
|
|
606
|
+
bytes: z.ZodNumber;
|
|
607
|
+
}, z.core.$strip>>;
|
|
562
608
|
"world:list-things": Receiver<z.ZodObject<{
|
|
563
609
|
group: z.ZodString;
|
|
564
610
|
type: z.ZodString;
|
|
@@ -650,6 +696,61 @@ export declare const RECEIVERS: {
|
|
|
650
696
|
ok: z.ZodBoolean;
|
|
651
697
|
target: z.ZodOptional<z.ZodString>;
|
|
652
698
|
}, z.core.$strip>>;
|
|
699
|
+
"world:in": Receiver<z.ZodObject<{
|
|
700
|
+
content: z.ZodString;
|
|
701
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
702
|
+
to: z.ZodOptional<z.ZodString>;
|
|
703
|
+
from: z.ZodOptional<z.ZodString>;
|
|
704
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
705
|
+
ok: z.ZodBoolean;
|
|
706
|
+
decision: z.ZodOptional<z.ZodEnum<{
|
|
707
|
+
private: "private";
|
|
708
|
+
public: "public";
|
|
709
|
+
fanout: "fanout";
|
|
710
|
+
quarantine: "quarantine";
|
|
711
|
+
}>>;
|
|
712
|
+
targets: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
713
|
+
delivered: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
714
|
+
guard: z.ZodOptional<z.ZodObject<{
|
|
715
|
+
toxic: z.ZodBoolean;
|
|
716
|
+
score: z.ZodNumber;
|
|
717
|
+
reason: z.ZodString;
|
|
718
|
+
}, z.core.$strip>>;
|
|
719
|
+
note: z.ZodOptional<z.ZodString>;
|
|
720
|
+
error: z.ZodOptional<z.ZodString>;
|
|
721
|
+
}, z.core.$strip>>;
|
|
722
|
+
"world:subscribe": Receiver<z.ZodObject<{
|
|
723
|
+
tag: z.ZodString;
|
|
724
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
725
|
+
actor: z.ZodOptional<z.ZodString>;
|
|
726
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
727
|
+
ok: z.ZodBoolean;
|
|
728
|
+
subscriber: z.ZodOptional<z.ZodString>;
|
|
729
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
730
|
+
error: z.ZodOptional<z.ZodString>;
|
|
731
|
+
}, z.core.$strip>>;
|
|
732
|
+
"world:unsubscribe": Receiver<z.ZodObject<{
|
|
733
|
+
tag: z.ZodString;
|
|
734
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
735
|
+
actor: z.ZodOptional<z.ZodString>;
|
|
736
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
737
|
+
ok: z.ZodBoolean;
|
|
738
|
+
subscriber: z.ZodOptional<z.ZodString>;
|
|
739
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
740
|
+
removed: z.ZodOptional<z.ZodNumber>;
|
|
741
|
+
error: z.ZodOptional<z.ZodString>;
|
|
742
|
+
}, z.core.$strip>>;
|
|
743
|
+
"world:subscribers": Receiver<z.ZodObject<{
|
|
744
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
745
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
746
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
747
|
+
ok: z.ZodBoolean;
|
|
748
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
749
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
750
|
+
subscribers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
751
|
+
byTag: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>;
|
|
752
|
+
error: z.ZodOptional<z.ZodString>;
|
|
753
|
+
}, z.core.$strip>>;
|
|
653
754
|
"identity:address": Receiver<z.ZodObject<{
|
|
654
755
|
uid: z.ZodString;
|
|
655
756
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -695,6 +796,7 @@ export declare const RECEIVERS: {
|
|
|
695
796
|
slug: z.ZodString;
|
|
696
797
|
name: z.ZodNullable<z.ZodString>;
|
|
697
798
|
markup_pct: z.ZodNumber;
|
|
799
|
+
plan: z.ZodString;
|
|
698
800
|
pool: z.ZodNumber;
|
|
699
801
|
}, z.core.$strip>>;
|
|
700
802
|
clients: z.ZodArray<z.ZodObject<{
|
|
@@ -724,20 +826,97 @@ export declare const RECEIVERS: {
|
|
|
724
826
|
private: "private";
|
|
725
827
|
public: "public";
|
|
726
828
|
}>>;
|
|
829
|
+
board: z.ZodOptional<z.ZodLiteral<"marketplace">>;
|
|
830
|
+
delivery: z.ZodOptional<z.ZodEnum<{
|
|
831
|
+
discord: "discord";
|
|
832
|
+
inbox: "inbox";
|
|
833
|
+
telegram: "telegram";
|
|
834
|
+
webhook: "webhook";
|
|
835
|
+
}>>;
|
|
836
|
+
delivery_target: z.ZodOptional<z.ZodString>;
|
|
837
|
+
match: z.ZodOptional<z.ZodEnum<{
|
|
838
|
+
any: "any";
|
|
839
|
+
all: "all";
|
|
840
|
+
}>>;
|
|
841
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
842
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
727
843
|
}, z.core.$strip>, z.ZodObject<{
|
|
728
844
|
ok: z.ZodBoolean;
|
|
729
845
|
}, z.core.$strip>>;
|
|
730
846
|
"world:announce": Receiver<z.ZodObject<{
|
|
731
847
|
tags: z.ZodArray<z.ZodString>;
|
|
732
848
|
content: z.ZodOptional<z.ZodString>;
|
|
849
|
+
board: z.ZodOptional<z.ZodLiteral<"marketplace">>;
|
|
850
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
851
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
852
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
853
|
+
ok: z.ZodBoolean;
|
|
854
|
+
matched: z.ZodOptional<z.ZodNumber>;
|
|
855
|
+
actors: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
856
|
+
}, z.core.$strip>>;
|
|
857
|
+
world: Receiver<z.ZodObject<{
|
|
858
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
859
|
+
fan: z.ZodOptional<z.ZodEnum<{
|
|
860
|
+
all: "all";
|
|
861
|
+
one: "one";
|
|
862
|
+
}>>;
|
|
863
|
+
deliver: z.ZodOptional<z.ZodBoolean>;
|
|
864
|
+
board: z.ZodOptional<z.ZodLiteral<"marketplace">>;
|
|
865
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
866
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
733
867
|
}, z.core.$strip>, z.ZodObject<{
|
|
734
868
|
ok: z.ZodBoolean;
|
|
869
|
+
routed: z.ZodOptional<z.ZodEnum<{
|
|
870
|
+
learned: "learned";
|
|
871
|
+
staked: "staked";
|
|
872
|
+
explore: "explore";
|
|
873
|
+
ceo: "ceo";
|
|
874
|
+
}>>;
|
|
875
|
+
actor: z.ZodOptional<z.ZodString>;
|
|
735
876
|
matched: z.ZodOptional<z.ZodNumber>;
|
|
736
877
|
actors: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
878
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
879
|
+
}, z.core.$strip>>;
|
|
880
|
+
"world:outcome": Receiver<z.ZodObject<{
|
|
881
|
+
tags: z.ZodArray<z.ZodString>;
|
|
882
|
+
actor: z.ZodString;
|
|
883
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
884
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
885
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
886
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
887
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
888
|
+
ok: z.ZodBoolean;
|
|
889
|
+
outcome: z.ZodOptional<z.ZodEnum<{
|
|
890
|
+
marked: "marked";
|
|
891
|
+
warned: "warned";
|
|
892
|
+
}>>;
|
|
893
|
+
actor: z.ZodOptional<z.ZodString>;
|
|
894
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
895
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
896
|
+
}, z.core.$strip>>;
|
|
897
|
+
"world:route": Receiver<z.ZodObject<{
|
|
898
|
+
tags: z.ZodArray<z.ZodString>;
|
|
899
|
+
deliver: z.ZodOptional<z.ZodBoolean>;
|
|
900
|
+
board: z.ZodOptional<z.ZodLiteral<"marketplace">>;
|
|
901
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
902
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
903
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
904
|
+
ok: z.ZodBoolean;
|
|
905
|
+
routed: z.ZodOptional<z.ZodEnum<{
|
|
906
|
+
learned: "learned";
|
|
907
|
+
staked: "staked";
|
|
908
|
+
explore: "explore";
|
|
909
|
+
ceo: "ceo";
|
|
910
|
+
}>>;
|
|
911
|
+
actor: z.ZodOptional<z.ZodString>;
|
|
912
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
737
913
|
}, z.core.$strip>>;
|
|
738
914
|
"tasks:announce": Receiver<z.ZodObject<{
|
|
739
915
|
taskId: z.ZodString;
|
|
740
916
|
tags: z.ZodArray<z.ZodString>;
|
|
917
|
+
board: z.ZodOptional<z.ZodLiteral<"marketplace">>;
|
|
918
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
919
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
741
920
|
}, z.core.$strip>, z.ZodObject<{
|
|
742
921
|
ok: z.ZodBoolean;
|
|
743
922
|
taskId: z.ZodOptional<z.ZodString>;
|
|
@@ -1335,6 +1514,38 @@ export declare const RECEIVERS: {
|
|
|
1335
1514
|
price_usd: z.ZodNumber;
|
|
1336
1515
|
}, z.core.$strip>>;
|
|
1337
1516
|
}, z.core.$strip>>;
|
|
1517
|
+
"plugins:buy": Receiver<z.ZodObject<{
|
|
1518
|
+
name: z.ZodString;
|
|
1519
|
+
method: z.ZodOptional<z.ZodEnum<{
|
|
1520
|
+
stripe: "stripe";
|
|
1521
|
+
credits: "credits";
|
|
1522
|
+
}>>;
|
|
1523
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1524
|
+
method: z.ZodEnum<{
|
|
1525
|
+
stripe: "stripe";
|
|
1526
|
+
credits: "credits";
|
|
1527
|
+
}>;
|
|
1528
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
1529
|
+
clientSecret: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1530
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1531
|
+
price_usd: z.ZodOptional<z.ZodNumber>;
|
|
1532
|
+
entitled: z.ZodOptional<z.ZodBoolean>;
|
|
1533
|
+
already: z.ZodOptional<z.ZodBoolean>;
|
|
1534
|
+
credits_spent: z.ZodOptional<z.ZodNumber>;
|
|
1535
|
+
plugin: z.ZodString;
|
|
1536
|
+
feature: z.ZodString;
|
|
1537
|
+
}, z.core.$strip>>;
|
|
1538
|
+
"plugins:grant": Receiver<z.ZodObject<{
|
|
1539
|
+
name: z.ZodString;
|
|
1540
|
+
for: z.ZodString;
|
|
1541
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1542
|
+
granted: z.ZodOptional<z.ZodBoolean>;
|
|
1543
|
+
already: z.ZodOptional<z.ZodBoolean>;
|
|
1544
|
+
plugin: z.ZodString;
|
|
1545
|
+
feature: z.ZodString;
|
|
1546
|
+
client: z.ZodOptional<z.ZodString>;
|
|
1547
|
+
reseller: z.ZodOptional<z.ZodString>;
|
|
1548
|
+
}, z.core.$strip>>;
|
|
1338
1549
|
"plugins:source": Receiver<z.ZodObject<{
|
|
1339
1550
|
feature: z.ZodString;
|
|
1340
1551
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1728,6 +1939,69 @@ export declare const RECEIVERS: {
|
|
|
1728
1939
|
byProduct: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1729
1940
|
error: z.ZodOptional<z.ZodString>;
|
|
1730
1941
|
}, z.core.$strip>>;
|
|
1942
|
+
"view:create": Receiver<z.ZodObject<{
|
|
1943
|
+
slug: z.ZodString;
|
|
1944
|
+
name: z.ZodString;
|
|
1945
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
1946
|
+
query: z.ZodObject<{
|
|
1947
|
+
dimension: z.ZodOptional<z.ZodString>;
|
|
1948
|
+
type: z.ZodOptional<z.ZodString>;
|
|
1949
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1950
|
+
stage: z.ZodOptional<z.ZodString>;
|
|
1951
|
+
}, z.core.$strip>;
|
|
1952
|
+
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1953
|
+
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
1954
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1955
|
+
ok: z.ZodBoolean;
|
|
1956
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1957
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1958
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1959
|
+
}, z.core.$strip>>;
|
|
1960
|
+
"view:list": Receiver<z.ZodObject<{
|
|
1961
|
+
slug: z.ZodString;
|
|
1962
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1963
|
+
views: z.ZodArray<z.ZodObject<{
|
|
1964
|
+
id: z.ZodString;
|
|
1965
|
+
name: z.ZodString;
|
|
1966
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
1967
|
+
pinned: z.ZodBoolean;
|
|
1968
|
+
cold: z.ZodBoolean;
|
|
1969
|
+
}, z.core.$strip>>;
|
|
1970
|
+
}, z.core.$strip>>;
|
|
1971
|
+
"view:get": Receiver<z.ZodObject<{
|
|
1972
|
+
slug: z.ZodString;
|
|
1973
|
+
id: z.ZodString;
|
|
1974
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1975
|
+
ok: z.ZodBoolean;
|
|
1976
|
+
rows: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1977
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1978
|
+
}, z.core.$strip>>;
|
|
1979
|
+
"view:update": Receiver<z.ZodObject<{
|
|
1980
|
+
slug: z.ZodString;
|
|
1981
|
+
id: z.ZodString;
|
|
1982
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1983
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
1984
|
+
query: z.ZodOptional<z.ZodObject<{
|
|
1985
|
+
dimension: z.ZodOptional<z.ZodString>;
|
|
1986
|
+
type: z.ZodOptional<z.ZodString>;
|
|
1987
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1988
|
+
stage: z.ZodOptional<z.ZodString>;
|
|
1989
|
+
}, z.core.$strip>>;
|
|
1990
|
+
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1991
|
+
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
1992
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1993
|
+
ok: z.ZodBoolean;
|
|
1994
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1995
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1996
|
+
}, z.core.$strip>>;
|
|
1997
|
+
"view:delete": Receiver<z.ZodObject<{
|
|
1998
|
+
slug: z.ZodString;
|
|
1999
|
+
id: z.ZodString;
|
|
2000
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2001
|
+
ok: z.ZodBoolean;
|
|
2002
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2003
|
+
error: z.ZodOptional<z.ZodString>;
|
|
2004
|
+
}, z.core.$strip>>;
|
|
1731
2005
|
"pages:create": Receiver<z.ZodObject<{
|
|
1732
2006
|
slug: z.ZodString;
|
|
1733
2007
|
title: z.ZodString;
|
|
@@ -1874,16 +2148,22 @@ export declare const RECEIVERS: {
|
|
|
1874
2148
|
course: z.ZodString;
|
|
1875
2149
|
lesson: z.ZodString;
|
|
1876
2150
|
content: z.ZodOptional<z.ZodString>;
|
|
2151
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
2152
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
1877
2153
|
}, z.core.$strip>, z.ZodObject<{
|
|
1878
2154
|
ok: z.ZodBoolean;
|
|
1879
2155
|
}, z.core.$strip>>;
|
|
1880
2156
|
"playbook:get": Receiver<z.ZodObject<{
|
|
1881
2157
|
course: z.ZodOptional<z.ZodString>;
|
|
2158
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
2159
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
1882
2160
|
}, z.core.$strip>, z.ZodObject<{
|
|
1883
2161
|
entries: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1884
2162
|
}, z.core.$strip>>;
|
|
1885
2163
|
"playbook:promote": Receiver<z.ZodObject<{
|
|
1886
2164
|
course: z.ZodString;
|
|
2165
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
2166
|
+
workspace: z.ZodOptional<z.ZodString>;
|
|
1887
2167
|
}, z.core.$strip>, z.ZodObject<{
|
|
1888
2168
|
ok: z.ZodBoolean;
|
|
1889
2169
|
skillRef: z.ZodOptional<z.ZodString>;
|
|
@@ -2159,6 +2439,15 @@ export declare const RECEIVERS: {
|
|
|
2159
2439
|
id: z.ZodString;
|
|
2160
2440
|
workflowId: z.ZodString;
|
|
2161
2441
|
}, z.core.$strip>>;
|
|
2442
|
+
"workflow:webhook-subscribe": Receiver<z.ZodObject<{
|
|
2443
|
+
workflowId: z.ZodString;
|
|
2444
|
+
url: z.ZodString;
|
|
2445
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2446
|
+
ok: z.ZodBoolean;
|
|
2447
|
+
subId: z.ZodOptional<z.ZodString>;
|
|
2448
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
2449
|
+
error: z.ZodOptional<z.ZodString>;
|
|
2450
|
+
}, z.core.$strip>>;
|
|
2162
2451
|
"workflow:apply-diff": Receiver<z.ZodObject<{
|
|
2163
2452
|
workflowId: z.ZodString;
|
|
2164
2453
|
diff: z.ZodObject<{
|
|
@@ -2318,6 +2607,14 @@ export declare const RECEIVERS: {
|
|
|
2318
2607
|
ok: z.ZodBoolean;
|
|
2319
2608
|
error: z.ZodOptional<z.ZodString>;
|
|
2320
2609
|
}, z.core.$strip>>;
|
|
2610
|
+
"workflow:fade": Receiver<z.ZodObject<{
|
|
2611
|
+
workflowId: z.ZodOptional<z.ZodString>;
|
|
2612
|
+
rate: z.ZodOptional<z.ZodNumber>;
|
|
2613
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2614
|
+
ok: z.ZodBoolean;
|
|
2615
|
+
faded: z.ZodOptional<z.ZodNumber>;
|
|
2616
|
+
error: z.ZodOptional<z.ZodString>;
|
|
2617
|
+
}, z.core.$strip>>;
|
|
2321
2618
|
"skills:list": Receiver<z.ZodObject<{}, z.core.$strip>, z.ZodObject<{
|
|
2322
2619
|
skills: z.ZodArray<z.ZodObject<{
|
|
2323
2620
|
name: z.ZodString;
|
|
@@ -2731,6 +3028,68 @@ export declare const RECEIVERS: {
|
|
|
2731
3028
|
query_id: z.ZodString;
|
|
2732
3029
|
outcome: z.ZodString;
|
|
2733
3030
|
}, z.core.$strip>>;
|
|
3031
|
+
"rag:connect": Receiver<z.ZodObject<{
|
|
3032
|
+
provider: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3033
|
+
"google-drive": "google-drive";
|
|
3034
|
+
}>>>;
|
|
3035
|
+
folder_id: z.ZodString;
|
|
3036
|
+
corpus: z.ZodOptional<z.ZodString>;
|
|
3037
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3038
|
+
ok: z.ZodBoolean;
|
|
3039
|
+
corpus: z.ZodOptional<z.ZodString>;
|
|
3040
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
3041
|
+
folder_id: z.ZodOptional<z.ZodString>;
|
|
3042
|
+
sources: z.ZodOptional<z.ZodNumber>;
|
|
3043
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
3044
|
+
}, z.core.$strip>>;
|
|
3045
|
+
"brain:ingest": Receiver<z.ZodObject<{
|
|
3046
|
+
corpus: z.ZodString;
|
|
3047
|
+
source_ref: z.ZodOptional<z.ZodString>;
|
|
3048
|
+
document_url: z.ZodOptional<z.ZodString>;
|
|
3049
|
+
raw_text: z.ZodOptional<z.ZodString>;
|
|
3050
|
+
mime_type: z.ZodOptional<z.ZodString>;
|
|
3051
|
+
content_hash: z.ZodOptional<z.ZodString>;
|
|
3052
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3053
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3054
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3055
|
+
ok: z.ZodBoolean;
|
|
3056
|
+
corpus: z.ZodOptional<z.ZodString>;
|
|
3057
|
+
source_ref: z.ZodOptional<z.ZodString>;
|
|
3058
|
+
content_hash: z.ZodOptional<z.ZodString>;
|
|
3059
|
+
chunks: z.ZodOptional<z.ZodNumber>;
|
|
3060
|
+
skipped: z.ZodOptional<z.ZodBoolean>;
|
|
3061
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
3062
|
+
}, z.core.$strip>>;
|
|
3063
|
+
"brain:provision": Receiver<z.ZodObject<{
|
|
3064
|
+
slug: z.ZodString;
|
|
3065
|
+
kind: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3066
|
+
personal: "personal";
|
|
3067
|
+
workspace: "workspace";
|
|
3068
|
+
}>>>;
|
|
3069
|
+
actorId: z.ZodOptional<z.ZodString>;
|
|
3070
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3071
|
+
ok: z.ZodBoolean;
|
|
3072
|
+
corpus: z.ZodOptional<z.ZodString>;
|
|
3073
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
3074
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
3075
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
3076
|
+
}, z.core.$strip>>;
|
|
3077
|
+
"brain:tombstone": Receiver<z.ZodObject<{
|
|
3078
|
+
corpus: z.ZodString;
|
|
3079
|
+
source_ref: z.ZodString;
|
|
3080
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3081
|
+
ok: z.ZodBoolean;
|
|
3082
|
+
corpus: z.ZodOptional<z.ZodString>;
|
|
3083
|
+
source_ref: z.ZodOptional<z.ZodString>;
|
|
3084
|
+
removed: z.ZodOptional<z.ZodNumber>;
|
|
3085
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
3086
|
+
}, z.core.$strip>>;
|
|
3087
|
+
"rag:promote": Receiver<z.ZodObject<{}, z.core.$strip>, z.ZodObject<{
|
|
3088
|
+
ok: z.ZodBoolean;
|
|
3089
|
+
promoted: z.ZodOptional<z.ZodNumber>;
|
|
3090
|
+
skipped: z.ZodOptional<z.ZodNumber>;
|
|
3091
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
3092
|
+
}, z.core.$strip>>;
|
|
2734
3093
|
"seo:backlinks-summary": Receiver<z.ZodObject<{
|
|
2735
3094
|
target: z.ZodString;
|
|
2736
3095
|
limit: z.ZodOptional<z.ZodNumber>;
|
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;;;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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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2+Fc,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"}
|