@makaio/framework 1.0.0-dev-1781454904823 → 1.0.0-dev-1781457526466
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/.makaio-build.json +2 -2
- package/dist/contracts/adapter/index.d.mts +1 -1
- package/dist/contracts/artifact/index.d.mts +1 -1
- package/dist/contracts/client/index.d.mts +1 -1
- package/dist/contracts/config/index.d.mts +6 -6
- package/dist/contracts/extension/index.d.mts +2 -2
- package/dist/contracts/index.d.mts +48 -48
- package/dist/contracts/provider/index.d.mts +1 -1
- package/dist/contracts/session/index.d.mts +2 -2
- package/dist/contracts/variant/index.d.mts +1 -1
- package/dist/{index-BSFmBEDL.d.mts → index-B19U8IjG.d.mts} +9 -9
- package/dist/{index-D8nNK-pF.d.mts → index-B_Z1Mgko.d.mts} +1 -1
- package/dist/{index-Cs009Dqh.d.mts → index-C7DEqbEy.d.mts} +2 -2
- package/dist/{index-BDnI2oqX.d.mts → index-CEdOq5Om.d.mts} +1 -1
- package/dist/{index-BkKWL_tI.d.mts → index-CmnQr7_x.d.mts} +3 -3
- package/dist/{index-CK_hi7fg.d.mts → index-DacXw2sg.d.mts} +12 -12
- package/dist/{index-BVMF3kRv.d.mts → index-DfNIhEm_.d.mts} +16 -16
- package/dist/{index-DN0GXDlw.d.mts → index-DmZxKuwh.d.mts} +2 -2
- package/dist/{index-BKbzDEv4.d.mts → index-DpeRgR7z.d.mts} +97 -97
- package/dist/{index-GuspCNLR.d.mts → index-DyqZej9j.d.mts} +8 -8
- package/dist/{index-CgJf67BC.d.mts → index-p0Gs2cHX.d.mts} +14 -14
- package/dist/kernel/extension/index.d.mts +1 -1
- package/dist/kernel/index.d.mts +2 -2
- package/dist/kernel/observability/index.d.mts +1 -1
- package/dist/{namespace-Dy0pcIqF.d.mts → namespace-B1Bldc48.d.mts} +9 -9
- package/dist/{namespace-CN2TfSCY.d.mts → namespace-DB6RC_Pn.d.mts} +2 -2
- package/dist/{namespace-CWgNi8Gv.d.mts → namespace-D_ZXa76m.d.mts} +26 -26
- package/dist/{namespace-Dyj2m6DT.d.mts → namespace-u_b7D-p2.d.mts} +42 -42
- package/dist/package.json +1 -1
- package/dist/{schema-D2B2V6r6.d.mts → schema-BDQID7HI.d.mts} +2 -2
- package/dist/{schemas-D0gBYOoc2.d.mts → schemas-Bxc0-SF62.d.mts} +4 -4
- package/dist/{schemas-DZfBym73.d.mts → schemas-Bxjfpl2Y.d.mts} +7 -7
- package/dist/{schemas-CRS7tkFP.d.mts → schemas-D2IRKPJN.d.mts} +4 -4
- package/dist/{schemas-CN9hprME.d.mts → schemas-DdHltfZX.d.mts} +3 -3
- package/dist/services/adapter-subsystem/index.d.mts +2 -2
- package/dist/services/adapter-subsystem/namespace.d.mts +1 -1
- package/dist/services/index.d.mts +32 -32
- package/dist/services/preferences/index.d.mts +2 -2
- package/dist/services/preferences/schemas.d.mts +1 -1
- package/dist/services/preferences/storage-namespace.d.mts +2 -2
- package/dist/services/session/index.d.mts +4 -4
- package/dist/services/session/session-events/namespace.d.mts +1 -1
- package/dist/services/session/storage/namespace.d.mts +1 -1
- package/dist/services/session/storage/schema.d.mts +1 -1
- package/dist/services/settings/namespace.d.mts +4 -4
- package/dist/services/settings/storage/extension-configs/namespace.d.mts +3 -3
- package/dist/services/subagent-template/index.d.mts +1 -1
- package/dist/services/subagent-template/schemas.d.mts +1 -1
- package/dist/services/tray-menu/index.d.mts +2 -2
- package/dist/services/tray-menu/namespace.d.mts +1 -1
- package/dist/services/tray-menu/schemas.d.mts +1 -1
- package/dist/{storage-namespace-gey7EUhM.d.mts → storage-namespace-Cd5XzgVC.d.mts} +10 -10
- package/dist/{types-Co-MJvHY.d.mts → types-BC3nHLuk.d.mts} +34 -34
- package/dist/ui-kernel/index.d.mts +4 -4
- package/dist/ui-kernel/pages/namespace.d.mts +4 -4
- package/dist/ui-kernel/pages/schemas.d.mts +1 -1
- package/dist/workflow-engine/index.d.mts +27 -27
- package/package.json +1 -1
|
@@ -27,10 +27,10 @@ type MakaioVariant = z.infer<typeof MakaioVariantSchema>;
|
|
|
27
27
|
*/
|
|
28
28
|
declare const VariantUpgradeStatusSchema: z.ZodEnum<{
|
|
29
29
|
error: "error";
|
|
30
|
-
|
|
30
|
+
complete: "complete";
|
|
31
31
|
progress: "progress";
|
|
32
|
+
downloading: "downloading";
|
|
32
33
|
applying: "applying";
|
|
33
|
-
complete: "complete";
|
|
34
34
|
}>;
|
|
35
35
|
/** Inferred TypeScript type for an upgrade status value. */
|
|
36
36
|
type VariantUpgradeStatus = z.infer<typeof VariantUpgradeStatusSchema>;
|
|
@@ -101,10 +101,10 @@ declare const VariantSchemas: {
|
|
|
101
101
|
upgradeProgress: z.ZodObject<{
|
|
102
102
|
status: z.ZodEnum<{
|
|
103
103
|
error: "error";
|
|
104
|
-
|
|
104
|
+
complete: "complete";
|
|
105
105
|
progress: "progress";
|
|
106
|
+
downloading: "downloading";
|
|
106
107
|
applying: "applying";
|
|
107
|
-
complete: "complete";
|
|
108
108
|
}>;
|
|
109
109
|
percent: z.ZodOptional<z.ZodNumber>;
|
|
110
110
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -158,10 +158,10 @@ declare const VariantNamespace: _$_makaio_core0.BusNamespaceDefinition<"host:var
|
|
|
158
158
|
upgradeProgress: _$zod.ZodObject<{
|
|
159
159
|
status: _$zod.ZodEnum<{
|
|
160
160
|
error: "error";
|
|
161
|
-
|
|
161
|
+
complete: "complete";
|
|
162
162
|
progress: "progress";
|
|
163
|
+
downloading: "downloading";
|
|
163
164
|
applying: "applying";
|
|
164
|
-
complete: "complete";
|
|
165
165
|
}>;
|
|
166
166
|
percent: _$zod.ZodOptional<_$zod.ZodNumber>;
|
|
167
167
|
message: _$zod.ZodOptional<_$zod.ZodString>;
|
|
@@ -205,10 +205,10 @@ declare const VariantSubjects: _$_makaio_core0.BusSubjects<_$_makaio_core0.FlatS
|
|
|
205
205
|
upgradeProgress: _$zod.ZodObject<{
|
|
206
206
|
status: _$zod.ZodEnum<{
|
|
207
207
|
error: "error";
|
|
208
|
-
|
|
208
|
+
complete: "complete";
|
|
209
209
|
progress: "progress";
|
|
210
|
+
downloading: "downloading";
|
|
210
211
|
applying: "applying";
|
|
211
|
-
complete: "complete";
|
|
212
212
|
}>;
|
|
213
213
|
percent: _$zod.ZodOptional<_$zod.ZodNumber>;
|
|
214
214
|
message: _$zod.ZodOptional<_$zod.ZodString>;
|
|
@@ -432,8 +432,8 @@ declare const ArtifactRevisionSchema: z.ZodObject<{
|
|
|
432
432
|
* - `coexist` — both revisions are kept; conflict is surfaced to consumers
|
|
433
433
|
*/
|
|
434
434
|
declare const ArtifactConflictPolicySchema: z.ZodEnum<{
|
|
435
|
-
manual: "manual";
|
|
436
435
|
supersedes: "supersedes";
|
|
436
|
+
manual: "manual";
|
|
437
437
|
coexist: "coexist";
|
|
438
438
|
}>;
|
|
439
439
|
/**
|
|
@@ -451,8 +451,8 @@ declare const ArtifactKindRegistrationSchema: z.ZodObject<{
|
|
|
451
451
|
observationSchema: z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
452
452
|
discriminator: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
453
453
|
conflictPolicy: z.ZodEnum<{
|
|
454
|
-
manual: "manual";
|
|
455
454
|
supersedes: "supersedes";
|
|
455
|
+
manual: "manual";
|
|
456
456
|
coexist: "coexist";
|
|
457
457
|
}>;
|
|
458
458
|
status: z.ZodOptional<z.ZodObject<{
|
|
@@ -1331,8 +1331,8 @@ declare const ArtifactSchemas: {
|
|
|
1331
1331
|
observationSchema: z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
1332
1332
|
discriminator: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1333
1333
|
conflictPolicy: z.ZodEnum<{
|
|
1334
|
-
manual: "manual";
|
|
1335
1334
|
supersedes: "supersedes";
|
|
1335
|
+
manual: "manual";
|
|
1336
1336
|
coexist: "coexist";
|
|
1337
1337
|
}>;
|
|
1338
1338
|
status: z.ZodOptional<z.ZodObject<{
|
|
@@ -1394,8 +1394,8 @@ declare const ArtifactSchemas: {
|
|
|
1394
1394
|
observationSchema: z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
1395
1395
|
discriminator: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1396
1396
|
conflictPolicy: z.ZodEnum<{
|
|
1397
|
-
manual: "manual";
|
|
1398
1397
|
supersedes: "supersedes";
|
|
1398
|
+
manual: "manual";
|
|
1399
1399
|
coexist: "coexist";
|
|
1400
1400
|
}>;
|
|
1401
1401
|
status: z.ZodOptional<z.ZodObject<{
|
|
@@ -1486,6 +1486,7 @@ declare const ArtifactSchemas: {
|
|
|
1486
1486
|
create: {
|
|
1487
1487
|
request: z.ZodObject<{
|
|
1488
1488
|
data: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
1489
|
+
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
1489
1490
|
kind: z.ZodString;
|
|
1490
1491
|
schemaVersion: z.ZodString;
|
|
1491
1492
|
scope: z.ZodObject<{
|
|
@@ -1566,7 +1567,6 @@ declare const ArtifactSchemas: {
|
|
|
1566
1567
|
summary: z.ZodOptional<z.ZodString>;
|
|
1567
1568
|
plaintext: z.ZodOptional<z.ZodString>;
|
|
1568
1569
|
}, z.core.$strip>>;
|
|
1569
|
-
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
1570
1570
|
}, z.core.$strip>;
|
|
1571
1571
|
response: z.ZodObject<{
|
|
1572
1572
|
artifact: z.ZodObject<{
|
|
@@ -1668,6 +1668,7 @@ declare const ArtifactSchemas: {
|
|
|
1668
1668
|
}, z.core.$strip>;
|
|
1669
1669
|
revision: z.ZodObject<{
|
|
1670
1670
|
data: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
1671
|
+
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
1671
1672
|
kind: z.ZodString;
|
|
1672
1673
|
schemaVersion: z.ZodString;
|
|
1673
1674
|
scope: z.ZodObject<{
|
|
@@ -1748,7 +1749,6 @@ declare const ArtifactSchemas: {
|
|
|
1748
1749
|
summary: z.ZodOptional<z.ZodString>;
|
|
1749
1750
|
plaintext: z.ZodOptional<z.ZodString>;
|
|
1750
1751
|
}, z.core.$strip>>;
|
|
1751
|
-
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
1752
1752
|
}, z.core.$strip>;
|
|
1753
1753
|
}, z.core.$strip>;
|
|
1754
1754
|
response: z.ZodObject<{
|
|
@@ -2579,8 +2579,8 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2579
2579
|
observationSchema: z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
2580
2580
|
discriminator: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
2581
2581
|
conflictPolicy: z.ZodEnum<{
|
|
2582
|
-
manual: "manual";
|
|
2583
2582
|
supersedes: "supersedes";
|
|
2583
|
+
manual: "manual";
|
|
2584
2584
|
coexist: "coexist";
|
|
2585
2585
|
}>;
|
|
2586
2586
|
status: z.ZodOptional<z.ZodObject<{
|
|
@@ -2642,8 +2642,8 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2642
2642
|
observationSchema: z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
2643
2643
|
discriminator: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
2644
2644
|
conflictPolicy: z.ZodEnum<{
|
|
2645
|
-
manual: "manual";
|
|
2646
2645
|
supersedes: "supersedes";
|
|
2646
|
+
manual: "manual";
|
|
2647
2647
|
coexist: "coexist";
|
|
2648
2648
|
}>;
|
|
2649
2649
|
status: z.ZodOptional<z.ZodObject<{
|
|
@@ -2734,6 +2734,7 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2734
2734
|
create: {
|
|
2735
2735
|
request: z.ZodObject<{
|
|
2736
2736
|
data: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
2737
|
+
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
2737
2738
|
kind: z.ZodString;
|
|
2738
2739
|
schemaVersion: z.ZodString;
|
|
2739
2740
|
scope: z.ZodObject<{
|
|
@@ -2814,7 +2815,6 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2814
2815
|
summary: z.ZodOptional<z.ZodString>;
|
|
2815
2816
|
plaintext: z.ZodOptional<z.ZodString>;
|
|
2816
2817
|
}, z.core.$strip>>;
|
|
2817
|
-
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
2818
2818
|
}, z.core.$strip>;
|
|
2819
2819
|
response: z.ZodObject<{
|
|
2820
2820
|
artifact: z.ZodObject<{
|
|
@@ -2916,6 +2916,7 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2916
2916
|
}, z.core.$strip>;
|
|
2917
2917
|
revision: z.ZodObject<{
|
|
2918
2918
|
data: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
2919
|
+
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
2919
2920
|
kind: z.ZodString;
|
|
2920
2921
|
schemaVersion: z.ZodString;
|
|
2921
2922
|
scope: z.ZodObject<{
|
|
@@ -2996,7 +2997,6 @@ declare const ArtifactNamespace: _$_makaio_core0.BusNamespaceDefinition<"artifac
|
|
|
2996
2997
|
summary: z.ZodOptional<z.ZodString>;
|
|
2997
2998
|
plaintext: z.ZodOptional<z.ZodString>;
|
|
2998
2999
|
}, z.core.$strip>>;
|
|
2999
|
-
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
3000
3000
|
}, z.core.$strip>;
|
|
3001
3001
|
}, z.core.$strip>;
|
|
3002
3002
|
response: z.ZodObject<{
|
|
@@ -3840,8 +3840,8 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
3840
3840
|
observationSchema: z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
3841
3841
|
discriminator: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
3842
3842
|
conflictPolicy: z.ZodEnum<{
|
|
3843
|
-
manual: "manual";
|
|
3844
3843
|
supersedes: "supersedes";
|
|
3844
|
+
manual: "manual";
|
|
3845
3845
|
coexist: "coexist";
|
|
3846
3846
|
}>;
|
|
3847
3847
|
status: z.ZodOptional<z.ZodObject<{
|
|
@@ -3903,8 +3903,8 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
3903
3903
|
observationSchema: z.ZodOptional<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
3904
3904
|
discriminator: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
3905
3905
|
conflictPolicy: z.ZodEnum<{
|
|
3906
|
-
manual: "manual";
|
|
3907
3906
|
supersedes: "supersedes";
|
|
3907
|
+
manual: "manual";
|
|
3908
3908
|
coexist: "coexist";
|
|
3909
3909
|
}>;
|
|
3910
3910
|
status: z.ZodOptional<z.ZodObject<{
|
|
@@ -3995,6 +3995,7 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
3995
3995
|
create: {
|
|
3996
3996
|
request: z.ZodObject<{
|
|
3997
3997
|
data: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
3998
|
+
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
3998
3999
|
kind: z.ZodString;
|
|
3999
4000
|
schemaVersion: z.ZodString;
|
|
4000
4001
|
scope: z.ZodObject<{
|
|
@@ -4075,7 +4076,6 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
4075
4076
|
summary: z.ZodOptional<z.ZodString>;
|
|
4076
4077
|
plaintext: z.ZodOptional<z.ZodString>;
|
|
4077
4078
|
}, z.core.$strip>>;
|
|
4078
|
-
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
4079
4079
|
}, z.core.$strip>;
|
|
4080
4080
|
response: z.ZodObject<{
|
|
4081
4081
|
artifact: z.ZodObject<{
|
|
@@ -4177,6 +4177,7 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
4177
4177
|
}, z.core.$strip>;
|
|
4178
4178
|
revision: z.ZodObject<{
|
|
4179
4179
|
data: z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>;
|
|
4180
|
+
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
4180
4181
|
kind: z.ZodString;
|
|
4181
4182
|
schemaVersion: z.ZodString;
|
|
4182
4183
|
scope: z.ZodObject<{
|
|
@@ -4257,7 +4258,6 @@ declare const ArtifactSubjects$1: _$_makaio_core0.BusSubjects<_$_makaio_core0.Fl
|
|
|
4257
4258
|
summary: z.ZodOptional<z.ZodString>;
|
|
4258
4259
|
plaintext: z.ZodOptional<z.ZodString>;
|
|
4259
4260
|
}, z.core.$strip>>;
|
|
4260
|
-
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
4261
4261
|
}, z.core.$strip>;
|
|
4262
4262
|
}, z.core.$strip>;
|
|
4263
4263
|
response: z.ZodObject<{
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as ExtensionCoordinatorOptions, c as KernelMakaioExtension, i as ContributionProcessor, l as RuntimeCapability, n as filterEligibleExtensions, o as ExtensionRuntimeSurface, r as ExtensionCoordinator, s as KernelExtensionContext, t as coalesceExtensionOverrides, u as RuntimeEnvironment } from "../../index-
|
|
1
|
+
import { a as ExtensionCoordinatorOptions, c as KernelMakaioExtension, i as ContributionProcessor, l as RuntimeCapability, n as filterEligibleExtensions, o as ExtensionRuntimeSurface, r as ExtensionCoordinator, s as KernelExtensionContext, t as coalesceExtensionOverrides, u as RuntimeEnvironment } from "../../index-B_Z1Mgko.mjs";
|
|
2
2
|
export { ContributionProcessor, ExtensionCoordinator, ExtensionCoordinatorOptions, ExtensionRuntimeSurface, KernelExtensionContext, KernelMakaioExtension, RuntimeCapability, RuntimeEnvironment, coalesceExtensionOverrides, filterEligibleExtensions };
|
package/dist/kernel/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { c as ExtensionInfo, f as ServiceInfo, i as ComponentInfo, l as ExtensionInfoSchema, n as ExtensionSubjects, o as ComponentState, p as ServiceInfoSchema, s as ComponentStateSchema, t as ExtensionNamespace } from "../index-
|
|
2
|
-
import { c as KernelMakaioExtension, i as ContributionProcessor, l as RuntimeCapability, n as filterEligibleExtensions, o as ExtensionRuntimeSurface, r as ExtensionCoordinator, s as KernelExtensionContext, t as coalesceExtensionOverrides, u as RuntimeEnvironment } from "../index-
|
|
1
|
+
import { c as ExtensionInfo, f as ServiceInfo, i as ComponentInfo, l as ExtensionInfoSchema, n as ExtensionSubjects, o as ComponentState, p as ServiceInfoSchema, s as ComponentStateSchema, t as ExtensionNamespace } from "../index-DacXw2sg.mjs";
|
|
2
|
+
import { c as KernelMakaioExtension, i as ContributionProcessor, l as RuntimeCapability, n as filterEligibleExtensions, o as ExtensionRuntimeSurface, r as ExtensionCoordinator, s as KernelExtensionContext, t as coalesceExtensionOverrides, u as RuntimeEnvironment } from "../index-B_Z1Mgko.mjs";
|
|
3
3
|
import { i as WindowStyle, n as WindowRegistration, r as WindowRegistry, t as STYLE_DEFAULTS } from "../window-registry-CA6AC8n7.mjs";
|
|
4
4
|
import { a as KernelSchemas, i as setWorkflowTriggerTypeRegistry, n as KernelSubjects, r as getWorkflowTriggerTypeRegistry, t as KernelNamespace } from "../index-D0RWuwl5.mjs";
|
|
5
5
|
import { a as MachineIdentity, c as StorageProvider, i as IdentityProvider, n as NoTransportProvider, o as TransportProvider, r as MemoryStorageProvider, s as StorageCleanup, t as EphemeralIdentityProvider } from "../index-orAkFukT.mjs";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as ComponentInfoSchema, c as ExtensionInfo, d as ExtensionWarningEntrySchema, f as ServiceInfo, i as ComponentInfo, l as ExtensionInfoSchema, n as ExtensionSubjects, o as ComponentState, p as ServiceInfoSchema, r as ComponentIdentitySchema, s as ComponentStateSchema, t as ExtensionNamespace, u as ExtensionWarningEntry } from "../../index-
|
|
1
|
+
import { a as ComponentInfoSchema, c as ExtensionInfo, d as ExtensionWarningEntrySchema, f as ServiceInfo, i as ComponentInfo, l as ExtensionInfoSchema, n as ExtensionSubjects, o as ComponentState, p as ServiceInfoSchema, r as ComponentIdentitySchema, s as ComponentStateSchema, t as ExtensionNamespace, u as ExtensionWarningEntry } from "../../index-DacXw2sg.mjs";
|
|
2
2
|
export { ComponentIdentitySchema, ComponentInfo, ComponentInfoSchema, ComponentState, ComponentStateSchema, ExtensionInfo, ExtensionInfoSchema, ExtensionNamespace, ExtensionSubjects, ExtensionWarningEntry, ExtensionWarningEntrySchema, ServiceInfo, ServiceInfoSchema };
|
|
@@ -537,9 +537,9 @@ declare const SessionEventStorageNamespace$1: {
|
|
|
537
537
|
parentSessionId: _$zod.ZodString;
|
|
538
538
|
kind: _$zod.ZodEnum<{
|
|
539
539
|
fork: "fork";
|
|
540
|
-
branch: "branch";
|
|
541
540
|
subagent: "subagent";
|
|
542
541
|
compress: "compress";
|
|
542
|
+
branch: "branch";
|
|
543
543
|
rewrite: "rewrite";
|
|
544
544
|
coordinator: "coordinator";
|
|
545
545
|
aside: "aside";
|
|
@@ -867,9 +867,9 @@ declare const SessionEventStorageNamespace$1: {
|
|
|
867
867
|
parentSessionId: _$zod.ZodString;
|
|
868
868
|
kind: _$zod.ZodEnum<{
|
|
869
869
|
fork: "fork";
|
|
870
|
-
branch: "branch";
|
|
871
870
|
subagent: "subagent";
|
|
872
871
|
compress: "compress";
|
|
872
|
+
branch: "branch";
|
|
873
873
|
rewrite: "rewrite";
|
|
874
874
|
coordinator: "coordinator";
|
|
875
875
|
aside: "aside";
|
|
@@ -1187,9 +1187,9 @@ declare const SessionEventStorageNamespace$1: {
|
|
|
1187
1187
|
parentSessionId: _$zod.ZodString;
|
|
1188
1188
|
kind: _$zod.ZodEnum<{
|
|
1189
1189
|
fork: "fork";
|
|
1190
|
-
branch: "branch";
|
|
1191
1190
|
subagent: "subagent";
|
|
1192
1191
|
compress: "compress";
|
|
1192
|
+
branch: "branch";
|
|
1193
1193
|
rewrite: "rewrite";
|
|
1194
1194
|
coordinator: "coordinator";
|
|
1195
1195
|
aside: "aside";
|
|
@@ -1515,9 +1515,9 @@ declare const SessionEventStorageNamespace$1: {
|
|
|
1515
1515
|
parentSessionId: _$zod.ZodString;
|
|
1516
1516
|
kind: _$zod.ZodEnum<{
|
|
1517
1517
|
fork: "fork";
|
|
1518
|
-
branch: "branch";
|
|
1519
1518
|
subagent: "subagent";
|
|
1520
1519
|
compress: "compress";
|
|
1520
|
+
branch: "branch";
|
|
1521
1521
|
rewrite: "rewrite";
|
|
1522
1522
|
coordinator: "coordinator";
|
|
1523
1523
|
aside: "aside";
|
|
@@ -1831,9 +1831,9 @@ declare const SessionEventStorageNamespace$1: {
|
|
|
1831
1831
|
parentSessionId: _$zod.ZodString;
|
|
1832
1832
|
kind: _$zod.ZodEnum<{
|
|
1833
1833
|
fork: "fork";
|
|
1834
|
-
branch: "branch";
|
|
1835
1834
|
subagent: "subagent";
|
|
1836
1835
|
compress: "compress";
|
|
1836
|
+
branch: "branch";
|
|
1837
1837
|
rewrite: "rewrite";
|
|
1838
1838
|
coordinator: "coordinator";
|
|
1839
1839
|
aside: "aside";
|
|
@@ -2161,9 +2161,9 @@ declare const SessionEventStorageNamespace$1: {
|
|
|
2161
2161
|
parentSessionId: _$zod.ZodString;
|
|
2162
2162
|
kind: _$zod.ZodEnum<{
|
|
2163
2163
|
fork: "fork";
|
|
2164
|
-
branch: "branch";
|
|
2165
2164
|
subagent: "subagent";
|
|
2166
2165
|
compress: "compress";
|
|
2166
|
+
branch: "branch";
|
|
2167
2167
|
rewrite: "rewrite";
|
|
2168
2168
|
coordinator: "coordinator";
|
|
2169
2169
|
aside: "aside";
|
|
@@ -2481,9 +2481,9 @@ declare const SessionEventStorageNamespace$1: {
|
|
|
2481
2481
|
parentSessionId: _$zod.ZodString;
|
|
2482
2482
|
kind: _$zod.ZodEnum<{
|
|
2483
2483
|
fork: "fork";
|
|
2484
|
-
branch: "branch";
|
|
2485
2484
|
subagent: "subagent";
|
|
2486
2485
|
compress: "compress";
|
|
2486
|
+
branch: "branch";
|
|
2487
2487
|
rewrite: "rewrite";
|
|
2488
2488
|
coordinator: "coordinator";
|
|
2489
2489
|
aside: "aside";
|
|
@@ -2809,9 +2809,9 @@ declare const SessionEventStorageNamespace$1: {
|
|
|
2809
2809
|
parentSessionId: _$zod.ZodString;
|
|
2810
2810
|
kind: _$zod.ZodEnum<{
|
|
2811
2811
|
fork: "fork";
|
|
2812
|
-
branch: "branch";
|
|
2813
2812
|
subagent: "subagent";
|
|
2814
2813
|
compress: "compress";
|
|
2814
|
+
branch: "branch";
|
|
2815
2815
|
rewrite: "rewrite";
|
|
2816
2816
|
coordinator: "coordinator";
|
|
2817
2817
|
aside: "aside";
|
|
@@ -3086,7 +3086,7 @@ declare const SessionEventStorageNamespace$1: {
|
|
|
3086
3086
|
payload: {
|
|
3087
3087
|
childSessionId: string;
|
|
3088
3088
|
parentSessionId: string;
|
|
3089
|
-
kind: "fork" | "
|
|
3089
|
+
kind: "fork" | "subagent" | "compress" | "branch" | "rewrite" | "coordinator" | "aside";
|
|
3090
3090
|
forkPointMessageId?: string | undefined;
|
|
3091
3091
|
};
|
|
3092
3092
|
} | {
|
|
@@ -42,8 +42,8 @@ declare const TrayMenuNamespace: _$_makaio_core0.BusNamespaceDefinition<"host:tr
|
|
|
42
42
|
entries: _$zod.ZodArray<_$zod.ZodObject<{
|
|
43
43
|
metadata: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodUnknown>>;
|
|
44
44
|
enabled: _$zod.ZodDefault<_$zod.ZodBoolean>;
|
|
45
|
-
priority: _$zod.ZodDefault<_$zod.ZodNumber>;
|
|
46
45
|
label: _$zod.ZodString;
|
|
46
|
+
priority: _$zod.ZodDefault<_$zod.ZodNumber>;
|
|
47
47
|
entryId: _$zod.ZodString;
|
|
48
48
|
}, _$zod_v4_core0.$strip>>;
|
|
49
49
|
section: _$zod.ZodEnum<{
|
|
@@ -133,8 +133,8 @@ declare const TrayMenuSubjects: _$_makaio_core0.BusSubjects<_$_makaio_core0.Flat
|
|
|
133
133
|
entries: _$zod.ZodArray<_$zod.ZodObject<{
|
|
134
134
|
metadata: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodUnknown>>;
|
|
135
135
|
enabled: _$zod.ZodDefault<_$zod.ZodBoolean>;
|
|
136
|
-
priority: _$zod.ZodDefault<_$zod.ZodNumber>;
|
|
137
136
|
label: _$zod.ZodString;
|
|
137
|
+
priority: _$zod.ZodDefault<_$zod.ZodNumber>;
|
|
138
138
|
entryId: _$zod.ZodString;
|
|
139
139
|
}, _$zod_v4_core0.$strip>>;
|
|
140
140
|
section: _$zod.ZodEnum<{
|
|
@@ -70,8 +70,8 @@ declare const AdapterSubsystemNamespace: _$_makaio_core0.BusNamespaceDefinition<
|
|
|
70
70
|
name: _$zod.ZodString;
|
|
71
71
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
72
72
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
73
|
-
enabled: "enabled";
|
|
74
73
|
disabled: "disabled";
|
|
74
|
+
enabled: "enabled";
|
|
75
75
|
visible: "visible";
|
|
76
76
|
}>>>;
|
|
77
77
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -97,8 +97,8 @@ declare const AdapterSubsystemNamespace: _$_makaio_core0.BusNamespaceDefinition<
|
|
|
97
97
|
name: _$zod.ZodString;
|
|
98
98
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
99
99
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
100
|
-
enabled: "enabled";
|
|
101
100
|
disabled: "disabled";
|
|
101
|
+
enabled: "enabled";
|
|
102
102
|
visible: "visible";
|
|
103
103
|
}>>>;
|
|
104
104
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -124,8 +124,8 @@ declare const AdapterSubsystemNamespace: _$_makaio_core0.BusNamespaceDefinition<
|
|
|
124
124
|
name: _$zod.ZodString;
|
|
125
125
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
126
126
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
127
|
-
enabled: "enabled";
|
|
128
127
|
disabled: "disabled";
|
|
128
|
+
enabled: "enabled";
|
|
129
129
|
visible: "visible";
|
|
130
130
|
}>>>;
|
|
131
131
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -188,8 +188,8 @@ declare const AdapterSubsystemNamespace: _$_makaio_core0.BusNamespaceDefinition<
|
|
|
188
188
|
name: _$zod.ZodString;
|
|
189
189
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
190
190
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
191
|
-
enabled: "enabled";
|
|
192
191
|
disabled: "disabled";
|
|
192
|
+
enabled: "enabled";
|
|
193
193
|
visible: "visible";
|
|
194
194
|
}>>>;
|
|
195
195
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -335,8 +335,8 @@ declare const AdapterSubsystemNamespace: _$_makaio_core0.BusNamespaceDefinition<
|
|
|
335
335
|
openai: _$zod.ZodOptional<_$zod.ZodString>;
|
|
336
336
|
}, _$zod_v4_core0.$strip>>;
|
|
337
337
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
338
|
-
enabled: "enabled";
|
|
339
338
|
disabled: "disabled";
|
|
339
|
+
enabled: "enabled";
|
|
340
340
|
visible: "visible";
|
|
341
341
|
}>>>;
|
|
342
342
|
modelFilterMode: _$zod.ZodOptional<_$zod.ZodEnum<{
|
|
@@ -352,8 +352,8 @@ declare const AdapterSubsystemNamespace: _$_makaio_core0.BusNamespaceDefinition<
|
|
|
352
352
|
name: _$zod.ZodString;
|
|
353
353
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
354
354
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
355
|
-
enabled: "enabled";
|
|
356
355
|
disabled: "disabled";
|
|
356
|
+
enabled: "enabled";
|
|
357
357
|
visible: "visible";
|
|
358
358
|
}>>>;
|
|
359
359
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -378,8 +378,8 @@ declare const AdapterSubsystemNamespace: _$_makaio_core0.BusNamespaceDefinition<
|
|
|
378
378
|
openai: _$zod.ZodOptional<_$zod.ZodString>;
|
|
379
379
|
}, _$zod_v4_core0.$strip>>>;
|
|
380
380
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
381
|
-
enabled: "enabled";
|
|
382
381
|
disabled: "disabled";
|
|
382
|
+
enabled: "enabled";
|
|
383
383
|
visible: "visible";
|
|
384
384
|
}>>>;
|
|
385
385
|
enabled: _$zod.ZodOptional<_$zod.ZodBoolean>;
|
|
@@ -392,8 +392,8 @@ declare const AdapterSubsystemNamespace: _$_makaio_core0.BusNamespaceDefinition<
|
|
|
392
392
|
name: _$zod.ZodString;
|
|
393
393
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
394
394
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
395
|
-
enabled: "enabled";
|
|
396
395
|
disabled: "disabled";
|
|
396
|
+
enabled: "enabled";
|
|
397
397
|
visible: "visible";
|
|
398
398
|
}>>>;
|
|
399
399
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -420,8 +420,8 @@ declare const AdapterSubsystemNamespace: _$_makaio_core0.BusNamespaceDefinition<
|
|
|
420
420
|
name: _$zod.ZodString;
|
|
421
421
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
422
422
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
423
|
-
enabled: "enabled";
|
|
424
423
|
disabled: "disabled";
|
|
424
|
+
enabled: "enabled";
|
|
425
425
|
visible: "visible";
|
|
426
426
|
}>>>;
|
|
427
427
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -455,8 +455,8 @@ declare const AdapterSubsystemNamespace: _$_makaio_core0.BusNamespaceDefinition<
|
|
|
455
455
|
name: _$zod.ZodString;
|
|
456
456
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
457
457
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
458
|
-
enabled: "enabled";
|
|
459
458
|
disabled: "disabled";
|
|
459
|
+
enabled: "enabled";
|
|
460
460
|
visible: "visible";
|
|
461
461
|
}>>>;
|
|
462
462
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -487,8 +487,8 @@ declare const AdapterSubsystemNamespace: _$_makaio_core0.BusNamespaceDefinition<
|
|
|
487
487
|
name: _$zod.ZodString;
|
|
488
488
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
489
489
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
490
|
-
enabled: "enabled";
|
|
491
490
|
disabled: "disabled";
|
|
491
|
+
enabled: "enabled";
|
|
492
492
|
visible: "visible";
|
|
493
493
|
}>>>;
|
|
494
494
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -592,8 +592,8 @@ declare const AdapterSubsystemNamespace: _$_makaio_core0.BusNamespaceDefinition<
|
|
|
592
592
|
name: _$zod.ZodString;
|
|
593
593
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
594
594
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
595
|
-
enabled: "enabled";
|
|
596
595
|
disabled: "disabled";
|
|
596
|
+
enabled: "enabled";
|
|
597
597
|
visible: "visible";
|
|
598
598
|
}>>>;
|
|
599
599
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -612,8 +612,8 @@ declare const AdapterSubsystemNamespace: _$_makaio_core0.BusNamespaceDefinition<
|
|
|
612
612
|
name: _$zod.ZodString;
|
|
613
613
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
614
614
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
615
|
-
enabled: "enabled";
|
|
616
615
|
disabled: "disabled";
|
|
616
|
+
enabled: "enabled";
|
|
617
617
|
visible: "visible";
|
|
618
618
|
}>>>;
|
|
619
619
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -723,8 +723,8 @@ declare const AdapterSubsystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_co
|
|
|
723
723
|
name: _$zod.ZodString;
|
|
724
724
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
725
725
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
726
|
-
enabled: "enabled";
|
|
727
726
|
disabled: "disabled";
|
|
727
|
+
enabled: "enabled";
|
|
728
728
|
visible: "visible";
|
|
729
729
|
}>>>;
|
|
730
730
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -750,8 +750,8 @@ declare const AdapterSubsystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_co
|
|
|
750
750
|
name: _$zod.ZodString;
|
|
751
751
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
752
752
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
753
|
-
enabled: "enabled";
|
|
754
753
|
disabled: "disabled";
|
|
754
|
+
enabled: "enabled";
|
|
755
755
|
visible: "visible";
|
|
756
756
|
}>>>;
|
|
757
757
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -777,8 +777,8 @@ declare const AdapterSubsystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_co
|
|
|
777
777
|
name: _$zod.ZodString;
|
|
778
778
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
779
779
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
780
|
-
enabled: "enabled";
|
|
781
780
|
disabled: "disabled";
|
|
781
|
+
enabled: "enabled";
|
|
782
782
|
visible: "visible";
|
|
783
783
|
}>>>;
|
|
784
784
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -841,8 +841,8 @@ declare const AdapterSubsystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_co
|
|
|
841
841
|
name: _$zod.ZodString;
|
|
842
842
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
843
843
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
844
|
-
enabled: "enabled";
|
|
845
844
|
disabled: "disabled";
|
|
845
|
+
enabled: "enabled";
|
|
846
846
|
visible: "visible";
|
|
847
847
|
}>>>;
|
|
848
848
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -988,8 +988,8 @@ declare const AdapterSubsystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_co
|
|
|
988
988
|
openai: _$zod.ZodOptional<_$zod.ZodString>;
|
|
989
989
|
}, _$zod_v4_core0.$strip>>;
|
|
990
990
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
991
|
-
enabled: "enabled";
|
|
992
991
|
disabled: "disabled";
|
|
992
|
+
enabled: "enabled";
|
|
993
993
|
visible: "visible";
|
|
994
994
|
}>>>;
|
|
995
995
|
modelFilterMode: _$zod.ZodOptional<_$zod.ZodEnum<{
|
|
@@ -1005,8 +1005,8 @@ declare const AdapterSubsystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_co
|
|
|
1005
1005
|
name: _$zod.ZodString;
|
|
1006
1006
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1007
1007
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1008
|
-
enabled: "enabled";
|
|
1009
1008
|
disabled: "disabled";
|
|
1009
|
+
enabled: "enabled";
|
|
1010
1010
|
visible: "visible";
|
|
1011
1011
|
}>>>;
|
|
1012
1012
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1031,8 +1031,8 @@ declare const AdapterSubsystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_co
|
|
|
1031
1031
|
openai: _$zod.ZodOptional<_$zod.ZodString>;
|
|
1032
1032
|
}, _$zod_v4_core0.$strip>>>;
|
|
1033
1033
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1034
|
-
enabled: "enabled";
|
|
1035
1034
|
disabled: "disabled";
|
|
1035
|
+
enabled: "enabled";
|
|
1036
1036
|
visible: "visible";
|
|
1037
1037
|
}>>>;
|
|
1038
1038
|
enabled: _$zod.ZodOptional<_$zod.ZodBoolean>;
|
|
@@ -1045,8 +1045,8 @@ declare const AdapterSubsystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_co
|
|
|
1045
1045
|
name: _$zod.ZodString;
|
|
1046
1046
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1047
1047
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1048
|
-
enabled: "enabled";
|
|
1049
1048
|
disabled: "disabled";
|
|
1049
|
+
enabled: "enabled";
|
|
1050
1050
|
visible: "visible";
|
|
1051
1051
|
}>>>;
|
|
1052
1052
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1073,8 +1073,8 @@ declare const AdapterSubsystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_co
|
|
|
1073
1073
|
name: _$zod.ZodString;
|
|
1074
1074
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1075
1075
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1076
|
-
enabled: "enabled";
|
|
1077
1076
|
disabled: "disabled";
|
|
1077
|
+
enabled: "enabled";
|
|
1078
1078
|
visible: "visible";
|
|
1079
1079
|
}>>>;
|
|
1080
1080
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1108,8 +1108,8 @@ declare const AdapterSubsystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_co
|
|
|
1108
1108
|
name: _$zod.ZodString;
|
|
1109
1109
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1110
1110
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1111
|
-
enabled: "enabled";
|
|
1112
1111
|
disabled: "disabled";
|
|
1112
|
+
enabled: "enabled";
|
|
1113
1113
|
visible: "visible";
|
|
1114
1114
|
}>>>;
|
|
1115
1115
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1140,8 +1140,8 @@ declare const AdapterSubsystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_co
|
|
|
1140
1140
|
name: _$zod.ZodString;
|
|
1141
1141
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1142
1142
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1143
|
-
enabled: "enabled";
|
|
1144
1143
|
disabled: "disabled";
|
|
1144
|
+
enabled: "enabled";
|
|
1145
1145
|
visible: "visible";
|
|
1146
1146
|
}>>>;
|
|
1147
1147
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1245,8 +1245,8 @@ declare const AdapterSubsystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_co
|
|
|
1245
1245
|
name: _$zod.ZodString;
|
|
1246
1246
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1247
1247
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1248
|
-
enabled: "enabled";
|
|
1249
1248
|
disabled: "disabled";
|
|
1249
|
+
enabled: "enabled";
|
|
1250
1250
|
visible: "visible";
|
|
1251
1251
|
}>>>;
|
|
1252
1252
|
modelFilterMode: _$zod.ZodEnum<{
|
|
@@ -1265,8 +1265,8 @@ declare const AdapterSubsystemSubjects: _$_makaio_core0.BusSubjects<_$_makaio_co
|
|
|
1265
1265
|
name: _$zod.ZodString;
|
|
1266
1266
|
endpointOverrides: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodString>>;
|
|
1267
1267
|
modelVisibility: _$zod.ZodOptional<_$zod.ZodRecord<_$zod.ZodString, _$zod.ZodEnum<{
|
|
1268
|
-
enabled: "enabled";
|
|
1269
1268
|
disabled: "disabled";
|
|
1269
|
+
enabled: "enabled";
|
|
1270
1270
|
visible: "visible";
|
|
1271
1271
|
}>>>;
|
|
1272
1272
|
modelFilterMode: _$zod.ZodEnum<{
|