@daocloud-proto/ghippo 0.26.0-dev3 → 0.26.0-dev5
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/package.json +1 -1
- package/v1alpha1/currentuser.pb.ts +54 -0
- package/v1alpha1/user.pb.ts +0 -44
package/package.json
CHANGED
|
@@ -135,6 +135,48 @@ export type GetGlobalPermissionsResponse = {
|
|
|
135
135
|
permissions?: GlobalPermission[]
|
|
136
136
|
}
|
|
137
137
|
|
|
138
|
+
export type CreateSSHKeyRequest = {
|
|
139
|
+
sshKeyName?: string
|
|
140
|
+
publicKey?: string
|
|
141
|
+
expiredAt?: string
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export type CreateSSHKeyResponse = {
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export type UpdateSSHKeyRequest = {
|
|
148
|
+
sshkeyId?: number
|
|
149
|
+
sshKeyName?: string
|
|
150
|
+
publicKey?: string
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export type UpdateSSHKeyResponse = {
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export type DeleteSSHKeyRequest = {
|
|
157
|
+
id?: string
|
|
158
|
+
sshkeyId?: number
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export type DeleteSSHKeyResponse = {
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
export type ListSSHKeysRequest = {
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
export type ListSSHKeysResponse = {
|
|
168
|
+
sshKeys?: SSHKey[]
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
export type SSHKey = {
|
|
172
|
+
id?: number
|
|
173
|
+
sshKeyName?: string
|
|
174
|
+
publicKey?: string
|
|
175
|
+
updatedAt?: string
|
|
176
|
+
createdAt?: string
|
|
177
|
+
expiredAt?: string
|
|
178
|
+
}
|
|
179
|
+
|
|
138
180
|
export class Account {
|
|
139
181
|
static UpdateEmail(req: UpdateEmailRequest, initReq?: fm.InitReq): Promise<UpdateEmailResponse> {
|
|
140
182
|
return fm.fetchReq<UpdateEmailRequest, UpdateEmailResponse>(`/apis/ghippo.io/v1alpha1/current-user/email`, {...initReq, method: "PUT", body: JSON.stringify(req, fm.replacer)})
|
|
@@ -166,4 +208,16 @@ export class Account {
|
|
|
166
208
|
static SetCurrentUserPassword(req: SetCurrentUserPasswordRequest, initReq?: fm.InitReq): Promise<SetCurrentUserPasswordResponse> {
|
|
167
209
|
return fm.fetchReq<SetCurrentUserPasswordRequest, SetCurrentUserPasswordResponse>(`/apis/ghippo.io/v1alpha1/current-user/set-password`, {...initReq, method: "PUT", body: JSON.stringify(req, fm.replacer)})
|
|
168
210
|
}
|
|
211
|
+
static CreateSSHKey(req: CreateSSHKeyRequest, initReq?: fm.InitReq): Promise<CreateSSHKeyResponse> {
|
|
212
|
+
return fm.fetchReq<CreateSSHKeyRequest, CreateSSHKeyResponse>(`/apis/ghippo.io/v1alpha1/current-user/sshkeys`, {...initReq, method: "POST", body: JSON.stringify(req, fm.replacer)})
|
|
213
|
+
}
|
|
214
|
+
static UpdateSSHKey(req: UpdateSSHKeyRequest, initReq?: fm.InitReq): Promise<UpdateSSHKeyResponse> {
|
|
215
|
+
return fm.fetchReq<UpdateSSHKeyRequest, UpdateSSHKeyResponse>(`/apis/ghippo.io/v1alpha1/current-user/sshkeys/${req["sshkeyId"]}`, {...initReq, method: "PUT", body: JSON.stringify(req, fm.replacer)})
|
|
216
|
+
}
|
|
217
|
+
static DeleteSSHKey(req: DeleteSSHKeyRequest, initReq?: fm.InitReq): Promise<DeleteSSHKeyResponse> {
|
|
218
|
+
return fm.fetchReq<DeleteSSHKeyRequest, DeleteSSHKeyResponse>(`/apis/ghippo.io/v1alpha1/current-user/sshkeys/${req["sshkeyId"]}`, {...initReq, method: "DELETE"})
|
|
219
|
+
}
|
|
220
|
+
static ListSSHKeys(req: ListSSHKeysRequest, initReq?: fm.InitReq): Promise<ListSSHKeysResponse> {
|
|
221
|
+
return fm.fetchReq<ListSSHKeysRequest, ListSSHKeysResponse>(`/apis/ghippo.io/v1alpha1/current-user/sshkeys?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
|
|
222
|
+
}
|
|
169
223
|
}
|
package/v1alpha1/user.pb.ts
CHANGED
|
@@ -218,41 +218,6 @@ export type ResetUserMFARequest = {
|
|
|
218
218
|
export type ResetUserMFAResponse = {
|
|
219
219
|
}
|
|
220
220
|
|
|
221
|
-
export type CreateUserSSHKeyRequest = {
|
|
222
|
-
id?: string
|
|
223
|
-
sshKeyName?: string
|
|
224
|
-
expiredAt?: string
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
export type CreateUserSSHKeyResponse = {
|
|
228
|
-
publicKey?: string
|
|
229
|
-
privateKey?: string
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
export type DeleteUserSSHKeyRequest = {
|
|
233
|
-
id?: string
|
|
234
|
-
sshkeyId?: string
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
export type DeleteUserSSHKeyResponse = {
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
export type ListUserSSHKeysRequest = {
|
|
241
|
-
id?: string
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
export type ListUserSSHKeysResponse = {
|
|
245
|
-
sshKeys?: SSHKey[]
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
export type SSHKey = {
|
|
249
|
-
id?: string
|
|
250
|
-
sshKeyName?: string
|
|
251
|
-
updatedAt?: string
|
|
252
|
-
createdAt?: string
|
|
253
|
-
expiredAt?: string
|
|
254
|
-
}
|
|
255
|
-
|
|
256
221
|
export type VerifyUserSSHPublicKeyRequest = {
|
|
257
222
|
username?: string
|
|
258
223
|
publicKey?: Uint8Array
|
|
@@ -316,15 +281,6 @@ export class Users {
|
|
|
316
281
|
static DeleteUserAccessToken(req: DeleteUserAccessTokenRequest, initReq?: fm.InitReq): Promise<DeleteUserAccessTokenResponse> {
|
|
317
282
|
return fm.fetchReq<DeleteUserAccessTokenRequest, DeleteUserAccessTokenResponse>(`/apis/ghippo.io/v1alpha1/users/${req["id"]}/accesstokens/${req["aid"]}`, {...initReq, method: "DELETE"})
|
|
318
283
|
}
|
|
319
|
-
static CreateUserSSHKey(req: CreateUserSSHKeyRequest, initReq?: fm.InitReq): Promise<CreateUserSSHKeyResponse> {
|
|
320
|
-
return fm.fetchReq<CreateUserSSHKeyRequest, CreateUserSSHKeyResponse>(`/apis/ghippo.io/v1alpha1/users/${req["id"]}/sshkeys`, {...initReq, method: "POST", body: JSON.stringify(req, fm.replacer)})
|
|
321
|
-
}
|
|
322
|
-
static DeleteUserSSHKey(req: DeleteUserSSHKeyRequest, initReq?: fm.InitReq): Promise<DeleteUserSSHKeyResponse> {
|
|
323
|
-
return fm.fetchReq<DeleteUserSSHKeyRequest, DeleteUserSSHKeyResponse>(`/apis/ghippo.io/v1alpha1/users/${req["id"]}/sshkeys/${req["sshkeyId"]}`, {...initReq, method: "DELETE"})
|
|
324
|
-
}
|
|
325
|
-
static ListUserSSHKeys(req: ListUserSSHKeysRequest, initReq?: fm.InitReq): Promise<ListUserSSHKeysResponse> {
|
|
326
|
-
return fm.fetchReq<ListUserSSHKeysRequest, ListUserSSHKeysResponse>(`/apis/ghippo.io/v1alpha1/users/${req["id"]}/sshkeys?${fm.renderURLSearchParams(req, ["id"])}`, {...initReq, method: "GET"})
|
|
327
|
-
}
|
|
328
284
|
static VerifyUserSSHPublicKey(req: VerifyUserSSHPublicKeyRequest, initReq?: fm.InitReq): Promise<VerifyUserSSHPublicKeyResponse> {
|
|
329
285
|
return fm.fetchReq<VerifyUserSSHPublicKeyRequest, VerifyUserSSHPublicKeyResponse>(`/apis/ghippo.io/v1alpha1/users/${req["username"]}/sshkeys/verify`, {...initReq, method: "POST", body: JSON.stringify(req, fm.replacer)})
|
|
330
286
|
}
|