1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-27 11:02:16 +01:00
unleash.unleash/frontend/src/openapi/models/searchChangeRequestsParams.ts
Thomas Heartman 47c2bb7376
Chore: update Orval with new state query param (#10860)
Preparing for the UI usage of this.
2025-10-24 12:38:03 +02:00

30 lines
984 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { SearchChangeRequestsState } from './searchChangeRequestsState.js';
export type SearchChangeRequestsParams = {
/**
* Filter by change request creator user ID
*/
createdBy?: string;
/**
* Filter by requested approver user ID
*/
requestedApproverId?: string;
/**
* Filter by open / closed change requests. Change requests that are in 'draft', 'in review', 'approved', or 'scheduled' states are considered open. Change requests that are in 'cancelled', 'applied', or 'rejected' states are considered closed.
*/
state?: SearchChangeRequestsState;
/**
* The number of change requests to skip when returning a page. By default it is set to 0.
*/
offset?: number;
/**
* The number of change requests to return in a page. By default it is set to 50. The maximum is 1000.
*/
limit?: number;
};