working search with flat endpoint

This commit is contained in:
vabene1111
2024-02-29 20:08:37 +01:00
committed by smilerz
parent 4a8ad3db1e
commit 17f875863c
143 changed files with 18624 additions and 9992 deletions

View File

@@ -0,0 +1,110 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { exists, mapValues } from '../runtime';
/**
*
* @export
* @interface PatchedSync
*/
export interface PatchedSync {
/**
*
* @type {number}
* @memberof PatchedSync
*/
readonly id?: number;
/**
*
* @type {number}
* @memberof PatchedSync
*/
storage?: number;
/**
*
* @type {string}
* @memberof PatchedSync
*/
path?: string;
/**
*
* @type {boolean}
* @memberof PatchedSync
*/
active?: boolean;
/**
*
* @type {Date}
* @memberof PatchedSync
*/
lastChecked?: Date | null;
/**
*
* @type {Date}
* @memberof PatchedSync
*/
readonly createdAt?: Date;
/**
*
* @type {Date}
* @memberof PatchedSync
*/
readonly updatedAt?: Date;
}
/**
* Check if a given object implements the PatchedSync interface.
*/
export function instanceOfPatchedSync(value: object): boolean {
let isInstance = true;
return isInstance;
}
export function PatchedSyncFromJSON(json: any): PatchedSync {
return PatchedSyncFromJSONTyped(json, false);
}
export function PatchedSyncFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedSync {
if ((json === undefined) || (json === null)) {
return json;
}
return {
'id': !exists(json, 'id') ? undefined : json['id'],
'storage': !exists(json, 'storage') ? undefined : json['storage'],
'path': !exists(json, 'path') ? undefined : json['path'],
'active': !exists(json, 'active') ? undefined : json['active'],
'lastChecked': !exists(json, 'last_checked') ? undefined : (json['last_checked'] === null ? null : new Date(json['last_checked'])),
'createdAt': !exists(json, 'created_at') ? undefined : (new Date(json['created_at'])),
'updatedAt': !exists(json, 'updated_at') ? undefined : (new Date(json['updated_at'])),
};
}
export function PatchedSyncToJSON(value?: PatchedSync | null): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
'storage': value.storage,
'path': value.path,
'active': value.active,
'last_checked': value.lastChecked === undefined ? undefined : (value.lastChecked === null ? null : value.lastChecked.toISOString()),
};
}