diff --git a/.github/workflows/cloudflare.yml b/.github/workflows/cloudflare.yml index b13e5c0..72e1cc5 100644 --- a/.github/workflows/cloudflare.yml +++ b/.github/workflows/cloudflare.yml @@ -4,7 +4,6 @@ on: push: branches: - '**' - pull_request: permissions: contents: read diff --git a/worker-configuration.d.ts b/worker-configuration.d.ts index f9ee652..a977309 100644 --- a/worker-configuration.d.ts +++ b/worker-configuration.d.ts @@ -8593,7 +8593,7 @@ type AIGatewayHeaders = { [key: string]: string | number | boolean | object; }; type AIGatewayUniversalRequest = { - provider: AIGatewayProviders | string; // eslint-disable-line + provider: AIGatewayProviders | string; endpoint: string; headers: Partial; query: unknown; @@ -8609,7 +8609,7 @@ declare abstract class AiGateway { gateway?: UniversalGatewayOptions; extraHeaders?: object; }): Promise; - getUrl(provider?: AIGatewayProviders | string): Promise; // eslint-disable-line + getUrl(provider?: AIGatewayProviders | string): Promise; } interface AutoRAGInternalError extends Error { }