@leaflow/sdk 0.0.0-dev.9.gd1c7e65 → 0.0.0-dev.91.g8a09696
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 +22 -12
- package/dist/account/v1/index.d.ts +12 -0
- package/dist/account/v1/schema.d.ts +213 -3
- package/dist/assistant/v1/index.d.ts +30 -2
- package/dist/assistant/v1/schema.d.ts +766 -127
- package/dist/billing/v1/index.d.ts +60 -0
- package/dist/billing/v1/index.js +5 -0
- package/dist/billing/v1/schema.d.ts +2042 -0
- package/dist/billing/v1/schema.js +5 -0
- package/dist/canopy/v1/index.d.ts +12 -0
- package/dist/compute/v1/index.d.ts +50 -4
- package/dist/compute/v1/schema.d.ts +686 -268
- 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 +28 -0
- package/dist/iam/v1/schema.d.ts +437 -9
- package/dist/index.d.ts +4 -0
- package/dist/monitoring/v1/index.d.ts +96 -0
- package/dist/monitoring/v1/schema.d.ts +2385 -496
- 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 +14 -32
- package/dist/tunnel/v1/schema.d.ts +52 -496
- package/package.json +2 -2
|
@@ -1,34 +1,16 @@
|
|
|
1
1
|
export type { paths, components, operations, webhooks } from "./schema.js";
|
|
2
2
|
import type { operations } from "./schema.js";
|
|
3
|
-
/** `GET /api/v1/
|
|
4
|
-
export type
|
|
5
|
-
/** `
|
|
6
|
-
export type
|
|
7
|
-
/** `
|
|
8
|
-
export type
|
|
9
|
-
/** `
|
|
10
|
-
export type
|
|
11
|
-
/** `
|
|
12
|
-
export type
|
|
13
|
-
/** `
|
|
14
|
-
export type
|
|
15
|
-
/** `
|
|
16
|
-
export type
|
|
17
|
-
/** `POST /api/v1/tunnel` 的请求体。 */
|
|
18
|
-
export type OpenTunnelBody = NonNullable<operations["open-tunnel"]["requestBody"]>["content"]["application/json"];
|
|
19
|
-
/** `POST /api/v1/tunnel/actions` 成功时的响应体。 */
|
|
20
|
-
export type ActOnTunnelResult = operations["act-on-tunnel"]["responses"][200]["content"]["application/json"];
|
|
21
|
-
/** `POST /api/v1/tunnel/actions` 的请求体。 */
|
|
22
|
-
export type ActOnTunnelBody = NonNullable<operations["act-on-tunnel"]["requestBody"]>["content"]["application/json"];
|
|
23
|
-
/** `PUT /api/v1/tunnel/plan` 成功时的响应体。 */
|
|
24
|
-
export type ChangeTunnelPlanResult = operations["change-tunnel-plan"]["responses"][200]["content"]["application/json"];
|
|
25
|
-
/** `PUT /api/v1/tunnel/plan` 的请求体。 */
|
|
26
|
-
export type ChangeTunnelPlanBody = NonNullable<operations["change-tunnel-plan"]["requestBody"]>["content"]["application/json"];
|
|
27
|
-
/** `GET /api/v1/tunnel/subscription` 成功时的响应体。 */
|
|
28
|
-
export type GetTunnelSubscriptionResult = operations["get-tunnel-subscription"]["responses"][200]["content"]["application/json"];
|
|
29
|
-
/** `POST /api/v1/tunnel/subscription/rotate` 成功时的响应体。 */
|
|
30
|
-
export type RotateTunnelSubscriptionResult = operations["rotate-tunnel-subscription"]["responses"][200]["content"]["application/json"];
|
|
31
|
-
/** `GET /api/v1/tunnel/usage` 成功时的响应体。 */
|
|
32
|
-
export type GetTunnelUsageResult = operations["get-tunnel-usage"]["responses"][200]["content"]["application/json"];
|
|
33
|
-
/** `GET /api/v1/tunnel/usage/series` 成功时的响应体。 */
|
|
34
|
-
export type ListTunnelUsageSeriesResult = operations["list-tunnel-usage-series"]["responses"][200]["content"]["application/json"];
|
|
3
|
+
/** `GET /api/v1/tunnel/l4` 成功时的响应体。 */
|
|
4
|
+
export type GetL4TunnelResult = operations["get-l4-tunnel"]["responses"][200]["content"]["application/json"];
|
|
5
|
+
/** `POST /api/v1/tunnel/l4` 成功时的响应体。 */
|
|
6
|
+
export type GenerateL4TunnelResult = operations["generate-l4-tunnel"]["responses"][200]["content"]["application/json"];
|
|
7
|
+
/** `GET /api/v1/tunnel/l4/subscription` 成功时的响应体。 */
|
|
8
|
+
export type GetL4TunnelSubscriptionResult = operations["get-l4-tunnel-subscription"]["responses"][200]["content"]["application/json"];
|
|
9
|
+
/** `POST /api/v1/tunnel/l4/subscription/rotate` 成功时的响应体。 */
|
|
10
|
+
export type RotateL4TunnelSubscriptionResult = operations["rotate-l4-tunnel-subscription"]["responses"][200]["content"]["application/json"];
|
|
11
|
+
/** `GET /api/v1/tunnel/l4/usage` 成功时的响应体。 */
|
|
12
|
+
export type GetL4TunnelUsageResult = operations["get-l4-tunnel-usage"]["responses"][200]["content"]["application/json"];
|
|
13
|
+
/** `GET /api/v1/tunnel/l4/usage/series` 成功时的响应体。 */
|
|
14
|
+
export type ListL4TunnelUsageSeriesResult = operations["list-l4-tunnel-usage-series"]["responses"][200]["content"]["application/json"];
|
|
15
|
+
/** `GET /api/v1/tunnel/l4/usage/series` 的查询参数。 */
|
|
16
|
+
export type ListL4TunnelUsageSeriesQuery = operations["list-l4-tunnel-usage-series"]["parameters"]["query"];
|