b2m-utils 0.0.247 → 0.0.248

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.
@@ -0,0 +1,13 @@
1
+ export type ProcessedJobStatus = 'processing' | 'completed' | 'failed';
2
+ export type ProcessedJob = {
3
+ id: number;
4
+ messageId: string;
5
+ queueName: string;
6
+ status: ProcessedJobStatus;
7
+ startedAt: string;
8
+ completedAt?: string;
9
+ metadata?: any;
10
+ errorMessage?: string;
11
+ createdAt: string;
12
+ };
13
+ export default ProcessedJob;
@@ -130,6 +130,8 @@ export * from './Permission';
130
130
  export { default as Permission } from './Permission';
131
131
  export * from './ProcessFreightForwarder';
132
132
  export { default as ProcessFreightForwarder } from './ProcessFreightForwarder';
133
+ export * from './ProcessedJob';
134
+ export { default as ProcessedJob } from './ProcessedJob';
133
135
  export * from './Ratecard';
134
136
  export { default as Ratecard } from './Ratecard';
135
137
  export * from './RatecardConditionalFee';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.247",
3
+ "version": "0.0.248",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",