@opencode-ai/client 0.0.0-next-15625 → 0.0.0-next-15626
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/effect/api/api.d.ts +50 -17
- package/dist/effect/generated/client.d.ts +82 -7
- package/dist/effect/generated/client.js +28 -9
- package/dist/promise/generated/client.d.ts +11 -6
- package/dist/promise/generated/client.js +33 -6
- package/dist/promise/generated/types.d.ts +138 -9
- package/package.json +4 -4
package/dist/effect/api/api.d.ts
CHANGED
|
@@ -388,7 +388,7 @@ export type Endpoint10_2Input = {
|
|
|
388
388
|
};
|
|
389
389
|
export type Endpoint10_2Output = EffectValue<ReturnType<RawClient["server.integration"]["integration.connect.key"]>>;
|
|
390
390
|
export type IntegrationConnectKeyOperation<E = never> = (input: Endpoint10_2Input) => Effect.Effect<Endpoint10_2Output, E>;
|
|
391
|
-
type Endpoint10_3Request = Parameters<RawClient["server.integration"]["integration.connect
|
|
391
|
+
type Endpoint10_3Request = Parameters<RawClient["server.integration"]["integration.oauth.connect"]>[0];
|
|
392
392
|
export type Endpoint10_3Input = {
|
|
393
393
|
readonly integrationID: Endpoint10_3Request["params"]["integrationID"];
|
|
394
394
|
readonly location?: Endpoint10_3Request["query"]["location"];
|
|
@@ -396,41 +396,74 @@ export type Endpoint10_3Input = {
|
|
|
396
396
|
readonly inputs: Endpoint10_3Request["payload"]["inputs"];
|
|
397
397
|
readonly label?: Endpoint10_3Request["payload"]["label"];
|
|
398
398
|
};
|
|
399
|
-
export type Endpoint10_3Output = EffectValue<ReturnType<RawClient["server.integration"]["integration.connect
|
|
400
|
-
export type
|
|
401
|
-
type Endpoint10_4Request = Parameters<RawClient["server.integration"]["integration.
|
|
399
|
+
export type Endpoint10_3Output = EffectValue<ReturnType<RawClient["server.integration"]["integration.oauth.connect"]>>;
|
|
400
|
+
export type IntegrationOauthConnectOperation<E = never> = (input: Endpoint10_3Input) => Effect.Effect<Endpoint10_3Output, E>;
|
|
401
|
+
type Endpoint10_4Request = Parameters<RawClient["server.integration"]["integration.oauth.status"]>[0];
|
|
402
402
|
export type Endpoint10_4Input = {
|
|
403
|
+
readonly integrationID: Endpoint10_4Request["params"]["integrationID"];
|
|
403
404
|
readonly attemptID: Endpoint10_4Request["params"]["attemptID"];
|
|
404
405
|
readonly location?: Endpoint10_4Request["query"]["location"];
|
|
405
406
|
};
|
|
406
|
-
export type Endpoint10_4Output = EffectValue<ReturnType<RawClient["server.integration"]["integration.
|
|
407
|
-
export type
|
|
408
|
-
type Endpoint10_5Request = Parameters<RawClient["server.integration"]["integration.
|
|
407
|
+
export type Endpoint10_4Output = EffectValue<ReturnType<RawClient["server.integration"]["integration.oauth.status"]>>;
|
|
408
|
+
export type IntegrationOauthStatusOperation<E = never> = (input: Endpoint10_4Input) => Effect.Effect<Endpoint10_4Output, E>;
|
|
409
|
+
type Endpoint10_5Request = Parameters<RawClient["server.integration"]["integration.oauth.complete"]>[0];
|
|
409
410
|
export type Endpoint10_5Input = {
|
|
411
|
+
readonly integrationID: Endpoint10_5Request["params"]["integrationID"];
|
|
410
412
|
readonly attemptID: Endpoint10_5Request["params"]["attemptID"];
|
|
411
413
|
readonly location?: Endpoint10_5Request["query"]["location"];
|
|
412
414
|
readonly code?: Endpoint10_5Request["payload"]["code"];
|
|
413
415
|
};
|
|
414
|
-
export type Endpoint10_5Output = EffectValue<ReturnType<RawClient["server.integration"]["integration.
|
|
415
|
-
export type
|
|
416
|
-
type Endpoint10_6Request = Parameters<RawClient["server.integration"]["integration.
|
|
416
|
+
export type Endpoint10_5Output = EffectValue<ReturnType<RawClient["server.integration"]["integration.oauth.complete"]>>;
|
|
417
|
+
export type IntegrationOauthCompleteOperation<E = never> = (input: Endpoint10_5Input) => Effect.Effect<Endpoint10_5Output, E>;
|
|
418
|
+
type Endpoint10_6Request = Parameters<RawClient["server.integration"]["integration.oauth.cancel"]>[0];
|
|
417
419
|
export type Endpoint10_6Input = {
|
|
420
|
+
readonly integrationID: Endpoint10_6Request["params"]["integrationID"];
|
|
418
421
|
readonly attemptID: Endpoint10_6Request["params"]["attemptID"];
|
|
419
422
|
readonly location?: Endpoint10_6Request["query"]["location"];
|
|
420
423
|
};
|
|
421
|
-
export type Endpoint10_6Output = EffectValue<ReturnType<RawClient["server.integration"]["integration.
|
|
422
|
-
export type
|
|
424
|
+
export type Endpoint10_6Output = EffectValue<ReturnType<RawClient["server.integration"]["integration.oauth.cancel"]>>;
|
|
425
|
+
export type IntegrationOauthCancelOperation<E = never> = (input: Endpoint10_6Input) => Effect.Effect<Endpoint10_6Output, E>;
|
|
426
|
+
type Endpoint10_7Request = Parameters<RawClient["server.integration"]["integration.command.connect"]>[0];
|
|
427
|
+
export type Endpoint10_7Input = {
|
|
428
|
+
readonly integrationID: Endpoint10_7Request["params"]["integrationID"];
|
|
429
|
+
readonly location?: Endpoint10_7Request["query"]["location"];
|
|
430
|
+
readonly methodID: Endpoint10_7Request["payload"]["methodID"];
|
|
431
|
+
readonly label?: Endpoint10_7Request["payload"]["label"];
|
|
432
|
+
};
|
|
433
|
+
export type Endpoint10_7Output = EffectValue<ReturnType<RawClient["server.integration"]["integration.command.connect"]>>;
|
|
434
|
+
export type IntegrationCommandConnectOperation<E = never> = (input: Endpoint10_7Input) => Effect.Effect<Endpoint10_7Output, E>;
|
|
435
|
+
type Endpoint10_8Request = Parameters<RawClient["server.integration"]["integration.command.status"]>[0];
|
|
436
|
+
export type Endpoint10_8Input = {
|
|
437
|
+
readonly integrationID: Endpoint10_8Request["params"]["integrationID"];
|
|
438
|
+
readonly attemptID: Endpoint10_8Request["params"]["attemptID"];
|
|
439
|
+
readonly location?: Endpoint10_8Request["query"]["location"];
|
|
440
|
+
};
|
|
441
|
+
export type Endpoint10_8Output = EffectValue<ReturnType<RawClient["server.integration"]["integration.command.status"]>>;
|
|
442
|
+
export type IntegrationCommandStatusOperation<E = never> = (input: Endpoint10_8Input) => Effect.Effect<Endpoint10_8Output, E>;
|
|
443
|
+
type Endpoint10_9Request = Parameters<RawClient["server.integration"]["integration.command.cancel"]>[0];
|
|
444
|
+
export type Endpoint10_9Input = {
|
|
445
|
+
readonly integrationID: Endpoint10_9Request["params"]["integrationID"];
|
|
446
|
+
readonly attemptID: Endpoint10_9Request["params"]["attemptID"];
|
|
447
|
+
readonly location?: Endpoint10_9Request["query"]["location"];
|
|
448
|
+
};
|
|
449
|
+
export type Endpoint10_9Output = EffectValue<ReturnType<RawClient["server.integration"]["integration.command.cancel"]>>;
|
|
450
|
+
export type IntegrationCommandCancelOperation<E = never> = (input: Endpoint10_9Input) => Effect.Effect<Endpoint10_9Output, E>;
|
|
423
451
|
export interface IntegrationApi<E = never> {
|
|
424
452
|
readonly list: IntegrationListOperation<E>;
|
|
425
453
|
readonly get: IntegrationGetOperation<E>;
|
|
426
454
|
readonly connect: {
|
|
427
455
|
readonly key: IntegrationConnectKeyOperation<E>;
|
|
428
|
-
readonly oauth: IntegrationConnectOauthOperation<E>;
|
|
429
456
|
};
|
|
430
|
-
readonly
|
|
431
|
-
readonly
|
|
432
|
-
readonly
|
|
433
|
-
readonly
|
|
457
|
+
readonly oauth: {
|
|
458
|
+
readonly connect: IntegrationOauthConnectOperation<E>;
|
|
459
|
+
readonly status: IntegrationOauthStatusOperation<E>;
|
|
460
|
+
readonly complete: IntegrationOauthCompleteOperation<E>;
|
|
461
|
+
readonly cancel: IntegrationOauthCancelOperation<E>;
|
|
462
|
+
};
|
|
463
|
+
readonly command: {
|
|
464
|
+
readonly connect: IntegrationCommandConnectOperation<E>;
|
|
465
|
+
readonly status: IntegrationCommandStatusOperation<E>;
|
|
466
|
+
readonly cancel: IntegrationCommandCancelOperation<E>;
|
|
434
467
|
};
|
|
435
468
|
}
|
|
436
469
|
type Endpoint11_0Request = Parameters<RawClient["server.mcp"]["mcp.list"]>[0];
|
|
@@ -232,7 +232,7 @@ type Endpoint10_2Input = {
|
|
|
232
232
|
readonly key: Endpoint10_2Request["payload"]["key"];
|
|
233
233
|
readonly label?: Endpoint10_2Request["payload"]["label"];
|
|
234
234
|
};
|
|
235
|
-
type Endpoint10_3Request = Parameters<RawClient["server.integration"]["integration.connect
|
|
235
|
+
type Endpoint10_3Request = Parameters<RawClient["server.integration"]["integration.oauth.connect"]>[0];
|
|
236
236
|
type Endpoint10_3Input = {
|
|
237
237
|
readonly integrationID: Endpoint10_3Request["params"]["integrationID"];
|
|
238
238
|
readonly location?: Endpoint10_3Request["query"]["location"];
|
|
@@ -240,22 +240,44 @@ type Endpoint10_3Input = {
|
|
|
240
240
|
readonly inputs: Endpoint10_3Request["payload"]["inputs"];
|
|
241
241
|
readonly label?: Endpoint10_3Request["payload"]["label"];
|
|
242
242
|
};
|
|
243
|
-
type Endpoint10_4Request = Parameters<RawClient["server.integration"]["integration.
|
|
243
|
+
type Endpoint10_4Request = Parameters<RawClient["server.integration"]["integration.oauth.status"]>[0];
|
|
244
244
|
type Endpoint10_4Input = {
|
|
245
|
+
readonly integrationID: Endpoint10_4Request["params"]["integrationID"];
|
|
245
246
|
readonly attemptID: Endpoint10_4Request["params"]["attemptID"];
|
|
246
247
|
readonly location?: Endpoint10_4Request["query"]["location"];
|
|
247
248
|
};
|
|
248
|
-
type Endpoint10_5Request = Parameters<RawClient["server.integration"]["integration.
|
|
249
|
+
type Endpoint10_5Request = Parameters<RawClient["server.integration"]["integration.oauth.complete"]>[0];
|
|
249
250
|
type Endpoint10_5Input = {
|
|
251
|
+
readonly integrationID: Endpoint10_5Request["params"]["integrationID"];
|
|
250
252
|
readonly attemptID: Endpoint10_5Request["params"]["attemptID"];
|
|
251
253
|
readonly location?: Endpoint10_5Request["query"]["location"];
|
|
252
254
|
readonly code?: Endpoint10_5Request["payload"]["code"];
|
|
253
255
|
};
|
|
254
|
-
type Endpoint10_6Request = Parameters<RawClient["server.integration"]["integration.
|
|
256
|
+
type Endpoint10_6Request = Parameters<RawClient["server.integration"]["integration.oauth.cancel"]>[0];
|
|
255
257
|
type Endpoint10_6Input = {
|
|
258
|
+
readonly integrationID: Endpoint10_6Request["params"]["integrationID"];
|
|
256
259
|
readonly attemptID: Endpoint10_6Request["params"]["attemptID"];
|
|
257
260
|
readonly location?: Endpoint10_6Request["query"]["location"];
|
|
258
261
|
};
|
|
262
|
+
type Endpoint10_7Request = Parameters<RawClient["server.integration"]["integration.command.connect"]>[0];
|
|
263
|
+
type Endpoint10_7Input = {
|
|
264
|
+
readonly integrationID: Endpoint10_7Request["params"]["integrationID"];
|
|
265
|
+
readonly location?: Endpoint10_7Request["query"]["location"];
|
|
266
|
+
readonly methodID: Endpoint10_7Request["payload"]["methodID"];
|
|
267
|
+
readonly label?: Endpoint10_7Request["payload"]["label"];
|
|
268
|
+
};
|
|
269
|
+
type Endpoint10_8Request = Parameters<RawClient["server.integration"]["integration.command.status"]>[0];
|
|
270
|
+
type Endpoint10_8Input = {
|
|
271
|
+
readonly integrationID: Endpoint10_8Request["params"]["integrationID"];
|
|
272
|
+
readonly attemptID: Endpoint10_8Request["params"]["attemptID"];
|
|
273
|
+
readonly location?: Endpoint10_8Request["query"]["location"];
|
|
274
|
+
};
|
|
275
|
+
type Endpoint10_9Request = Parameters<RawClient["server.integration"]["integration.command.cancel"]>[0];
|
|
276
|
+
type Endpoint10_9Input = {
|
|
277
|
+
readonly integrationID: Endpoint10_9Request["params"]["integrationID"];
|
|
278
|
+
readonly attemptID: Endpoint10_9Request["params"]["attemptID"];
|
|
279
|
+
readonly location?: Endpoint10_9Request["query"]["location"];
|
|
280
|
+
};
|
|
259
281
|
type Endpoint11_0Request = Parameters<RawClient["server.mcp"]["mcp.list"]>[0];
|
|
260
282
|
type Endpoint11_0Input = {
|
|
261
283
|
readonly location?: Endpoint11_0Request["query"]["location"];
|
|
@@ -3050,6 +3072,11 @@ export declare const make: (options?: {
|
|
|
3050
3072
|
readonly value: string;
|
|
3051
3073
|
} | undefined;
|
|
3052
3074
|
})[] | undefined;
|
|
3075
|
+
} | {
|
|
3076
|
+
readonly id: string & import("effect/Brand").Brand<"Integration.MethodID">;
|
|
3077
|
+
readonly type: "command";
|
|
3078
|
+
readonly label: string;
|
|
3079
|
+
readonly command: readonly string[];
|
|
3053
3080
|
} | {
|
|
3054
3081
|
readonly type: "key";
|
|
3055
3082
|
readonly label?: string | undefined;
|
|
@@ -3101,6 +3128,11 @@ export declare const make: (options?: {
|
|
|
3101
3128
|
readonly value: string;
|
|
3102
3129
|
} | undefined;
|
|
3103
3130
|
})[] | undefined;
|
|
3131
|
+
} | {
|
|
3132
|
+
readonly id: string & import("effect/Brand").Brand<"Integration.MethodID">;
|
|
3133
|
+
readonly type: "command";
|
|
3134
|
+
readonly label: string;
|
|
3135
|
+
readonly command: readonly string[];
|
|
3104
3136
|
} | {
|
|
3105
3137
|
readonly type: "key";
|
|
3106
3138
|
readonly label?: string | undefined;
|
|
@@ -3120,12 +3152,12 @@ export declare const make: (options?: {
|
|
|
3120
3152
|
}, Schema.SchemaError | import("@opencode-ai/protocol/errors").InvalidRequestError | import("@opencode-ai/protocol/errors").UnauthorizedError | HttpClientError.HttpClientError | ClientError, never>;
|
|
3121
3153
|
connect: {
|
|
3122
3154
|
key: (input: Endpoint10_2Input) => Effect.Effect<void, Schema.SchemaError | import("@opencode-ai/protocol/errors").InvalidRequestError | import("@opencode-ai/protocol/errors").UnauthorizedError | HttpClientError.HttpClientError | ClientError, never>;
|
|
3123
|
-
|
|
3155
|
+
};
|
|
3156
|
+
oauth: {
|
|
3157
|
+
connect: (input: Endpoint10_3Input) => Effect.Effect<{
|
|
3124
3158
|
readonly location: import("@opencode-ai/schema/location").Info;
|
|
3125
3159
|
readonly data: import("@opencode-ai/schema/integration").Attempt;
|
|
3126
3160
|
}, Schema.SchemaError | import("@opencode-ai/protocol/errors").InvalidRequestError | import("@opencode-ai/protocol/errors").UnauthorizedError | HttpClientError.HttpClientError | ClientError, never>;
|
|
3127
|
-
};
|
|
3128
|
-
attempt: {
|
|
3129
3161
|
status: (input: Endpoint10_4Input) => Effect.Effect<{
|
|
3130
3162
|
readonly location: import("@opencode-ai/schema/location").Info;
|
|
3131
3163
|
readonly data: {
|
|
@@ -3158,6 +3190,49 @@ export declare const make: (options?: {
|
|
|
3158
3190
|
complete: (input: Endpoint10_5Input) => Effect.Effect<void, Schema.SchemaError | import("@opencode-ai/protocol/errors").InvalidRequestError | import("@opencode-ai/protocol/errors").UnauthorizedError | HttpClientError.HttpClientError | ClientError, never>;
|
|
3159
3191
|
cancel: (input: Endpoint10_6Input) => Effect.Effect<void, Schema.SchemaError | import("@opencode-ai/protocol/errors").InvalidRequestError | import("@opencode-ai/protocol/errors").UnauthorizedError | HttpClientError.HttpClientError | ClientError, never>;
|
|
3160
3192
|
};
|
|
3193
|
+
command: {
|
|
3194
|
+
connect: (input: Endpoint10_7Input) => Effect.Effect<{
|
|
3195
|
+
readonly location: import("@opencode-ai/schema/location").Info;
|
|
3196
|
+
readonly data: {
|
|
3197
|
+
readonly attemptID: string & import("effect/Brand").Brand<"Integration.AttemptID">;
|
|
3198
|
+
readonly time: {
|
|
3199
|
+
readonly created: number;
|
|
3200
|
+
readonly expires: number;
|
|
3201
|
+
};
|
|
3202
|
+
};
|
|
3203
|
+
}, Schema.SchemaError | import("@opencode-ai/protocol/errors").InvalidRequestError | import("@opencode-ai/protocol/errors").UnauthorizedError | HttpClientError.HttpClientError | ClientError, never>;
|
|
3204
|
+
status: (input: Endpoint10_8Input) => Effect.Effect<{
|
|
3205
|
+
readonly location: import("@opencode-ai/schema/location").Info;
|
|
3206
|
+
readonly data: {
|
|
3207
|
+
readonly status: "pending";
|
|
3208
|
+
readonly time: {
|
|
3209
|
+
readonly created: number;
|
|
3210
|
+
readonly expires: number;
|
|
3211
|
+
};
|
|
3212
|
+
readonly message?: string | undefined;
|
|
3213
|
+
} | {
|
|
3214
|
+
readonly status: "complete";
|
|
3215
|
+
readonly time: {
|
|
3216
|
+
readonly created: number;
|
|
3217
|
+
readonly expires: number;
|
|
3218
|
+
};
|
|
3219
|
+
} | {
|
|
3220
|
+
readonly status: "failed";
|
|
3221
|
+
readonly message: string;
|
|
3222
|
+
readonly time: {
|
|
3223
|
+
readonly created: number;
|
|
3224
|
+
readonly expires: number;
|
|
3225
|
+
};
|
|
3226
|
+
} | {
|
|
3227
|
+
readonly status: "expired";
|
|
3228
|
+
readonly time: {
|
|
3229
|
+
readonly created: number;
|
|
3230
|
+
readonly expires: number;
|
|
3231
|
+
};
|
|
3232
|
+
};
|
|
3233
|
+
}, Schema.SchemaError | import("@opencode-ai/protocol/errors").InvalidRequestError | import("@opencode-ai/protocol/errors").UnauthorizedError | HttpClientError.HttpClientError | ClientError, never>;
|
|
3234
|
+
cancel: (input: Endpoint10_9Input) => Effect.Effect<void, Schema.SchemaError | import("@opencode-ai/protocol/errors").InvalidRequestError | import("@opencode-ai/protocol/errors").UnauthorizedError | HttpClientError.HttpClientError | ClientError, never>;
|
|
3235
|
+
};
|
|
3161
3236
|
};
|
|
3162
3237
|
mcp: {
|
|
3163
3238
|
list: (input?: Endpoint11_0Input) => Effect.Effect<{
|
|
@@ -167,29 +167,48 @@ const Endpoint10_2 = (raw) => (input) => raw["integration.connect.key"]({
|
|
|
167
167
|
query: { location: input["location"] },
|
|
168
168
|
payload: { key: input["key"], label: input["label"] },
|
|
169
169
|
}).pipe(Effect.mapError(mapClientError));
|
|
170
|
-
const Endpoint10_3 = (raw) => (input) => raw["integration.connect
|
|
170
|
+
const Endpoint10_3 = (raw) => (input) => raw["integration.oauth.connect"]({
|
|
171
171
|
params: { integrationID: input["integrationID"] },
|
|
172
172
|
query: { location: input["location"] },
|
|
173
173
|
payload: { methodID: input["methodID"], inputs: input["inputs"], label: input["label"] },
|
|
174
174
|
}).pipe(Effect.mapError(mapClientError));
|
|
175
|
-
const Endpoint10_4 = (raw) => (input) => raw["integration.
|
|
176
|
-
params: { attemptID: input["attemptID"] },
|
|
175
|
+
const Endpoint10_4 = (raw) => (input) => raw["integration.oauth.status"]({
|
|
176
|
+
params: { integrationID: input["integrationID"], attemptID: input["attemptID"] },
|
|
177
177
|
query: { location: input["location"] },
|
|
178
178
|
}).pipe(Effect.mapError(mapClientError));
|
|
179
|
-
const Endpoint10_5 = (raw) => (input) => raw["integration.
|
|
180
|
-
params: { attemptID: input["attemptID"] },
|
|
179
|
+
const Endpoint10_5 = (raw) => (input) => raw["integration.oauth.complete"]({
|
|
180
|
+
params: { integrationID: input["integrationID"], attemptID: input["attemptID"] },
|
|
181
181
|
query: { location: input["location"] },
|
|
182
182
|
payload: { code: input["code"] },
|
|
183
183
|
}).pipe(Effect.mapError(mapClientError));
|
|
184
|
-
const Endpoint10_6 = (raw) => (input) => raw["integration.
|
|
185
|
-
params: { attemptID: input["attemptID"] },
|
|
184
|
+
const Endpoint10_6 = (raw) => (input) => raw["integration.oauth.cancel"]({
|
|
185
|
+
params: { integrationID: input["integrationID"], attemptID: input["attemptID"] },
|
|
186
|
+
query: { location: input["location"] },
|
|
187
|
+
}).pipe(Effect.mapError(mapClientError));
|
|
188
|
+
const Endpoint10_7 = (raw) => (input) => raw["integration.command.connect"]({
|
|
189
|
+
params: { integrationID: input["integrationID"] },
|
|
190
|
+
query: { location: input["location"] },
|
|
191
|
+
payload: { methodID: input["methodID"], label: input["label"] },
|
|
192
|
+
}).pipe(Effect.mapError(mapClientError));
|
|
193
|
+
const Endpoint10_8 = (raw) => (input) => raw["integration.command.status"]({
|
|
194
|
+
params: { integrationID: input["integrationID"], attemptID: input["attemptID"] },
|
|
195
|
+
query: { location: input["location"] },
|
|
196
|
+
}).pipe(Effect.mapError(mapClientError));
|
|
197
|
+
const Endpoint10_9 = (raw) => (input) => raw["integration.command.cancel"]({
|
|
198
|
+
params: { integrationID: input["integrationID"], attemptID: input["attemptID"] },
|
|
186
199
|
query: { location: input["location"] },
|
|
187
200
|
}).pipe(Effect.mapError(mapClientError));
|
|
188
201
|
const adaptGroup10 = (raw) => ({
|
|
189
202
|
list: Endpoint10_0(raw),
|
|
190
203
|
get: Endpoint10_1(raw),
|
|
191
|
-
connect: { key: Endpoint10_2(raw)
|
|
192
|
-
|
|
204
|
+
connect: { key: Endpoint10_2(raw) },
|
|
205
|
+
oauth: {
|
|
206
|
+
connect: Endpoint10_3(raw),
|
|
207
|
+
status: Endpoint10_4(raw),
|
|
208
|
+
complete: Endpoint10_5(raw),
|
|
209
|
+
cancel: Endpoint10_6(raw),
|
|
210
|
+
},
|
|
211
|
+
command: { connect: Endpoint10_7(raw), status: Endpoint10_8(raw), cancel: Endpoint10_9(raw) },
|
|
193
212
|
});
|
|
194
213
|
const Endpoint11_0 = (raw) => (input) => raw["mcp.list"]({ query: { location: input?.["location"] } }).pipe(Effect.mapError(mapClientError));
|
|
195
214
|
const Endpoint11_1 = (raw) => (input) => raw["mcp.resource.catalog"]({ query: { location: input?.["location"] } }).pipe(Effect.mapError(mapClientError));
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HealthStopInput, ServerGetOutput, LocationGetInput, LocationGetOutput, AgentListInput, AgentListOutput, PluginListInput, PluginListOutput, SessionListInput, SessionCreateInput, SessionGetInput, SessionRemoveInput, SessionForkInput, SessionSwitchAgentInput, SessionSwitchModelInput, SessionRenameInput, SessionMoveInput, SessionPromptInput, SessionCommandInput, SessionSkillInput, SessionSyntheticInput, SessionShellInput, SessionCompactInput, SessionWaitInput, SessionRevertStageInput, SessionRevertClearInput, SessionRevertCommitInput, SessionContextInput, SessionPendingListInput, SessionInstructionsEntryListInput, SessionInstructionsEntryPutInput, SessionInstructionsEntryRemoveInput, SessionLogInput, SessionLogOutput, SessionInterruptInput, SessionBackgroundInput, SessionMessageInput, MessageListInput, ModelListInput, ModelListOutput, ModelDefaultInput, ModelDefaultOutput, GenerateTextInput, ProviderListInput, ProviderListOutput, ProviderGetInput, ProviderGetOutput, IntegrationListInput, IntegrationListOutput, IntegrationGetInput, IntegrationGetOutput, IntegrationConnectKeyInput,
|
|
1
|
+
import type { HealthStopInput, ServerGetOutput, LocationGetInput, LocationGetOutput, AgentListInput, AgentListOutput, PluginListInput, PluginListOutput, SessionListInput, SessionCreateInput, SessionGetInput, SessionRemoveInput, SessionForkInput, SessionSwitchAgentInput, SessionSwitchModelInput, SessionRenameInput, SessionMoveInput, SessionPromptInput, SessionCommandInput, SessionSkillInput, SessionSyntheticInput, SessionShellInput, SessionCompactInput, SessionWaitInput, SessionRevertStageInput, SessionRevertClearInput, SessionRevertCommitInput, SessionContextInput, SessionPendingListInput, SessionInstructionsEntryListInput, SessionInstructionsEntryPutInput, SessionInstructionsEntryRemoveInput, SessionLogInput, SessionLogOutput, SessionInterruptInput, SessionBackgroundInput, SessionMessageInput, MessageListInput, ModelListInput, ModelListOutput, ModelDefaultInput, ModelDefaultOutput, GenerateTextInput, ProviderListInput, ProviderListOutput, ProviderGetInput, ProviderGetOutput, IntegrationListInput, IntegrationListOutput, IntegrationGetInput, IntegrationGetOutput, IntegrationConnectKeyInput, IntegrationOauthConnectInput, IntegrationOauthConnectOutput, IntegrationOauthStatusInput, IntegrationOauthStatusOutput, IntegrationOauthCompleteInput, IntegrationOauthCancelInput, IntegrationCommandConnectInput, IntegrationCommandConnectOutput, IntegrationCommandStatusInput, IntegrationCommandStatusOutput, IntegrationCommandCancelInput, McpListInput, McpListOutput, McpResourceCatalogInput, McpResourceCatalogOutput, CredentialUpdateInput, CredentialRemoveInput, ProjectListOutput, ProjectCurrentInput, ProjectDirectoriesInput, FormRequestListInput, FormRequestListOutput, FormListInput, FormCreateInput, FormGetInput, FormStateInput, FormReplyInput, FormCancelInput, PermissionRequestListInput, PermissionRequestListOutput, PermissionSavedListInput, PermissionSavedRemoveInput, PermissionCreateInput, PermissionListInput, PermissionGetInput, PermissionReplyInput, FileReadInput, FileReadOutput, FileListInput, FileListOutput, FileFindInput, FileFindOutput, CommandListInput, CommandListOutput, SkillListInput, SkillListOutput, EventSubscribeOutput, PtyListInput, PtyListOutput, PtyCreateInput, PtyCreateOutput, PtyGetInput, PtyGetOutput, PtyUpdateInput, PtyUpdateOutput, PtyRemoveInput, ShellListInput, ShellListOutput, ShellCreateInput, ShellCreateOutput, ShellGetInput, ShellGetOutput, ShellTimeoutInput, ShellTimeoutOutput, ShellOutputInput, ShellOutputOutput, ShellRemoveInput, QuestionRequestListInput, QuestionRequestListOutput, QuestionListInput, QuestionReplyInput, QuestionRejectInput, ReferenceListInput, ReferenceListOutput, ProjectCopyCreateInput, ProjectCopyRemoveInput, ProjectCopyRefreshInput, VcsStatusInput, VcsStatusOutput, VcsDiffInput, VcsDiffOutput, DebugLocationListOutput, DebugLocationEvictInput } from "./types";
|
|
2
2
|
export interface ClientOptions {
|
|
3
3
|
readonly baseUrl: string;
|
|
4
4
|
readonly fetch?: typeof globalThis.fetch;
|
|
@@ -87,12 +87,17 @@ export declare function make(options: ClientOptions): {
|
|
|
87
87
|
get: (input: IntegrationGetInput, requestOptions?: RequestOptions) => Promise<IntegrationGetOutput>;
|
|
88
88
|
connect: {
|
|
89
89
|
key: (input: IntegrationConnectKeyInput, requestOptions?: RequestOptions) => Promise<void>;
|
|
90
|
-
oauth: (input: IntegrationConnectOauthInput, requestOptions?: RequestOptions) => Promise<IntegrationConnectOauthOutput>;
|
|
91
90
|
};
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
91
|
+
oauth: {
|
|
92
|
+
connect: (input: IntegrationOauthConnectInput, requestOptions?: RequestOptions) => Promise<IntegrationOauthConnectOutput>;
|
|
93
|
+
status: (input: IntegrationOauthStatusInput, requestOptions?: RequestOptions) => Promise<IntegrationOauthStatusOutput>;
|
|
94
|
+
complete: (input: IntegrationOauthCompleteInput, requestOptions?: RequestOptions) => Promise<void>;
|
|
95
|
+
cancel: (input: IntegrationOauthCancelInput, requestOptions?: RequestOptions) => Promise<void>;
|
|
96
|
+
};
|
|
97
|
+
command: {
|
|
98
|
+
connect: (input: IntegrationCommandConnectInput, requestOptions?: RequestOptions) => Promise<IntegrationCommandConnectOutput>;
|
|
99
|
+
status: (input: IntegrationCommandStatusInput, requestOptions?: RequestOptions) => Promise<IntegrationCommandStatusOutput>;
|
|
100
|
+
cancel: (input: IntegrationCommandCancelInput, requestOptions?: RequestOptions) => Promise<void>;
|
|
96
101
|
};
|
|
97
102
|
};
|
|
98
103
|
mcp: {
|
|
@@ -524,7 +524,9 @@ export function make(options) {
|
|
|
524
524
|
declaredStatuses: [400, 401],
|
|
525
525
|
empty: true,
|
|
526
526
|
}, requestOptions),
|
|
527
|
-
|
|
527
|
+
},
|
|
528
|
+
oauth: {
|
|
529
|
+
connect: (input, requestOptions) => request({
|
|
528
530
|
method: "POST",
|
|
529
531
|
path: `/api/integration/${encodeURIComponent(input.integrationID)}/connect/oauth`,
|
|
530
532
|
query: { location: input["location"] },
|
|
@@ -533,11 +535,9 @@ export function make(options) {
|
|
|
533
535
|
declaredStatuses: [400, 401],
|
|
534
536
|
empty: false,
|
|
535
537
|
}, requestOptions),
|
|
536
|
-
},
|
|
537
|
-
attempt: {
|
|
538
538
|
status: (input, requestOptions) => request({
|
|
539
539
|
method: "GET",
|
|
540
|
-
path: `/api/integration/
|
|
540
|
+
path: `/api/integration/${encodeURIComponent(input.integrationID)}/connect/oauth/${encodeURIComponent(input.attemptID)}`,
|
|
541
541
|
query: { location: input["location"] },
|
|
542
542
|
successStatus: 200,
|
|
543
543
|
declaredStatuses: [401, 400],
|
|
@@ -545,7 +545,7 @@ export function make(options) {
|
|
|
545
545
|
}, requestOptions),
|
|
546
546
|
complete: (input, requestOptions) => request({
|
|
547
547
|
method: "POST",
|
|
548
|
-
path: `/api/integration/
|
|
548
|
+
path: `/api/integration/${encodeURIComponent(input.integrationID)}/connect/oauth/${encodeURIComponent(input.attemptID)}/complete`,
|
|
549
549
|
query: { location: input["location"] },
|
|
550
550
|
body: { code: input["code"] },
|
|
551
551
|
successStatus: 204,
|
|
@@ -554,7 +554,34 @@ export function make(options) {
|
|
|
554
554
|
}, requestOptions),
|
|
555
555
|
cancel: (input, requestOptions) => request({
|
|
556
556
|
method: "DELETE",
|
|
557
|
-
path: `/api/integration/
|
|
557
|
+
path: `/api/integration/${encodeURIComponent(input.integrationID)}/connect/oauth/${encodeURIComponent(input.attemptID)}`,
|
|
558
|
+
query: { location: input["location"] },
|
|
559
|
+
successStatus: 204,
|
|
560
|
+
declaredStatuses: [401, 400],
|
|
561
|
+
empty: true,
|
|
562
|
+
}, requestOptions),
|
|
563
|
+
},
|
|
564
|
+
command: {
|
|
565
|
+
connect: (input, requestOptions) => request({
|
|
566
|
+
method: "POST",
|
|
567
|
+
path: `/api/integration/${encodeURIComponent(input.integrationID)}/connect/command`,
|
|
568
|
+
query: { location: input["location"] },
|
|
569
|
+
body: { methodID: input["methodID"], label: input["label"] },
|
|
570
|
+
successStatus: 200,
|
|
571
|
+
declaredStatuses: [400, 401],
|
|
572
|
+
empty: false,
|
|
573
|
+
}, requestOptions),
|
|
574
|
+
status: (input, requestOptions) => request({
|
|
575
|
+
method: "GET",
|
|
576
|
+
path: `/api/integration/${encodeURIComponent(input.integrationID)}/connect/command/${encodeURIComponent(input.attemptID)}`,
|
|
577
|
+
query: { location: input["location"] },
|
|
578
|
+
successStatus: 200,
|
|
579
|
+
declaredStatuses: [401, 400],
|
|
580
|
+
empty: false,
|
|
581
|
+
}, requestOptions),
|
|
582
|
+
cancel: (input, requestOptions) => request({
|
|
583
|
+
method: "DELETE",
|
|
584
|
+
path: `/api/integration/${encodeURIComponent(input.integrationID)}/connect/command/${encodeURIComponent(input.attemptID)}`,
|
|
558
585
|
query: { location: input["location"] },
|
|
559
586
|
successStatus: 204,
|
|
560
587
|
declaredStatuses: [401, 400],
|
|
@@ -282,6 +282,12 @@ export type IntegrationWhen = {
|
|
|
282
282
|
op: "eq" | "neq";
|
|
283
283
|
value: string;
|
|
284
284
|
};
|
|
285
|
+
export type IntegrationCommandMethod = {
|
|
286
|
+
id: string;
|
|
287
|
+
type: "command";
|
|
288
|
+
label: string;
|
|
289
|
+
command: Array<string>;
|
|
290
|
+
};
|
|
285
291
|
export type IntegrationKeyMethod = {
|
|
286
292
|
type: "key";
|
|
287
293
|
label?: string;
|
|
@@ -325,6 +331,40 @@ export type IntegrationAttemptStatus = {
|
|
|
325
331
|
expires: number | "Infinity" | "-Infinity" | "NaN";
|
|
326
332
|
};
|
|
327
333
|
};
|
|
334
|
+
export type IntegrationCommandAttempt = {
|
|
335
|
+
attemptID: string;
|
|
336
|
+
time: {
|
|
337
|
+
created: number | "Infinity" | "-Infinity" | "NaN";
|
|
338
|
+
expires: number | "Infinity" | "-Infinity" | "NaN";
|
|
339
|
+
};
|
|
340
|
+
};
|
|
341
|
+
export type IntegrationCommandAttemptStatus = {
|
|
342
|
+
status: "pending";
|
|
343
|
+
message?: string;
|
|
344
|
+
time: {
|
|
345
|
+
created: number | "Infinity" | "-Infinity" | "NaN";
|
|
346
|
+
expires: number | "Infinity" | "-Infinity" | "NaN";
|
|
347
|
+
};
|
|
348
|
+
} | {
|
|
349
|
+
status: "complete";
|
|
350
|
+
time: {
|
|
351
|
+
created: number | "Infinity" | "-Infinity" | "NaN";
|
|
352
|
+
expires: number | "Infinity" | "-Infinity" | "NaN";
|
|
353
|
+
};
|
|
354
|
+
} | {
|
|
355
|
+
status: "failed";
|
|
356
|
+
message: string;
|
|
357
|
+
time: {
|
|
358
|
+
created: number | "Infinity" | "-Infinity" | "NaN";
|
|
359
|
+
expires: number | "Infinity" | "-Infinity" | "NaN";
|
|
360
|
+
};
|
|
361
|
+
} | {
|
|
362
|
+
status: "expired";
|
|
363
|
+
time: {
|
|
364
|
+
created: number | "Infinity" | "-Infinity" | "NaN";
|
|
365
|
+
expires: number | "Infinity" | "-Infinity" | "NaN";
|
|
366
|
+
};
|
|
367
|
+
};
|
|
328
368
|
export type McpStatusConnected = {
|
|
329
369
|
status: "connected";
|
|
330
370
|
};
|
|
@@ -2749,7 +2789,7 @@ export type SessionMessageAssistantTool = {
|
|
|
2749
2789
|
completed?: number;
|
|
2750
2790
|
};
|
|
2751
2791
|
};
|
|
2752
|
-
export type IntegrationMethod = IntegrationOAuthMethod | IntegrationKeyMethod | IntegrationEnvMethod;
|
|
2792
|
+
export type IntegrationMethod = IntegrationOAuthMethod | IntegrationCommandMethod | IntegrationKeyMethod | IntegrationEnvMethod;
|
|
2753
2793
|
export type FormFields = [FormField, ...Array<FormField>];
|
|
2754
2794
|
export type SessionV1Info = {
|
|
2755
2795
|
id: string;
|
|
@@ -4364,7 +4404,7 @@ export type IntegrationConnectKeyInput = {
|
|
|
4364
4404
|
}["label"];
|
|
4365
4405
|
};
|
|
4366
4406
|
export type IntegrationConnectKeyOutput = void;
|
|
4367
|
-
export type
|
|
4407
|
+
export type IntegrationOauthConnectInput = {
|
|
4368
4408
|
readonly integrationID: {
|
|
4369
4409
|
readonly integrationID: string;
|
|
4370
4410
|
}["integrationID"];
|
|
@@ -4396,7 +4436,7 @@ export type IntegrationConnectOauthInput = {
|
|
|
4396
4436
|
readonly label?: string | undefined;
|
|
4397
4437
|
}["label"];
|
|
4398
4438
|
};
|
|
4399
|
-
export type
|
|
4439
|
+
export type IntegrationOauthConnectOutput = {
|
|
4400
4440
|
location: {
|
|
4401
4441
|
directory: string;
|
|
4402
4442
|
workspaceID?: string;
|
|
@@ -4416,8 +4456,13 @@ export type IntegrationConnectOauthOutput = {
|
|
|
4416
4456
|
};
|
|
4417
4457
|
};
|
|
4418
4458
|
};
|
|
4419
|
-
export type
|
|
4459
|
+
export type IntegrationOauthStatusInput = {
|
|
4460
|
+
readonly integrationID: {
|
|
4461
|
+
readonly integrationID: string;
|
|
4462
|
+
readonly attemptID: string;
|
|
4463
|
+
}["integrationID"];
|
|
4420
4464
|
readonly attemptID: {
|
|
4465
|
+
readonly integrationID: string;
|
|
4421
4466
|
readonly attemptID: string;
|
|
4422
4467
|
}["attemptID"];
|
|
4423
4468
|
readonly location?: {
|
|
@@ -4427,7 +4472,7 @@ export type IntegrationAttemptStatusInput = {
|
|
|
4427
4472
|
} | undefined;
|
|
4428
4473
|
}["location"];
|
|
4429
4474
|
};
|
|
4430
|
-
export type
|
|
4475
|
+
export type IntegrationOauthStatusOutput = {
|
|
4431
4476
|
location: {
|
|
4432
4477
|
directory: string;
|
|
4433
4478
|
workspaceID?: string;
|
|
@@ -4438,8 +4483,13 @@ export type IntegrationAttemptStatusOutput = {
|
|
|
4438
4483
|
};
|
|
4439
4484
|
data: IntegrationAttemptStatus;
|
|
4440
4485
|
};
|
|
4441
|
-
export type
|
|
4486
|
+
export type IntegrationOauthCompleteInput = {
|
|
4487
|
+
readonly integrationID: {
|
|
4488
|
+
readonly integrationID: string;
|
|
4489
|
+
readonly attemptID: string;
|
|
4490
|
+
}["integrationID"];
|
|
4442
4491
|
readonly attemptID: {
|
|
4492
|
+
readonly integrationID: string;
|
|
4443
4493
|
readonly attemptID: string;
|
|
4444
4494
|
}["attemptID"];
|
|
4445
4495
|
readonly location?: {
|
|
@@ -4452,9 +4502,88 @@ export type IntegrationAttemptCompleteInput = {
|
|
|
4452
4502
|
readonly code?: string | undefined;
|
|
4453
4503
|
}["code"];
|
|
4454
4504
|
};
|
|
4455
|
-
export type
|
|
4456
|
-
export type
|
|
4505
|
+
export type IntegrationOauthCompleteOutput = void;
|
|
4506
|
+
export type IntegrationOauthCancelInput = {
|
|
4507
|
+
readonly integrationID: {
|
|
4508
|
+
readonly integrationID: string;
|
|
4509
|
+
readonly attemptID: string;
|
|
4510
|
+
}["integrationID"];
|
|
4511
|
+
readonly attemptID: {
|
|
4512
|
+
readonly integrationID: string;
|
|
4513
|
+
readonly attemptID: string;
|
|
4514
|
+
}["attemptID"];
|
|
4515
|
+
readonly location?: {
|
|
4516
|
+
readonly location?: {
|
|
4517
|
+
readonly directory?: string | undefined;
|
|
4518
|
+
readonly workspace?: string | undefined;
|
|
4519
|
+
} | undefined;
|
|
4520
|
+
}["location"];
|
|
4521
|
+
};
|
|
4522
|
+
export type IntegrationOauthCancelOutput = void;
|
|
4523
|
+
export type IntegrationCommandConnectInput = {
|
|
4524
|
+
readonly integrationID: {
|
|
4525
|
+
readonly integrationID: string;
|
|
4526
|
+
}["integrationID"];
|
|
4527
|
+
readonly location?: {
|
|
4528
|
+
readonly location?: {
|
|
4529
|
+
readonly directory?: string | undefined;
|
|
4530
|
+
readonly workspace?: string | undefined;
|
|
4531
|
+
} | undefined;
|
|
4532
|
+
}["location"];
|
|
4533
|
+
readonly methodID: {
|
|
4534
|
+
readonly methodID: string;
|
|
4535
|
+
readonly label?: string | undefined;
|
|
4536
|
+
}["methodID"];
|
|
4537
|
+
readonly label?: {
|
|
4538
|
+
readonly methodID: string;
|
|
4539
|
+
readonly label?: string | undefined;
|
|
4540
|
+
}["label"];
|
|
4541
|
+
};
|
|
4542
|
+
export type IntegrationCommandConnectOutput = {
|
|
4543
|
+
location: {
|
|
4544
|
+
directory: string;
|
|
4545
|
+
workspaceID?: string;
|
|
4546
|
+
project: {
|
|
4547
|
+
id: string;
|
|
4548
|
+
directory: string;
|
|
4549
|
+
};
|
|
4550
|
+
};
|
|
4551
|
+
data: IntegrationCommandAttempt;
|
|
4552
|
+
};
|
|
4553
|
+
export type IntegrationCommandStatusInput = {
|
|
4554
|
+
readonly integrationID: {
|
|
4555
|
+
readonly integrationID: string;
|
|
4556
|
+
readonly attemptID: string;
|
|
4557
|
+
}["integrationID"];
|
|
4558
|
+
readonly attemptID: {
|
|
4559
|
+
readonly integrationID: string;
|
|
4560
|
+
readonly attemptID: string;
|
|
4561
|
+
}["attemptID"];
|
|
4562
|
+
readonly location?: {
|
|
4563
|
+
readonly location?: {
|
|
4564
|
+
readonly directory?: string | undefined;
|
|
4565
|
+
readonly workspace?: string | undefined;
|
|
4566
|
+
} | undefined;
|
|
4567
|
+
}["location"];
|
|
4568
|
+
};
|
|
4569
|
+
export type IntegrationCommandStatusOutput = {
|
|
4570
|
+
location: {
|
|
4571
|
+
directory: string;
|
|
4572
|
+
workspaceID?: string;
|
|
4573
|
+
project: {
|
|
4574
|
+
id: string;
|
|
4575
|
+
directory: string;
|
|
4576
|
+
};
|
|
4577
|
+
};
|
|
4578
|
+
data: IntegrationCommandAttemptStatus;
|
|
4579
|
+
};
|
|
4580
|
+
export type IntegrationCommandCancelInput = {
|
|
4581
|
+
readonly integrationID: {
|
|
4582
|
+
readonly integrationID: string;
|
|
4583
|
+
readonly attemptID: string;
|
|
4584
|
+
}["integrationID"];
|
|
4457
4585
|
readonly attemptID: {
|
|
4586
|
+
readonly integrationID: string;
|
|
4458
4587
|
readonly attemptID: string;
|
|
4459
4588
|
}["attemptID"];
|
|
4460
4589
|
readonly location?: {
|
|
@@ -4464,7 +4593,7 @@ export type IntegrationAttemptCancelInput = {
|
|
|
4464
4593
|
} | undefined;
|
|
4465
4594
|
}["location"];
|
|
4466
4595
|
};
|
|
4467
|
-
export type
|
|
4596
|
+
export type IntegrationCommandCancelOutput = void;
|
|
4468
4597
|
export type McpListInput = {
|
|
4469
4598
|
readonly location?: {
|
|
4470
4599
|
readonly location?: {
|
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-15626",
|
|
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-15626",
|
|
57
|
+
"@opencode-ai/protocol": "0.0.0-next-15626"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"effect": "4.0.0-beta.83"
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@effect/platform-node": "4.0.0-beta.83",
|
|
69
|
-
"@opencode-ai/httpapi-codegen": "0.0.0-next-
|
|
69
|
+
"@opencode-ai/httpapi-codegen": "0.0.0-next-15626",
|
|
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",
|