@opencode-ai/client 0.0.0-next-16562 → 0.0.0-next-16564
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.
|
@@ -1716,7 +1716,6 @@ export declare const make: (options?: {
|
|
|
1716
1716
|
readonly compacting?: number | undefined;
|
|
1717
1717
|
};
|
|
1718
1718
|
readonly projectID: string & import("effect/Brand").Brand<"Project.ID">;
|
|
1719
|
-
readonly title: string;
|
|
1720
1719
|
readonly slug: string;
|
|
1721
1720
|
readonly workspaceID?: (string & import("effect/Brand").Brand<"Workspace.ID">) | undefined;
|
|
1722
1721
|
readonly metadata?: {
|
|
@@ -1757,6 +1756,7 @@ export declare const make: (options?: {
|
|
|
1757
1756
|
readonly partID?: (string & import("effect/Brand").Brand<"SessionV1.PartID">) | undefined;
|
|
1758
1757
|
readonly diff?: string | undefined;
|
|
1759
1758
|
} | undefined;
|
|
1759
|
+
readonly title?: string | undefined;
|
|
1760
1760
|
readonly parentID?: (string & import("effect/Brand").Brand<"SessionID">) | undefined;
|
|
1761
1761
|
readonly permission?: readonly {
|
|
1762
1762
|
readonly permission: string;
|
|
@@ -1797,7 +1797,6 @@ export declare const make: (options?: {
|
|
|
1797
1797
|
readonly compacting?: number | undefined;
|
|
1798
1798
|
};
|
|
1799
1799
|
readonly projectID: string & import("effect/Brand").Brand<"Project.ID">;
|
|
1800
|
-
readonly title: string;
|
|
1801
1800
|
readonly slug: string;
|
|
1802
1801
|
readonly workspaceID?: (string & import("effect/Brand").Brand<"Workspace.ID">) | undefined;
|
|
1803
1802
|
readonly metadata?: {
|
|
@@ -1838,6 +1837,7 @@ export declare const make: (options?: {
|
|
|
1838
1837
|
readonly partID?: (string & import("effect/Brand").Brand<"SessionV1.PartID">) | undefined;
|
|
1839
1838
|
readonly diff?: string | undefined;
|
|
1840
1839
|
} | undefined;
|
|
1840
|
+
readonly title?: string | undefined;
|
|
1841
1841
|
readonly parentID?: (string & import("effect/Brand").Brand<"SessionID">) | undefined;
|
|
1842
1842
|
readonly permission?: readonly {
|
|
1843
1843
|
readonly permission: string;
|
|
@@ -1878,7 +1878,6 @@ export declare const make: (options?: {
|
|
|
1878
1878
|
readonly compacting?: number | undefined;
|
|
1879
1879
|
};
|
|
1880
1880
|
readonly projectID: string & import("effect/Brand").Brand<"Project.ID">;
|
|
1881
|
-
readonly title: string;
|
|
1882
1881
|
readonly slug: string;
|
|
1883
1882
|
readonly workspaceID?: (string & import("effect/Brand").Brand<"Workspace.ID">) | undefined;
|
|
1884
1883
|
readonly metadata?: {
|
|
@@ -1919,6 +1918,7 @@ export declare const make: (options?: {
|
|
|
1919
1918
|
readonly partID?: (string & import("effect/Brand").Brand<"SessionV1.PartID">) | undefined;
|
|
1920
1919
|
readonly diff?: string | undefined;
|
|
1921
1920
|
} | undefined;
|
|
1921
|
+
readonly title?: string | undefined;
|
|
1922
1922
|
readonly parentID?: (string & import("effect/Brand").Brand<"SessionID">) | undefined;
|
|
1923
1923
|
readonly permission?: readonly {
|
|
1924
1924
|
readonly permission: string;
|
|
@@ -2473,7 +2473,7 @@ export type SessionInfo = {
|
|
|
2473
2473
|
updated: number;
|
|
2474
2474
|
archived?: number;
|
|
2475
2475
|
};
|
|
2476
|
-
title
|
|
2476
|
+
title?: string;
|
|
2477
2477
|
location: LocationRef;
|
|
2478
2478
|
subpath?: string;
|
|
2479
2479
|
revert?: SessionRevert;
|
|
@@ -2789,7 +2789,7 @@ export type SessionV1Info = {
|
|
|
2789
2789
|
share?: {
|
|
2790
2790
|
url: string;
|
|
2791
2791
|
};
|
|
2792
|
-
title
|
|
2792
|
+
title?: string;
|
|
2793
2793
|
agent?: string;
|
|
2794
2794
|
model?: {
|
|
2795
2795
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@opencode-ai/client",
|
|
4
|
-
"version": "0.0.0-next-
|
|
4
|
+
"version": "0.0.0-next-16564",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"typecheck": "tsgo --noEmit"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@opencode-ai/schema": "0.0.0-next-
|
|
57
|
-
"@opencode-ai/protocol": "0.0.0-next-
|
|
56
|
+
"@opencode-ai/schema": "0.0.0-next-16564",
|
|
57
|
+
"@opencode-ai/protocol": "0.0.0-next-16564"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"effect": "4.0.0-beta.101"
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@effect/platform-node": "4.0.0-beta.101",
|
|
69
|
-
"@opencode-ai/httpapi-codegen": "0.0.0-next-
|
|
69
|
+
"@opencode-ai/httpapi-codegen": "0.0.0-next-16564",
|
|
70
70
|
"@tsconfig/bun": "1.0.9",
|
|
71
71
|
"@types/bun": "1.3.13",
|
|
72
72
|
"@typescript/native-preview": "7.0.0-dev.20251207.1",
|