mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 20:28:46 -05:00
general layout improvements
This commit is contained in:
@@ -1239,11 +1239,8 @@ export interface ApiShoppingListEntryDestroyRequest {
|
||||
}
|
||||
|
||||
export interface ApiShoppingListEntryListRequest {
|
||||
checked?: string;
|
||||
id?: number;
|
||||
page?: number;
|
||||
pageSize?: number;
|
||||
supermarket?: number;
|
||||
updatedAfter?: Date;
|
||||
}
|
||||
|
||||
@@ -1620,7 +1617,7 @@ export interface ApiUserPartialUpdateRequest {
|
||||
|
||||
export interface ApiUserPreferencePartialUpdateRequest {
|
||||
user: number;
|
||||
patchedUserPreference?: Omit<PatchedUserPreference, 'food_inherit_default'|'food_children_exist'>;
|
||||
patchedUserPreference?: Omit<PatchedUserPreference, 'user'|'food_inherit_default'|'food_children_exist'>;
|
||||
}
|
||||
|
||||
export interface ApiUserPreferenceRetrieveRequest {
|
||||
@@ -9096,7 +9093,7 @@ export class ApiApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
/**
|
||||
* logs request counts to redis cache total/per user/
|
||||
* individual entries of a shopping list automatically filtered to only contain unchecked items that are not older than the shopping recent days setting to not bloat endpoint
|
||||
*/
|
||||
async apiShoppingListEntryBulkCreateRaw(requestParameters: ApiShoppingListEntryBulkCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ShoppingListEntryBulk>> {
|
||||
if (requestParameters['shoppingListEntryBulk'] == null) {
|
||||
@@ -9128,7 +9125,7 @@ export class ApiApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
/**
|
||||
* logs request counts to redis cache total/per user/
|
||||
* individual entries of a shopping list automatically filtered to only contain unchecked items that are not older than the shopping recent days setting to not bloat endpoint
|
||||
*/
|
||||
async apiShoppingListEntryBulkCreate(requestParameters: ApiShoppingListEntryBulkCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ShoppingListEntryBulk> {
|
||||
const response = await this.apiShoppingListEntryBulkCreateRaw(requestParameters, initOverrides);
|
||||
@@ -9136,7 +9133,7 @@ export class ApiApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
/**
|
||||
* logs request counts to redis cache total/per user/
|
||||
* individual entries of a shopping list automatically filtered to only contain unchecked items that are not older than the shopping recent days setting to not bloat endpoint
|
||||
*/
|
||||
async apiShoppingListEntryCreateRaw(requestParameters: ApiShoppingListEntryCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ShoppingListEntry>> {
|
||||
if (requestParameters['shoppingListEntry'] == null) {
|
||||
@@ -9168,7 +9165,7 @@ export class ApiApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
/**
|
||||
* logs request counts to redis cache total/per user/
|
||||
* individual entries of a shopping list automatically filtered to only contain unchecked items that are not older than the shopping recent days setting to not bloat endpoint
|
||||
*/
|
||||
async apiShoppingListEntryCreate(requestParameters: ApiShoppingListEntryCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ShoppingListEntry> {
|
||||
const response = await this.apiShoppingListEntryCreateRaw(requestParameters, initOverrides);
|
||||
@@ -9176,7 +9173,7 @@ export class ApiApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
/**
|
||||
* logs request counts to redis cache total/per user/
|
||||
* individual entries of a shopping list automatically filtered to only contain unchecked items that are not older than the shopping recent days setting to not bloat endpoint
|
||||
*/
|
||||
async apiShoppingListEntryDestroyRaw(requestParameters: ApiShoppingListEntryDestroyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>> {
|
||||
if (requestParameters['id'] == null) {
|
||||
@@ -9205,26 +9202,18 @@ export class ApiApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
/**
|
||||
* logs request counts to redis cache total/per user/
|
||||
* individual entries of a shopping list automatically filtered to only contain unchecked items that are not older than the shopping recent days setting to not bloat endpoint
|
||||
*/
|
||||
async apiShoppingListEntryDestroy(requestParameters: ApiShoppingListEntryDestroyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void> {
|
||||
await this.apiShoppingListEntryDestroyRaw(requestParameters, initOverrides);
|
||||
}
|
||||
|
||||
/**
|
||||
* logs request counts to redis cache total/per user/
|
||||
* individual entries of a shopping list automatically filtered to only contain unchecked items that are not older than the shopping recent days setting to not bloat endpoint
|
||||
*/
|
||||
async apiShoppingListEntryListRaw(requestParameters: ApiShoppingListEntryListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PaginatedShoppingListEntryList>> {
|
||||
const queryParameters: any = {};
|
||||
|
||||
if (requestParameters['checked'] != null) {
|
||||
queryParameters['checked'] = requestParameters['checked'];
|
||||
}
|
||||
|
||||
if (requestParameters['id'] != null) {
|
||||
queryParameters['id'] = requestParameters['id'];
|
||||
}
|
||||
|
||||
if (requestParameters['page'] != null) {
|
||||
queryParameters['page'] = requestParameters['page'];
|
||||
}
|
||||
@@ -9233,10 +9222,6 @@ export class ApiApi extends runtime.BaseAPI {
|
||||
queryParameters['page_size'] = requestParameters['pageSize'];
|
||||
}
|
||||
|
||||
if (requestParameters['supermarket'] != null) {
|
||||
queryParameters['supermarket'] = requestParameters['supermarket'];
|
||||
}
|
||||
|
||||
if (requestParameters['updatedAfter'] != null) {
|
||||
queryParameters['updated_after'] = (requestParameters['updatedAfter'] as any).toISOString();
|
||||
}
|
||||
@@ -9258,7 +9243,7 @@ export class ApiApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
/**
|
||||
* logs request counts to redis cache total/per user/
|
||||
* individual entries of a shopping list automatically filtered to only contain unchecked items that are not older than the shopping recent days setting to not bloat endpoint
|
||||
*/
|
||||
async apiShoppingListEntryList(requestParameters: ApiShoppingListEntryListRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedShoppingListEntryList> {
|
||||
const response = await this.apiShoppingListEntryListRaw(requestParameters, initOverrides);
|
||||
@@ -9266,7 +9251,7 @@ export class ApiApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
/**
|
||||
* logs request counts to redis cache total/per user/
|
||||
* individual entries of a shopping list automatically filtered to only contain unchecked items that are not older than the shopping recent days setting to not bloat endpoint
|
||||
*/
|
||||
async apiShoppingListEntryPartialUpdateRaw(requestParameters: ApiShoppingListEntryPartialUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ShoppingListEntry>> {
|
||||
if (requestParameters['id'] == null) {
|
||||
@@ -9298,7 +9283,7 @@ export class ApiApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
/**
|
||||
* logs request counts to redis cache total/per user/
|
||||
* individual entries of a shopping list automatically filtered to only contain unchecked items that are not older than the shopping recent days setting to not bloat endpoint
|
||||
*/
|
||||
async apiShoppingListEntryPartialUpdate(requestParameters: ApiShoppingListEntryPartialUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ShoppingListEntry> {
|
||||
const response = await this.apiShoppingListEntryPartialUpdateRaw(requestParameters, initOverrides);
|
||||
@@ -9306,7 +9291,7 @@ export class ApiApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
/**
|
||||
* logs request counts to redis cache total/per user/
|
||||
* individual entries of a shopping list automatically filtered to only contain unchecked items that are not older than the shopping recent days setting to not bloat endpoint
|
||||
*/
|
||||
async apiShoppingListEntryRetrieveRaw(requestParameters: ApiShoppingListEntryRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ShoppingListEntry>> {
|
||||
if (requestParameters['id'] == null) {
|
||||
@@ -9335,7 +9320,7 @@ export class ApiApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
/**
|
||||
* logs request counts to redis cache total/per user/
|
||||
* individual entries of a shopping list automatically filtered to only contain unchecked items that are not older than the shopping recent days setting to not bloat endpoint
|
||||
*/
|
||||
async apiShoppingListEntryRetrieve(requestParameters: ApiShoppingListEntryRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ShoppingListEntry> {
|
||||
const response = await this.apiShoppingListEntryRetrieveRaw(requestParameters, initOverrides);
|
||||
@@ -9343,7 +9328,7 @@ export class ApiApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
/**
|
||||
* logs request counts to redis cache total/per user/
|
||||
* individual entries of a shopping list automatically filtered to only contain unchecked items that are not older than the shopping recent days setting to not bloat endpoint
|
||||
*/
|
||||
async apiShoppingListEntryUpdateRaw(requestParameters: ApiShoppingListEntryUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ShoppingListEntry>> {
|
||||
if (requestParameters['id'] == null) {
|
||||
@@ -9382,7 +9367,7 @@ export class ApiApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
/**
|
||||
* logs request counts to redis cache total/per user/
|
||||
* individual entries of a shopping list automatically filtered to only contain unchecked items that are not older than the shopping recent days setting to not bloat endpoint
|
||||
*/
|
||||
async apiShoppingListEntryUpdate(requestParameters: ApiShoppingListEntryUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ShoppingListEntry> {
|
||||
const response = await this.apiShoppingListEntryUpdateRaw(requestParameters, initOverrides);
|
||||
|
||||
@@ -64,10 +64,10 @@ import {
|
||||
export interface PatchedUserPreference {
|
||||
/**
|
||||
*
|
||||
* @type {number}
|
||||
* @type {User}
|
||||
* @memberof PatchedUserPreference
|
||||
*/
|
||||
user?: number;
|
||||
readonly user?: User;
|
||||
/**
|
||||
*
|
||||
* @type {UserFileView}
|
||||
@@ -257,7 +257,7 @@ export function PatchedUserPreferenceFromJSONTyped(json: any, ignoreDiscriminato
|
||||
}
|
||||
return {
|
||||
|
||||
'user': json['user'] == null ? undefined : json['user'],
|
||||
'user': json['user'] == null ? undefined : UserFromJSON(json['user']),
|
||||
'image': json['image'] == null ? undefined : UserFileViewFromJSON(json['image']),
|
||||
'theme': json['theme'] == null ? undefined : ThemeEnumFromJSON(json['theme']),
|
||||
'navBgColor': json['nav_bg_color'] == null ? undefined : json['nav_bg_color'],
|
||||
@@ -293,14 +293,13 @@ export function PatchedUserPreferenceToJSON(json: any): PatchedUserPreference {
|
||||
return PatchedUserPreferenceToJSONTyped(json, false);
|
||||
}
|
||||
|
||||
export function PatchedUserPreferenceToJSONTyped(value?: Omit<PatchedUserPreference, 'food_inherit_default'|'food_children_exist'> | null, ignoreDiscriminator: boolean = false): any {
|
||||
export function PatchedUserPreferenceToJSONTyped(value?: Omit<PatchedUserPreference, 'user'|'food_inherit_default'|'food_children_exist'> | null, ignoreDiscriminator: boolean = false): any {
|
||||
if (value == null) {
|
||||
return value;
|
||||
}
|
||||
|
||||
return {
|
||||
|
||||
'user': value['user'],
|
||||
'image': UserFileViewToJSON(value['image']),
|
||||
'theme': ThemeEnumToJSON(value['theme']),
|
||||
'nav_bg_color': value['navBgColor'],
|
||||
|
||||
@@ -67,6 +67,12 @@ export interface ServerSettings {
|
||||
* @memberof ServerSettings
|
||||
*/
|
||||
debug: boolean;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ServerSettings
|
||||
*/
|
||||
version: string;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -81,6 +87,7 @@ export function instanceOfServerSettings(value: object): value is ServerSettings
|
||||
if (!('imprintUrl' in value) || value['imprintUrl'] === undefined) return false;
|
||||
if (!('hosted' in value) || value['hosted'] === undefined) return false;
|
||||
if (!('debug' in value) || value['debug'] === undefined) return false;
|
||||
if (!('version' in value) || value['version'] === undefined) return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -102,6 +109,7 @@ export function ServerSettingsFromJSONTyped(json: any, ignoreDiscriminator: bool
|
||||
'imprintUrl': json['imprint_url'],
|
||||
'hosted': json['hosted'],
|
||||
'debug': json['debug'],
|
||||
'version': json['version'],
|
||||
};
|
||||
}
|
||||
|
||||
@@ -124,6 +132,7 @@ export function ServerSettingsToJSONTyped(value?: ServerSettings | null, ignoreD
|
||||
'imprint_url': value['imprintUrl'],
|
||||
'hosted': value['hosted'],
|
||||
'debug': value['debug'],
|
||||
'version': value['version'],
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -64,10 +64,10 @@ import {
|
||||
export interface UserPreference {
|
||||
/**
|
||||
*
|
||||
* @type {number}
|
||||
* @type {User}
|
||||
* @memberof UserPreference
|
||||
*/
|
||||
user: number;
|
||||
readonly user: User;
|
||||
/**
|
||||
*
|
||||
* @type {UserFileView}
|
||||
@@ -260,7 +260,7 @@ export function UserPreferenceFromJSONTyped(json: any, ignoreDiscriminator: bool
|
||||
}
|
||||
return {
|
||||
|
||||
'user': json['user'],
|
||||
'user': UserFromJSON(json['user']),
|
||||
'image': json['image'] == null ? undefined : UserFileViewFromJSON(json['image']),
|
||||
'theme': json['theme'] == null ? undefined : ThemeEnumFromJSON(json['theme']),
|
||||
'navBgColor': json['nav_bg_color'] == null ? undefined : json['nav_bg_color'],
|
||||
@@ -296,14 +296,13 @@ export function UserPreferenceToJSON(json: any): UserPreference {
|
||||
return UserPreferenceToJSONTyped(json, false);
|
||||
}
|
||||
|
||||
export function UserPreferenceToJSONTyped(value?: Omit<UserPreference, 'food_inherit_default'|'food_children_exist'> | null, ignoreDiscriminator: boolean = false): any {
|
||||
export function UserPreferenceToJSONTyped(value?: Omit<UserPreference, 'user'|'food_inherit_default'|'food_children_exist'> | null, ignoreDiscriminator: boolean = false): any {
|
||||
if (value == null) {
|
||||
return value;
|
||||
}
|
||||
|
||||
return {
|
||||
|
||||
'user': value['user'],
|
||||
'image': UserFileViewToJSON(value['image']),
|
||||
'theme': ThemeEnumToJSON(value['theme']),
|
||||
'nav_bg_color': value['navBgColor'],
|
||||
|
||||
Reference in New Issue
Block a user