@experts_hub/shared 1.0.647 → 1.0.648

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/dist/index.d.mts CHANGED
@@ -2206,7 +2206,8 @@ declare enum JobStatus {
2206
2206
  OPEN = "OPEN",
2207
2207
  DRAFT = "DRAFT",
2208
2208
  ONHOLD = "ONHOLD",
2209
- CLOSED = "CLOSED"
2209
+ CLOSED = "CLOSED",
2210
+ COMPLETED = "COMPLETED"
2210
2211
  }
2211
2212
  declare class JobStatusDto {
2212
2213
  status: JobStatus;
package/dist/index.d.ts CHANGED
@@ -2206,7 +2206,8 @@ declare enum JobStatus {
2206
2206
  OPEN = "OPEN",
2207
2207
  DRAFT = "DRAFT",
2208
2208
  ONHOLD = "ONHOLD",
2209
- CLOSED = "CLOSED"
2209
+ CLOSED = "CLOSED",
2210
+ COMPLETED = "COMPLETED"
2210
2211
  }
2211
2212
  declare class JobStatusDto {
2212
2213
  status: JobStatus;
package/dist/index.js CHANGED
@@ -6720,6 +6720,7 @@ var JobStatus = /* @__PURE__ */ ((JobStatus2) => {
6720
6720
  JobStatus2["DRAFT"] = "DRAFT";
6721
6721
  JobStatus2["ONHOLD"] = "ONHOLD";
6722
6722
  JobStatus2["CLOSED"] = "CLOSED";
6723
+ JobStatus2["COMPLETED"] = "COMPLETED";
6723
6724
  return JobStatus2;
6724
6725
  })(JobStatus || {});
6725
6726
  var JobStatusDto = class {
package/dist/index.mjs CHANGED
@@ -6615,6 +6615,7 @@ var JobStatus = /* @__PURE__ */ ((JobStatus2) => {
6615
6615
  JobStatus2["DRAFT"] = "DRAFT";
6616
6616
  JobStatus2["ONHOLD"] = "ONHOLD";
6617
6617
  JobStatus2["CLOSED"] = "CLOSED";
6618
+ JobStatus2["COMPLETED"] = "COMPLETED";
6618
6619
  return JobStatus2;
6619
6620
  })(JobStatus || {});
6620
6621
  var JobStatusDto = class {
@@ -3,7 +3,8 @@ export declare enum JobStatus {
3
3
  OPEN = "OPEN",
4
4
  DRAFT = "DRAFT",
5
5
  ONHOLD = "ONHOLD",
6
- CLOSED = "CLOSED"
6
+ CLOSED = "CLOSED",
7
+ COMPLETED = "COMPLETED"
7
8
  }
8
9
  export declare class JobStatusDto {
9
10
  status: JobStatus;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.647",
3
+ "version": "1.0.648",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",