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