@opencode-ai/protocol 0.0.0-next-14769 → 0.0.0-next-14777
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/api.d.ts +2 -1
- package/dist/api.js +2 -0
- package/dist/client.d.ts +1 -0
- package/dist/client.js +1 -0
- package/dist/groups/event.d.ts +115 -115
- package/dist/groups/form.d.ts +150 -150
- package/dist/groups/vcs.d.ts +33 -0
- package/dist/groups/vcs.js +37 -0
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -27,7 +27,8 @@ import { McpGroup } from "./groups/mcp.js";
|
|
|
27
27
|
import { CredentialGroup } from "./groups/credential.js";
|
|
28
28
|
import { ProjectGroup } from "./groups/project.js";
|
|
29
29
|
import { ProjectCopyGroup } from "./groups/project-copy.js";
|
|
30
|
-
|
|
30
|
+
import { VcsGroup } from "./groups/vcs.js";
|
|
31
|
+
type LocationGroups<LocationId extends HttpApiMiddleware.AnyId> = HttpApiGroup.AddMiddleware<typeof LocationGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof AgentGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof PluginGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof ModelGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof GenerateGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof ProviderGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof IntegrationGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof McpGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof CredentialGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof ProjectGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof FileSystemGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof CommandGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof SkillGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof PtyGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof ShellGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof ReferenceGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof ProjectCopyGroup, LocationId> | HttpApiGroup.AddMiddleware<typeof VcsGroup, LocationId>;
|
|
31
32
|
type SessionGroups<SessionLocationId extends HttpApiMiddleware.AnyId, SessionLocationService> = ReturnType<typeof makeSessionGroup<SessionLocationId, SessionLocationService>> | HttpApiGroup.AddMiddleware<typeof MessageGroup, SessionLocationId>;
|
|
32
33
|
type FormGroups<LocationId extends HttpApiMiddleware.AnyId, LocationService, FormLocationId extends HttpApiMiddleware.AnyId, FormLocationService> = ReturnType<typeof makeFormGroup<LocationId, LocationService, FormLocationId, FormLocationService>>;
|
|
33
34
|
type MixedMiddlewareGroups<LocationId extends HttpApiMiddleware.AnyId, LocationService, SessionLocationId extends HttpApiMiddleware.AnyId, SessionLocationService> = ReturnType<typeof makePermissionGroup<LocationId, LocationService, SessionLocationId, SessionLocationService>> | ReturnType<typeof makeQuestionGroup<LocationId, LocationService, SessionLocationId, SessionLocationService>>;
|
package/dist/api.js
CHANGED
|
@@ -26,6 +26,7 @@ import { McpGroup } from "./groups/mcp.js";
|
|
|
26
26
|
import { CredentialGroup } from "./groups/credential.js";
|
|
27
27
|
import { ProjectGroup } from "./groups/project.js";
|
|
28
28
|
import { ProjectCopyGroup } from "./groups/project-copy.js";
|
|
29
|
+
import { VcsGroup } from "./groups/vcs.js";
|
|
29
30
|
// Protocol owns middleware placement, while Server injects concrete keys so Core service identities stay downstream.
|
|
30
31
|
const makeApiFromGroup = (eventGroup, locationMiddleware, formLocationMiddleware, sessionLocationMiddleware) => HttpApi.make("server")
|
|
31
32
|
.add(HealthGroup)
|
|
@@ -52,6 +53,7 @@ const makeApiFromGroup = (eventGroup, locationMiddleware, formLocationMiddleware
|
|
|
52
53
|
.add(makeQuestionGroup(locationMiddleware, sessionLocationMiddleware))
|
|
53
54
|
.add(ReferenceGroup.middleware(locationMiddleware))
|
|
54
55
|
.add(ProjectCopyGroup.middleware(locationMiddleware))
|
|
56
|
+
.add(VcsGroup.middleware(locationMiddleware))
|
|
55
57
|
.annotateMerge(OpenApi.annotations({
|
|
56
58
|
title: "opencode HttpApi",
|
|
57
59
|
version: "0.0.1",
|
package/dist/client.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ export declare const groupNames: {
|
|
|
49
49
|
readonly "server.reference": "reference";
|
|
50
50
|
readonly "server.project": "project";
|
|
51
51
|
readonly "server.projectCopy": "projectCopy";
|
|
52
|
+
readonly "server.vcs": "vcs";
|
|
52
53
|
};
|
|
53
54
|
export declare const endpointNames: {
|
|
54
55
|
readonly "session.messages": "list";
|
package/dist/client.js
CHANGED
package/dist/groups/event.d.ts
CHANGED
|
@@ -3521,15 +3521,15 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
3521
3521
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3522
3522
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3523
3523
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
3524
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
3524
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
3525
3525
|
readonly key: Schema.String;
|
|
3526
3526
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3527
|
-
readonly value: Schema.String
|
|
3528
|
-
}
|
|
3527
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3528
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
3529
3529
|
readonly key: Schema.String;
|
|
3530
3530
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3531
|
-
readonly value: Schema.String
|
|
3532
|
-
}
|
|
3531
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3532
|
+
}>>>, never, never>;
|
|
3533
3533
|
}>, Schema.Struct<{
|
|
3534
3534
|
readonly type: Schema.Literal<"number">;
|
|
3535
3535
|
readonly minimum: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Number>>, Schema.optionalKey<Schema.Number>, never, never>;
|
|
@@ -3539,15 +3539,15 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
3539
3539
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3540
3540
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3541
3541
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
3542
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
3542
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
3543
3543
|
readonly key: Schema.String;
|
|
3544
3544
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3545
|
-
readonly value: Schema.String
|
|
3546
|
-
}
|
|
3545
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3546
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
3547
3547
|
readonly key: Schema.String;
|
|
3548
3548
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3549
|
-
readonly value: Schema.String
|
|
3550
|
-
}
|
|
3549
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3550
|
+
}>>>, never, never>;
|
|
3551
3551
|
}>, Schema.Struct<{
|
|
3552
3552
|
readonly type: Schema.Literal<"integer">;
|
|
3553
3553
|
readonly minimum: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Number>>, Schema.optionalKey<Schema.Number>, never, never>;
|
|
@@ -3557,15 +3557,15 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
3557
3557
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3558
3558
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3559
3559
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
3560
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
3560
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
3561
3561
|
readonly key: Schema.String;
|
|
3562
3562
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3563
|
-
readonly value: Schema.String
|
|
3564
|
-
}
|
|
3563
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3564
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
3565
3565
|
readonly key: Schema.String;
|
|
3566
3566
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3567
|
-
readonly value: Schema.String
|
|
3568
|
-
}
|
|
3567
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3568
|
+
}>>>, never, never>;
|
|
3569
3569
|
}>, Schema.Struct<{
|
|
3570
3570
|
readonly type: Schema.Literal<"boolean">;
|
|
3571
3571
|
readonly default: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
@@ -3573,15 +3573,15 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
3573
3573
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3574
3574
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3575
3575
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
3576
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
3576
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
3577
3577
|
readonly key: Schema.String;
|
|
3578
3578
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3579
|
-
readonly value: Schema.String
|
|
3580
|
-
}
|
|
3579
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3580
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
3581
3581
|
readonly key: Schema.String;
|
|
3582
3582
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3583
|
-
readonly value: Schema.String
|
|
3584
|
-
}
|
|
3583
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3584
|
+
}>>>, never, never>;
|
|
3585
3585
|
}>, Schema.Struct<{
|
|
3586
3586
|
readonly type: Schema.Literal<"multiselect">;
|
|
3587
3587
|
readonly options: Schema.$Array<Schema.Struct<{
|
|
@@ -3597,15 +3597,15 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
3597
3597
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3598
3598
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3599
3599
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
3600
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
3600
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
3601
3601
|
readonly key: Schema.String;
|
|
3602
3602
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3603
|
-
readonly value: Schema.String
|
|
3604
|
-
}
|
|
3603
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3604
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
3605
3605
|
readonly key: Schema.String;
|
|
3606
3606
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3607
|
-
readonly value: Schema.String
|
|
3608
|
-
}
|
|
3607
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3608
|
+
}>>>, never, never>;
|
|
3609
3609
|
}>]>>;
|
|
3610
3610
|
readonly id: Schema.brand<Schema.String, "Form.ID"> & {
|
|
3611
3611
|
create: (id?: string) => string & import("effect/Brand").Brand<"Form.ID">;
|
|
@@ -3650,15 +3650,15 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
3650
3650
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3651
3651
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3652
3652
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
3653
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
3653
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
3654
3654
|
readonly key: Schema.String;
|
|
3655
3655
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3656
|
-
readonly value: Schema.String
|
|
3657
|
-
}
|
|
3656
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3657
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
3658
3658
|
readonly key: Schema.String;
|
|
3659
3659
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3660
|
-
readonly value: Schema.String
|
|
3661
|
-
}
|
|
3660
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3661
|
+
}>>>, never, never>;
|
|
3662
3662
|
}>, Schema.Struct<{
|
|
3663
3663
|
readonly type: Schema.Literal<"number">;
|
|
3664
3664
|
readonly minimum: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Number>>, Schema.optionalKey<Schema.Number>, never, never>;
|
|
@@ -3668,15 +3668,15 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
3668
3668
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3669
3669
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3670
3670
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
3671
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
3671
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
3672
3672
|
readonly key: Schema.String;
|
|
3673
3673
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3674
|
-
readonly value: Schema.String
|
|
3675
|
-
}
|
|
3674
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3675
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
3676
3676
|
readonly key: Schema.String;
|
|
3677
3677
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3678
|
-
readonly value: Schema.String
|
|
3679
|
-
}
|
|
3678
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3679
|
+
}>>>, never, never>;
|
|
3680
3680
|
}>, Schema.Struct<{
|
|
3681
3681
|
readonly type: Schema.Literal<"integer">;
|
|
3682
3682
|
readonly minimum: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Number>>, Schema.optionalKey<Schema.Number>, never, never>;
|
|
@@ -3686,15 +3686,15 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
3686
3686
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3687
3687
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3688
3688
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
3689
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
3689
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
3690
3690
|
readonly key: Schema.String;
|
|
3691
3691
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3692
|
-
readonly value: Schema.String
|
|
3693
|
-
}
|
|
3692
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3693
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
3694
3694
|
readonly key: Schema.String;
|
|
3695
3695
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3696
|
-
readonly value: Schema.String
|
|
3697
|
-
}
|
|
3696
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3697
|
+
}>>>, never, never>;
|
|
3698
3698
|
}>, Schema.Struct<{
|
|
3699
3699
|
readonly type: Schema.Literal<"boolean">;
|
|
3700
3700
|
readonly default: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
@@ -3702,15 +3702,15 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
3702
3702
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3703
3703
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3704
3704
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
3705
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
3705
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
3706
3706
|
readonly key: Schema.String;
|
|
3707
3707
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3708
|
-
readonly value: Schema.String
|
|
3709
|
-
}
|
|
3708
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3709
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
3710
3710
|
readonly key: Schema.String;
|
|
3711
3711
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3712
|
-
readonly value: Schema.String
|
|
3713
|
-
}
|
|
3712
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3713
|
+
}>>>, never, never>;
|
|
3714
3714
|
}>, Schema.Struct<{
|
|
3715
3715
|
readonly type: Schema.Literal<"multiselect">;
|
|
3716
3716
|
readonly options: Schema.$Array<Schema.Struct<{
|
|
@@ -3726,15 +3726,15 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
3726
3726
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3727
3727
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3728
3728
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
3729
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
3729
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
3730
3730
|
readonly key: Schema.String;
|
|
3731
3731
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3732
|
-
readonly value: Schema.String
|
|
3733
|
-
}
|
|
3732
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3733
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
3734
3734
|
readonly key: Schema.String;
|
|
3735
3735
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
3736
|
-
readonly value: Schema.String
|
|
3737
|
-
}
|
|
3736
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
3737
|
+
}>>>, never, never>;
|
|
3738
3738
|
}>]>>;
|
|
3739
3739
|
readonly id: Schema.brand<Schema.String, "Form.ID"> & {
|
|
3740
3740
|
create: (id?: string) => string & import("effect/Brand").Brand<"Form.ID">;
|
|
@@ -9427,11 +9427,11 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
9427
9427
|
readonly title?: string | undefined;
|
|
9428
9428
|
readonly description?: string | undefined;
|
|
9429
9429
|
readonly required?: boolean | undefined;
|
|
9430
|
-
readonly when?: {
|
|
9430
|
+
readonly when?: readonly {
|
|
9431
9431
|
readonly key: string;
|
|
9432
9432
|
readonly op: "eq" | "neq";
|
|
9433
|
-
readonly value: string;
|
|
9434
|
-
} | undefined;
|
|
9433
|
+
readonly value: string | number | boolean;
|
|
9434
|
+
}[] | undefined;
|
|
9435
9435
|
} | {
|
|
9436
9436
|
readonly type: "number";
|
|
9437
9437
|
readonly key: string;
|
|
@@ -9441,11 +9441,11 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
9441
9441
|
readonly title?: string | undefined;
|
|
9442
9442
|
readonly description?: string | undefined;
|
|
9443
9443
|
readonly required?: boolean | undefined;
|
|
9444
|
-
readonly when?: {
|
|
9444
|
+
readonly when?: readonly {
|
|
9445
9445
|
readonly key: string;
|
|
9446
9446
|
readonly op: "eq" | "neq";
|
|
9447
|
-
readonly value: string;
|
|
9448
|
-
} | undefined;
|
|
9447
|
+
readonly value: string | number | boolean;
|
|
9448
|
+
}[] | undefined;
|
|
9449
9449
|
} | {
|
|
9450
9450
|
readonly type: "integer";
|
|
9451
9451
|
readonly key: string;
|
|
@@ -9455,11 +9455,11 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
9455
9455
|
readonly title?: string | undefined;
|
|
9456
9456
|
readonly description?: string | undefined;
|
|
9457
9457
|
readonly required?: boolean | undefined;
|
|
9458
|
-
readonly when?: {
|
|
9458
|
+
readonly when?: readonly {
|
|
9459
9459
|
readonly key: string;
|
|
9460
9460
|
readonly op: "eq" | "neq";
|
|
9461
|
-
readonly value: string;
|
|
9462
|
-
} | undefined;
|
|
9461
|
+
readonly value: string | number | boolean;
|
|
9462
|
+
}[] | undefined;
|
|
9463
9463
|
} | {
|
|
9464
9464
|
readonly type: "boolean";
|
|
9465
9465
|
readonly key: string;
|
|
@@ -9467,11 +9467,11 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
9467
9467
|
readonly title?: string | undefined;
|
|
9468
9468
|
readonly description?: string | undefined;
|
|
9469
9469
|
readonly required?: boolean | undefined;
|
|
9470
|
-
readonly when?: {
|
|
9470
|
+
readonly when?: readonly {
|
|
9471
9471
|
readonly key: string;
|
|
9472
9472
|
readonly op: "eq" | "neq";
|
|
9473
|
-
readonly value: string;
|
|
9474
|
-
} | undefined;
|
|
9473
|
+
readonly value: string | number | boolean;
|
|
9474
|
+
}[] | undefined;
|
|
9475
9475
|
} | {
|
|
9476
9476
|
readonly type: "multiselect";
|
|
9477
9477
|
readonly options: readonly {
|
|
@@ -9487,11 +9487,11 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
9487
9487
|
readonly title?: string | undefined;
|
|
9488
9488
|
readonly description?: string | undefined;
|
|
9489
9489
|
readonly required?: boolean | undefined;
|
|
9490
|
-
readonly when?: {
|
|
9490
|
+
readonly when?: readonly {
|
|
9491
9491
|
readonly key: string;
|
|
9492
9492
|
readonly op: "eq" | "neq";
|
|
9493
|
-
readonly value: string;
|
|
9494
|
-
} | undefined;
|
|
9493
|
+
readonly value: string | number | boolean;
|
|
9494
|
+
}[] | undefined;
|
|
9495
9495
|
})[];
|
|
9496
9496
|
readonly id: string & import("effect/Brand").Brand<"Form.ID">;
|
|
9497
9497
|
readonly sessionID: string;
|
|
@@ -14571,15 +14571,15 @@ export declare const OpenCodeEvent: Schema.Union<readonly [Schema.Struct<{
|
|
|
14571
14571
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14572
14572
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14573
14573
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
14574
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
14574
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
14575
14575
|
readonly key: Schema.String;
|
|
14576
14576
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14577
|
-
readonly value: Schema.String
|
|
14578
|
-
}
|
|
14577
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14578
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
14579
14579
|
readonly key: Schema.String;
|
|
14580
14580
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14581
|
-
readonly value: Schema.String
|
|
14582
|
-
}
|
|
14581
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14582
|
+
}>>>, never, never>;
|
|
14583
14583
|
}>, Schema.Struct<{
|
|
14584
14584
|
readonly type: Schema.Literal<"number">;
|
|
14585
14585
|
readonly minimum: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Number>>, Schema.optionalKey<Schema.Number>, never, never>;
|
|
@@ -14589,15 +14589,15 @@ export declare const OpenCodeEvent: Schema.Union<readonly [Schema.Struct<{
|
|
|
14589
14589
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14590
14590
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14591
14591
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
14592
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
14592
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
14593
14593
|
readonly key: Schema.String;
|
|
14594
14594
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14595
|
-
readonly value: Schema.String
|
|
14596
|
-
}
|
|
14595
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14596
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
14597
14597
|
readonly key: Schema.String;
|
|
14598
14598
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14599
|
-
readonly value: Schema.String
|
|
14600
|
-
}
|
|
14599
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14600
|
+
}>>>, never, never>;
|
|
14601
14601
|
}>, Schema.Struct<{
|
|
14602
14602
|
readonly type: Schema.Literal<"integer">;
|
|
14603
14603
|
readonly minimum: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Number>>, Schema.optionalKey<Schema.Number>, never, never>;
|
|
@@ -14607,15 +14607,15 @@ export declare const OpenCodeEvent: Schema.Union<readonly [Schema.Struct<{
|
|
|
14607
14607
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14608
14608
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14609
14609
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
14610
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
14610
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
14611
14611
|
readonly key: Schema.String;
|
|
14612
14612
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14613
|
-
readonly value: Schema.String
|
|
14614
|
-
}
|
|
14613
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14614
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
14615
14615
|
readonly key: Schema.String;
|
|
14616
14616
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14617
|
-
readonly value: Schema.String
|
|
14618
|
-
}
|
|
14617
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14618
|
+
}>>>, never, never>;
|
|
14619
14619
|
}>, Schema.Struct<{
|
|
14620
14620
|
readonly type: Schema.Literal<"boolean">;
|
|
14621
14621
|
readonly default: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
@@ -14623,15 +14623,15 @@ export declare const OpenCodeEvent: Schema.Union<readonly [Schema.Struct<{
|
|
|
14623
14623
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14624
14624
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14625
14625
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
14626
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
14626
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
14627
14627
|
readonly key: Schema.String;
|
|
14628
14628
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14629
|
-
readonly value: Schema.String
|
|
14630
|
-
}
|
|
14629
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14630
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
14631
14631
|
readonly key: Schema.String;
|
|
14632
14632
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14633
|
-
readonly value: Schema.String
|
|
14634
|
-
}
|
|
14633
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14634
|
+
}>>>, never, never>;
|
|
14635
14635
|
}>, Schema.Struct<{
|
|
14636
14636
|
readonly type: Schema.Literal<"multiselect">;
|
|
14637
14637
|
readonly options: Schema.$Array<Schema.Struct<{
|
|
@@ -14647,15 +14647,15 @@ export declare const OpenCodeEvent: Schema.Union<readonly [Schema.Struct<{
|
|
|
14647
14647
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14648
14648
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14649
14649
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
14650
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
14650
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
14651
14651
|
readonly key: Schema.String;
|
|
14652
14652
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14653
|
-
readonly value: Schema.String
|
|
14654
|
-
}
|
|
14653
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14654
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
14655
14655
|
readonly key: Schema.String;
|
|
14656
14656
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14657
|
-
readonly value: Schema.String
|
|
14658
|
-
}
|
|
14657
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14658
|
+
}>>>, never, never>;
|
|
14659
14659
|
}>]>>;
|
|
14660
14660
|
readonly id: Schema.brand<Schema.String, "Form.ID"> & {
|
|
14661
14661
|
create: (id?: string) => string & import("effect/Brand").Brand<"Form.ID">;
|
|
@@ -14700,15 +14700,15 @@ export declare const OpenCodeEvent: Schema.Union<readonly [Schema.Struct<{
|
|
|
14700
14700
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14701
14701
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14702
14702
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
14703
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
14703
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
14704
14704
|
readonly key: Schema.String;
|
|
14705
14705
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14706
|
-
readonly value: Schema.String
|
|
14707
|
-
}
|
|
14706
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14707
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
14708
14708
|
readonly key: Schema.String;
|
|
14709
14709
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14710
|
-
readonly value: Schema.String
|
|
14711
|
-
}
|
|
14710
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14711
|
+
}>>>, never, never>;
|
|
14712
14712
|
}>, Schema.Struct<{
|
|
14713
14713
|
readonly type: Schema.Literal<"number">;
|
|
14714
14714
|
readonly minimum: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Number>>, Schema.optionalKey<Schema.Number>, never, never>;
|
|
@@ -14718,15 +14718,15 @@ export declare const OpenCodeEvent: Schema.Union<readonly [Schema.Struct<{
|
|
|
14718
14718
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14719
14719
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14720
14720
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
14721
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
14721
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
14722
14722
|
readonly key: Schema.String;
|
|
14723
14723
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14724
|
-
readonly value: Schema.String
|
|
14725
|
-
}
|
|
14724
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14725
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
14726
14726
|
readonly key: Schema.String;
|
|
14727
14727
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14728
|
-
readonly value: Schema.String
|
|
14729
|
-
}
|
|
14728
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14729
|
+
}>>>, never, never>;
|
|
14730
14730
|
}>, Schema.Struct<{
|
|
14731
14731
|
readonly type: Schema.Literal<"integer">;
|
|
14732
14732
|
readonly minimum: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Number>>, Schema.optionalKey<Schema.Number>, never, never>;
|
|
@@ -14736,15 +14736,15 @@ export declare const OpenCodeEvent: Schema.Union<readonly [Schema.Struct<{
|
|
|
14736
14736
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14737
14737
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14738
14738
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
14739
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
14739
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
14740
14740
|
readonly key: Schema.String;
|
|
14741
14741
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14742
|
-
readonly value: Schema.String
|
|
14743
|
-
}
|
|
14742
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14743
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
14744
14744
|
readonly key: Schema.String;
|
|
14745
14745
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14746
|
-
readonly value: Schema.String
|
|
14747
|
-
}
|
|
14746
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14747
|
+
}>>>, never, never>;
|
|
14748
14748
|
}>, Schema.Struct<{
|
|
14749
14749
|
readonly type: Schema.Literal<"boolean">;
|
|
14750
14750
|
readonly default: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
@@ -14752,15 +14752,15 @@ export declare const OpenCodeEvent: Schema.Union<readonly [Schema.Struct<{
|
|
|
14752
14752
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14753
14753
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14754
14754
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
14755
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
14755
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
14756
14756
|
readonly key: Schema.String;
|
|
14757
14757
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14758
|
-
readonly value: Schema.String
|
|
14759
|
-
}
|
|
14758
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14759
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
14760
14760
|
readonly key: Schema.String;
|
|
14761
14761
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14762
|
-
readonly value: Schema.String
|
|
14763
|
-
}
|
|
14762
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14763
|
+
}>>>, never, never>;
|
|
14764
14764
|
}>, Schema.Struct<{
|
|
14765
14765
|
readonly type: Schema.Literal<"multiselect">;
|
|
14766
14766
|
readonly options: Schema.$Array<Schema.Struct<{
|
|
@@ -14776,15 +14776,15 @@ export declare const OpenCodeEvent: Schema.Union<readonly [Schema.Struct<{
|
|
|
14776
14776
|
readonly title: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14777
14777
|
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
14778
14778
|
readonly required: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
14779
|
-
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Struct<{
|
|
14779
|
+
readonly when: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
14780
14780
|
readonly key: Schema.String;
|
|
14781
14781
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14782
|
-
readonly value: Schema.String
|
|
14783
|
-
}
|
|
14782
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14783
|
+
}>>>>, Schema.optionalKey<Schema.$Array<Schema.Struct<{
|
|
14784
14784
|
readonly key: Schema.String;
|
|
14785
14785
|
readonly op: Schema.Literals<readonly ["eq", "neq"]>;
|
|
14786
|
-
readonly value: Schema.String
|
|
14787
|
-
}
|
|
14786
|
+
readonly value: Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>;
|
|
14787
|
+
}>>>, never, never>;
|
|
14788
14788
|
}>]>>;
|
|
14789
14789
|
readonly id: Schema.brand<Schema.String, "Form.ID"> & {
|
|
14790
14790
|
create: (id?: string) => string & import("effect/Brand").Brand<"Form.ID">;
|