|
|
@ -1063,6 +1063,29 @@ export class Api< |
|
|
|
format: 'json', |
|
|
|
format: 'json', |
|
|
|
...params, |
|
|
|
...params, |
|
|
|
}), |
|
|
|
}), |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @description Resend Invitation to a specific user |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @tags Auth |
|
|
|
|
|
|
|
* @name ProjectUserResendInvite |
|
|
|
|
|
|
|
* @request POST:/api/v1/db/meta/projects/{projectId}/users/{userId}/resend-invite |
|
|
|
|
|
|
|
* @response `200` `any` OK |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
projectUserResendInvite: ( |
|
|
|
|
|
|
|
projectId: string, |
|
|
|
|
|
|
|
userId: string, |
|
|
|
|
|
|
|
data: any, |
|
|
|
|
|
|
|
params: RequestParams = {} |
|
|
|
|
|
|
|
) => |
|
|
|
|
|
|
|
this.request<any, any>({ |
|
|
|
|
|
|
|
path: `/api/v1/db/meta/projects/${projectId}/users/${userId}/resend-invite`, |
|
|
|
|
|
|
|
method: 'POST', |
|
|
|
|
|
|
|
body: data, |
|
|
|
|
|
|
|
type: ContentType.Json, |
|
|
|
|
|
|
|
format: 'json', |
|
|
|
|
|
|
|
...params, |
|
|
|
|
|
|
|
}), |
|
|
|
}; |
|
|
|
}; |
|
|
|
project = { |
|
|
|
project = { |
|
|
|
/** |
|
|
|
/** |
|
|
|