@distilled.cloud/cloudflare 0.19.1 → 0.20.0

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.
@@ -8,7 +8,7 @@ import * as Schema from "effect/Schema";
8
8
  import type * as HttpClient from "effect/unstable/http/HttpClient";
9
9
  import * as API from "../client/api.ts";
10
10
  import type { Credentials } from "../credentials.ts";
11
- import { type DefaultErrors } from "../errors.ts";
11
+ import { type DefaultErrors, InternalServerError } from "../errors.ts";
12
12
  declare const ContentTypeRequired_base: Schema.Class<ContentTypeRequired, Schema.TaggedStruct<"ContentTypeRequired", {
13
13
  readonly code: Schema.Number;
14
14
  readonly message: Schema.String;
@@ -2247,7 +2247,7 @@ export interface PutScriptResponse {
2247
2247
  usageModel?: "standard" | "bundled" | "unbound" | null;
2248
2248
  }
2249
2249
  export declare const PutScriptResponse: Schema.Schema<PutScriptResponse>;
2250
- export type PutScriptError = DefaultErrors | InvalidRoute | InvalidWorkerScript | DurableObjectMustBeSqlite | DuplicateMigrationTarget | ScriptStartupError | ScriptModuleNotFound;
2250
+ export type PutScriptError = DefaultErrors | InvalidRoute | InvalidWorkerScript | InternalServerError | DurableObjectMustBeSqlite | DuplicateMigrationTarget | ScriptStartupError | ScriptModuleNotFound;
2251
2251
  export declare const putScript: API.OperationMethod<PutScriptRequest, PutScriptResponse, PutScriptError, Credentials | HttpClient.HttpClient>;
2252
2252
  export interface DeleteScriptRequest {
2253
2253
  scriptName: string;