fengming 0.3.3 → 0.3.4
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/CHANGELOG.md +2 -3
- package/dist/build-info.json +2 -2
- package/dist/{bundled-channel-config-schema-DpdKMATU.d.ts → bundled-channel-config-schema-Bte--ZlY.d.ts} +26 -26
- package/dist/canvas-host/a2ui/.bundle.hash +1 -1
- package/dist/cli-startup-metadata.json +8 -8
- package/dist/control-ui/assets/{activity-B7yRLbf3.js → activity-CCu43qU8.js} +2 -2
- package/dist/control-ui/assets/{agents-E-3DAkaW.js → agents-DCvsB0yO.js} +2 -2
- package/dist/control-ui/assets/{channels-D0c7A9OX.js → channels-CpM2j5xT.js} +2 -2
- package/dist/control-ui/assets/{cron-B54j2Vmo.js → cron-CLXNfwYa.js} +2 -2
- package/dist/control-ui/assets/{debug-CRcGYNA9.js → debug-BcJ34lrC.js} +2 -2
- package/dist/control-ui/assets/{index-bZJJ7U8q.js → index-CuBn2YpX.js} +4 -4
- package/dist/control-ui/assets/{instances-RcBeqNzx.js → instances-Bu6NM_Hs.js} +2 -2
- package/dist/control-ui/assets/{nodes-BoWRh42t.js → nodes-Bd1WzVLK.js} +2 -2
- package/dist/control-ui/assets/{sessions-BmRQ932H.js → sessions-C2r8pbt7.js} +2 -2
- package/dist/control-ui/assets/{skills-BDn45kHZ.js → skills-DIjn93ee.js} +2 -2
- package/dist/control-ui/assets/{workboard-BwbcNuC5.js → workboard-CHb0if1l.js} +2 -2
- package/dist/control-ui/index.html +1 -1
- package/dist/control-ui/sw.js +1 -1
- package/dist/extensions/weixin/index.js +6 -6
- package/dist/gateway/protocol/index.d.ts +1 -1
- package/dist/{index-DhOQs6M_.d.ts → index-AZzJCgph.d.ts} +45 -45
- package/dist/{monitor-HjEwlqJs.js → monitor-2_c2Ttjf.js} +1 -1
- package/dist/plugin-sdk/.boundary-entry-shims.stamp +1 -1
- package/dist/plugin-sdk/agent-config-primitives.d.ts +1 -1
- package/dist/plugin-sdk/{bundled-channel-config-schema-C3pWWvwG.d.ts → bundled-channel-config-schema-UtIBjviA.d.ts} +40 -40
- package/dist/plugin-sdk/bundled-channel-config-schema.d.ts +3 -3
- package/dist/plugin-sdk/channel-config-primitives.d.ts +2 -2
- package/dist/plugin-sdk/channel-config-schema-legacy.d.ts +3 -3
- package/dist/plugin-sdk/channel-config-schema.d.ts +2 -2
- package/dist/plugin-sdk/channel-core.d.ts +1 -1
- package/dist/plugin-sdk/channel-plugin-common.d.ts +1 -1
- package/dist/plugin-sdk/compat.d.ts +2 -2
- package/dist/plugin-sdk/{config-schema-D7cABQ6o.d.ts → config-schema-DUddICQM.d.ts} +1 -1
- package/dist/plugin-sdk/config-schema.d.ts +2 -2
- package/dist/plugin-sdk/core.d.ts +1 -1
- package/dist/plugin-sdk/discord.d.ts +2 -2
- package/dist/plugin-sdk/tts-runtime.d.ts +1 -1
- package/dist/plugin-sdk/{zod-schema.core-CwBNqcXp.d.ts → zod-schema.core-B4_b2R5K.d.ts} +1 -1
- package/dist/plugins/runtime/index.js +2 -2
- package/dist/postinstall-inventory.json +19 -19
- package/dist/{send-media-Bl2ryo6a.js → send-media-OG5Gd31l.js} +252 -252
- package/dist/{zod-schema.core-Cuz0lz6m.d.ts → zod-schema.core-BGLctDlK.d.ts} +1 -1
- package/package.json +1 -1
|
@@ -18,8 +18,8 @@ declare const TelegramConfigSchema: z.ZodObject<{
|
|
|
18
18
|
agentFilter: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
19
19
|
sessionFilter: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
20
20
|
target: z.ZodOptional<z.ZodEnum<{
|
|
21
|
-
dm: "dm";
|
|
22
21
|
channel: "channel";
|
|
22
|
+
dm: "dm";
|
|
23
23
|
both: "both";
|
|
24
24
|
}>>;
|
|
25
25
|
}, z.core.$strict>>;
|
|
@@ -42,8 +42,8 @@ declare const TelegramConfigSchema: z.ZodObject<{
|
|
|
42
42
|
}, z.core.$strict>>>;
|
|
43
43
|
configWrites: z.ZodOptional<z.ZodBoolean>;
|
|
44
44
|
dmPolicy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
45
|
-
pairing: "pairing";
|
|
46
45
|
allowlist: "allowlist";
|
|
46
|
+
pairing: "pairing";
|
|
47
47
|
open: "open";
|
|
48
48
|
disabled: "disabled";
|
|
49
49
|
}>>>;
|
|
@@ -100,15 +100,15 @@ declare const TelegramConfigSchema: z.ZodObject<{
|
|
|
100
100
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
101
101
|
agentId: z.ZodOptional<z.ZodString>;
|
|
102
102
|
errorPolicy: z.ZodOptional<z.ZodEnum<{
|
|
103
|
-
silent: "silent";
|
|
104
103
|
always: "always";
|
|
104
|
+
silent: "silent";
|
|
105
105
|
once: "once";
|
|
106
106
|
}>>;
|
|
107
107
|
errorCooldownMs: z.ZodOptional<z.ZodNumber>;
|
|
108
108
|
}, z.core.$strict>>>>;
|
|
109
109
|
errorPolicy: z.ZodOptional<z.ZodEnum<{
|
|
110
|
-
silent: "silent";
|
|
111
110
|
always: "always";
|
|
111
|
+
silent: "silent";
|
|
112
112
|
once: "once";
|
|
113
113
|
}>>;
|
|
114
114
|
errorCooldownMs: z.ZodOptional<z.ZodNumber>;
|
|
@@ -133,8 +133,8 @@ declare const TelegramConfigSchema: z.ZodObject<{
|
|
|
133
133
|
}, z.core.$strict>>>>;
|
|
134
134
|
direct: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodObject<{
|
|
135
135
|
dmPolicy: z.ZodOptional<z.ZodEnum<{
|
|
136
|
-
pairing: "pairing";
|
|
137
136
|
allowlist: "allowlist";
|
|
137
|
+
pairing: "pairing";
|
|
138
138
|
open: "open";
|
|
139
139
|
disabled: "disabled";
|
|
140
140
|
}>>;
|
|
@@ -167,15 +167,15 @@ declare const TelegramConfigSchema: z.ZodObject<{
|
|
|
167
167
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
168
168
|
agentId: z.ZodOptional<z.ZodString>;
|
|
169
169
|
errorPolicy: z.ZodOptional<z.ZodEnum<{
|
|
170
|
-
silent: "silent";
|
|
171
170
|
always: "always";
|
|
171
|
+
silent: "silent";
|
|
172
172
|
once: "once";
|
|
173
173
|
}>>;
|
|
174
174
|
errorCooldownMs: z.ZodOptional<z.ZodNumber>;
|
|
175
175
|
}, z.core.$strict>>>>;
|
|
176
176
|
errorPolicy: z.ZodOptional<z.ZodEnum<{
|
|
177
|
-
silent: "silent";
|
|
178
177
|
always: "always";
|
|
178
|
+
silent: "silent";
|
|
179
179
|
once: "once";
|
|
180
180
|
}>>;
|
|
181
181
|
errorCooldownMs: z.ZodOptional<z.ZodNumber>;
|
|
@@ -318,8 +318,8 @@ declare const TelegramConfigSchema: z.ZodObject<{
|
|
|
318
318
|
responsePrefix: z.ZodOptional<z.ZodString>;
|
|
319
319
|
ackReaction: z.ZodOptional<z.ZodString>;
|
|
320
320
|
errorPolicy: z.ZodOptional<z.ZodEnum<{
|
|
321
|
-
silent: "silent";
|
|
322
321
|
always: "always";
|
|
322
|
+
silent: "silent";
|
|
323
323
|
once: "once";
|
|
324
324
|
}>>;
|
|
325
325
|
errorCooldownMs: z.ZodOptional<z.ZodNumber>;
|
|
@@ -346,8 +346,8 @@ declare const TelegramConfigSchema: z.ZodObject<{
|
|
|
346
346
|
agentFilter: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
347
347
|
sessionFilter: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
348
348
|
target: z.ZodOptional<z.ZodEnum<{
|
|
349
|
-
dm: "dm";
|
|
350
349
|
channel: "channel";
|
|
350
|
+
dm: "dm";
|
|
351
351
|
both: "both";
|
|
352
352
|
}>>;
|
|
353
353
|
}, z.core.$strict>>;
|
|
@@ -370,8 +370,8 @@ declare const TelegramConfigSchema: z.ZodObject<{
|
|
|
370
370
|
}, z.core.$strict>>>;
|
|
371
371
|
configWrites: z.ZodOptional<z.ZodBoolean>;
|
|
372
372
|
dmPolicy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
373
|
-
pairing: "pairing";
|
|
374
373
|
allowlist: "allowlist";
|
|
374
|
+
pairing: "pairing";
|
|
375
375
|
open: "open";
|
|
376
376
|
disabled: "disabled";
|
|
377
377
|
}>>>;
|
|
@@ -428,15 +428,15 @@ declare const TelegramConfigSchema: z.ZodObject<{
|
|
|
428
428
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
429
429
|
agentId: z.ZodOptional<z.ZodString>;
|
|
430
430
|
errorPolicy: z.ZodOptional<z.ZodEnum<{
|
|
431
|
-
silent: "silent";
|
|
432
431
|
always: "always";
|
|
432
|
+
silent: "silent";
|
|
433
433
|
once: "once";
|
|
434
434
|
}>>;
|
|
435
435
|
errorCooldownMs: z.ZodOptional<z.ZodNumber>;
|
|
436
436
|
}, z.core.$strict>>>>;
|
|
437
437
|
errorPolicy: z.ZodOptional<z.ZodEnum<{
|
|
438
|
-
silent: "silent";
|
|
439
438
|
always: "always";
|
|
439
|
+
silent: "silent";
|
|
440
440
|
once: "once";
|
|
441
441
|
}>>;
|
|
442
442
|
errorCooldownMs: z.ZodOptional<z.ZodNumber>;
|
|
@@ -461,8 +461,8 @@ declare const TelegramConfigSchema: z.ZodObject<{
|
|
|
461
461
|
}, z.core.$strict>>>>;
|
|
462
462
|
direct: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodObject<{
|
|
463
463
|
dmPolicy: z.ZodOptional<z.ZodEnum<{
|
|
464
|
-
pairing: "pairing";
|
|
465
464
|
allowlist: "allowlist";
|
|
465
|
+
pairing: "pairing";
|
|
466
466
|
open: "open";
|
|
467
467
|
disabled: "disabled";
|
|
468
468
|
}>>;
|
|
@@ -495,15 +495,15 @@ declare const TelegramConfigSchema: z.ZodObject<{
|
|
|
495
495
|
systemPrompt: z.ZodOptional<z.ZodString>;
|
|
496
496
|
agentId: z.ZodOptional<z.ZodString>;
|
|
497
497
|
errorPolicy: z.ZodOptional<z.ZodEnum<{
|
|
498
|
-
silent: "silent";
|
|
499
498
|
always: "always";
|
|
499
|
+
silent: "silent";
|
|
500
500
|
once: "once";
|
|
501
501
|
}>>;
|
|
502
502
|
errorCooldownMs: z.ZodOptional<z.ZodNumber>;
|
|
503
503
|
}, z.core.$strict>>>>;
|
|
504
504
|
errorPolicy: z.ZodOptional<z.ZodEnum<{
|
|
505
|
-
silent: "silent";
|
|
506
505
|
always: "always";
|
|
506
|
+
silent: "silent";
|
|
507
507
|
once: "once";
|
|
508
508
|
}>>;
|
|
509
509
|
errorCooldownMs: z.ZodOptional<z.ZodNumber>;
|
|
@@ -646,8 +646,8 @@ declare const TelegramConfigSchema: z.ZodObject<{
|
|
|
646
646
|
responsePrefix: z.ZodOptional<z.ZodString>;
|
|
647
647
|
ackReaction: z.ZodOptional<z.ZodString>;
|
|
648
648
|
errorPolicy: z.ZodOptional<z.ZodEnum<{
|
|
649
|
-
silent: "silent";
|
|
650
649
|
always: "always";
|
|
650
|
+
silent: "silent";
|
|
651
651
|
once: "once";
|
|
652
652
|
}>>;
|
|
653
653
|
errorCooldownMs: z.ZodOptional<z.ZodNumber>;
|
|
@@ -803,8 +803,8 @@ declare const DiscordConfigSchema: z.ZodObject<{
|
|
|
803
803
|
inheritParent: z.ZodOptional<z.ZodBoolean>;
|
|
804
804
|
}, z.core.$strict>>;
|
|
805
805
|
dmPolicy: z.ZodOptional<z.ZodEnum<{
|
|
806
|
-
pairing: "pairing";
|
|
807
806
|
allowlist: "allowlist";
|
|
807
|
+
pairing: "pairing";
|
|
808
808
|
open: "open";
|
|
809
809
|
disabled: "disabled";
|
|
810
810
|
}>>;
|
|
@@ -813,8 +813,8 @@ declare const DiscordConfigSchema: z.ZodObject<{
|
|
|
813
813
|
dm: z.ZodOptional<z.ZodObject<{
|
|
814
814
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
815
815
|
policy: z.ZodOptional<z.ZodEnum<{
|
|
816
|
-
pairing: "pairing";
|
|
817
816
|
allowlist: "allowlist";
|
|
817
|
+
pairing: "pairing";
|
|
818
818
|
open: "open";
|
|
819
819
|
disabled: "disabled";
|
|
820
820
|
}>>;
|
|
@@ -891,8 +891,8 @@ declare const DiscordConfigSchema: z.ZodObject<{
|
|
|
891
891
|
sessionFilter: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
892
892
|
cleanupAfterResolve: z.ZodOptional<z.ZodBoolean>;
|
|
893
893
|
target: z.ZodOptional<z.ZodEnum<{
|
|
894
|
-
dm: "dm";
|
|
895
894
|
channel: "channel";
|
|
895
|
+
dm: "dm";
|
|
896
896
|
both: "both";
|
|
897
897
|
}>>;
|
|
898
898
|
}, z.core.$strict>>;
|
|
@@ -1252,8 +1252,8 @@ declare const DiscordConfigSchema: z.ZodObject<{
|
|
|
1252
1252
|
inheritParent: z.ZodOptional<z.ZodBoolean>;
|
|
1253
1253
|
}, z.core.$strict>>;
|
|
1254
1254
|
dmPolicy: z.ZodOptional<z.ZodEnum<{
|
|
1255
|
-
pairing: "pairing";
|
|
1256
1255
|
allowlist: "allowlist";
|
|
1256
|
+
pairing: "pairing";
|
|
1257
1257
|
open: "open";
|
|
1258
1258
|
disabled: "disabled";
|
|
1259
1259
|
}>>;
|
|
@@ -1262,8 +1262,8 @@ declare const DiscordConfigSchema: z.ZodObject<{
|
|
|
1262
1262
|
dm: z.ZodOptional<z.ZodObject<{
|
|
1263
1263
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1264
1264
|
policy: z.ZodOptional<z.ZodEnum<{
|
|
1265
|
-
pairing: "pairing";
|
|
1266
1265
|
allowlist: "allowlist";
|
|
1266
|
+
pairing: "pairing";
|
|
1267
1267
|
open: "open";
|
|
1268
1268
|
disabled: "disabled";
|
|
1269
1269
|
}>>;
|
|
@@ -1340,8 +1340,8 @@ declare const DiscordConfigSchema: z.ZodObject<{
|
|
|
1340
1340
|
sessionFilter: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1341
1341
|
cleanupAfterResolve: z.ZodOptional<z.ZodBoolean>;
|
|
1342
1342
|
target: z.ZodOptional<z.ZodEnum<{
|
|
1343
|
-
dm: "dm";
|
|
1344
1343
|
channel: "channel";
|
|
1344
|
+
dm: "dm";
|
|
1345
1345
|
both: "both";
|
|
1346
1346
|
}>>;
|
|
1347
1347
|
}, z.core.$strict>>;
|
|
@@ -1577,8 +1577,8 @@ declare const SlackConfigSchema: z.ZodObject<{
|
|
|
1577
1577
|
agentFilter: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1578
1578
|
sessionFilter: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1579
1579
|
target: z.ZodOptional<z.ZodEnum<{
|
|
1580
|
-
dm: "dm";
|
|
1581
1580
|
channel: "channel";
|
|
1581
|
+
dm: "dm";
|
|
1582
1582
|
both: "both";
|
|
1583
1583
|
}>>;
|
|
1584
1584
|
}, z.core.$strict>>;
|
|
@@ -1742,8 +1742,8 @@ declare const SlackConfigSchema: z.ZodObject<{
|
|
|
1742
1742
|
ephemeral: z.ZodOptional<z.ZodBoolean>;
|
|
1743
1743
|
}, z.core.$strict>>;
|
|
1744
1744
|
dmPolicy: z.ZodOptional<z.ZodEnum<{
|
|
1745
|
-
pairing: "pairing";
|
|
1746
1745
|
allowlist: "allowlist";
|
|
1746
|
+
pairing: "pairing";
|
|
1747
1747
|
open: "open";
|
|
1748
1748
|
disabled: "disabled";
|
|
1749
1749
|
}>>;
|
|
@@ -1752,8 +1752,8 @@ declare const SlackConfigSchema: z.ZodObject<{
|
|
|
1752
1752
|
dm: z.ZodOptional<z.ZodObject<{
|
|
1753
1753
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1754
1754
|
policy: z.ZodOptional<z.ZodEnum<{
|
|
1755
|
-
pairing: "pairing";
|
|
1756
1755
|
allowlist: "allowlist";
|
|
1756
|
+
pairing: "pairing";
|
|
1757
1757
|
open: "open";
|
|
1758
1758
|
disabled: "disabled";
|
|
1759
1759
|
}>>;
|
|
@@ -1859,8 +1859,8 @@ declare const SlackConfigSchema: z.ZodObject<{
|
|
|
1859
1859
|
agentFilter: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1860
1860
|
sessionFilter: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1861
1861
|
target: z.ZodOptional<z.ZodEnum<{
|
|
1862
|
-
dm: "dm";
|
|
1863
1862
|
channel: "channel";
|
|
1863
|
+
dm: "dm";
|
|
1864
1864
|
both: "both";
|
|
1865
1865
|
}>>;
|
|
1866
1866
|
}, z.core.$strict>>;
|
|
@@ -2034,8 +2034,8 @@ declare const SlackConfigSchema: z.ZodObject<{
|
|
|
2034
2034
|
ephemeral: z.ZodOptional<z.ZodBoolean>;
|
|
2035
2035
|
}, z.core.$strict>>;
|
|
2036
2036
|
dmPolicy: z.ZodOptional<z.ZodEnum<{
|
|
2037
|
-
pairing: "pairing";
|
|
2038
2037
|
allowlist: "allowlist";
|
|
2038
|
+
pairing: "pairing";
|
|
2039
2039
|
open: "open";
|
|
2040
2040
|
disabled: "disabled";
|
|
2041
2041
|
}>>;
|
|
@@ -2044,8 +2044,8 @@ declare const SlackConfigSchema: z.ZodObject<{
|
|
|
2044
2044
|
dm: z.ZodOptional<z.ZodObject<{
|
|
2045
2045
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2046
2046
|
policy: z.ZodOptional<z.ZodEnum<{
|
|
2047
|
-
pairing: "pairing";
|
|
2048
2047
|
allowlist: "allowlist";
|
|
2048
|
+
pairing: "pairing";
|
|
2049
2049
|
open: "open";
|
|
2050
2050
|
disabled: "disabled";
|
|
2051
2051
|
}>>;
|
|
@@ -2119,8 +2119,8 @@ declare const SignalConfigSchema: z.ZodObject<{
|
|
|
2119
2119
|
ignoreStories: z.ZodOptional<z.ZodBoolean>;
|
|
2120
2120
|
sendReadReceipts: z.ZodOptional<z.ZodBoolean>;
|
|
2121
2121
|
dmPolicy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2122
|
-
pairing: "pairing";
|
|
2123
2122
|
allowlist: "allowlist";
|
|
2123
|
+
pairing: "pairing";
|
|
2124
2124
|
open: "open";
|
|
2125
2125
|
disabled: "disabled";
|
|
2126
2126
|
}>>>;
|
|
@@ -2194,8 +2194,8 @@ declare const SignalConfigSchema: z.ZodObject<{
|
|
|
2194
2194
|
}, z.core.$strict>>;
|
|
2195
2195
|
responsePrefix: z.ZodOptional<z.ZodString>;
|
|
2196
2196
|
apiMode: z.ZodOptional<z.ZodEnum<{
|
|
2197
|
-
native: "native";
|
|
2198
2197
|
auto: "auto";
|
|
2198
|
+
native: "native";
|
|
2199
2199
|
container: "container";
|
|
2200
2200
|
}>>;
|
|
2201
2201
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodObject<{
|
|
@@ -2225,8 +2225,8 @@ declare const SignalConfigSchema: z.ZodObject<{
|
|
|
2225
2225
|
ignoreStories: z.ZodOptional<z.ZodBoolean>;
|
|
2226
2226
|
sendReadReceipts: z.ZodOptional<z.ZodBoolean>;
|
|
2227
2227
|
dmPolicy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2228
|
-
pairing: "pairing";
|
|
2229
2228
|
allowlist: "allowlist";
|
|
2229
|
+
pairing: "pairing";
|
|
2230
2230
|
open: "open";
|
|
2231
2231
|
disabled: "disabled";
|
|
2232
2232
|
}>>>;
|
|
@@ -2334,8 +2334,8 @@ declare const IMessageConfigSchema: z.ZodObject<{
|
|
|
2334
2334
|
service: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"imessage">, z.ZodLiteral<"sms">, z.ZodLiteral<"auto">]>>;
|
|
2335
2335
|
region: z.ZodOptional<z.ZodString>;
|
|
2336
2336
|
dmPolicy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2337
|
-
pairing: "pairing";
|
|
2338
2337
|
allowlist: "allowlist";
|
|
2338
|
+
pairing: "pairing";
|
|
2339
2339
|
open: "open";
|
|
2340
2340
|
disabled: "disabled";
|
|
2341
2341
|
}>>>;
|
|
@@ -2442,8 +2442,8 @@ declare const IMessageConfigSchema: z.ZodObject<{
|
|
|
2442
2442
|
service: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"imessage">, z.ZodLiteral<"sms">, z.ZodLiteral<"auto">]>>;
|
|
2443
2443
|
region: z.ZodOptional<z.ZodString>;
|
|
2444
2444
|
dmPolicy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2445
|
-
pairing: "pairing";
|
|
2446
2445
|
allowlist: "allowlist";
|
|
2446
|
+
pairing: "pairing";
|
|
2447
2447
|
open: "open";
|
|
2448
2448
|
disabled: "disabled";
|
|
2449
2449
|
}>>>;
|
|
@@ -2569,8 +2569,8 @@ declare const MSTeamsConfigSchema: z.ZodObject<{
|
|
|
2569
2569
|
path: z.ZodOptional<z.ZodString>;
|
|
2570
2570
|
}, z.core.$strict>>;
|
|
2571
2571
|
dmPolicy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2572
|
-
pairing: "pairing";
|
|
2573
2572
|
allowlist: "allowlist";
|
|
2573
|
+
pairing: "pairing";
|
|
2574
2574
|
open: "open";
|
|
2575
2575
|
disabled: "disabled";
|
|
2576
2576
|
}>>>;
|
|
@@ -2813,8 +2813,8 @@ declare const GoogleChatConfigSchema: z.ZodObject<{
|
|
|
2813
2813
|
dm: z.ZodOptional<z.ZodObject<{
|
|
2814
2814
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2815
2815
|
policy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2816
|
-
pairing: "pairing";
|
|
2817
2816
|
allowlist: "allowlist";
|
|
2817
|
+
pairing: "pairing";
|
|
2818
2818
|
open: "open";
|
|
2819
2819
|
disabled: "disabled";
|
|
2820
2820
|
}>>>;
|
|
@@ -2922,8 +2922,8 @@ declare const GoogleChatConfigSchema: z.ZodObject<{
|
|
|
2922
2922
|
dm: z.ZodOptional<z.ZodObject<{
|
|
2923
2923
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2924
2924
|
policy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2925
|
-
pairing: "pairing";
|
|
2926
2925
|
allowlist: "allowlist";
|
|
2926
|
+
pairing: "pairing";
|
|
2927
2927
|
open: "open";
|
|
2928
2928
|
disabled: "disabled";
|
|
2929
2929
|
}>>>;
|
|
@@ -2963,13 +2963,13 @@ declare const WhatsAppConfigSchema: z.ZodPreprocess<z.ZodObject<{
|
|
|
2963
2963
|
messagePrefix: z.ZodOptional<z.ZodString>;
|
|
2964
2964
|
responsePrefix: z.ZodOptional<z.ZodString>;
|
|
2965
2965
|
dmPolicy: z.ZodOptional<z.ZodEnum<{
|
|
2966
|
-
pairing: "pairing";
|
|
2967
2966
|
allowlist: "allowlist";
|
|
2967
|
+
pairing: "pairing";
|
|
2968
2968
|
open: "open";
|
|
2969
2969
|
disabled: "disabled";
|
|
2970
2970
|
}>> | z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2971
|
-
pairing: "pairing";
|
|
2972
2971
|
allowlist: "allowlist";
|
|
2972
|
+
pairing: "pairing";
|
|
2973
2973
|
open: "open";
|
|
2974
2974
|
disabled: "disabled";
|
|
2975
2975
|
}>>>;
|
|
@@ -3075,13 +3075,13 @@ declare const WhatsAppConfigSchema: z.ZodPreprocess<z.ZodObject<{
|
|
|
3075
3075
|
messagePrefix: z.ZodOptional<z.ZodString>;
|
|
3076
3076
|
responsePrefix: z.ZodOptional<z.ZodString>;
|
|
3077
3077
|
dmPolicy: z.ZodOptional<z.ZodEnum<{
|
|
3078
|
-
pairing: "pairing";
|
|
3079
3078
|
allowlist: "allowlist";
|
|
3079
|
+
pairing: "pairing";
|
|
3080
3080
|
open: "open";
|
|
3081
3081
|
disabled: "disabled";
|
|
3082
3082
|
}>> | z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3083
|
-
pairing: "pairing";
|
|
3084
3083
|
allowlist: "allowlist";
|
|
3084
|
+
pairing: "pairing";
|
|
3085
3085
|
open: "open";
|
|
3086
3086
|
disabled: "disabled";
|
|
3087
3087
|
}>>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { a as GroupPolicySchema, f as requireAllowlistAllowFrom, i as DmPolicySchema, n as ContextVisibilityModeSchema, o as MarkdownConfigSchema, p as requireOpenAllowFrom, r as DmConfigSchema, s as ReplyRuntimeConfigSchemaShape, t as BlockStreamingCoalesceSchema } from "./zod-schema.core-
|
|
1
|
+
import { a as GroupPolicySchema, f as requireAllowlistAllowFrom, i as DmPolicySchema, n as ContextVisibilityModeSchema, o as MarkdownConfigSchema, p as requireOpenAllowFrom, r as DmConfigSchema, s as ReplyRuntimeConfigSchemaShape, t as BlockStreamingCoalesceSchema } from "./zod-schema.core-B4_b2R5K.js";
|
|
2
2
|
import { t as ToolPolicySchema } from "./zod-schema.agent-runtime-DWbjdB_w.js";
|
|
3
|
-
import { a as buildNestedDmConfigSchema, n as buildCatchallMultiAccountChannelSchema, r as buildChannelConfigSchema, t as AllowFromListSchema } from "./config-schema-
|
|
4
|
-
import { a as MSTeamsConfigSchema, c as TelegramConfigSchema, i as IMessageConfigSchema, n as GoogleChatConfigSchema, o as SignalConfigSchema, r as DiscordConfigSchema, s as SlackConfigSchema, t as WhatsAppConfigSchema } from "./bundled-channel-config-schema-
|
|
3
|
+
import { a as buildNestedDmConfigSchema, n as buildCatchallMultiAccountChannelSchema, r as buildChannelConfigSchema, t as AllowFromListSchema } from "./config-schema-DUddICQM.js";
|
|
4
|
+
import { a as MSTeamsConfigSchema, c as TelegramConfigSchema, i as IMessageConfigSchema, n as GoogleChatConfigSchema, o as SignalConfigSchema, r as DiscordConfigSchema, s as SlackConfigSchema, t as WhatsAppConfigSchema } from "./bundled-channel-config-schema-UtIBjviA.js";
|
|
5
5
|
export { AllowFromListSchema, BlockStreamingCoalesceSchema, ContextVisibilityModeSchema, DiscordConfigSchema, DmConfigSchema, DmPolicySchema, GoogleChatConfigSchema, GroupPolicySchema, IMessageConfigSchema, MSTeamsConfigSchema, MarkdownConfigSchema, ReplyRuntimeConfigSchemaShape, SignalConfigSchema, SlackConfigSchema, TelegramConfigSchema, ToolPolicySchema, WhatsAppConfigSchema, buildCatchallMultiAccountChannelSchema, buildChannelConfigSchema, buildNestedDmConfigSchema, requireAllowlistAllowFrom, requireOpenAllowFrom };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { a as GroupPolicySchema, f as requireAllowlistAllowFrom, i as DmPolicySchema, o as MarkdownConfigSchema, p as requireOpenAllowFrom, r as DmConfigSchema, s as ReplyRuntimeConfigSchemaShape, t as BlockStreamingCoalesceSchema } from "./zod-schema.core-
|
|
2
|
-
import { a as buildNestedDmConfigSchema, n as buildCatchallMultiAccountChannelSchema, r as buildChannelConfigSchema, t as AllowFromListSchema } from "./config-schema-
|
|
1
|
+
import { a as GroupPolicySchema, f as requireAllowlistAllowFrom, i as DmPolicySchema, o as MarkdownConfigSchema, p as requireOpenAllowFrom, r as DmConfigSchema, s as ReplyRuntimeConfigSchemaShape, t as BlockStreamingCoalesceSchema } from "./zod-schema.core-B4_b2R5K.js";
|
|
2
|
+
import { a as buildNestedDmConfigSchema, n as buildCatchallMultiAccountChannelSchema, r as buildChannelConfigSchema, t as AllowFromListSchema } from "./config-schema-DUddICQM.js";
|
|
3
3
|
export { AllowFromListSchema, BlockStreamingCoalesceSchema, DmConfigSchema, DmPolicySchema, GroupPolicySchema, MarkdownConfigSchema, ReplyRuntimeConfigSchemaShape, buildCatchallMultiAccountChannelSchema, buildChannelConfigSchema, buildNestedDmConfigSchema, requireAllowlistAllowFrom, requireOpenAllowFrom };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { a as GroupPolicySchema, f as requireAllowlistAllowFrom, i as DmPolicySchema, n as ContextVisibilityModeSchema, o as MarkdownConfigSchema, p as requireOpenAllowFrom, r as DmConfigSchema, s as ReplyRuntimeConfigSchemaShape, t as BlockStreamingCoalesceSchema } from "./zod-schema.core-
|
|
1
|
+
import { a as GroupPolicySchema, f as requireAllowlistAllowFrom, i as DmPolicySchema, n as ContextVisibilityModeSchema, o as MarkdownConfigSchema, p as requireOpenAllowFrom, r as DmConfigSchema, s as ReplyRuntimeConfigSchemaShape, t as BlockStreamingCoalesceSchema } from "./zod-schema.core-B4_b2R5K.js";
|
|
2
2
|
import { t as ToolPolicySchema } from "./zod-schema.agent-runtime-DWbjdB_w.js";
|
|
3
|
-
import { a as buildNestedDmConfigSchema, n as buildCatchallMultiAccountChannelSchema, r as buildChannelConfigSchema, t as AllowFromListSchema } from "./config-schema-
|
|
4
|
-
import { a as MSTeamsConfigSchema, c as TelegramConfigSchema, i as IMessageConfigSchema, n as GoogleChatConfigSchema, o as SignalConfigSchema, r as DiscordConfigSchema, s as SlackConfigSchema, t as WhatsAppConfigSchema } from "./bundled-channel-config-schema-
|
|
3
|
+
import { a as buildNestedDmConfigSchema, n as buildCatchallMultiAccountChannelSchema, r as buildChannelConfigSchema, t as AllowFromListSchema } from "./config-schema-DUddICQM.js";
|
|
4
|
+
import { a as MSTeamsConfigSchema, c as TelegramConfigSchema, i as IMessageConfigSchema, n as GoogleChatConfigSchema, o as SignalConfigSchema, r as DiscordConfigSchema, s as SlackConfigSchema, t as WhatsAppConfigSchema } from "./bundled-channel-config-schema-UtIBjviA.js";
|
|
5
5
|
export { AllowFromListSchema, BlockStreamingCoalesceSchema, ContextVisibilityModeSchema, DiscordConfigSchema, DmConfigSchema, DmPolicySchema, GoogleChatConfigSchema, GroupPolicySchema, IMessageConfigSchema, MSTeamsConfigSchema, MarkdownConfigSchema, ReplyRuntimeConfigSchemaShape, SignalConfigSchema, SlackConfigSchema, TelegramConfigSchema, ToolPolicySchema, WhatsAppConfigSchema, buildCatchallMultiAccountChannelSchema, buildChannelConfigSchema, buildNestedDmConfigSchema, requireAllowlistAllowFrom, requireOpenAllowFrom };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as GroupPolicySchema, f as requireAllowlistAllowFrom, i as DmPolicySchema, n as ContextVisibilityModeSchema, o as MarkdownConfigSchema, p as requireOpenAllowFrom, r as DmConfigSchema, s as ReplyRuntimeConfigSchemaShape, t as BlockStreamingCoalesceSchema } from "./zod-schema.core-
|
|
1
|
+
import { a as GroupPolicySchema, f as requireAllowlistAllowFrom, i as DmPolicySchema, n as ContextVisibilityModeSchema, o as MarkdownConfigSchema, p as requireOpenAllowFrom, r as DmConfigSchema, s as ReplyRuntimeConfigSchemaShape, t as BlockStreamingCoalesceSchema } from "./zod-schema.core-B4_b2R5K.js";
|
|
2
2
|
import { t as ToolPolicySchema } from "./zod-schema.agent-runtime-DWbjdB_w.js";
|
|
3
|
-
import { a as buildNestedDmConfigSchema, i as buildJsonChannelConfigSchema, n as buildCatchallMultiAccountChannelSchema, r as buildChannelConfigSchema, t as AllowFromListSchema } from "./config-schema-
|
|
3
|
+
import { a as buildNestedDmConfigSchema, i as buildJsonChannelConfigSchema, n as buildCatchallMultiAccountChannelSchema, r as buildChannelConfigSchema, t as AllowFromListSchema } from "./config-schema-DUddICQM.js";
|
|
4
4
|
export { AllowFromListSchema, BlockStreamingCoalesceSchema, ContextVisibilityModeSchema, DmConfigSchema, DmPolicySchema, GroupPolicySchema, MarkdownConfigSchema, ReplyRuntimeConfigSchemaShape, ToolPolicySchema, buildCatchallMultiAccountChannelSchema, buildChannelConfigSchema, buildJsonChannelConfigSchema, buildNestedDmConfigSchema, requireAllowlistAllowFrom, requireOpenAllowFrom };
|
|
@@ -2,7 +2,7 @@ import { r as FengMingConfig } from "./types.fengming-DQAyczjX.js";
|
|
|
2
2
|
import { r as ChannelConfigUiHint } from "./types.config-CKJTcS4X.js";
|
|
3
3
|
import { n as ChannelPlugin } from "./types.public-DLZUN0vk.js";
|
|
4
4
|
import { Qn as PluginRuntime, at as PluginCommandContext, l as FengMingPluginApi } from "./types-BI8R-vGd.js";
|
|
5
|
-
import { r as buildChannelConfigSchema } from "./config-schema-
|
|
5
|
+
import { r as buildChannelConfigSchema } from "./config-schema-DUddICQM.js";
|
|
6
6
|
import { r as parseOptionalDelimitedEntries } from "./helpers-DaK8xjIK.js";
|
|
7
7
|
import { t as clearAccountEntryFields } from "./config-helpers-BiuzR4y4.js";
|
|
8
8
|
import { c as tryReadSecretFileSync } from "./secret-file-CjbjgOXf.js";
|
|
@@ -2,7 +2,7 @@ import { b as ChannelMessageActionContext } from "./types.core-BsItOBxP.js";
|
|
|
2
2
|
import { n as ChannelPlugin } from "./types.public-DLZUN0vk.js";
|
|
3
3
|
import { n as normalizeAccountId, t as DEFAULT_ACCOUNT_ID } from "./account-id-Dh6XMgGH.js";
|
|
4
4
|
import { Qn as PluginRuntime, l as FengMingPluginApi } from "./types-BI8R-vGd.js";
|
|
5
|
-
import { r as buildChannelConfigSchema } from "./config-schema-
|
|
5
|
+
import { r as buildChannelConfigSchema } from "./config-schema-DUddICQM.js";
|
|
6
6
|
import { n as formatPairingApproveHint } from "./helpers-DaK8xjIK.js";
|
|
7
7
|
import { r as emptyPluginConfigSchema } from "./config-schema-DuJUjn6k.js";
|
|
8
8
|
import { s as migrateBaseNameToDefaultAccount, t as applyAccountNameToChannelSection } from "./setup-helpers-11IuEdzo.js";
|
|
@@ -12,11 +12,11 @@ import { i as createTypingCallbacks$1, n as CreateTypingCallbacksParams$1, r as
|
|
|
12
12
|
import { a as resolveChannelSourceReplyDeliveryMode$1, i as createChannelReplyPipeline$1, r as ReplyPrefixContext$1, t as ChannelReplyPipeline$1 } from "./reply-pipeline-HkBr3yuk.js";
|
|
13
13
|
import { i as createReplyPrefixOptions$1, n as ReplyPrefixOptions$1, r as createReplyPrefixContext$1, t as ReplyPrefixContextBundle$1 } from "./reply-prefix-Cmmy8_3j.js";
|
|
14
14
|
import { n as createChannelHistoryWindow, t as ChannelHistoryWindow } from "./history-window-DpOfKxmG.js";
|
|
15
|
-
import { a as GroupPolicySchema, f as requireAllowlistAllowFrom, i as DmPolicySchema, n as ContextVisibilityModeSchema, o as MarkdownConfigSchema, p as requireOpenAllowFrom, r as DmConfigSchema, s as ReplyRuntimeConfigSchemaShape, t as BlockStreamingCoalesceSchema } from "./zod-schema.core-
|
|
15
|
+
import { a as GroupPolicySchema, f as requireAllowlistAllowFrom, i as DmPolicySchema, n as ContextVisibilityModeSchema, o as MarkdownConfigSchema, p as requireOpenAllowFrom, r as DmConfigSchema, s as ReplyRuntimeConfigSchemaShape, t as BlockStreamingCoalesceSchema } from "./zod-schema.core-B4_b2R5K.js";
|
|
16
16
|
import { t as ToolPolicySchema } from "./zod-schema.agent-runtime-DWbjdB_w.js";
|
|
17
17
|
import { o as optionalStringEnum, s as stringEnum } from "./typebox-DYcWd2Ud.js";
|
|
18
18
|
import { n as formatAllowFromLowercase, o as mapAllowlistResolutionInputs, r as formatNormalizedAllowFromEntries } from "./allow-from-Cyh-mzVO.js";
|
|
19
|
-
import { a as buildNestedDmConfigSchema, i as buildJsonChannelConfigSchema, n as buildCatchallMultiAccountChannelSchema, r as buildChannelConfigSchema, t as AllowFromListSchema } from "./config-schema-
|
|
19
|
+
import { a as buildNestedDmConfigSchema, i as buildJsonChannelConfigSchema, n as buildCatchallMultiAccountChannelSchema, r as buildChannelConfigSchema, t as AllowFromListSchema } from "./config-schema-DUddICQM.js";
|
|
20
20
|
import { i as createAccountStatusSink } from "./channel-lifecycle.core-Dheykrhe.js";
|
|
21
21
|
import { t as buildAccountScopedDmSecurityPolicy } from "./helpers-DaK8xjIK.js";
|
|
22
22
|
import { createHybridChannelConfigAdapter, createHybridChannelConfigBase, createScopedAccountConfigAccessors, createScopedChannelConfigAdapter, createScopedChannelConfigBase, createScopedDmSecurityResolver, createTopLevelChannelConfigAdapter, createTopLevelChannelConfigBase, mapAllowFromEntries } from "./channel-config-helpers.js";
|
|
@@ -10,8 +10,8 @@ declare const AllowFromListSchema: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly
|
|
|
10
10
|
declare function buildNestedDmConfigSchema(extraShape?: ZodRawShape): z.ZodOptional<z.ZodObject<{
|
|
11
11
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
12
12
|
policy: z.ZodOptional<z.ZodEnum<{
|
|
13
|
-
pairing: "pairing";
|
|
14
13
|
allowlist: "allowlist";
|
|
14
|
+
pairing: "pairing";
|
|
15
15
|
open: "open";
|
|
16
16
|
disabled: "disabled";
|
|
17
17
|
}>>;
|
|
@@ -4659,13 +4659,13 @@ declare const FengMingSchema: z.ZodObject<{
|
|
|
4659
4659
|
agents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4660
4660
|
defaultToolsApprovalMode: z.ZodOptional<z.ZodEnum<{
|
|
4661
4661
|
auto: "auto";
|
|
4662
|
-
prompt: "prompt";
|
|
4663
4662
|
approve: "approve";
|
|
4663
|
+
prompt: "prompt";
|
|
4664
4664
|
}>>;
|
|
4665
4665
|
default_tools_approval_mode: z.ZodOptional<z.ZodEnum<{
|
|
4666
4666
|
auto: "auto";
|
|
4667
|
-
prompt: "prompt";
|
|
4668
4667
|
approve: "approve";
|
|
4668
|
+
prompt: "prompt";
|
|
4669
4669
|
}>>;
|
|
4670
4670
|
}, z.core.$strict>>;
|
|
4671
4671
|
}, z.core.$catchall<z.ZodUnknown>>>>;
|
|
@@ -24,7 +24,7 @@ import { Bt as PluginNextTurnInjectionEnqueueResult, Ft as PluginAgentTurnPrepar
|
|
|
24
24
|
import { i as buildAgentSessionKey, n as RoutePeer, r as RoutePeerKind } from "./resolve-route-GQ3IYHuI.js";
|
|
25
25
|
import { n as channelTargetsSchema, o as optionalStringEnum, s as stringEnum, t as channelTargetSchema } from "./typebox-DYcWd2Ud.js";
|
|
26
26
|
import { t as AllowlistMatch } from "./allowlist-match-D7Z-4JYw.js";
|
|
27
|
-
import { i as buildJsonChannelConfigSchema, o as emptyChannelConfigSchema, r as buildChannelConfigSchema } from "./config-schema-
|
|
27
|
+
import { i as buildJsonChannelConfigSchema, o as emptyChannelConfigSchema, r as buildChannelConfigSchema } from "./config-schema-DUddICQM.js";
|
|
28
28
|
import { n as formatPairingApproveHint, r as parseOptionalDelimitedEntries } from "./helpers-DaK8xjIK.js";
|
|
29
29
|
import { n as buildPluginConfigSchema, r as emptyPluginConfigSchema, t as buildJsonPluginConfigSchema } from "./config-schema-DuJUjn6k.js";
|
|
30
30
|
import { t as definePluginEntry } from "./plugin-entry-DO9kQeTr.js";
|
|
@@ -3,8 +3,8 @@ import { r as FengMingConfig } from "./types.fengming-DQAyczjX.js";
|
|
|
3
3
|
import { n as ChannelPlugin, t as ChannelMessageActionName } from "./types.public-DLZUN0vk.js";
|
|
4
4
|
import { n as normalizeAccountId, t as DEFAULT_ACCOUNT_ID } from "./account-id-Dh6XMgGH.js";
|
|
5
5
|
import { Qn as PluginRuntime, l as FengMingPluginApi } from "./types-BI8R-vGd.js";
|
|
6
|
-
import { r as buildChannelConfigSchema } from "./config-schema-
|
|
7
|
-
import { r as DiscordConfigSchema } from "./bundled-channel-config-schema-
|
|
6
|
+
import { r as buildChannelConfigSchema } from "./config-schema-DUddICQM.js";
|
|
7
|
+
import { r as DiscordConfigSchema } from "./bundled-channel-config-schema-UtIBjviA.js";
|
|
8
8
|
import { r as emptyPluginConfigSchema } from "./config-schema-DuJUjn6k.js";
|
|
9
9
|
import { s as migrateBaseNameToDefaultAccount, t as applyAccountNameToChannelSection } from "./setup-helpers-11IuEdzo.js";
|
|
10
10
|
import { t as PAIRING_APPROVED_MESSAGE } from "./pairing-message-nXhZgwTm.js";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { c as TtsAutoSchema, d as TtsProviderSchema, l as TtsConfigSchema, u as TtsModeSchema } from "./zod-schema.core-
|
|
1
|
+
import { c as TtsAutoSchema, d as TtsProviderSchema, l as TtsConfigSchema, u as TtsModeSchema } from "./zod-schema.core-B4_b2R5K.js";
|
|
2
2
|
import { A as setTtsProvider, B as TtsDirectiveParseResult, C as resolveTtsProviderOrder, D as setTtsEnabled, E as setTtsAutoMode, F as textToSpeechStream, I as textToSpeechTelephony, L as ResolvedTtsConfig, M as synthesizeSpeech, N as testApi, O as setTtsMaxLength, P as textToSpeech, R as ResolvedTtsModelOverrides, S as resolveTtsPrefsPath, T as setSummarizationEnabled, _ as listTtsPersonas, a as TtsSynthesisStreamResult, b as resolveTtsAutoMode, c as getLastTtsAttempt, d as getTtsPersona, f as getTtsProvider, g as listSpeechVoices, h as isTtsProviderConfigured, i as TtsSynthesisResult, j as streamSpeech, k as setTtsPersona, l as getResolvedSpeechProviderConfig, m as isTtsEnabled, n as TtsResult, o as TtsTelephonyResult, p as isSummarizationEnabled, r as TtsStreamResult, s as buildTtsSystemPromptHint, t as prewarmTtsRuntimeFacade, u as getTtsMaxLength, v as maybeApplyTtsToPayload, w as setLastTtsAttempt, x as resolveTtsConfig, y as resolveExplicitTtsOverrides, z as TtsDirectiveOverrides } from "./tts-runtime-BZ5T9_8G.js";
|
|
3
3
|
export { type ResolvedTtsConfig, type ResolvedTtsModelOverrides, TtsAutoSchema, TtsConfigSchema, type TtsDirectiveOverrides, type TtsDirectiveParseResult, TtsModeSchema, TtsProviderSchema, type TtsResult, type TtsStreamResult, type TtsSynthesisResult, type TtsSynthesisStreamResult, type TtsTelephonyResult, testApi as _test, testApi, buildTtsSystemPromptHint, getLastTtsAttempt, getResolvedSpeechProviderConfig, getTtsMaxLength, getTtsPersona, getTtsProvider, isSummarizationEnabled, isTtsEnabled, isTtsProviderConfigured, listSpeechVoices, listTtsPersonas, maybeApplyTtsToPayload, prewarmTtsRuntimeFacade, resolveExplicitTtsOverrides, resolveTtsAutoMode, resolveTtsConfig, resolveTtsPrefsPath, resolveTtsProviderOrder, setLastTtsAttempt, setSummarizationEnabled, setTtsAutoMode, setTtsEnabled, setTtsMaxLength, setTtsPersona, setTtsProvider, streamSpeech, synthesizeSpeech, textToSpeech, textToSpeechStream, textToSpeechTelephony };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { y as resolveStateDir } from "../../paths-9MqJt9oL.js";
|
|
2
|
-
import {
|
|
2
|
+
import { n as VERSION } from "../../version-DbEUUfgr.js";
|
|
3
3
|
import { _ as normalizeLogLevel, r as getChildLogger } from "../../logger-DbKFYOlJ.js";
|
|
4
4
|
import "../../agent-scope-DYvAPpmY.js";
|
|
5
5
|
import { a as resolveAgentDir, o as resolveAgentWorkspaceDir } from "../../agent-scope-config-BFfPgg3b.js";
|
|
@@ -825,7 +825,7 @@ function createPluginRuntime(_options = {}) {
|
|
|
825
825
|
const taskFlow = createRuntimeTaskFlow();
|
|
826
826
|
const tasks = createRuntimeTasks({ legacyTaskFlow: taskFlow });
|
|
827
827
|
const runtime = {
|
|
828
|
-
version:
|
|
828
|
+
version: VERSION,
|
|
829
829
|
config: createRuntimeConfig(),
|
|
830
830
|
agent: createRuntimeAgent(),
|
|
831
831
|
subagent: createLateBindingSubagent(_options.subagent, _options.allowGatewaySubagentBinding === true),
|