@distilled.cloud/cloudflare 0.9.0 → 0.10.1

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.
@@ -27,6 +27,12 @@ declare const DomainNotFound_base: Schema.Class<DomainNotFound, Schema.TaggedStr
27
27
  }>, import("effect/Cause").YieldableError>;
28
28
  export declare class DomainNotFound extends DomainNotFound_base {
29
29
  }
30
+ declare const DuplicateMigrationTarget_base: Schema.Class<DuplicateMigrationTarget, Schema.TaggedStruct<"DuplicateMigrationTarget", {
31
+ readonly code: Schema.Number;
32
+ readonly message: Schema.String;
33
+ }>, import("effect/Cause").YieldableError>;
34
+ export declare class DuplicateMigrationTarget extends DuplicateMigrationTarget_base {
35
+ }
30
36
  declare const DurableObjectMustBeSqlite_base: Schema.Class<DurableObjectMustBeSqlite, Schema.TaggedStruct<"DurableObjectMustBeSqlite", {
31
37
  readonly code: Schema.Number;
32
38
  readonly message: Schema.String;
@@ -2173,7 +2179,7 @@ export interface PutScriptResponse {
2173
2179
  usageModel?: "standard" | "bundled" | "unbound" | null;
2174
2180
  }
2175
2181
  export declare const PutScriptResponse: Schema.Schema<PutScriptResponse>;
2176
- export type PutScriptError = DefaultErrors | InvalidRoute | InvalidWorkerScript | DurableObjectMustBeSqlite;
2182
+ export type PutScriptError = DefaultErrors | DuplicateMigrationTarget | InvalidRoute | InvalidWorkerScript | DurableObjectMustBeSqlite;
2177
2183
  export declare const putScript: API.OperationMethod<PutScriptRequest, PutScriptResponse, PutScriptError, Credentials | HttpClient.HttpClient>;
2178
2184
  export interface DeleteScriptRequest {
2179
2185
  scriptName: string;