|
|
@@ -2217,8 +2217,17 @@ export type JobQueue = {
|
|
|
running: Scalars['Boolean']['output'];
|
|
|
};
|
|
|
|
|
|
-export type JobQueueConfig = {
|
|
|
- __typename?: 'JobQueueConfig';
|
|
|
+export type JobQueueInfo = {
|
|
|
+ __typename?: 'JobQueueInfo';
|
|
|
+ /**
|
|
|
+ * Whether the JobQueue is inspectable, i.e. it is possible to fetch
|
|
|
+ * information about jobs and their state.
|
|
|
+ */
|
|
|
+ isInspectable: Scalars['Boolean']['output'];
|
|
|
+ /**
|
|
|
+ * Whether the JobQueue supports listing all queues at once. If this is false,
|
|
|
+ * then the `jobs` query must have a `queueName` filter set.
|
|
|
+ */
|
|
|
supportsListAllQueues: Scalars['Boolean']['output'];
|
|
|
};
|
|
|
|
|
|
@@ -5826,7 +5835,7 @@ export type ServerConfig = {
|
|
|
*/
|
|
|
customFieldConfig: CustomFields;
|
|
|
entityCustomFields: Array<EntityCustomFields>;
|
|
|
- jobQueue: JobQueueConfig;
|
|
|
+ jobQueue: JobQueueInfo;
|
|
|
moneyStrategyPrecision: Scalars['Int']['output'];
|
|
|
orderProcess: Array<OrderProcessState>;
|
|
|
permissions: Array<PermissionDefinition>;
|