@leaflow/sdk 0.0.0-dev.113.g5d6fb99
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/dist/account/v1/index.d.ts +38 -0
- package/dist/account/v1/index.js +5 -0
- package/dist/account/v1/schema.d.ts +866 -0
- package/dist/account/v1/schema.js +5 -0
- package/dist/assistant/v1/index.d.ts +68 -0
- package/dist/assistant/v1/index.js +5 -0
- package/dist/assistant/v1/schema.d.ts +1884 -0
- package/dist/assistant/v1/schema.js +5 -0
- package/dist/canopy/v1/index.d.ts +36 -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 +200 -0
- package/dist/compute/v1/index.js +5 -0
- package/dist/compute/v1/schema.d.ts +4439 -0
- package/dist/compute/v1/schema.js +5 -0
- package/dist/gen/account/v1/schema.d.ts +866 -0
- package/dist/gen/account/v1/schema.js +5 -0
- package/dist/gen/assistant/v1/schema.d.ts +1884 -0
- package/dist/gen/assistant/v1/schema.js +5 -0
- package/dist/gen/canopy/v1/schema.d.ts +1100 -0
- package/dist/gen/canopy/v1/schema.js +5 -0
- package/dist/gen/compute/v1/schema.d.ts +4439 -0
- package/dist/gen/compute/v1/schema.js +5 -0
- package/dist/gen/iam/v1/schema.d.ts +1230 -0
- package/dist/gen/iam/v1/schema.js +5 -0
- package/dist/gen/monitoring/v1/schema.d.ts +2291 -0
- package/dist/gen/monitoring/v1/schema.js +5 -0
- package/dist/gen/tunnel/v1/schema.d.ts +845 -0
- package/dist/gen/tunnel/v1/schema.js +5 -0
- package/dist/iam/v1/index.d.ts +56 -0
- package/dist/iam/v1/index.js +5 -0
- package/dist/iam/v1/schema.d.ts +1230 -0
- package/dist/iam/v1/schema.js +5 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +6 -0
- package/dist/monitoring/v1/index.d.ts +80 -0
- package/dist/monitoring/v1/index.js +5 -0
- package/dist/monitoring/v1/schema.d.ts +2291 -0
- package/dist/monitoring/v1/schema.js +5 -0
- package/dist/src/client.d.ts +57 -0
- package/dist/src/client.js +41 -0
- package/dist/src/index.d.ts +9 -0
- package/dist/src/index.js +1 -0
- package/dist/tunnel/v1/index.d.ts +34 -0
- package/dist/tunnel/v1/index.js +5 -0
- package/dist/tunnel/v1/schema.d.ts +845 -0
- package/dist/tunnel/v1/schema.js +5 -0
- package/package.json +73 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export type { paths, components, operations, webhooks } from "./schema.js";
|
|
2
|
+
import type { operations } from "./schema.js";
|
|
3
|
+
/** `GET /account/v1/agreements` 成功时的响应体。 */
|
|
4
|
+
export type ListAgreementsResult = operations["list-agreements"]["responses"][200]["content"]["application/json"];
|
|
5
|
+
/** `GET /account/v1/me/consents` 成功时的响应体。 */
|
|
6
|
+
export type ListConsentsResult = operations["list-consents"]["responses"][200]["content"]["application/json"];
|
|
7
|
+
/** `POST /account/v1/me/consents` 成功时的响应体。 */
|
|
8
|
+
export type AcceptAgreementsResult = operations["accept-agreements"]["responses"][200]["content"]["application/json"];
|
|
9
|
+
/** `POST /account/v1/me/consents` 的请求体。 */
|
|
10
|
+
export type AcceptAgreementsBody = NonNullable<operations["accept-agreements"]["requestBody"]>["content"]["application/json"];
|
|
11
|
+
/** `POST /account/v1/register` 成功时的响应体。 */
|
|
12
|
+
export type RegisterResult = operations["register"]["responses"][201]["content"]["application/json"];
|
|
13
|
+
/** `POST /account/v1/register` 的请求体。 */
|
|
14
|
+
export type RegisterBody = NonNullable<operations["register"]["requestBody"]>["content"]["application/json"];
|
|
15
|
+
/** `GET /account/v1/me` 成功时的响应体。 */
|
|
16
|
+
export type GetAccountResult = operations["get-account"]["responses"][200]["content"]["application/json"];
|
|
17
|
+
/** `GET /account/v1/me/identity-verification` 成功时的响应体。 */
|
|
18
|
+
export type GetIdentityVerificationResult = operations["get-identity-verification"]["responses"][200]["content"]["application/json"];
|
|
19
|
+
/** `POST /account/v1/me/identity-verification` 成功时的响应体。 */
|
|
20
|
+
export type SubmitIdentityVerificationResult = operations["submit-identity-verification"]["responses"][202]["content"]["application/json"];
|
|
21
|
+
/** `POST /account/v1/me/identity-verification` 的请求体。 */
|
|
22
|
+
export type SubmitIdentityVerificationBody = NonNullable<operations["submit-identity-verification"]["requestBody"]>["content"]["application/json"];
|
|
23
|
+
/** `GET /account/v1/me/invitations` 成功时的响应体。 */
|
|
24
|
+
export type ListMyInvitationsResult = operations["list-my-invitations"]["responses"][200]["content"]["application/json"];
|
|
25
|
+
/** `POST /account/v1/me/invitations/accept` 成功时的响应体。 */
|
|
26
|
+
export type AcceptInvitationByTokenResult = operations["accept-invitation-by-token"]["responses"][200]["content"]["application/json"];
|
|
27
|
+
/** `POST /account/v1/me/invitations/accept` 的请求体。 */
|
|
28
|
+
export type AcceptInvitationByTokenBody = NonNullable<operations["accept-invitation-by-token"]["requestBody"]>["content"]["application/json"];
|
|
29
|
+
/** `POST /account/v1/me/invitations/{invitationId}/accept` 成功时的响应体。 */
|
|
30
|
+
export type AcceptInvitationResult = operations["accept-invitation"]["responses"][200]["content"]["application/json"];
|
|
31
|
+
/** `GET /account/v1/projects` 成功时的响应体。 */
|
|
32
|
+
export type ListProjectsResult = operations["list-projects"]["responses"][200]["content"]["application/json"];
|
|
33
|
+
/** `POST /account/v1/projects` 成功时的响应体。 */
|
|
34
|
+
export type CreateProjectResult = operations["create-project"]["responses"][201]["content"]["application/json"];
|
|
35
|
+
/** `POST /account/v1/projects` 的请求体。 */
|
|
36
|
+
export type CreateProjectBody = NonNullable<operations["create-project"]["requestBody"]>["content"]["application/json"];
|
|
37
|
+
/** `POST /account/v1/projects/{projectId}/token` 成功时的响应体。 */
|
|
38
|
+
export type ExchangeProjectTokenResult = operations["exchange-project-token"]["responses"][201]["content"]["application/json"];
|