mirror of
https://github.com/fergalmoran/supanextail.git
synced 2025-12-22 09:17:54 +00:00
55 lines
1.1 KiB
TypeScript
55 lines
1.1 KiB
TypeScript
/**
|
|
* This file was auto-generated by openapi-typescript.
|
|
* Do not make direct changes to the file.
|
|
*/
|
|
|
|
export interface paths {
|
|
'/': {
|
|
get: {
|
|
responses: {
|
|
/** OK */
|
|
200: unknown;
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|
|
export interface parameters {
|
|
/**
|
|
* @description Preference
|
|
* @enum {string}
|
|
*/
|
|
preferParams: 'params=single-object';
|
|
/**
|
|
* @description Preference
|
|
* @enum {string}
|
|
*/
|
|
preferReturn: 'return=representation' | 'return=minimal' | 'return=none';
|
|
/**
|
|
* @description Preference
|
|
* @enum {string}
|
|
*/
|
|
preferCount: 'count=none';
|
|
/** @description Filtering Columns */
|
|
select: string;
|
|
/** @description On Conflict */
|
|
on_conflict: string;
|
|
/** @description Ordering */
|
|
order: string;
|
|
/** @description Limiting and Pagination */
|
|
range: string;
|
|
/**
|
|
* @description Limiting and Pagination
|
|
* @default items
|
|
*/
|
|
rangeUnit: string;
|
|
/** @description Limiting and Pagination */
|
|
offset: string;
|
|
/** @description Limiting and Pagination */
|
|
limit: string;
|
|
}
|
|
|
|
export interface operations {}
|
|
|
|
export interface external {}
|