@experts_hub/shared 1.0.388 → 1.0.389
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/entities/timesheets.entity.d.ts +4 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +12 -0
- package/dist/index.mjs +12 -0
- package/package.json +1 -1
|
@@ -26,6 +26,10 @@ export declare class Timesheet extends BaseEntity {
|
|
|
26
26
|
description: string;
|
|
27
27
|
weekStartDate: Date;
|
|
28
28
|
weekEndDate: Date;
|
|
29
|
+
rejectedAt: Date;
|
|
30
|
+
submittedAt: Date;
|
|
31
|
+
resubmittedAt: Date;
|
|
32
|
+
approvedAt: Date;
|
|
29
33
|
status: TimesheetStatusEnum;
|
|
30
34
|
clientSendBackReason: string;
|
|
31
35
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -1098,6 +1098,10 @@ declare class Timesheet extends BaseEntity {
|
|
|
1098
1098
|
description: string;
|
|
1099
1099
|
weekStartDate: Date;
|
|
1100
1100
|
weekEndDate: Date;
|
|
1101
|
+
rejectedAt: Date;
|
|
1102
|
+
submittedAt: Date;
|
|
1103
|
+
resubmittedAt: Date;
|
|
1104
|
+
approvedAt: Date;
|
|
1101
1105
|
status: TimesheetStatusEnum;
|
|
1102
1106
|
clientSendBackReason: string;
|
|
1103
1107
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1098,6 +1098,10 @@ declare class Timesheet extends BaseEntity {
|
|
|
1098
1098
|
description: string;
|
|
1099
1099
|
weekStartDate: Date;
|
|
1100
1100
|
weekEndDate: Date;
|
|
1101
|
+
rejectedAt: Date;
|
|
1102
|
+
submittedAt: Date;
|
|
1103
|
+
resubmittedAt: Date;
|
|
1104
|
+
approvedAt: Date;
|
|
1101
1105
|
status: TimesheetStatusEnum;
|
|
1102
1106
|
clientSendBackReason: string;
|
|
1103
1107
|
}
|
package/dist/index.js
CHANGED
|
@@ -3171,6 +3171,18 @@ __decorateClass([
|
|
|
3171
3171
|
__decorateClass([
|
|
3172
3172
|
(0, import_typeorm22.Column)({ name: "week_end_date", type: "date", nullable: true })
|
|
3173
3173
|
], Timesheet.prototype, "weekEndDate", 2);
|
|
3174
|
+
__decorateClass([
|
|
3175
|
+
(0, import_typeorm22.Column)({ name: "rejected_at", type: "timestamp with time zone", nullable: true })
|
|
3176
|
+
], Timesheet.prototype, "rejectedAt", 2);
|
|
3177
|
+
__decorateClass([
|
|
3178
|
+
(0, import_typeorm22.Column)({ name: "submitted_at", type: "timestamp with time zone", nullable: true })
|
|
3179
|
+
], Timesheet.prototype, "submittedAt", 2);
|
|
3180
|
+
__decorateClass([
|
|
3181
|
+
(0, import_typeorm22.Column)({ name: "resubmiited_at", type: "timestamp with time zone", nullable: true })
|
|
3182
|
+
], Timesheet.prototype, "resubmittedAt", 2);
|
|
3183
|
+
__decorateClass([
|
|
3184
|
+
(0, import_typeorm22.Column)({ name: "approved_at", type: "timestamp with time zone", nullable: true })
|
|
3185
|
+
], Timesheet.prototype, "approvedAt", 2);
|
|
3174
3186
|
__decorateClass([
|
|
3175
3187
|
(0, import_typeorm22.Column)({ name: "status", type: "enum", enum: TimesheetStatusEnum, nullable: true })
|
|
3176
3188
|
], Timesheet.prototype, "status", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -3105,6 +3105,18 @@ __decorateClass([
|
|
|
3105
3105
|
__decorateClass([
|
|
3106
3106
|
Column22({ name: "week_end_date", type: "date", nullable: true })
|
|
3107
3107
|
], Timesheet.prototype, "weekEndDate", 2);
|
|
3108
|
+
__decorateClass([
|
|
3109
|
+
Column22({ name: "rejected_at", type: "timestamp with time zone", nullable: true })
|
|
3110
|
+
], Timesheet.prototype, "rejectedAt", 2);
|
|
3111
|
+
__decorateClass([
|
|
3112
|
+
Column22({ name: "submitted_at", type: "timestamp with time zone", nullable: true })
|
|
3113
|
+
], Timesheet.prototype, "submittedAt", 2);
|
|
3114
|
+
__decorateClass([
|
|
3115
|
+
Column22({ name: "resubmiited_at", type: "timestamp with time zone", nullable: true })
|
|
3116
|
+
], Timesheet.prototype, "resubmittedAt", 2);
|
|
3117
|
+
__decorateClass([
|
|
3118
|
+
Column22({ name: "approved_at", type: "timestamp with time zone", nullable: true })
|
|
3119
|
+
], Timesheet.prototype, "approvedAt", 2);
|
|
3108
3120
|
__decorateClass([
|
|
3109
3121
|
Column22({ name: "status", type: "enum", enum: TimesheetStatusEnum, nullable: true })
|
|
3110
3122
|
], Timesheet.prototype, "status", 2);
|