@opencode-ai/client 0.0.0-next-16494 → 0.0.0-next-16496

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.
@@ -442,6 +442,7 @@ export type ProjectTime = {
442
442
  export type ProjectCurrent = {
443
443
  id: string;
444
444
  directory: string;
445
+ canonical: string;
445
446
  };
446
447
  export type ProjectDirectory = {
447
448
  directory: string;
@@ -2129,7 +2130,7 @@ export type McpResourceCatalog = {
2129
2130
  };
2130
2131
  export type Project = {
2131
2132
  id: string;
2132
- worktree: string;
2133
+ canonical: string;
2133
2134
  vcs?: ProjectVcs;
2134
2135
  name?: string;
2135
2136
  icon?: ProjectIcon;
@@ -3206,6 +3207,7 @@ export type LocationGetOutput = {
3206
3207
  project: {
3207
3208
  id: string;
3208
3209
  directory: string;
3210
+ canonical: string;
3209
3211
  };
3210
3212
  };
3211
3213
  export type AgentListInput = {
@@ -3223,6 +3225,7 @@ export type AgentListOutput = {
3223
3225
  project: {
3224
3226
  id: string;
3225
3227
  directory: string;
3228
+ canonical: string;
3226
3229
  };
3227
3230
  };
3228
3231
  data: Array<AgentInfo>;
@@ -3245,6 +3248,7 @@ export type AgentGetOutput = {
3245
3248
  project: {
3246
3249
  id: string;
3247
3250
  directory: string;
3251
+ canonical: string;
3248
3252
  };
3249
3253
  };
3250
3254
  data: AgentInfo;
@@ -3264,6 +3268,7 @@ export type PluginListOutput = {
3264
3268
  project: {
3265
3269
  id: string;
3266
3270
  directory: string;
3271
+ canonical: string;
3267
3272
  };
3268
3273
  };
3269
3274
  data: Array<PluginInfo>;
@@ -4272,6 +4277,7 @@ export type ModelListOutput = {
4272
4277
  project: {
4273
4278
  id: string;
4274
4279
  directory: string;
4280
+ canonical: string;
4275
4281
  };
4276
4282
  };
4277
4283
  data: Array<ModelInfo>;
@@ -4291,6 +4297,7 @@ export type ModelDefaultOutput = {
4291
4297
  project: {
4292
4298
  id: string;
4293
4299
  directory: string;
4300
+ canonical: string;
4294
4301
  };
4295
4302
  };
4296
4303
  data: ModelInfo | null;
@@ -4335,6 +4342,7 @@ export type ProviderListOutput = {
4335
4342
  project: {
4336
4343
  id: string;
4337
4344
  directory: string;
4345
+ canonical: string;
4338
4346
  };
4339
4347
  };
4340
4348
  data: Array<ProviderInfo>;
@@ -4357,6 +4365,7 @@ export type ProviderGetOutput = {
4357
4365
  project: {
4358
4366
  id: string;
4359
4367
  directory: string;
4368
+ canonical: string;
4360
4369
  };
4361
4370
  };
4362
4371
  data: ProviderInfo;
@@ -4376,6 +4385,7 @@ export type IntegrationListOutput = {
4376
4385
  project: {
4377
4386
  id: string;
4378
4387
  directory: string;
4388
+ canonical: string;
4379
4389
  };
4380
4390
  };
4381
4391
  data: Array<IntegrationInfo>;
@@ -4398,6 +4408,7 @@ export type IntegrationGetOutput = {
4398
4408
  project: {
4399
4409
  id: string;
4400
4410
  directory: string;
4411
+ canonical: string;
4401
4412
  };
4402
4413
  };
4403
4414
  data: IntegrationInfo | null;
@@ -4473,6 +4484,7 @@ export type IntegrationOauthConnectOutput = {
4473
4484
  project: {
4474
4485
  id: string;
4475
4486
  directory: string;
4487
+ canonical: string;
4476
4488
  };
4477
4489
  };
4478
4490
  data: {
@@ -4509,6 +4521,7 @@ export type IntegrationOauthStatusOutput = {
4509
4521
  project: {
4510
4522
  id: string;
4511
4523
  directory: string;
4524
+ canonical: string;
4512
4525
  };
4513
4526
  };
4514
4527
  data: IntegrationAttemptStatus;
@@ -4576,6 +4589,7 @@ export type IntegrationCommandConnectOutput = {
4576
4589
  project: {
4577
4590
  id: string;
4578
4591
  directory: string;
4592
+ canonical: string;
4579
4593
  };
4580
4594
  };
4581
4595
  data: IntegrationCommandAttempt;
@@ -4603,6 +4617,7 @@ export type IntegrationCommandStatusOutput = {
4603
4617
  project: {
4604
4618
  id: string;
4605
4619
  directory: string;
4620
+ canonical: string;
4606
4621
  };
4607
4622
  };
4608
4623
  data: IntegrationCommandAttemptStatus;
@@ -4639,6 +4654,7 @@ export type McpListOutput = {
4639
4654
  project: {
4640
4655
  id: string;
4641
4656
  directory: string;
4657
+ canonical: string;
4642
4658
  };
4643
4659
  };
4644
4660
  data: Array<McpServer>;
@@ -4743,6 +4759,7 @@ export type McpResourceCatalogOutput = {
4743
4759
  project: {
4744
4760
  id: string;
4745
4761
  directory: string;
4762
+ canonical: string;
4746
4763
  };
4747
4764
  };
4748
4765
  data: McpResourceCatalog;
@@ -4811,6 +4828,7 @@ export type FormRequestListOutput = {
4811
4828
  project: {
4812
4829
  id: string;
4813
4830
  directory: string;
4831
+ canonical: string;
4814
4832
  };
4815
4833
  };
4816
4834
  data: Array<FormInfo>;
@@ -5655,6 +5673,7 @@ export type PermissionRequestListOutput = {
5655
5673
  project: {
5656
5674
  id: string;
5657
5675
  directory: string;
5676
+ canonical: string;
5658
5677
  };
5659
5678
  };
5660
5679
  data: Array<PermissionRequest>;
@@ -5862,6 +5881,7 @@ export type FileListOutput = {
5862
5881
  project: {
5863
5882
  id: string;
5864
5883
  directory: string;
5884
+ canonical: string;
5865
5885
  };
5866
5886
  };
5867
5887
  data: Array<FileSystemEntry>;
@@ -5911,6 +5931,7 @@ export type FileFindOutput = {
5911
5931
  project: {
5912
5932
  id: string;
5913
5933
  directory: string;
5934
+ canonical: string;
5914
5935
  };
5915
5936
  };
5916
5937
  data: Array<FileSystemEntry>;
@@ -5930,6 +5951,7 @@ export type CommandListOutput = {
5930
5951
  project: {
5931
5952
  id: string;
5932
5953
  directory: string;
5954
+ canonical: string;
5933
5955
  };
5934
5956
  };
5935
5957
  data: Array<CommandInfo>;
@@ -5949,6 +5971,7 @@ export type SkillListOutput = {
5949
5971
  project: {
5950
5972
  id: string;
5951
5973
  directory: string;
5974
+ canonical: string;
5952
5975
  };
5953
5976
  };
5954
5977
  data: Array<SkillInfo>;
@@ -5969,6 +5992,7 @@ export type PtyListOutput = {
5969
5992
  project: {
5970
5993
  id: string;
5971
5994
  directory: string;
5995
+ canonical: string;
5972
5996
  };
5973
5997
  };
5974
5998
  data: Array<Pty>;
@@ -6033,6 +6057,7 @@ export type PtyCreateOutput = {
6033
6057
  project: {
6034
6058
  id: string;
6035
6059
  directory: string;
6060
+ canonical: string;
6036
6061
  };
6037
6062
  };
6038
6063
  data: Pty;
@@ -6055,6 +6080,7 @@ export type PtyGetOutput = {
6055
6080
  project: {
6056
6081
  id: string;
6057
6082
  directory: string;
6083
+ canonical: string;
6058
6084
  };
6059
6085
  };
6060
6086
  data: Pty;
@@ -6091,6 +6117,7 @@ export type PtyUpdateOutput = {
6091
6117
  project: {
6092
6118
  id: string;
6093
6119
  directory: string;
6120
+ canonical: string;
6094
6121
  };
6095
6122
  };
6096
6123
  data: Pty;
@@ -6122,6 +6149,7 @@ export type ShellListOutput = {
6122
6149
  project: {
6123
6150
  id: string;
6124
6151
  directory: string;
6152
+ canonical: string;
6125
6153
  };
6126
6154
  };
6127
6155
  data: Array<ShellInfo1>;
@@ -6173,6 +6201,7 @@ export type ShellCreateOutput = {
6173
6201
  project: {
6174
6202
  id: string;
6175
6203
  directory: string;
6204
+ canonical: string;
6176
6205
  };
6177
6206
  };
6178
6207
  data: ShellInfo1;
@@ -6195,6 +6224,7 @@ export type ShellGetOutput = {
6195
6224
  project: {
6196
6225
  id: string;
6197
6226
  directory: string;
6227
+ canonical: string;
6198
6228
  };
6199
6229
  };
6200
6230
  data: ShellInfo1;
@@ -6220,6 +6250,7 @@ export type ShellTimeoutOutput = {
6220
6250
  project: {
6221
6251
  id: string;
6222
6252
  directory: string;
6253
+ canonical: string;
6223
6254
  };
6224
6255
  };
6225
6256
  data: ShellInfo1;
@@ -6260,6 +6291,7 @@ export type ShellOutputOutput = {
6260
6291
  project: {
6261
6292
  id: string;
6262
6293
  directory: string;
6294
+ canonical: string;
6263
6295
  };
6264
6296
  };
6265
6297
  data: {
@@ -6296,6 +6328,7 @@ export type QuestionRequestListOutput = {
6296
6328
  project: {
6297
6329
  id: string;
6298
6330
  directory: string;
6331
+ canonical: string;
6299
6332
  };
6300
6333
  };
6301
6334
  data: Array<QuestionRequest>;
@@ -6348,6 +6381,7 @@ export type ReferenceListOutput = {
6348
6381
  project: {
6349
6382
  id: string;
6350
6383
  directory: string;
6384
+ canonical: string;
6351
6385
  };
6352
6386
  };
6353
6387
  data: Array<ReferenceInfo>;
@@ -6426,6 +6460,7 @@ export type VcsStatusOutput = {
6426
6460
  project: {
6427
6461
  id: string;
6428
6462
  directory: string;
6463
+ canonical: string;
6429
6464
  };
6430
6465
  };
6431
6466
  data: Array<VcsFileStatus>;
@@ -6463,6 +6498,7 @@ export type VcsDiffOutput = {
6463
6498
  project: {
6464
6499
  id: string;
6465
6500
  directory: string;
6501
+ canonical: string;
6466
6502
  };
6467
6503
  };
6468
6504
  data: Array<FileDiffInfo>;
@@ -6492,6 +6528,7 @@ export type WebsearchProvidersOutput = {
6492
6528
  project: {
6493
6529
  id: string;
6494
6530
  directory: string;
6531
+ canonical: string;
6495
6532
  };
6496
6533
  };
6497
6534
  data: Array<WebSearchProvider>;
@@ -6519,6 +6556,7 @@ export type WebsearchQueryOutput = {
6519
6556
  project: {
6520
6557
  id: string;
6521
6558
  directory: string;
6559
+ canonical: string;
6522
6560
  };
6523
6561
  };
6524
6562
  data: {
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-16494",
4
+ "version": "0.0.0-next-16496",
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-16494",
57
- "@opencode-ai/protocol": "0.0.0-next-16494"
56
+ "@opencode-ai/schema": "0.0.0-next-16496",
57
+ "@opencode-ai/protocol": "0.0.0-next-16496"
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-16494",
69
+ "@opencode-ai/httpapi-codegen": "0.0.0-next-16496",
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",