Add Effect-native core event system (#27415)

This commit is contained in:
Dax
2026-05-14 20:50:23 -04:00
committed by GitHub
parent 73cdba959b
commit e11e089e42
43 changed files with 1500 additions and 517 deletions
+6 -6
View File
@@ -4387,14 +4387,14 @@ export class Model extends HeyApiClient {
*/
public list<ThrowOnError extends boolean = false>(
parameters?: {
instance?: {
location?: {
directory?: string
workspace?: string
}
},
options?: Options<never, ThrowOnError>,
) {
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "instance" }] }])
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "location" }] }])
return (options?.client ?? this.client).get<V2ModelListResponses, unknown, ThrowOnError>({
url: "/api/model",
...options,
@@ -4411,14 +4411,14 @@ export class Provider2 extends HeyApiClient {
*/
public list<ThrowOnError extends boolean = false>(
parameters?: {
instance?: {
location?: {
directory?: string
workspace?: string
}
},
options?: Options<never, ThrowOnError>,
) {
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "instance" }] }])
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "location" }] }])
return (options?.client ?? this.client).get<V2ProviderListResponses, unknown, ThrowOnError>({
url: "/api/provider",
...options,
@@ -4434,7 +4434,7 @@ export class Provider2 extends HeyApiClient {
public get<ThrowOnError extends boolean = false>(
parameters: {
providerID: string
instance?: {
location?: {
directory?: string
workspace?: string
}
@@ -4447,7 +4447,7 @@ export class Provider2 extends HeyApiClient {
{
args: [
{ in: "path", key: "providerID" },
{ in: "query", key: "instance" },
{ in: "query", key: "location" },
],
},
],
File diff suppressed because it is too large Load Diff