@experts_hub/shared 1.0.441 → 1.0.442

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.
@@ -28,6 +28,7 @@ export declare class Contract extends BaseEntity {
28
28
  duration: number;
29
29
  status: ContractStatusEnum;
30
30
  type: ContractTypeEnum;
31
+ invoicingCycle: string;
31
32
  startDate: Date;
32
33
  endDate: Date;
33
34
  originalDocumentUrl: string;
package/dist/index.d.mts CHANGED
@@ -1098,6 +1098,7 @@ declare class Contract extends BaseEntity {
1098
1098
  duration: number;
1099
1099
  status: ContractStatusEnum;
1100
1100
  type: ContractTypeEnum;
1101
+ invoicingCycle: string;
1101
1102
  startDate: Date;
1102
1103
  endDate: Date;
1103
1104
  originalDocumentUrl: string;
package/dist/index.d.ts CHANGED
@@ -1098,6 +1098,7 @@ declare class Contract extends BaseEntity {
1098
1098
  duration: number;
1099
1099
  status: ContractStatusEnum;
1100
1100
  type: ContractTypeEnum;
1101
+ invoicingCycle: string;
1101
1102
  startDate: Date;
1102
1103
  endDate: Date;
1103
1104
  originalDocumentUrl: string;
package/dist/index.js CHANGED
@@ -3175,6 +3175,9 @@ __decorateClass([
3175
3175
  nullable: true
3176
3176
  })
3177
3177
  ], Contract.prototype, "type", 2);
3178
+ __decorateClass([
3179
+ (0, import_typeorm22.Column)({ name: "invoicing_cycle", type: "varchar", nullable: true })
3180
+ ], Contract.prototype, "invoicingCycle", 2);
3178
3181
  __decorateClass([
3179
3182
  (0, import_typeorm22.Column)({
3180
3183
  name: "start_date",
package/dist/index.mjs CHANGED
@@ -3103,6 +3103,9 @@ __decorateClass([
3103
3103
  nullable: true
3104
3104
  })
3105
3105
  ], Contract.prototype, "type", 2);
3106
+ __decorateClass([
3107
+ Column22({ name: "invoicing_cycle", type: "varchar", nullable: true })
3108
+ ], Contract.prototype, "invoicingCycle", 2);
3106
3109
  __decorateClass([
3107
3110
  Column22({
3108
3111
  name: "start_date",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.441",
3
+ "version": "1.0.442",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",