You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/routes/readQueues.ts
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ export async function readQueuesRoute(app: FastifyInstance) {
67
67
{
68
68
schema: {
69
69
summary: 'Add job to a queue',
70
-
description: 'Enqueue one or more URLs into the specified queue. Optional flags include autoApprove and forceReindex (alias: force-reindex).',
70
+
description: 'Enqueue one or more URLs into the specified queue. Optional flags include autoApprove, replaceAllEmissions and forceReindex (alias: force-reindex).',
71
71
tags: ['Queues'],
72
72
params: readQueuePathParamsSchema,
73
73
body: addQueueJobBodySchema,
@@ -88,7 +88,7 @@ export async function readQueuesRoute(app: FastifyInstance) {
forceReindex: z.boolean().optional().describe('Re-index markdown even if already indexed'),
32
32
threadId: z.string().optional(),
33
+
replaceAllEmissions: z.boolean().optional().default(false).describe('Replace all scope 1,2,3 emissions and totals (delete old ones from all periods) before adding new ones')
0 commit comments