-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b09e8c8
commit bad92a2
Showing
10 changed files
with
83 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,20 @@ | ||
import type Interface from "../Interface/Delete.js"; | ||
|
||
/** | ||
* @module Delete | ||
* | ||
*/ | ||
declare const _default: Interface; | ||
export default _default; | ||
export declare const Environment: import("zod").ZodObject< | ||
{ | ||
Email: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
ID: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
Key: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
}, | ||
"strip", | ||
import("zod").ZodTypeAny, | ||
{ | ||
Email: string; | ||
ID: string; | ||
Key: string; | ||
}, | ||
{ | ||
Email?: string | undefined; | ||
ID?: string | undefined; | ||
Key?: string | undefined; | ||
} | ||
>; | ||
export declare const Environment: import("zod").ZodObject<{ | ||
Email: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
ID: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
Key: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
}, "strip", import("zod").ZodTypeAny, { | ||
Email: string; | ||
ID: string; | ||
Key: string; | ||
}, { | ||
Email?: string | undefined; | ||
ID?: string | undefined; | ||
Key?: string | undefined; | ||
}>; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
import type { ExportedHandler } from "@cloudflare/workers-types/experimental/index.js"; | ||
|
||
import type Environment from "../Type/Environment.js"; | ||
export declare const Delete: import("../Interface/Delete.js").default; | ||
declare const _default: ExportedHandler< | ||
{ | ||
Email: string; | ||
ID: string; | ||
Key: string; | ||
}, | ||
unknown, | ||
unknown | ||
>; | ||
declare const _default: ExportedHandler<Environment>; | ||
export default _default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
import type Environment from "../Type/Environment.js"; | ||
|
||
/** | ||
* @module Delete | ||
* | ||
*/ | ||
export default interface Interface { | ||
/** | ||
* The Delete function deletes all deployments associated with a specific project ID using the | ||
* Cloudflare API. | ||
* | ||
* @param Email - The `Email` parameter is the email address associated with the Cloudflare account. It | ||
* is used to authenticate the API request. | ||
* | ||
* @param Key - The `Key` parameter is the authentication key used to access the Cloudflare API. It is | ||
* used to authenticate the request and verify the identity of the user making the request. | ||
* | ||
* @param ID - The ID parameter represents the ID of the Cloudflare account. It is used to identify the | ||
* account for which the deployments need to be deleted. | ||
* | ||
*/ | ||
({ Email, Key, ID }: Environment): Promise<any[]>; | ||
/** | ||
* The Delete function deletes all deployments associated with a specific project ID using the | ||
* Cloudflare API. | ||
* | ||
* @param Email - The `Email` parameter is the email address associated with the Cloudflare account. It | ||
* is used to authenticate the API request. | ||
* | ||
* @param Key - The `Key` parameter is the authentication key used to access the Cloudflare API. It is | ||
* used to authenticate the request and verify the identity of the user making the request. | ||
* | ||
* @param ID - The ID parameter represents the ID of the Cloudflare account. It is used to identify the | ||
* account for which the deployments need to be deleted. | ||
* | ||
*/ | ||
({ Email, Key, ID }: Environment): Promise<any[]>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
import type { Response } from "@cloudflare/workers-types/experimental/index.js"; | ||
|
||
/** | ||
* @module Response | ||
* | ||
*/ | ||
export default interface Interface { | ||
(Message?: unknown, Status?: number): Promise<Response>; | ||
(Message?: unknown, Status?: number): Promise<Response>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,20 @@ | ||
import type Zod from "zod"; | ||
|
||
/** | ||
* @module Environment | ||
* | ||
*/ | ||
export type Type = Zod.infer<typeof Environment>; | ||
export type { Type as default }; | ||
|
||
declare const Environment: Zod.ZodObject< | ||
{ | ||
Email: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>; | ||
ID: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>; | ||
Key: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>; | ||
}, | ||
"strip", | ||
Zod.ZodTypeAny, | ||
{ | ||
Email: string; | ||
ID: string; | ||
Key: string; | ||
}, | ||
{ | ||
Email?: string | undefined; | ||
ID?: string | undefined; | ||
Key?: string | undefined; | ||
} | ||
>; | ||
declare const Environment: Zod.ZodObject<{ | ||
Email: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>; | ||
ID: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>; | ||
Key: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>; | ||
}, "strip", Zod.ZodTypeAny, { | ||
Email: string; | ||
ID: string; | ||
Key: string; | ||
}, { | ||
Email?: string | undefined; | ||
ID?: string | undefined; | ||
Key?: string | undefined; | ||
}>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,23 @@ | ||
export declare const string: ( | ||
params?: | ||
| ({ | ||
errorMap?: import("zod").ZodErrorMap | undefined; | ||
invalid_type_error?: string | undefined; | ||
required_error?: string | undefined; | ||
message?: string | undefined; | ||
description?: string | undefined; | ||
} & { | ||
coerce?: true | undefined; | ||
}) | ||
| undefined, | ||
) => import("zod").ZodString; | ||
declare const _default: import("zod").ZodObject< | ||
{ | ||
Email: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
ID: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
Key: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
}, | ||
"strip", | ||
import("zod").ZodTypeAny, | ||
{ | ||
Email: string; | ||
ID: string; | ||
Key: string; | ||
}, | ||
{ | ||
Email?: string | undefined; | ||
ID?: string | undefined; | ||
Key?: string | undefined; | ||
} | ||
>; | ||
export declare const string: (params?: ({ | ||
errorMap?: import("zod").ZodErrorMap | undefined; | ||
invalid_type_error?: string | undefined; | ||
required_error?: string | undefined; | ||
message?: string | undefined; | ||
description?: string | undefined; | ||
} & { | ||
coerce?: true | undefined; | ||
}) | undefined) => import("zod").ZodString; | ||
declare const _default: import("zod").ZodObject<{ | ||
Email: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
ID: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
Key: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
}, "strip", import("zod").ZodTypeAny, { | ||
Email: string; | ||
ID: string; | ||
Key: string; | ||
}, { | ||
Email?: string | undefined; | ||
ID?: string | undefined; | ||
Key?: string | undefined; | ||
}>; | ||
export default _default; |