@opencode-ai/protocol 0.0.0-next-17074 → 0.0.0-next-17078
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/groups/event.d.ts +240 -240
- package/dist/groups/integration.d.ts +850 -71
- package/dist/groups/integration.js +3 -2
- package/dist/groups/session.d.ts +4 -4
- package/package.json +2 -2
package/dist/groups/event.d.ts
CHANGED
|
@@ -5580,6 +5580,239 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
5580
5580
|
readonly metadata?: {
|
|
5581
5581
|
readonly [x: string]: unknown;
|
|
5582
5582
|
} | undefined;
|
|
5583
|
+
} | {
|
|
5584
|
+
readonly id: string & import("effect/Brand").Brand<"Event.ID">;
|
|
5585
|
+
readonly data: {
|
|
5586
|
+
readonly form: {
|
|
5587
|
+
readonly id: string & import("effect/Brand").Brand<"Form.ID">;
|
|
5588
|
+
readonly sessionID: string;
|
|
5589
|
+
readonly title: string;
|
|
5590
|
+
readonly fields: readonly [{
|
|
5591
|
+
readonly type: "string";
|
|
5592
|
+
readonly key: string;
|
|
5593
|
+
readonly required?: boolean | undefined;
|
|
5594
|
+
readonly description?: string | undefined;
|
|
5595
|
+
readonly format?: "email" | "uri" | "date" | "date-time" | undefined;
|
|
5596
|
+
readonly minLength?: number | undefined;
|
|
5597
|
+
readonly maxLength?: number | undefined;
|
|
5598
|
+
readonly pattern?: string | undefined;
|
|
5599
|
+
readonly placeholder?: string | undefined;
|
|
5600
|
+
readonly default?: string | undefined;
|
|
5601
|
+
readonly options?: readonly {
|
|
5602
|
+
readonly value: string;
|
|
5603
|
+
readonly label: string;
|
|
5604
|
+
readonly description?: string | undefined;
|
|
5605
|
+
}[] | undefined;
|
|
5606
|
+
readonly custom?: boolean | undefined;
|
|
5607
|
+
readonly title?: string | undefined;
|
|
5608
|
+
readonly when?: readonly {
|
|
5609
|
+
readonly key: string;
|
|
5610
|
+
readonly op: "eq" | "neq";
|
|
5611
|
+
readonly value: string | number | boolean;
|
|
5612
|
+
}[] | undefined;
|
|
5613
|
+
} | {
|
|
5614
|
+
readonly type: "number";
|
|
5615
|
+
readonly key: string;
|
|
5616
|
+
readonly required?: boolean | undefined;
|
|
5617
|
+
readonly description?: string | undefined;
|
|
5618
|
+
readonly default?: number | undefined;
|
|
5619
|
+
readonly title?: string | undefined;
|
|
5620
|
+
readonly when?: readonly {
|
|
5621
|
+
readonly key: string;
|
|
5622
|
+
readonly op: "eq" | "neq";
|
|
5623
|
+
readonly value: string | number | boolean;
|
|
5624
|
+
}[] | undefined;
|
|
5625
|
+
readonly minimum?: number | undefined;
|
|
5626
|
+
readonly maximum?: number | undefined;
|
|
5627
|
+
} | {
|
|
5628
|
+
readonly type: "integer";
|
|
5629
|
+
readonly key: string;
|
|
5630
|
+
readonly required?: boolean | undefined;
|
|
5631
|
+
readonly description?: string | undefined;
|
|
5632
|
+
readonly default?: number | undefined;
|
|
5633
|
+
readonly title?: string | undefined;
|
|
5634
|
+
readonly when?: readonly {
|
|
5635
|
+
readonly key: string;
|
|
5636
|
+
readonly op: "eq" | "neq";
|
|
5637
|
+
readonly value: string | number | boolean;
|
|
5638
|
+
}[] | undefined;
|
|
5639
|
+
readonly minimum?: number | undefined;
|
|
5640
|
+
readonly maximum?: number | undefined;
|
|
5641
|
+
} | {
|
|
5642
|
+
readonly type: "boolean";
|
|
5643
|
+
readonly key: string;
|
|
5644
|
+
readonly required?: boolean | undefined;
|
|
5645
|
+
readonly description?: string | undefined;
|
|
5646
|
+
readonly default?: boolean | undefined;
|
|
5647
|
+
readonly title?: string | undefined;
|
|
5648
|
+
readonly when?: readonly {
|
|
5649
|
+
readonly key: string;
|
|
5650
|
+
readonly op: "eq" | "neq";
|
|
5651
|
+
readonly value: string | number | boolean;
|
|
5652
|
+
}[] | undefined;
|
|
5653
|
+
} | {
|
|
5654
|
+
readonly type: "multiselect";
|
|
5655
|
+
readonly key: string;
|
|
5656
|
+
readonly options: readonly {
|
|
5657
|
+
readonly value: string;
|
|
5658
|
+
readonly label: string;
|
|
5659
|
+
readonly description?: string | undefined;
|
|
5660
|
+
}[];
|
|
5661
|
+
readonly required?: boolean | undefined;
|
|
5662
|
+
readonly description?: string | undefined;
|
|
5663
|
+
readonly default?: readonly string[] | undefined;
|
|
5664
|
+
readonly custom?: boolean | undefined;
|
|
5665
|
+
readonly title?: string | undefined;
|
|
5666
|
+
readonly when?: readonly {
|
|
5667
|
+
readonly key: string;
|
|
5668
|
+
readonly op: "eq" | "neq";
|
|
5669
|
+
readonly value: string | number | boolean;
|
|
5670
|
+
}[] | undefined;
|
|
5671
|
+
readonly minItems?: number | undefined;
|
|
5672
|
+
readonly maxItems?: number | undefined;
|
|
5673
|
+
} | {
|
|
5674
|
+
readonly type: "external";
|
|
5675
|
+
readonly url: string;
|
|
5676
|
+
readonly key: string;
|
|
5677
|
+
readonly description?: string | undefined;
|
|
5678
|
+
readonly title?: string | undefined;
|
|
5679
|
+
}, ...({
|
|
5680
|
+
readonly type: "string";
|
|
5681
|
+
readonly key: string;
|
|
5682
|
+
readonly required?: boolean | undefined;
|
|
5683
|
+
readonly description?: string | undefined;
|
|
5684
|
+
readonly format?: "email" | "uri" | "date" | "date-time" | undefined;
|
|
5685
|
+
readonly minLength?: number | undefined;
|
|
5686
|
+
readonly maxLength?: number | undefined;
|
|
5687
|
+
readonly pattern?: string | undefined;
|
|
5688
|
+
readonly placeholder?: string | undefined;
|
|
5689
|
+
readonly default?: string | undefined;
|
|
5690
|
+
readonly options?: readonly {
|
|
5691
|
+
readonly value: string;
|
|
5692
|
+
readonly label: string;
|
|
5693
|
+
readonly description?: string | undefined;
|
|
5694
|
+
}[] | undefined;
|
|
5695
|
+
readonly custom?: boolean | undefined;
|
|
5696
|
+
readonly title?: string | undefined;
|
|
5697
|
+
readonly when?: readonly {
|
|
5698
|
+
readonly key: string;
|
|
5699
|
+
readonly op: "eq" | "neq";
|
|
5700
|
+
readonly value: string | number | boolean;
|
|
5701
|
+
}[] | undefined;
|
|
5702
|
+
} | {
|
|
5703
|
+
readonly type: "number";
|
|
5704
|
+
readonly key: string;
|
|
5705
|
+
readonly required?: boolean | undefined;
|
|
5706
|
+
readonly description?: string | undefined;
|
|
5707
|
+
readonly default?: number | undefined;
|
|
5708
|
+
readonly title?: string | undefined;
|
|
5709
|
+
readonly when?: readonly {
|
|
5710
|
+
readonly key: string;
|
|
5711
|
+
readonly op: "eq" | "neq";
|
|
5712
|
+
readonly value: string | number | boolean;
|
|
5713
|
+
}[] | undefined;
|
|
5714
|
+
readonly minimum?: number | undefined;
|
|
5715
|
+
readonly maximum?: number | undefined;
|
|
5716
|
+
} | {
|
|
5717
|
+
readonly type: "integer";
|
|
5718
|
+
readonly key: string;
|
|
5719
|
+
readonly required?: boolean | undefined;
|
|
5720
|
+
readonly description?: string | undefined;
|
|
5721
|
+
readonly default?: number | undefined;
|
|
5722
|
+
readonly title?: string | undefined;
|
|
5723
|
+
readonly when?: readonly {
|
|
5724
|
+
readonly key: string;
|
|
5725
|
+
readonly op: "eq" | "neq";
|
|
5726
|
+
readonly value: string | number | boolean;
|
|
5727
|
+
}[] | undefined;
|
|
5728
|
+
readonly minimum?: number | undefined;
|
|
5729
|
+
readonly maximum?: number | undefined;
|
|
5730
|
+
} | {
|
|
5731
|
+
readonly type: "boolean";
|
|
5732
|
+
readonly key: string;
|
|
5733
|
+
readonly required?: boolean | undefined;
|
|
5734
|
+
readonly description?: string | undefined;
|
|
5735
|
+
readonly default?: boolean | undefined;
|
|
5736
|
+
readonly title?: string | undefined;
|
|
5737
|
+
readonly when?: readonly {
|
|
5738
|
+
readonly key: string;
|
|
5739
|
+
readonly op: "eq" | "neq";
|
|
5740
|
+
readonly value: string | number | boolean;
|
|
5741
|
+
}[] | undefined;
|
|
5742
|
+
} | {
|
|
5743
|
+
readonly type: "multiselect";
|
|
5744
|
+
readonly key: string;
|
|
5745
|
+
readonly options: readonly {
|
|
5746
|
+
readonly value: string;
|
|
5747
|
+
readonly label: string;
|
|
5748
|
+
readonly description?: string | undefined;
|
|
5749
|
+
}[];
|
|
5750
|
+
readonly required?: boolean | undefined;
|
|
5751
|
+
readonly description?: string | undefined;
|
|
5752
|
+
readonly default?: readonly string[] | undefined;
|
|
5753
|
+
readonly custom?: boolean | undefined;
|
|
5754
|
+
readonly title?: string | undefined;
|
|
5755
|
+
readonly when?: readonly {
|
|
5756
|
+
readonly key: string;
|
|
5757
|
+
readonly op: "eq" | "neq";
|
|
5758
|
+
readonly value: string | number | boolean;
|
|
5759
|
+
}[] | undefined;
|
|
5760
|
+
readonly minItems?: number | undefined;
|
|
5761
|
+
readonly maxItems?: number | undefined;
|
|
5762
|
+
} | {
|
|
5763
|
+
readonly type: "external";
|
|
5764
|
+
readonly url: string;
|
|
5765
|
+
readonly key: string;
|
|
5766
|
+
readonly description?: string | undefined;
|
|
5767
|
+
readonly title?: string | undefined;
|
|
5768
|
+
})[]];
|
|
5769
|
+
readonly metadata?: {
|
|
5770
|
+
readonly [x: string]: unknown;
|
|
5771
|
+
} | undefined;
|
|
5772
|
+
};
|
|
5773
|
+
};
|
|
5774
|
+
readonly type: "form.created";
|
|
5775
|
+
readonly created: import("effect/DateTime").Utc;
|
|
5776
|
+
readonly location?: {
|
|
5777
|
+
readonly directory: string & import("effect/Brand").Brand<"AbsolutePath">;
|
|
5778
|
+
readonly workspaceID?: (string & import("effect/Brand").Brand<"Workspace.ID">) | undefined;
|
|
5779
|
+
} | undefined;
|
|
5780
|
+
readonly metadata?: {
|
|
5781
|
+
readonly [x: string]: unknown;
|
|
5782
|
+
} | undefined;
|
|
5783
|
+
} | {
|
|
5784
|
+
readonly id: string & import("effect/Brand").Brand<"Event.ID">;
|
|
5785
|
+
readonly data: {
|
|
5786
|
+
readonly id: string & import("effect/Brand").Brand<"Form.ID">;
|
|
5787
|
+
readonly sessionID: string;
|
|
5788
|
+
readonly answer: {
|
|
5789
|
+
readonly [x: string]: string | number | boolean | readonly string[];
|
|
5790
|
+
};
|
|
5791
|
+
};
|
|
5792
|
+
readonly type: "form.replied";
|
|
5793
|
+
readonly created: import("effect/DateTime").Utc;
|
|
5794
|
+
readonly location?: {
|
|
5795
|
+
readonly directory: string & import("effect/Brand").Brand<"AbsolutePath">;
|
|
5796
|
+
readonly workspaceID?: (string & import("effect/Brand").Brand<"Workspace.ID">) | undefined;
|
|
5797
|
+
} | undefined;
|
|
5798
|
+
readonly metadata?: {
|
|
5799
|
+
readonly [x: string]: unknown;
|
|
5800
|
+
} | undefined;
|
|
5801
|
+
} | {
|
|
5802
|
+
readonly id: string & import("effect/Brand").Brand<"Event.ID">;
|
|
5803
|
+
readonly data: {
|
|
5804
|
+
readonly id: string & import("effect/Brand").Brand<"Form.ID">;
|
|
5805
|
+
readonly sessionID: string;
|
|
5806
|
+
};
|
|
5807
|
+
readonly type: "form.cancelled";
|
|
5808
|
+
readonly created: import("effect/DateTime").Utc;
|
|
5809
|
+
readonly location?: {
|
|
5810
|
+
readonly directory: string & import("effect/Brand").Brand<"AbsolutePath">;
|
|
5811
|
+
readonly workspaceID?: (string & import("effect/Brand").Brand<"Workspace.ID">) | undefined;
|
|
5812
|
+
} | undefined;
|
|
5813
|
+
readonly metadata?: {
|
|
5814
|
+
readonly [x: string]: unknown;
|
|
5815
|
+
} | undefined;
|
|
5583
5816
|
} | {
|
|
5584
5817
|
readonly id: string & import("effect/Brand").Brand<"Event.ID">;
|
|
5585
5818
|
readonly data: {};
|
|
@@ -5669,11 +5902,11 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
5669
5902
|
readonly [x: string]: unknown;
|
|
5670
5903
|
};
|
|
5671
5904
|
readonly command: string;
|
|
5905
|
+
readonly status: "running" | "exited" | "timeout" | "killed";
|
|
5672
5906
|
readonly time: {
|
|
5673
5907
|
readonly started: number;
|
|
5674
5908
|
readonly completed?: number | undefined;
|
|
5675
5909
|
};
|
|
5676
|
-
readonly status: "running" | "exited" | "timeout" | "killed";
|
|
5677
5910
|
readonly cwd: string;
|
|
5678
5911
|
readonly shell: string;
|
|
5679
5912
|
readonly file: string;
|
|
@@ -5731,6 +5964,7 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
5731
5964
|
readonly sessionID: string & import("effect/Brand").Brand<"SessionID">;
|
|
5732
5965
|
readonly projectID: string & import("effect/Brand").Brand<"Project.ID">;
|
|
5733
5966
|
readonly slug: string;
|
|
5967
|
+
readonly title?: string | undefined;
|
|
5734
5968
|
readonly model?: {
|
|
5735
5969
|
readonly id: string & import("effect/Brand").Brand<"Model.ID">;
|
|
5736
5970
|
readonly providerID: string & import("effect/Brand").Brand<"Provider.ID">;
|
|
@@ -5739,7 +5973,6 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
5739
5973
|
readonly agent?: (string & import("effect/Brand").Brand<"Agent.ID">) | undefined;
|
|
5740
5974
|
readonly subpath?: (string & import("effect/Brand").Brand<"RelativePath">) | undefined;
|
|
5741
5975
|
readonly parentID?: (string & import("effect/Brand").Brand<"SessionID">) | undefined;
|
|
5742
|
-
readonly title?: string | undefined;
|
|
5743
5976
|
};
|
|
5744
5977
|
readonly durable: {
|
|
5745
5978
|
readonly aggregateID: string;
|
|
@@ -6232,11 +6465,11 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
6232
6465
|
readonly [x: string]: unknown;
|
|
6233
6466
|
};
|
|
6234
6467
|
readonly command: string;
|
|
6468
|
+
readonly status: "running" | "exited" | "timeout" | "killed";
|
|
6235
6469
|
readonly time: {
|
|
6236
6470
|
readonly started: number;
|
|
6237
6471
|
readonly completed?: number | undefined;
|
|
6238
6472
|
};
|
|
6239
|
-
readonly status: "running" | "exited" | "timeout" | "killed";
|
|
6240
6473
|
readonly cwd: string;
|
|
6241
6474
|
readonly shell: string;
|
|
6242
6475
|
readonly file: string;
|
|
@@ -6268,11 +6501,11 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
6268
6501
|
readonly [x: string]: unknown;
|
|
6269
6502
|
};
|
|
6270
6503
|
readonly command: string;
|
|
6504
|
+
readonly status: "running" | "exited" | "timeout" | "killed";
|
|
6271
6505
|
readonly time: {
|
|
6272
6506
|
readonly started: number;
|
|
6273
6507
|
readonly completed?: number | undefined;
|
|
6274
6508
|
};
|
|
6275
|
-
readonly status: "running" | "exited" | "timeout" | "killed";
|
|
6276
6509
|
readonly cwd: string;
|
|
6277
6510
|
readonly shell: string;
|
|
6278
6511
|
readonly file: string;
|
|
@@ -6947,239 +7180,6 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
6947
7180
|
readonly metadata?: {
|
|
6948
7181
|
readonly [x: string]: unknown;
|
|
6949
7182
|
} | undefined;
|
|
6950
|
-
} | {
|
|
6951
|
-
readonly id: string & import("effect/Brand").Brand<"Event.ID">;
|
|
6952
|
-
readonly data: {
|
|
6953
|
-
readonly form: {
|
|
6954
|
-
readonly id: string & import("effect/Brand").Brand<"Form.ID">;
|
|
6955
|
-
readonly sessionID: string;
|
|
6956
|
-
readonly fields: readonly [{
|
|
6957
|
-
readonly type: "string";
|
|
6958
|
-
readonly key: string;
|
|
6959
|
-
readonly required?: boolean | undefined;
|
|
6960
|
-
readonly description?: string | undefined;
|
|
6961
|
-
readonly placeholder?: string | undefined;
|
|
6962
|
-
readonly when?: readonly {
|
|
6963
|
-
readonly key: string;
|
|
6964
|
-
readonly op: "eq" | "neq";
|
|
6965
|
-
readonly value: string | number | boolean;
|
|
6966
|
-
}[] | undefined;
|
|
6967
|
-
readonly options?: readonly {
|
|
6968
|
-
readonly label: string;
|
|
6969
|
-
readonly value: string;
|
|
6970
|
-
readonly description?: string | undefined;
|
|
6971
|
-
}[] | undefined;
|
|
6972
|
-
readonly default?: string | undefined;
|
|
6973
|
-
readonly title?: string | undefined;
|
|
6974
|
-
readonly format?: "uri" | "email" | "date" | "date-time" | undefined;
|
|
6975
|
-
readonly minLength?: number | undefined;
|
|
6976
|
-
readonly maxLength?: number | undefined;
|
|
6977
|
-
readonly pattern?: string | undefined;
|
|
6978
|
-
readonly custom?: boolean | undefined;
|
|
6979
|
-
} | {
|
|
6980
|
-
readonly type: "number";
|
|
6981
|
-
readonly key: string;
|
|
6982
|
-
readonly required?: boolean | undefined;
|
|
6983
|
-
readonly description?: string | undefined;
|
|
6984
|
-
readonly when?: readonly {
|
|
6985
|
-
readonly key: string;
|
|
6986
|
-
readonly op: "eq" | "neq";
|
|
6987
|
-
readonly value: string | number | boolean;
|
|
6988
|
-
}[] | undefined;
|
|
6989
|
-
readonly default?: number | undefined;
|
|
6990
|
-
readonly title?: string | undefined;
|
|
6991
|
-
readonly minimum?: number | undefined;
|
|
6992
|
-
readonly maximum?: number | undefined;
|
|
6993
|
-
} | {
|
|
6994
|
-
readonly type: "integer";
|
|
6995
|
-
readonly key: string;
|
|
6996
|
-
readonly required?: boolean | undefined;
|
|
6997
|
-
readonly description?: string | undefined;
|
|
6998
|
-
readonly when?: readonly {
|
|
6999
|
-
readonly key: string;
|
|
7000
|
-
readonly op: "eq" | "neq";
|
|
7001
|
-
readonly value: string | number | boolean;
|
|
7002
|
-
}[] | undefined;
|
|
7003
|
-
readonly default?: number | undefined;
|
|
7004
|
-
readonly title?: string | undefined;
|
|
7005
|
-
readonly minimum?: number | undefined;
|
|
7006
|
-
readonly maximum?: number | undefined;
|
|
7007
|
-
} | {
|
|
7008
|
-
readonly type: "boolean";
|
|
7009
|
-
readonly key: string;
|
|
7010
|
-
readonly required?: boolean | undefined;
|
|
7011
|
-
readonly description?: string | undefined;
|
|
7012
|
-
readonly when?: readonly {
|
|
7013
|
-
readonly key: string;
|
|
7014
|
-
readonly op: "eq" | "neq";
|
|
7015
|
-
readonly value: string | number | boolean;
|
|
7016
|
-
}[] | undefined;
|
|
7017
|
-
readonly default?: boolean | undefined;
|
|
7018
|
-
readonly title?: string | undefined;
|
|
7019
|
-
} | {
|
|
7020
|
-
readonly type: "multiselect";
|
|
7021
|
-
readonly key: string;
|
|
7022
|
-
readonly options: readonly {
|
|
7023
|
-
readonly label: string;
|
|
7024
|
-
readonly value: string;
|
|
7025
|
-
readonly description?: string | undefined;
|
|
7026
|
-
}[];
|
|
7027
|
-
readonly required?: boolean | undefined;
|
|
7028
|
-
readonly description?: string | undefined;
|
|
7029
|
-
readonly when?: readonly {
|
|
7030
|
-
readonly key: string;
|
|
7031
|
-
readonly op: "eq" | "neq";
|
|
7032
|
-
readonly value: string | number | boolean;
|
|
7033
|
-
}[] | undefined;
|
|
7034
|
-
readonly default?: readonly string[] | undefined;
|
|
7035
|
-
readonly title?: string | undefined;
|
|
7036
|
-
readonly custom?: boolean | undefined;
|
|
7037
|
-
readonly minItems?: number | undefined;
|
|
7038
|
-
readonly maxItems?: number | undefined;
|
|
7039
|
-
} | {
|
|
7040
|
-
readonly type: "external";
|
|
7041
|
-
readonly url: string;
|
|
7042
|
-
readonly key: string;
|
|
7043
|
-
readonly description?: string | undefined;
|
|
7044
|
-
readonly title?: string | undefined;
|
|
7045
|
-
}, ...({
|
|
7046
|
-
readonly type: "string";
|
|
7047
|
-
readonly key: string;
|
|
7048
|
-
readonly required?: boolean | undefined;
|
|
7049
|
-
readonly description?: string | undefined;
|
|
7050
|
-
readonly placeholder?: string | undefined;
|
|
7051
|
-
readonly when?: readonly {
|
|
7052
|
-
readonly key: string;
|
|
7053
|
-
readonly op: "eq" | "neq";
|
|
7054
|
-
readonly value: string | number | boolean;
|
|
7055
|
-
}[] | undefined;
|
|
7056
|
-
readonly options?: readonly {
|
|
7057
|
-
readonly label: string;
|
|
7058
|
-
readonly value: string;
|
|
7059
|
-
readonly description?: string | undefined;
|
|
7060
|
-
}[] | undefined;
|
|
7061
|
-
readonly default?: string | undefined;
|
|
7062
|
-
readonly title?: string | undefined;
|
|
7063
|
-
readonly format?: "uri" | "email" | "date" | "date-time" | undefined;
|
|
7064
|
-
readonly minLength?: number | undefined;
|
|
7065
|
-
readonly maxLength?: number | undefined;
|
|
7066
|
-
readonly pattern?: string | undefined;
|
|
7067
|
-
readonly custom?: boolean | undefined;
|
|
7068
|
-
} | {
|
|
7069
|
-
readonly type: "number";
|
|
7070
|
-
readonly key: string;
|
|
7071
|
-
readonly required?: boolean | undefined;
|
|
7072
|
-
readonly description?: string | undefined;
|
|
7073
|
-
readonly when?: readonly {
|
|
7074
|
-
readonly key: string;
|
|
7075
|
-
readonly op: "eq" | "neq";
|
|
7076
|
-
readonly value: string | number | boolean;
|
|
7077
|
-
}[] | undefined;
|
|
7078
|
-
readonly default?: number | undefined;
|
|
7079
|
-
readonly title?: string | undefined;
|
|
7080
|
-
readonly minimum?: number | undefined;
|
|
7081
|
-
readonly maximum?: number | undefined;
|
|
7082
|
-
} | {
|
|
7083
|
-
readonly type: "integer";
|
|
7084
|
-
readonly key: string;
|
|
7085
|
-
readonly required?: boolean | undefined;
|
|
7086
|
-
readonly description?: string | undefined;
|
|
7087
|
-
readonly when?: readonly {
|
|
7088
|
-
readonly key: string;
|
|
7089
|
-
readonly op: "eq" | "neq";
|
|
7090
|
-
readonly value: string | number | boolean;
|
|
7091
|
-
}[] | undefined;
|
|
7092
|
-
readonly default?: number | undefined;
|
|
7093
|
-
readonly title?: string | undefined;
|
|
7094
|
-
readonly minimum?: number | undefined;
|
|
7095
|
-
readonly maximum?: number | undefined;
|
|
7096
|
-
} | {
|
|
7097
|
-
readonly type: "boolean";
|
|
7098
|
-
readonly key: string;
|
|
7099
|
-
readonly required?: boolean | undefined;
|
|
7100
|
-
readonly description?: string | undefined;
|
|
7101
|
-
readonly when?: readonly {
|
|
7102
|
-
readonly key: string;
|
|
7103
|
-
readonly op: "eq" | "neq";
|
|
7104
|
-
readonly value: string | number | boolean;
|
|
7105
|
-
}[] | undefined;
|
|
7106
|
-
readonly default?: boolean | undefined;
|
|
7107
|
-
readonly title?: string | undefined;
|
|
7108
|
-
} | {
|
|
7109
|
-
readonly type: "multiselect";
|
|
7110
|
-
readonly key: string;
|
|
7111
|
-
readonly options: readonly {
|
|
7112
|
-
readonly label: string;
|
|
7113
|
-
readonly value: string;
|
|
7114
|
-
readonly description?: string | undefined;
|
|
7115
|
-
}[];
|
|
7116
|
-
readonly required?: boolean | undefined;
|
|
7117
|
-
readonly description?: string | undefined;
|
|
7118
|
-
readonly when?: readonly {
|
|
7119
|
-
readonly key: string;
|
|
7120
|
-
readonly op: "eq" | "neq";
|
|
7121
|
-
readonly value: string | number | boolean;
|
|
7122
|
-
}[] | undefined;
|
|
7123
|
-
readonly default?: readonly string[] | undefined;
|
|
7124
|
-
readonly title?: string | undefined;
|
|
7125
|
-
readonly custom?: boolean | undefined;
|
|
7126
|
-
readonly minItems?: number | undefined;
|
|
7127
|
-
readonly maxItems?: number | undefined;
|
|
7128
|
-
} | {
|
|
7129
|
-
readonly type: "external";
|
|
7130
|
-
readonly url: string;
|
|
7131
|
-
readonly key: string;
|
|
7132
|
-
readonly description?: string | undefined;
|
|
7133
|
-
readonly title?: string | undefined;
|
|
7134
|
-
})[]];
|
|
7135
|
-
readonly title: string;
|
|
7136
|
-
readonly metadata?: {
|
|
7137
|
-
readonly [x: string]: unknown;
|
|
7138
|
-
} | undefined;
|
|
7139
|
-
};
|
|
7140
|
-
};
|
|
7141
|
-
readonly type: "form.created";
|
|
7142
|
-
readonly created: import("effect/DateTime").Utc;
|
|
7143
|
-
readonly location?: {
|
|
7144
|
-
readonly directory: string & import("effect/Brand").Brand<"AbsolutePath">;
|
|
7145
|
-
readonly workspaceID?: (string & import("effect/Brand").Brand<"Workspace.ID">) | undefined;
|
|
7146
|
-
} | undefined;
|
|
7147
|
-
readonly metadata?: {
|
|
7148
|
-
readonly [x: string]: unknown;
|
|
7149
|
-
} | undefined;
|
|
7150
|
-
} | {
|
|
7151
|
-
readonly id: string & import("effect/Brand").Brand<"Event.ID">;
|
|
7152
|
-
readonly data: {
|
|
7153
|
-
readonly id: string & import("effect/Brand").Brand<"Form.ID">;
|
|
7154
|
-
readonly sessionID: string;
|
|
7155
|
-
readonly answer: {
|
|
7156
|
-
readonly [x: string]: string | number | boolean | readonly string[];
|
|
7157
|
-
};
|
|
7158
|
-
};
|
|
7159
|
-
readonly type: "form.replied";
|
|
7160
|
-
readonly created: import("effect/DateTime").Utc;
|
|
7161
|
-
readonly location?: {
|
|
7162
|
-
readonly directory: string & import("effect/Brand").Brand<"AbsolutePath">;
|
|
7163
|
-
readonly workspaceID?: (string & import("effect/Brand").Brand<"Workspace.ID">) | undefined;
|
|
7164
|
-
} | undefined;
|
|
7165
|
-
readonly metadata?: {
|
|
7166
|
-
readonly [x: string]: unknown;
|
|
7167
|
-
} | undefined;
|
|
7168
|
-
} | {
|
|
7169
|
-
readonly id: string & import("effect/Brand").Brand<"Event.ID">;
|
|
7170
|
-
readonly data: {
|
|
7171
|
-
readonly id: string & import("effect/Brand").Brand<"Form.ID">;
|
|
7172
|
-
readonly sessionID: string;
|
|
7173
|
-
};
|
|
7174
|
-
readonly type: "form.cancelled";
|
|
7175
|
-
readonly created: import("effect/DateTime").Utc;
|
|
7176
|
-
readonly location?: {
|
|
7177
|
-
readonly directory: string & import("effect/Brand").Brand<"AbsolutePath">;
|
|
7178
|
-
readonly workspaceID?: (string & import("effect/Brand").Brand<"Workspace.ID">) | undefined;
|
|
7179
|
-
} | undefined;
|
|
7180
|
-
readonly metadata?: {
|
|
7181
|
-
readonly [x: string]: unknown;
|
|
7182
|
-
} | undefined;
|
|
7183
7183
|
} | {
|
|
7184
7184
|
readonly id: string & import("effect/Brand").Brand<"Event.ID">;
|
|
7185
7185
|
readonly data: {};
|
|
@@ -7342,10 +7342,10 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
7342
7342
|
readonly info: {
|
|
7343
7343
|
readonly id: string & import("effect/Brand").Brand<"PtyID">;
|
|
7344
7344
|
readonly command: string;
|
|
7345
|
+
readonly title: string;
|
|
7345
7346
|
readonly status: "running" | "exited";
|
|
7346
7347
|
readonly pid: number;
|
|
7347
7348
|
readonly cwd: string;
|
|
7348
|
-
readonly title: string;
|
|
7349
7349
|
readonly args: readonly string[];
|
|
7350
7350
|
readonly exitCode?: number | undefined;
|
|
7351
7351
|
};
|
|
@@ -7365,10 +7365,10 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
7365
7365
|
readonly info: {
|
|
7366
7366
|
readonly id: string & import("effect/Brand").Brand<"PtyID">;
|
|
7367
7367
|
readonly command: string;
|
|
7368
|
+
readonly title: string;
|
|
7368
7369
|
readonly status: "running" | "exited";
|
|
7369
7370
|
readonly pid: number;
|
|
7370
7371
|
readonly cwd: string;
|
|
7371
|
-
readonly title: string;
|
|
7372
7372
|
readonly args: readonly string[];
|
|
7373
7373
|
readonly exitCode?: number | undefined;
|
|
7374
7374
|
};
|
|
@@ -7497,8 +7497,8 @@ export declare const EventGroup: HttpApiGroup.HttpApiGroup<"server.event", HttpA
|
|
|
7497
7497
|
readonly action?: {
|
|
7498
7498
|
readonly message: string;
|
|
7499
7499
|
readonly label: string;
|
|
7500
|
-
readonly reason: string;
|
|
7501
7500
|
readonly title: string;
|
|
7501
|
+
readonly reason: string;
|
|
7502
7502
|
readonly provider: string;
|
|
7503
7503
|
readonly link?: string | undefined;
|
|
7504
7504
|
} | undefined;
|