@strav/queue 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strav/queue",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "description": "Background job processing and task scheduling for the Strav framework",
6
6
  "license": "MIT",
@@ -1,5 +1,5 @@
1
- import ServiceProvider from '@stravigor/kernel/core/service_provider'
2
- import type Application from '@stravigor/kernel/core/application'
1
+ import ServiceProvider from '@strav/kernel/core/service_provider'
2
+ import type Application from '@strav/kernel/core/application'
3
3
  import Queue from '../queue/queue.ts'
4
4
 
5
5
  export interface QueueProviderOptions {
@@ -1,8 +1,8 @@
1
- import { inject } from '@stravigor/kernel/core/inject'
2
- import Configuration from '@stravigor/kernel/config/configuration'
3
- import Database from '@stravigor/database/database/database'
4
- import Emitter from '@stravigor/kernel/events/emitter'
5
- import { ConfigurationError } from '@stravigor/kernel/exceptions/errors'
1
+ import { inject } from '@strav/kernel/core/inject'
2
+ import Configuration from '@strav/kernel/config/configuration'
3
+ import Database from '@strav/database/database/database'
4
+ import Emitter from '@strav/kernel/events/emitter'
5
+ import { ConfigurationError } from '@strav/kernel/exceptions/errors'
6
6
 
7
7
  export interface JobOptions {
8
8
  queue?: string
@@ -1,5 +1,5 @@
1
1
  import Queue, { hydrateJob } from './queue.ts'
2
- import Emitter from '@stravigor/kernel/events/emitter'
2
+ import Emitter from '@strav/kernel/events/emitter'
3
3
  import type { JobRecord, JobMeta } from './queue.ts'
4
4
 
5
5
  export interface WorkerOptions {