Skip to content

Commit

Permalink
Update client API schema
Browse files Browse the repository at this point in the history
  • Loading branch information
davelopez committed Jan 27, 2023
1 parent 5be8fbc commit 1c67f4b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions client/src/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6847,6 +6847,12 @@ export interface components {
*/
update_time: string;
};
/**
* StoredItemOrderBy
* @description Available options for sorting Stored Items results.
* @enum {string}
*/
StoredItemOrderBy: "name-asc" | "name-dsc" | "size-asc" | "size-dsc" | "update_time-asc" | "update_time-dsc";
/**
* SuitableConverter
* @description Base model definition with common configuration used by all derived models.
Expand Down Expand Up @@ -13508,6 +13514,14 @@ export interface operations {
discarded_datasets_api_storage_datasets_discarded_get: {
/** Returns discarded datasets owned by the given user. The results can be paginated. */
parameters?: {
/** @description Starts at the beginning skip the first ( offset - 1 ) items and begin returning at the Nth item */
/** @description The maximum number of items to return. */
/** @description String containing one of the valid ordering attributes followed by '-asc' or '-dsc' for ascending and descending order respectively. */
query?: {
offset?: number;
limit?: number;
order?: components["schemas"]["StoredItemOrderBy"];
};
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
header?: {
"run-as"?: string;
Expand Down Expand Up @@ -13587,9 +13601,11 @@ export interface operations {
parameters?: {
/** @description Starts at the beginning skip the first ( offset - 1 ) items and begin returning at the Nth item */
/** @description The maximum number of items to return. */
/** @description String containing one of the valid ordering attributes followed by '-asc' or '-dsc' for ascending and descending order respectively. */
query?: {
offset?: number;
limit?: number;
order?: components["schemas"]["StoredItemOrderBy"];
};
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
header?: {
Expand Down

0 comments on commit 1c67f4b

Please sign in to comment.