@experts_hub/shared 1.0.712 → 1.0.715

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.
@@ -39,6 +39,8 @@ export declare class Invoice extends BaseEntity {
39
39
  billingHours: string;
40
40
  hourlyRate: string;
41
41
  billingAmount: string;
42
+ billingMarkUpAmount: string;
43
+ billingMarkUpPercentage: string;
42
44
  invoiceType: InvoiceTypeEnum;
43
45
  status: InvoiceStatusEnum;
44
46
  paymentStatus: InvoicePaymentStatusEnum;
@@ -114,6 +114,7 @@ export declare class Job extends BaseEntity {
114
114
  viewedCount: number;
115
115
  applicationCount: number;
116
116
  isContractSigned: boolean;
117
+ isJobCreatedAsIs: boolean;
117
118
  isInterviewCreated: boolean;
118
119
  isJobCreatedViaAI: boolean;
119
120
  interviewInvites: InterviewInvite[];
package/dist/index.d.mts CHANGED
@@ -1078,6 +1078,8 @@ declare class Invoice extends BaseEntity {
1078
1078
  billingHours: string;
1079
1079
  hourlyRate: string;
1080
1080
  billingAmount: string;
1081
+ billingMarkUpAmount: string;
1082
+ billingMarkUpPercentage: string;
1081
1083
  invoiceType: InvoiceTypeEnum;
1082
1084
  status: InvoiceStatusEnum;
1083
1085
  paymentStatus: InvoicePaymentStatusEnum;
@@ -1502,6 +1504,7 @@ declare class Job extends BaseEntity {
1502
1504
  viewedCount: number;
1503
1505
  applicationCount: number;
1504
1506
  isContractSigned: boolean;
1507
+ isJobCreatedAsIs: boolean;
1505
1508
  isInterviewCreated: boolean;
1506
1509
  isJobCreatedViaAI: boolean;
1507
1510
  interviewInvites: InterviewInvite[];
package/dist/index.d.ts CHANGED
@@ -1078,6 +1078,8 @@ declare class Invoice extends BaseEntity {
1078
1078
  billingHours: string;
1079
1079
  hourlyRate: string;
1080
1080
  billingAmount: string;
1081
+ billingMarkUpAmount: string;
1082
+ billingMarkUpPercentage: string;
1081
1083
  invoiceType: InvoiceTypeEnum;
1082
1084
  status: InvoiceStatusEnum;
1083
1085
  paymentStatus: InvoicePaymentStatusEnum;
@@ -1502,6 +1504,7 @@ declare class Job extends BaseEntity {
1502
1504
  viewedCount: number;
1503
1505
  applicationCount: number;
1504
1506
  isContractSigned: boolean;
1507
+ isJobCreatedAsIs: boolean;
1505
1508
  isInterviewCreated: boolean;
1506
1509
  isJobCreatedViaAI: boolean;
1507
1510
  interviewInvites: InterviewInvite[];
package/dist/index.js CHANGED
@@ -3898,6 +3898,12 @@ __decorateClass([
3898
3898
  __decorateClass([
3899
3899
  (0, import_typeorm28.Column)({ name: "billing_amount", type: "varchar", nullable: true })
3900
3900
  ], Invoice.prototype, "billingAmount", 2);
3901
+ __decorateClass([
3902
+ (0, import_typeorm28.Column)({ name: "billing_mark_up_amount", type: "varchar", nullable: true })
3903
+ ], Invoice.prototype, "billingMarkUpAmount", 2);
3904
+ __decorateClass([
3905
+ (0, import_typeorm28.Column)({ name: "billing_mark_up_percentage", type: "varchar", nullable: true })
3906
+ ], Invoice.prototype, "billingMarkUpPercentage", 2);
3901
3907
  __decorateClass([
3902
3908
  (0, import_typeorm28.Column)({ name: "invoice_type", type: "enum", enum: InvoiceTypeEnum, nullable: true })
3903
3909
  ], Invoice.prototype, "invoiceType", 2);
@@ -5222,6 +5228,9 @@ __decorateClass([
5222
5228
  __decorateClass([
5223
5229
  (0, import_typeorm43.Column)({ name: "is_contract_signed", type: "boolean", default: false })
5224
5230
  ], Job.prototype, "isContractSigned", 2);
5231
+ __decorateClass([
5232
+ (0, import_typeorm43.Column)({ name: "is_job_created_as_is", type: "boolean", default: false })
5233
+ ], Job.prototype, "isJobCreatedAsIs", 2);
5225
5234
  __decorateClass([
5226
5235
  (0, import_typeorm43.Column)({ name: "is_interview_created", type: "boolean", default: false })
5227
5236
  ], Job.prototype, "isInterviewCreated", 2);
package/dist/index.mjs CHANGED
@@ -3585,6 +3585,12 @@ __decorateClass([
3585
3585
  __decorateClass([
3586
3586
  Column28({ name: "billing_amount", type: "varchar", nullable: true })
3587
3587
  ], Invoice.prototype, "billingAmount", 2);
3588
+ __decorateClass([
3589
+ Column28({ name: "billing_mark_up_amount", type: "varchar", nullable: true })
3590
+ ], Invoice.prototype, "billingMarkUpAmount", 2);
3591
+ __decorateClass([
3592
+ Column28({ name: "billing_mark_up_percentage", type: "varchar", nullable: true })
3593
+ ], Invoice.prototype, "billingMarkUpPercentage", 2);
3588
3594
  __decorateClass([
3589
3595
  Column28({ name: "invoice_type", type: "enum", enum: InvoiceTypeEnum, nullable: true })
3590
3596
  ], Invoice.prototype, "invoiceType", 2);
@@ -4915,6 +4921,9 @@ __decorateClass([
4915
4921
  __decorateClass([
4916
4922
  Column43({ name: "is_contract_signed", type: "boolean", default: false })
4917
4923
  ], Job.prototype, "isContractSigned", 2);
4924
+ __decorateClass([
4925
+ Column43({ name: "is_job_created_as_is", type: "boolean", default: false })
4926
+ ], Job.prototype, "isJobCreatedAsIs", 2);
4918
4927
  __decorateClass([
4919
4928
  Column43({ name: "is_interview_created", type: "boolean", default: false })
4920
4929
  ], Job.prototype, "isInterviewCreated", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.712",
3
+ "version": "1.0.715",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",