@distilled.cloud/cloudflare 0.7.10 → 0.7.11
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.
|
@@ -52,6 +52,12 @@ declare const InvalidWorkerScript_base: Schema.ErrorClass<InvalidWorkerScript, S
|
|
|
52
52
|
}>, import("effect/Cause").YieldableError>;
|
|
53
53
|
export declare class InvalidWorkerScript extends InvalidWorkerScript_base {
|
|
54
54
|
}
|
|
55
|
+
declare const QueueConsumerConflict_base: Schema.ErrorClass<QueueConsumerConflict, Schema.TaggedStruct<"QueueConsumerConflict", {
|
|
56
|
+
readonly code: Schema.Number;
|
|
57
|
+
readonly message: Schema.String;
|
|
58
|
+
}>, import("effect/Cause").YieldableError>;
|
|
59
|
+
export declare class QueueConsumerConflict extends QueueConsumerConflict_base {
|
|
60
|
+
}
|
|
55
61
|
declare const RouteNotFound_base: Schema.ErrorClass<RouteNotFound, Schema.TaggedStruct<"RouteNotFound", {
|
|
56
62
|
readonly code: Schema.Number;
|
|
57
63
|
readonly message: Schema.String;
|
|
@@ -64,6 +70,12 @@ declare const SecretNotFound_base: Schema.ErrorClass<SecretNotFound, Schema.Tagg
|
|
|
64
70
|
}>, import("effect/Cause").YieldableError>;
|
|
65
71
|
export declare class SecretNotFound extends SecretNotFound_base {
|
|
66
72
|
}
|
|
73
|
+
declare const ServiceBindingConflict_base: Schema.ErrorClass<ServiceBindingConflict, Schema.TaggedStruct<"ServiceBindingConflict", {
|
|
74
|
+
readonly code: Schema.Number;
|
|
75
|
+
readonly message: Schema.String;
|
|
76
|
+
}>, import("effect/Cause").YieldableError>;
|
|
77
|
+
export declare class ServiceBindingConflict extends ServiceBindingConflict_base {
|
|
78
|
+
}
|
|
67
79
|
declare const VersionNotFound_base: Schema.ErrorClass<VersionNotFound, Schema.TaggedStruct<"VersionNotFound", {
|
|
68
80
|
readonly code: Schema.Number;
|
|
69
81
|
readonly message: Schema.String;
|
|
@@ -2457,7 +2469,7 @@ export interface DeleteScriptRequest {
|
|
|
2457
2469
|
export declare const DeleteScriptRequest: Schema.Schema<DeleteScriptRequest>;
|
|
2458
2470
|
export type DeleteScriptResponse = unknown;
|
|
2459
2471
|
export declare const DeleteScriptResponse: Schema.Schema<DeleteScriptResponse>;
|
|
2460
|
-
export type DeleteScriptError = DefaultErrors | WorkerNotFound;
|
|
2472
|
+
export type DeleteScriptError = DefaultErrors | WorkerNotFound | QueueConsumerConflict | ServiceBindingConflict;
|
|
2461
2473
|
export declare const deleteScript: API.OperationMethod<DeleteScriptRequest, DeleteScriptResponse, DeleteScriptError, Credentials | HttpClient.HttpClient>;
|
|
2462
2474
|
export interface SearchScriptRequest {
|
|
2463
2475
|
/** Path param: Identifier. */
|