@leaflow/sdk 0.0.0-dev.101.g01ce843
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.
- package/README.md +34 -0
- package/dist/account/v1/index.d.ts +54 -0
- package/dist/account/v1/index.js +5 -0
- package/dist/account/v1/schema.d.ts +1157 -0
- package/dist/account/v1/schema.js +5 -0
- package/dist/assistant/v1/index.d.ts +108 -0
- package/dist/assistant/v1/index.js +5 -0
- package/dist/assistant/v1/schema.d.ts +2840 -0
- package/dist/assistant/v1/schema.js +5 -0
- package/dist/billing/v1/index.d.ts +74 -0
- package/dist/billing/v1/index.js +5 -0
- package/dist/billing/v1/schema.d.ts +2445 -0
- package/dist/billing/v1/schema.js +5 -0
- package/dist/canopy/v1/index.d.ts +48 -0
- package/dist/canopy/v1/index.js +5 -0
- package/dist/canopy/v1/schema.d.ts +1100 -0
- package/dist/canopy/v1/schema.js +5 -0
- package/dist/compute/v1/index.d.ts +246 -0
- package/dist/compute/v1/index.js +5 -0
- package/dist/compute/v1/schema.d.ts +4924 -0
- package/dist/compute/v1/schema.js +5 -0
- package/dist/dns/v1/index.d.ts +42 -0
- package/dist/dns/v1/index.js +5 -0
- package/dist/dns/v1/schema.d.ts +883 -0
- package/dist/dns/v1/schema.js +5 -0
- package/dist/iam/v1/index.d.ts +84 -0
- package/dist/iam/v1/index.js +5 -0
- package/dist/iam/v1/schema.d.ts +1658 -0
- package/dist/iam/v1/schema.js +5 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +6 -0
- package/dist/monitoring/v1/index.d.ts +176 -0
- package/dist/monitoring/v1/index.js +5 -0
- package/dist/monitoring/v1/schema.d.ts +4181 -0
- package/dist/monitoring/v1/schema.js +5 -0
- package/dist/notification/v1/index.d.ts +76 -0
- package/dist/notification/v1/index.js +5 -0
- package/dist/notification/v1/schema.d.ts +2038 -0
- package/dist/notification/v1/schema.js +5 -0
- package/dist/support/v1/index.d.ts +50 -0
- package/dist/support/v1/index.js +5 -0
- package/dist/support/v1/schema.d.ts +1078 -0
- package/dist/support/v1/schema.js +5 -0
- package/dist/tunnel/v1/index.d.ts +16 -0
- package/dist/tunnel/v1/index.js +5 -0
- package/dist/tunnel/v1/schema.d.ts +401 -0
- package/dist/tunnel/v1/schema.js +5 -0
- package/package.json +74 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export type { paths, components, operations, webhooks } from "./schema.js";
|
|
2
|
+
import type { operations } from "./schema.js";
|
|
3
|
+
/** `GET /api/v1/credentials` 成功时的响应体。 */
|
|
4
|
+
export type ListCredentialsResult = operations["list-credentials"]["responses"][200]["content"]["application/json"];
|
|
5
|
+
/** `GET /api/v1/credentials` 的查询参数。 */
|
|
6
|
+
export type ListCredentialsQuery = operations["list-credentials"]["parameters"]["query"];
|
|
7
|
+
/** `POST /api/v1/credentials` 成功时的响应体。 */
|
|
8
|
+
export type CreateCredentialResult = operations["create-credential"]["responses"][201]["content"]["application/json"];
|
|
9
|
+
/** `POST /api/v1/credentials` 的请求体。 */
|
|
10
|
+
export type CreateCredentialBody = NonNullable<operations["create-credential"]["requestBody"]>["content"]["application/json"];
|
|
11
|
+
/** `GET /api/v1/credentials/{credentialId}` 成功时的响应体。 */
|
|
12
|
+
export type GetCredentialResult = operations["get-credential"]["responses"][200]["content"]["application/json"];
|
|
13
|
+
/** `PATCH /api/v1/credentials/{credentialId}` 成功时的响应体。 */
|
|
14
|
+
export type RenameCredentialResult = operations["rename-credential"]["responses"][200]["content"]["application/json"];
|
|
15
|
+
/** `PATCH /api/v1/credentials/{credentialId}` 的请求体。 */
|
|
16
|
+
export type RenameCredentialBody = NonNullable<operations["rename-credential"]["requestBody"]>["content"]["application/json"];
|
|
17
|
+
/** `POST /api/v1/credentials/{credentialId}/verification` 成功时的响应体。 */
|
|
18
|
+
export type VerifyCredentialResult = operations["verify-credential"]["responses"][200]["content"]["application/json"];
|
|
19
|
+
/** `GET /api/v1/zones` 成功时的响应体。 */
|
|
20
|
+
export type ListZonesResult = operations["list-zones"]["responses"][200]["content"]["application/json"];
|
|
21
|
+
/** `GET /api/v1/zones` 的查询参数。 */
|
|
22
|
+
export type ListZonesQuery = operations["list-zones"]["parameters"]["query"];
|
|
23
|
+
/** `GET /api/v1/zones/{zone}/records` 成功时的响应体。 */
|
|
24
|
+
export type ListRecordsResult = operations["list-records"]["responses"][200]["content"]["application/json"];
|
|
25
|
+
/** `GET /api/v1/zones/{zone}/records` 的查询参数。 */
|
|
26
|
+
export type ListRecordsQuery = operations["list-records"]["parameters"]["query"];
|
|
27
|
+
/** `GET /api/v1/zones/{zone}/records/{name}/{type}` 成功时的响应体。 */
|
|
28
|
+
export type GetRecordSetResult = operations["get-record-set"]["responses"][200]["content"]["application/json"];
|
|
29
|
+
/** `PATCH /api/v1/zones/{zone}/records/{name}/{type}` 成功时的响应体。 */
|
|
30
|
+
export type ModifyRecordSetResult = operations["modify-record-set"]["responses"][200]["content"]["application/json"];
|
|
31
|
+
/** `PATCH /api/v1/zones/{zone}/records/{name}/{type}` 的查询参数。 */
|
|
32
|
+
export type ModifyRecordSetQuery = operations["modify-record-set"]["parameters"]["query"];
|
|
33
|
+
/** `PATCH /api/v1/zones/{zone}/records/{name}/{type}` 的请求体。 */
|
|
34
|
+
export type ModifyRecordSetBody = NonNullable<operations["modify-record-set"]["requestBody"]>["content"]["application/json"];
|
|
35
|
+
/** `PUT /api/v1/zones/{zone}/records/{name}/{type}` 成功时的响应体。 */
|
|
36
|
+
export type SetRecordSetResult = operations["set-record-set"]["responses"][200]["content"]["application/json"];
|
|
37
|
+
/** `PUT /api/v1/zones/{zone}/records/{name}/{type}` 的查询参数。 */
|
|
38
|
+
export type SetRecordSetQuery = operations["set-record-set"]["parameters"]["query"];
|
|
39
|
+
/** `PUT /api/v1/zones/{zone}/records/{name}/{type}` 的请求体。 */
|
|
40
|
+
export type SetRecordSetBody = NonNullable<operations["set-record-set"]["requestBody"]>["content"]["application/json"];
|
|
41
|
+
/** `DELETE /api/v1/zones/{zone}/records/{name}/{type}` 的查询参数。 */
|
|
42
|
+
export type DeleteRecordSetQuery = operations["delete-record-set"]["parameters"]["query"];
|