Skip to content

Commit 5bad4ff

Browse files
committed
chore: rename parser to strings
Signed-off-by: ferhat elmas <elmas.ferhat@gmail.com>
1 parent a55cde0 commit 5bad4ff

11 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/http/routes/admin/queue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { parseCommaSeparatedList } from '@internal/parser'
21
import { SYSTEM_TENANT } from '@internal/queue/constants'
32
import {
43
JOB_OVERFLOW_LIST_LIMIT_DEFAULT,
54
JOB_OVERFLOW_RESTORE_LIMIT_DEFAULT,
65
QueueOverflowStorePg,
76
} from '@internal/queue/overflow'
87
import { Queue } from '@internal/queue/queue'
8+
import { parseCommaSeparatedList } from '@internal/strings'
99
import { MoveJobs } from '@storage/events'
1010
import { FastifyInstance, RequestGenericInterface } from 'fastify'
1111
import { FromSchema } from 'json-schema-to-ts'

src/internal/queue/overflow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { normalizeStringList } from '@internal/parser'
1+
import { normalizeStringList } from '@internal/strings'
22
import type { QueryResultRow } from 'pg'
33
import type { PgExecutor, PgTransaction, PgTransactionalExecutor } from '../database/pg-connection'
44
import { quoteQualifiedIdentifier } from '../database/sql'

src/scripts/jobs-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
parseCommaSeparatedList,
33
parseOptionalBoolean,
44
parsePositiveInteger,
5-
} from '@internal/parser'
5+
} from '@internal/strings'
66

77
type JobsAction = 'backup' | 'list' | 'restore'
88
type JobsGroupBy = 'summary' | 'tenant'

0 commit comments

Comments
 (0)