@leaflow/sdk 0.14.2 → 0.16.0
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/assistant/v1/index.d.ts +2 -0
- package/dist/assistant/v1/schema.d.ts +222 -100
- package/dist/compute/v1/index.d.ts +10 -0
- package/dist/compute/v1/schema.d.ts +148 -7
- 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/index.d.ts +3 -0
- package/dist/monitoring/v1/index.d.ts +78 -0
- package/dist/monitoring/v1/schema.d.ts +2653 -873
- package/dist/notification/v1/index.d.ts +60 -0
- package/dist/notification/v1/index.js +5 -0
- package/dist/notification/v1/schema.d.ts +1561 -0
- package/dist/notification/v1/schema.js +5 -0
- package/dist/support/v1/index.d.ts +60 -0
- package/dist/support/v1/index.js +5 -0
- package/dist/support/v1/schema.d.ts +1335 -0
- package/dist/support/v1/schema.js +5 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,9 @@ export type * as account from "./account/v1/index.js";
|
|
|
2
2
|
export type * as assistant from "./assistant/v1/index.js";
|
|
3
3
|
export type * as canopy from "./canopy/v1/index.js";
|
|
4
4
|
export type * as compute from "./compute/v1/index.js";
|
|
5
|
+
export type * as dns from "./dns/v1/index.js";
|
|
5
6
|
export type * as iam from "./iam/v1/index.js";
|
|
6
7
|
export type * as monitoring from "./monitoring/v1/index.js";
|
|
8
|
+
export type * as notification from "./notification/v1/index.js";
|
|
9
|
+
export type * as support from "./support/v1/index.js";
|
|
7
10
|
export type * as tunnel from "./tunnel/v1/index.js";
|
|
@@ -94,3 +94,81 @@ export type GetSloResult = operations["get-slo"]["responses"][200]["content"]["a
|
|
|
94
94
|
export type PutSloResult = operations["put-slo"]["responses"][200]["content"]["application/json"];
|
|
95
95
|
/** `PUT /api/v1/slo` 的请求体。 */
|
|
96
96
|
export type PutSloBody = NonNullable<operations["put-slo"]["requestBody"]>["content"]["application/json"];
|
|
97
|
+
/** `GET /api/v1/status-page` 成功时的响应体。 */
|
|
98
|
+
export type GetStatusPageResult = operations["get-status-page"]["responses"][200]["content"]["application/json"];
|
|
99
|
+
/** `PUT /api/v1/status-page` 成功时的响应体。 */
|
|
100
|
+
export type PutStatusPageResult = operations["put-status-page"]["responses"][200]["content"]["application/json"];
|
|
101
|
+
/** `PUT /api/v1/status-page` 的请求体。 */
|
|
102
|
+
export type PutStatusPageBody = NonNullable<operations["put-status-page"]["requestBody"]>["content"]["application/json"];
|
|
103
|
+
/** `PUT /api/v1/status-page/order` 的请求体。 */
|
|
104
|
+
export type PutStatusPageOrderBody = NonNullable<operations["put-status-page-order"]["requestBody"]>["content"]["application/json"];
|
|
105
|
+
/** `GET /api/v1/status-page/groups` 成功时的响应体。 */
|
|
106
|
+
export type ListStatusPageGroupsResult = operations["list-status-page-groups"]["responses"][200]["content"]["application/json"];
|
|
107
|
+
/** `POST /api/v1/status-page/groups` 成功时的响应体。 */
|
|
108
|
+
export type CreateStatusPageGroupResult = operations["create-status-page-group"]["responses"][201]["content"]["application/json"];
|
|
109
|
+
/** `POST /api/v1/status-page/groups` 的请求体。 */
|
|
110
|
+
export type CreateStatusPageGroupBody = NonNullable<operations["create-status-page-group"]["requestBody"]>["content"]["application/json"];
|
|
111
|
+
/** `PUT /api/v1/status-page/groups/{groupId}` 成功时的响应体。 */
|
|
112
|
+
export type UpdateStatusPageGroupResult = operations["update-status-page-group"]["responses"][200]["content"]["application/json"];
|
|
113
|
+
/** `PUT /api/v1/status-page/groups/{groupId}` 的请求体。 */
|
|
114
|
+
export type UpdateStatusPageGroupBody = NonNullable<operations["update-status-page-group"]["requestBody"]>["content"]["application/json"];
|
|
115
|
+
/** `PUT /api/v1/status-page/groups/{groupId}/order` 的请求体。 */
|
|
116
|
+
export type PutStatusPageGroupOrderBody = NonNullable<operations["put-status-page-group-order"]["requestBody"]>["content"]["application/json"];
|
|
117
|
+
/** `GET /api/v1/status-page/components` 成功时的响应体。 */
|
|
118
|
+
export type ListStatusPageComponentsResult = operations["list-status-page-components"]["responses"][200]["content"]["application/json"];
|
|
119
|
+
/** `POST /api/v1/status-page/components` 成功时的响应体。 */
|
|
120
|
+
export type CreateStatusPageComponentResult = operations["create-status-page-component"]["responses"][201]["content"]["application/json"];
|
|
121
|
+
/** `POST /api/v1/status-page/components` 的请求体。 */
|
|
122
|
+
export type CreateStatusPageComponentBody = NonNullable<operations["create-status-page-component"]["requestBody"]>["content"]["application/json"];
|
|
123
|
+
/** `GET /api/v1/status-page/components/{componentId}` 成功时的响应体。 */
|
|
124
|
+
export type GetStatusPageComponentResult = operations["get-status-page-component"]["responses"][200]["content"]["application/json"];
|
|
125
|
+
/** `PUT /api/v1/status-page/components/{componentId}` 成功时的响应体。 */
|
|
126
|
+
export type UpdateStatusPageComponentResult = operations["update-status-page-component"]["responses"][200]["content"]["application/json"];
|
|
127
|
+
/** `PUT /api/v1/status-page/components/{componentId}` 的请求体。 */
|
|
128
|
+
export type UpdateStatusPageComponentBody = NonNullable<operations["update-status-page-component"]["requestBody"]>["content"]["application/json"];
|
|
129
|
+
/** `GET /api/v1/status-page/components/{componentId}/sources` 成功时的响应体。 */
|
|
130
|
+
export type ListStatusPageComponentSourcesResult = operations["list-status-page-component-sources"]["responses"][200]["content"]["application/json"];
|
|
131
|
+
/** `PUT /api/v1/status-page/components/{componentId}/sources` 成功时的响应体。 */
|
|
132
|
+
export type PutStatusPageComponentSourcesResult = operations["put-status-page-component-sources"]["responses"][200]["content"]["application/json"];
|
|
133
|
+
/** `PUT /api/v1/status-page/components/{componentId}/sources` 的请求体。 */
|
|
134
|
+
export type PutStatusPageComponentSourcesBody = NonNullable<operations["put-status-page-component-sources"]["requestBody"]>["content"]["application/json"];
|
|
135
|
+
/** `GET /api/v1/status-page/incidents` 成功时的响应体。 */
|
|
136
|
+
export type ListStatusPageIncidentsResult = operations["list-status-page-incidents"]["responses"][200]["content"]["application/json"];
|
|
137
|
+
/** `GET /api/v1/status-page/incidents` 的查询参数。 */
|
|
138
|
+
export type ListStatusPageIncidentsQuery = operations["list-status-page-incidents"]["parameters"]["query"];
|
|
139
|
+
/** `POST /api/v1/status-page/incidents` 成功时的响应体。 */
|
|
140
|
+
export type PublishStatusPageIncidentResult = operations["publish-status-page-incident"]["responses"][201]["content"]["application/json"];
|
|
141
|
+
/** `POST /api/v1/status-page/incidents` 的请求体。 */
|
|
142
|
+
export type PublishStatusPageIncidentBody = NonNullable<operations["publish-status-page-incident"]["requestBody"]>["content"]["application/json"];
|
|
143
|
+
/** `GET /api/v1/status-page/incidents/{incidentId}` 成功时的响应体。 */
|
|
144
|
+
export type GetStatusPageIncidentResult = operations["get-status-page-incident"]["responses"][200]["content"]["application/json"];
|
|
145
|
+
/** `POST /api/v1/status-page/incidents/{incidentId}/updates` 成功时的响应体。 */
|
|
146
|
+
export type PostStatusPageIncidentUpdateResult = operations["post-status-page-incident-update"]["responses"][200]["content"]["application/json"];
|
|
147
|
+
/** `POST /api/v1/status-page/incidents/{incidentId}/updates` 的请求体。 */
|
|
148
|
+
export type PostStatusPageIncidentUpdateBody = NonNullable<operations["post-status-page-incident-update"]["requestBody"]>["content"]["application/json"];
|
|
149
|
+
/** `GET /api/v1/status-page/maintenances` 成功时的响应体。 */
|
|
150
|
+
export type ListStatusPageMaintenancesResult = operations["list-status-page-maintenances"]["responses"][200]["content"]["application/json"];
|
|
151
|
+
/** `GET /api/v1/status-page/maintenances` 的查询参数。 */
|
|
152
|
+
export type ListStatusPageMaintenancesQuery = operations["list-status-page-maintenances"]["parameters"]["query"];
|
|
153
|
+
/** `POST /api/v1/status-page/maintenances` 成功时的响应体。 */
|
|
154
|
+
export type ScheduleStatusPageMaintenanceResult = operations["schedule-status-page-maintenance"]["responses"][201]["content"]["application/json"];
|
|
155
|
+
/** `POST /api/v1/status-page/maintenances` 的请求体。 */
|
|
156
|
+
export type ScheduleStatusPageMaintenanceBody = NonNullable<operations["schedule-status-page-maintenance"]["requestBody"]>["content"]["application/json"];
|
|
157
|
+
/** `GET /api/v1/status-page/maintenances/{maintenanceId}` 成功时的响应体。 */
|
|
158
|
+
export type GetStatusPageMaintenanceResult = operations["get-status-page-maintenance"]["responses"][200]["content"]["application/json"];
|
|
159
|
+
/** `POST /api/v1/status-page/maintenances/{maintenanceId}/cancel` 成功时的响应体。 */
|
|
160
|
+
export type CancelStatusPageMaintenanceResult = operations["cancel-status-page-maintenance"]["responses"][200]["content"]["application/json"];
|
|
161
|
+
/** `POST /api/v1/status-page/maintenances/{maintenanceId}/complete` 成功时的响应体。 */
|
|
162
|
+
export type CompleteStatusPageMaintenanceResult = operations["complete-status-page-maintenance"]["responses"][200]["content"]["application/json"];
|
|
163
|
+
/** `GET /api/v1/web-checks/{checkId}` 成功时的响应体。 */
|
|
164
|
+
export type GetProjectWebCheckResult = operations["get-project-web-check"]["responses"][200]["content"]["application/json"];
|
|
165
|
+
/** `PUT /api/v1/web-checks/{checkId}` 成功时的响应体。 */
|
|
166
|
+
export type PutProjectWebCheckResult = operations["put-project-web-check"]["responses"][200]["content"]["application/json"];
|
|
167
|
+
/** `PUT /api/v1/web-checks/{checkId}` 的请求体。 */
|
|
168
|
+
export type PutProjectWebCheckBody = NonNullable<operations["put-project-web-check"]["requestBody"]>["content"]["application/json"];
|
|
169
|
+
/** `GET /api/v1/status-page/domain` 成功时的响应体。 */
|
|
170
|
+
export type GetStatusPageDomainResult = operations["get-status-page-domain"]["responses"][200]["content"]["application/json"];
|
|
171
|
+
/** `PUT /api/v1/status-page/domain` 成功时的响应体。 */
|
|
172
|
+
export type PutStatusPageDomainResult = operations["put-status-page-domain"]["responses"][200]["content"]["application/json"];
|
|
173
|
+
/** `PUT /api/v1/status-page/domain` 的请求体。 */
|
|
174
|
+
export type PutStatusPageDomainBody = NonNullable<operations["put-status-page-domain"]["requestBody"]>["content"]["application/json"];
|