Skip to content

Commit

Permalink
clients/packages/api: update OpenAPI client
Browse files Browse the repository at this point in the history
  • Loading branch information
frankie567 committed Feb 3, 2025
1 parent c49e948 commit bbda608
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
5 changes: 0 additions & 5 deletions clients/packages/api/src/client/apis/WebhooksApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ export interface WebhooksApiListWebhookDeliveriesRequest {

export interface WebhooksApiListWebhookEndpointsRequest {
organizationId?: string | null;
userId?: string | null;
page?: number;
limit?: number;
}
Expand Down Expand Up @@ -254,10 +253,6 @@ export class WebhooksApi extends runtime.BaseAPI {
queryParameters['organization_id'] = requestParameters['organizationId'];
}

if (requestParameters['userId'] != null) {
queryParameters['user_id'] = requestParameters['userId'];
}

if (requestParameters['page'] != null) {
queryParameters['page'] = requestParameters['page'];
}
Expand Down
10 changes: 2 additions & 8 deletions clients/packages/api/src/client/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22195,17 +22195,11 @@ export interface WebhookEndpoint {
*/
format: WebhookFormat;
/**
*
* @type {string}
* @memberof WebhookEndpoint
*/
user_id?: string | null;
/**
*
* The organization ID associated with the webhook endpoint.
* @type {string}
* @memberof WebhookEndpoint
*/
organization_id?: string | null;
organization_id: string;
/**
* The events that will trigger the webhook.
* @type {Array<WebhookEventType>}
Expand Down

0 comments on commit bbda608

Please sign in to comment.