generate api
This commit is contained in:
@@ -1811,6 +1811,11 @@ export type PagedUserResponseModel = {
|
||||
items: Array<UserResponseModel>
|
||||
};
|
||||
|
||||
export type PagedWebhookEventModel = {
|
||||
total: number
|
||||
items: Array<WebhookEventModel>
|
||||
};
|
||||
|
||||
export type PagedWebhookResponseModel = {
|
||||
total: number
|
||||
items: Array<WebhookResponseModel>
|
||||
@@ -2676,6 +2681,12 @@ export type VerifyResetPasswordTokenRequestModel = {
|
||||
resetCode: string
|
||||
};
|
||||
|
||||
export type WebhookEventModel = {
|
||||
eventName: string
|
||||
eventType: string
|
||||
alias: string
|
||||
};
|
||||
|
||||
export type WebhookEventResponseModel = {
|
||||
eventName: string
|
||||
eventType: string
|
||||
@@ -5237,7 +5248,7 @@ take?: number
|
||||
,GetWebhookById: WebhookResponseModel
|
||||
,PutWebhookById: string
|
||||
,DeleteWebhookById: string
|
||||
,GetWebhookEvents: PagedWebhookResponseModel
|
||||
,GetWebhookEvents: PagedWebhookEventModel
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user