aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-watcher/src/schemas/order_watcher_partial_config_schema.ts
blob: 8bfced063adecea46ea8917a7b1c110fa8218d7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
export const orderWatcherPartialConfigSchema = {
    id: '/OrderWatcherPartialConfigSchema',
    properties: {
        stateLayer: { $ref: '/blockParamSchema' },
        orderExpirationCheckingIntervalMs: { type: 'number' },
        eventPollingIntervalMs: { type: 'number' },
        expirationMarginMs: { type: 'number' },
        cleanupJobIntervalMs: { type: 'number' },
        isVerbose: { type: 'boolean' },
    },
    type: 'object',
    required: [],
};