@experts_hub/shared 1.0.416 → 1.0.418

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
@@ -546,7 +546,7 @@ declare enum NatureOfWorkDto {
546
546
  declare enum ModeOfWorkDto {
547
547
  ONSITE = "ONSITE",
548
548
  REMOTE = "REMOTE",
549
- BOTH = "BOTH"
549
+ HYBRID = "HYBRID"
550
550
  }
551
551
  declare class UpdateFreelancerProfileDto {
552
552
  firstName: string;
package/dist/index.d.ts CHANGED
@@ -546,7 +546,7 @@ declare enum NatureOfWorkDto {
546
546
  declare enum ModeOfWorkDto {
547
547
  ONSITE = "ONSITE",
548
548
  REMOTE = "REMOTE",
549
- BOTH = "BOTH"
549
+ HYBRID = "HYBRID"
550
550
  }
551
551
  declare class UpdateFreelancerProfileDto {
552
552
  firstName: string;
package/dist/index.js CHANGED
@@ -1410,7 +1410,7 @@ var NatureOfWorkDto = /* @__PURE__ */ ((NatureOfWorkDto2) => {
1410
1410
  var ModeOfWorkDto = /* @__PURE__ */ ((ModeOfWorkDto2) => {
1411
1411
  ModeOfWorkDto2["ONSITE"] = "ONSITE";
1412
1412
  ModeOfWorkDto2["REMOTE"] = "REMOTE";
1413
- ModeOfWorkDto2["BOTH"] = "BOTH";
1413
+ ModeOfWorkDto2["HYBRID"] = "HYBRID";
1414
1414
  return ModeOfWorkDto2;
1415
1415
  })(ModeOfWorkDto || {});
1416
1416
  var UpdateFreelancerProfileDto = class {
@@ -2078,7 +2078,7 @@ __decorateClass([
2078
2078
  type: "decimal",
2079
2079
  precision: 4,
2080
2080
  scale: 2,
2081
- default: 0
2081
+ nullable: true
2082
2082
  })
2083
2083
  ], FreelancerProfile.prototype, "numberOfHours", 2);
2084
2084
  __decorateClass([
@@ -2274,7 +2274,7 @@ __decorateClass([
2274
2274
  type: "decimal",
2275
2275
  precision: 4,
2276
2276
  scale: 2,
2277
- default: 0
2277
+ nullable: true
2278
2278
  })
2279
2279
  ], CompanyProfile.prototype, "numberOfHours", 2);
2280
2280
  __decorateClass([
package/dist/index.mjs CHANGED
@@ -1226,7 +1226,7 @@ var NatureOfWorkDto = /* @__PURE__ */ ((NatureOfWorkDto2) => {
1226
1226
  var ModeOfWorkDto = /* @__PURE__ */ ((ModeOfWorkDto2) => {
1227
1227
  ModeOfWorkDto2["ONSITE"] = "ONSITE";
1228
1228
  ModeOfWorkDto2["REMOTE"] = "REMOTE";
1229
- ModeOfWorkDto2["BOTH"] = "BOTH";
1229
+ ModeOfWorkDto2["HYBRID"] = "HYBRID";
1230
1230
  return ModeOfWorkDto2;
1231
1231
  })(ModeOfWorkDto || {});
1232
1232
  var UpdateFreelancerProfileDto = class {
@@ -1964,7 +1964,7 @@ __decorateClass([
1964
1964
  type: "decimal",
1965
1965
  precision: 4,
1966
1966
  scale: 2,
1967
- default: 0
1967
+ nullable: true
1968
1968
  })
1969
1969
  ], FreelancerProfile.prototype, "numberOfHours", 2);
1970
1970
  __decorateClass([
@@ -2160,7 +2160,7 @@ __decorateClass([
2160
2160
  type: "decimal",
2161
2161
  precision: 4,
2162
2162
  scale: 2,
2163
- default: 0
2163
+ nullable: true
2164
2164
  })
2165
2165
  ], CompanyProfile.prototype, "numberOfHours", 2);
2166
2166
  __decorateClass([
@@ -5,7 +5,7 @@ export declare enum NatureOfWorkDto {
5
5
  export declare enum ModeOfWorkDto {
6
6
  ONSITE = "ONSITE",
7
7
  REMOTE = "REMOTE",
8
- BOTH = "BOTH"
8
+ HYBRID = "HYBRID"
9
9
  }
10
10
  export declare class UpdateFreelancerProfileDto {
11
11
  firstName: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.416",
3
+ "version": "1.0.418",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",