1
0
mirror of https://git.boykissers.com/pawkey/pawkey-sk.git synced 2025-12-20 04:04:16 +00:00

add missing state to types

This commit is contained in:
Marie
2025-05-08 11:46:21 +02:00
parent 239bfd3b62
commit 8635365b8f

View File

@@ -9578,7 +9578,7 @@ export type operations = {
'application/json': {
/** @enum {string} */
queue: 'system' | 'endedPollNotification' | 'deliver' | 'inbox' | 'db' | 'relationship' | 'objectStorage' | 'userWebhookDeliver' | 'systemWebhookDeliver';
state: ('active' | 'wait' | 'delayed' | 'completed' | 'failed')[];
state: ('active' | 'paused' | 'wait' | 'delayed' | 'completed' | 'failed')[];
search?: string;
};
};
@@ -17529,6 +17529,8 @@ export type operations = {
sort?: '+createdAt' | '-createdAt' | '+name' | '-name' | '+size' | '-size' | null;
/** @default */
searchQuery?: string;
/** @default false */
showAll?: boolean;
};
};
};