@hed-hog/operations 0.0.299 → 0.0.301

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.
Files changed (97) hide show
  1. package/dist/operations.controller.d.ts +713 -31
  2. package/dist/operations.controller.d.ts.map +1 -1
  3. package/dist/operations.controller.js +157 -0
  4. package/dist/operations.controller.js.map +1 -1
  5. package/dist/operations.module.d.ts.map +1 -1
  6. package/dist/operations.module.js +5 -1
  7. package/dist/operations.module.js.map +1 -1
  8. package/dist/operations.proposal.subscriber.d.ts +11 -0
  9. package/dist/operations.proposal.subscriber.d.ts.map +1 -0
  10. package/dist/operations.proposal.subscriber.js +80 -0
  11. package/dist/operations.proposal.subscriber.js.map +1 -0
  12. package/dist/operations.proposal.subscriber.spec.d.ts +2 -0
  13. package/dist/operations.proposal.subscriber.spec.d.ts.map +1 -0
  14. package/dist/operations.proposal.subscriber.spec.js +88 -0
  15. package/dist/operations.proposal.subscriber.spec.js.map +1 -0
  16. package/dist/operations.service.d.ts +490 -46
  17. package/dist/operations.service.d.ts.map +1 -1
  18. package/dist/operations.service.js +3590 -1267
  19. package/dist/operations.service.js.map +1 -1
  20. package/dist/operations.service.spec.d.ts +2 -0
  21. package/dist/operations.service.spec.d.ts.map +1 -0
  22. package/dist/operations.service.spec.js +159 -0
  23. package/dist/operations.service.spec.js.map +1 -0
  24. package/hedhog/data/menu.yaml +232 -198
  25. package/hedhog/data/role.yaml +23 -23
  26. package/hedhog/data/role_route.yaml +39 -0
  27. package/hedhog/data/route.yaml +447 -317
  28. package/hedhog/frontend/app/_components/collaborator-details-screen.tsx.ejs +8 -6
  29. package/hedhog/frontend/app/_components/collaborator-form-screen.tsx.ejs +1163 -327
  30. package/hedhog/frontend/app/_components/collaborator-select-with-create.tsx.ejs +256 -0
  31. package/hedhog/frontend/app/_components/contract-content-editor.tsx.ejs +258 -0
  32. package/hedhog/frontend/app/_components/contract-creation-wizard.tsx.ejs +631 -0
  33. package/hedhog/frontend/app/_components/contract-details-screen.tsx.ejs +353 -27
  34. package/hedhog/frontend/app/_components/contract-form-screen.tsx.ejs +1926 -87
  35. package/hedhog/frontend/app/_components/contract-template-form-screen.tsx.ejs +526 -0
  36. package/hedhog/frontend/app/_components/contract-template-select-with-create.tsx.ejs +247 -0
  37. package/hedhog/frontend/app/_components/contract-wizard-sheet.tsx.ejs +3520 -0
  38. package/hedhog/frontend/app/_components/department-select-with-create.tsx.ejs +370 -0
  39. package/hedhog/frontend/app/_components/person-select-with-create.tsx.ejs +826 -0
  40. package/hedhog/frontend/app/_components/project-form-screen.tsx.ejs +1251 -364
  41. package/hedhog/frontend/app/_components/section-card.tsx.ejs +48 -13
  42. package/hedhog/frontend/app/_lib/api.ts.ejs +2 -5
  43. package/hedhog/frontend/app/_lib/types.ts.ejs +76 -33
  44. package/hedhog/frontend/app/_lib/utils/format.ts.ejs +85 -8
  45. package/hedhog/frontend/app/approvals/page.tsx.ejs +90 -54
  46. package/hedhog/frontend/app/collaborators/[id]/edit/page.tsx.ejs +2 -2
  47. package/hedhog/frontend/app/collaborators/[id]/page.tsx.ejs +2 -2
  48. package/hedhog/frontend/app/collaborators/page.tsx.ejs +597 -140
  49. package/hedhog/frontend/app/contracts/[id]/edit/page.tsx.ejs +2 -2
  50. package/hedhog/frontend/app/contracts/[id]/page.tsx.ejs +2 -2
  51. package/hedhog/frontend/app/contracts/page.tsx.ejs +941 -262
  52. package/hedhog/frontend/app/contracts/templates/page.tsx.ejs +384 -0
  53. package/hedhog/frontend/app/departments/page.tsx.ejs +442 -0
  54. package/hedhog/frontend/app/page.tsx.ejs +36 -12
  55. package/hedhog/frontend/app/projects/[id]/edit/page.tsx.ejs +2 -2
  56. package/hedhog/frontend/app/projects/new/page.tsx.ejs +2 -2
  57. package/hedhog/frontend/app/projects/page.tsx.ejs +264 -102
  58. package/hedhog/frontend/app/schedule-adjustments/page.tsx.ejs +50 -28
  59. package/hedhog/frontend/app/time-off/page.tsx.ejs +57 -31
  60. package/hedhog/frontend/app/timesheets/page.tsx.ejs +85 -42
  61. package/hedhog/frontend/messages/en.json +473 -12
  62. package/hedhog/frontend/messages/pt.json +528 -66
  63. package/hedhog/table/operations_approval.yaml +49 -49
  64. package/hedhog/table/operations_approval_history.yaml +29 -29
  65. package/hedhog/table/operations_collaborator.yaml +87 -67
  66. package/hedhog/table/operations_collaborator_schedule_day.yaml +34 -34
  67. package/hedhog/table/operations_contract.yaml +121 -100
  68. package/hedhog/table/operations_contract_document.yaml +40 -23
  69. package/hedhog/table/operations_contract_financial_term.yaml +40 -40
  70. package/hedhog/table/operations_contract_history.yaml +27 -27
  71. package/hedhog/table/operations_contract_party.yaml +46 -46
  72. package/hedhog/table/operations_contract_revision.yaml +38 -38
  73. package/hedhog/table/operations_contract_signature.yaml +38 -38
  74. package/hedhog/table/operations_contract_template.yaml +58 -0
  75. package/hedhog/table/operations_department.yaml +24 -0
  76. package/hedhog/table/operations_project.yaml +54 -54
  77. package/hedhog/table/operations_project_assignment.yaml +55 -55
  78. package/hedhog/table/operations_schedule_adjustment_day.yaml +34 -34
  79. package/hedhog/table/operations_schedule_adjustment_request.yaml +53 -53
  80. package/hedhog/table/operations_time_off_request.yaml +57 -57
  81. package/hedhog/table/operations_timesheet.yaml +41 -41
  82. package/hedhog/table/operations_timesheet_entry.yaml +40 -40
  83. package/package.json +5 -3
  84. package/src/operations.controller.ts +304 -182
  85. package/src/operations.module.ts +26 -22
  86. package/src/operations.proposal.subscriber.spec.ts +121 -0
  87. package/src/operations.proposal.subscriber.ts +86 -0
  88. package/src/operations.service.spec.ts +210 -0
  89. package/src/operations.service.ts +7317 -3595
  90. package/dist/operations-data.controller.d.ts +0 -139
  91. package/dist/operations-data.controller.d.ts.map +0 -1
  92. package/dist/operations-data.controller.js +0 -113
  93. package/dist/operations-data.controller.js.map +0 -1
  94. package/dist/operations-growth.controller.d.ts +0 -48
  95. package/dist/operations-growth.controller.d.ts.map +0 -1
  96. package/dist/operations-growth.controller.js +0 -90
  97. package/dist/operations-growth.controller.js.map +0 -1
@@ -1,39 +1,56 @@
1
- columns:
2
- - type: pk
3
- - name: contract_id
1
+ columns:
2
+ - type: pk
3
+ - name: contract_id
4
+ type: fk
5
+ references:
6
+ table: operations_contract
7
+ column: id
8
+ onDelete: CASCADE
9
+ onUpdate: CASCADE
10
+ - name: document_type
11
+ type: enum
12
+ values: [source_upload, generated_pdf, attachment, other]
13
+ default: attachment
14
+ - name: file_id
4
15
  type: fk
16
+ isNullable: true
5
17
  references:
6
- table: operations_contract
18
+ table: file
7
19
  column: id
8
- onDelete: CASCADE
20
+ onDelete: SET NULL
9
21
  onUpdate: CASCADE
10
- - name: document_type
11
- type: enum
12
- values: [uploaded_pdf, generated_pdf, attachment, other]
13
- default: attachment
14
22
  - name: file_name
15
23
  type: varchar
16
24
  length: 200
17
- - name: mime_type
18
- type: varchar
19
- length: 120
20
- - name: file_content_base64
21
- type: text
22
- isNullable: true
25
+ - name: mime_type
26
+ type: varchar
27
+ length: 120
28
+ - name: file_content_base64
29
+ type: text
30
+ isNullable: true
23
31
  - name: is_current
24
32
  type: boolean
25
33
  default: true
26
- - name: notes
34
+ - name: extraction_status
35
+ type: enum
36
+ values: [pending, processing, completed, failed, skipped]
37
+ default: skipped
38
+ - name: extraction_summary
27
39
  type: text
28
40
  isNullable: true
29
- - name: deleted_at
30
- type: datetime
41
+ - name: notes
42
+ type: text
31
43
  isNullable: true
32
- - type: created_at
33
- - type: updated_at
34
-
35
- indices:
36
- - columns: [contract_id]
44
+ - name: deleted_at
45
+ type: datetime
46
+ isNullable: true
47
+ - type: created_at
48
+ - type: updated_at
49
+
50
+ indices:
51
+ - columns: [contract_id]
37
52
  - columns: [document_type]
53
+ - columns: [file_id]
38
54
  - columns: [is_current]
55
+ - columns: [extraction_status]
39
56
  - columns: [deleted_at]
@@ -1,40 +1,40 @@
1
- columns:
2
- - type: pk
3
- - name: contract_id
4
- type: fk
5
- references:
6
- table: operations_contract
7
- column: id
8
- onDelete: CASCADE
9
- onUpdate: CASCADE
10
- - name: term_type
11
- type: enum
12
- values: [value, payment, revenue, fine, other]
13
- default: value
14
- - name: label
15
- type: varchar
16
- length: 180
17
- - name: amount
18
- type: decimal
19
- precision: 12
20
- scale: 2
21
- - name: recurrence
22
- type: enum
23
- values: [one_time, monthly, quarterly, yearly, other]
24
- default: one_time
25
- - name: due_day
26
- type: int
27
- isNullable: true
28
- - name: notes
29
- type: text
30
- isNullable: true
31
- - name: deleted_at
32
- type: datetime
33
- isNullable: true
34
- - type: created_at
35
- - type: updated_at
36
-
37
- indices:
38
- - columns: [contract_id]
39
- - columns: [term_type]
40
- - columns: [deleted_at]
1
+ columns:
2
+ - type: pk
3
+ - name: contract_id
4
+ type: fk
5
+ references:
6
+ table: operations_contract
7
+ column: id
8
+ onDelete: CASCADE
9
+ onUpdate: CASCADE
10
+ - name: term_type
11
+ type: enum
12
+ values: [value, payment, revenue, fine, other]
13
+ default: value
14
+ - name: label
15
+ type: varchar
16
+ length: 180
17
+ - name: amount
18
+ type: decimal
19
+ precision: 12
20
+ scale: 2
21
+ - name: recurrence
22
+ type: enum
23
+ values: [one_time, monthly, quarterly, yearly, other]
24
+ default: one_time
25
+ - name: due_day
26
+ type: int
27
+ isNullable: true
28
+ - name: notes
29
+ type: text
30
+ isNullable: true
31
+ - name: deleted_at
32
+ type: datetime
33
+ isNullable: true
34
+ - type: created_at
35
+ - type: updated_at
36
+
37
+ indices:
38
+ - columns: [contract_id]
39
+ - columns: [term_type]
40
+ - columns: [deleted_at]
@@ -1,27 +1,27 @@
1
- columns:
2
- - type: pk
3
- - name: contract_id
4
- type: fk
5
- references:
6
- table: operations_contract
7
- column: id
8
- onDelete: CASCADE
9
- onUpdate: CASCADE
10
- - name: actor_user_id
11
- type: int
12
- isNullable: true
13
- - name: action
14
- type: varchar
15
- length: 80
16
- - name: note
17
- type: text
18
- isNullable: true
19
- - name: metadata_json
20
- type: text
21
- isNullable: true
22
- - type: created_at
23
-
24
- indices:
25
- - columns: [contract_id]
26
- - columns: [actor_user_id]
27
- - columns: [action]
1
+ columns:
2
+ - type: pk
3
+ - name: contract_id
4
+ type: fk
5
+ references:
6
+ table: operations_contract
7
+ column: id
8
+ onDelete: CASCADE
9
+ onUpdate: CASCADE
10
+ - name: actor_user_id
11
+ type: int
12
+ isNullable: true
13
+ - name: action
14
+ type: varchar
15
+ length: 80
16
+ - name: note
17
+ type: text
18
+ isNullable: true
19
+ - name: metadata_json
20
+ type: text
21
+ isNullable: true
22
+ - type: created_at
23
+
24
+ indices:
25
+ - columns: [contract_id]
26
+ - columns: [actor_user_id]
27
+ - columns: [action]
@@ -1,46 +1,46 @@
1
- columns:
2
- - type: pk
3
- - name: contract_id
4
- type: fk
5
- references:
6
- table: operations_contract
7
- column: id
8
- onDelete: CASCADE
9
- onUpdate: CASCADE
10
- - name: party_role
11
- type: enum
12
- values: [employee, employer, client, supplier, vendor, partner, witness, internal_owner, other]
13
- default: other
14
- - name: party_type
15
- type: enum
16
- values: [individual, company, internal_team, other]
17
- default: company
18
- - name: display_name
19
- type: varchar
20
- length: 180
21
- - name: document_number
22
- type: varchar
23
- length: 80
24
- isNullable: true
25
- - name: email
26
- type: varchar
27
- length: 180
28
- isNullable: true
29
- - name: phone
30
- type: varchar
31
- length: 60
32
- isNullable: true
33
- - name: is_primary
34
- type: boolean
35
- default: false
36
- - name: deleted_at
37
- type: datetime
38
- isNullable: true
39
- - type: created_at
40
- - type: updated_at
41
-
42
- indices:
43
- - columns: [contract_id]
44
- - columns: [party_role]
45
- - columns: [is_primary]
46
- - columns: [deleted_at]
1
+ columns:
2
+ - type: pk
3
+ - name: contract_id
4
+ type: fk
5
+ references:
6
+ table: operations_contract
7
+ column: id
8
+ onDelete: CASCADE
9
+ onUpdate: CASCADE
10
+ - name: party_role
11
+ type: enum
12
+ values: [employee, employer, client, supplier, vendor, partner, witness, internal_owner, other]
13
+ default: other
14
+ - name: party_type
15
+ type: enum
16
+ values: [individual, company, internal_team, other]
17
+ default: company
18
+ - name: display_name
19
+ type: varchar
20
+ length: 180
21
+ - name: document_number
22
+ type: varchar
23
+ length: 80
24
+ isNullable: true
25
+ - name: email
26
+ type: varchar
27
+ length: 180
28
+ isNullable: true
29
+ - name: phone
30
+ type: varchar
31
+ length: 60
32
+ isNullable: true
33
+ - name: is_primary
34
+ type: boolean
35
+ default: false
36
+ - name: deleted_at
37
+ type: datetime
38
+ isNullable: true
39
+ - type: created_at
40
+ - type: updated_at
41
+
42
+ indices:
43
+ - columns: [contract_id]
44
+ - columns: [party_role]
45
+ - columns: [is_primary]
46
+ - columns: [deleted_at]
@@ -1,38 +1,38 @@
1
- columns:
2
- - type: pk
3
- - name: contract_id
4
- type: fk
5
- references:
6
- table: operations_contract
7
- column: id
8
- onDelete: CASCADE
9
- onUpdate: CASCADE
10
- - name: revision_type
11
- type: enum
12
- values: [amendment, renewal, revision, addendum, other]
13
- default: revision
14
- - name: title
15
- type: varchar
16
- length: 180
17
- - name: effective_date
18
- type: date
19
- isNullable: true
20
- - name: status
21
- type: enum
22
- values: [draft, active, completed, cancelled]
23
- default: draft
24
- - name: summary
25
- type: text
26
- isNullable: true
27
- - name: deleted_at
28
- type: datetime
29
- isNullable: true
30
- - type: created_at
31
- - type: updated_at
32
-
33
- indices:
34
- - columns: [contract_id]
35
- - columns: [revision_type]
36
- - columns: [status]
37
- - columns: [effective_date]
38
- - columns: [deleted_at]
1
+ columns:
2
+ - type: pk
3
+ - name: contract_id
4
+ type: fk
5
+ references:
6
+ table: operations_contract
7
+ column: id
8
+ onDelete: CASCADE
9
+ onUpdate: CASCADE
10
+ - name: revision_type
11
+ type: enum
12
+ values: [amendment, renewal, revision, addendum, other]
13
+ default: revision
14
+ - name: title
15
+ type: varchar
16
+ length: 180
17
+ - name: effective_date
18
+ type: date
19
+ isNullable: true
20
+ - name: status
21
+ type: enum
22
+ values: [draft, active, completed, cancelled]
23
+ default: draft
24
+ - name: summary
25
+ type: text
26
+ isNullable: true
27
+ - name: deleted_at
28
+ type: datetime
29
+ isNullable: true
30
+ - type: created_at
31
+ - type: updated_at
32
+
33
+ indices:
34
+ - columns: [contract_id]
35
+ - columns: [revision_type]
36
+ - columns: [status]
37
+ - columns: [effective_date]
38
+ - columns: [deleted_at]
@@ -1,38 +1,38 @@
1
- columns:
2
- - type: pk
3
- - name: contract_id
4
- type: fk
5
- references:
6
- table: operations_contract
7
- column: id
8
- onDelete: CASCADE
9
- onUpdate: CASCADE
10
- - name: signer_name
11
- type: varchar
12
- length: 180
13
- - name: signer_role
14
- type: varchar
15
- length: 120
16
- isNullable: true
17
- - name: signer_email
18
- type: varchar
19
- length: 180
20
- isNullable: true
21
- - name: signer_status
22
- type: enum
23
- values: [pending, signed, rejected]
24
- default: pending
25
- - name: signed_at
26
- type: datetime
27
- isNullable: true
28
- - name: deleted_at
29
- type: datetime
30
- isNullable: true
31
- - type: created_at
32
- - type: updated_at
33
-
34
- indices:
35
- - columns: [contract_id]
36
- - columns: [signer_status]
37
- - columns: [signed_at]
38
- - columns: [deleted_at]
1
+ columns:
2
+ - type: pk
3
+ - name: contract_id
4
+ type: fk
5
+ references:
6
+ table: operations_contract
7
+ column: id
8
+ onDelete: CASCADE
9
+ onUpdate: CASCADE
10
+ - name: signer_name
11
+ type: varchar
12
+ length: 180
13
+ - name: signer_role
14
+ type: varchar
15
+ length: 120
16
+ isNullable: true
17
+ - name: signer_email
18
+ type: varchar
19
+ length: 180
20
+ isNullable: true
21
+ - name: signer_status
22
+ type: enum
23
+ values: [pending, signed, rejected]
24
+ default: pending
25
+ - name: signed_at
26
+ type: datetime
27
+ isNullable: true
28
+ - name: deleted_at
29
+ type: datetime
30
+ isNullable: true
31
+ - type: created_at
32
+ - type: updated_at
33
+
34
+ indices:
35
+ - columns: [contract_id]
36
+ - columns: [signer_status]
37
+ - columns: [signed_at]
38
+ - columns: [deleted_at]
@@ -0,0 +1,58 @@
1
+ columns:
2
+ - type: pk
3
+ - type: slug
4
+ - name: code
5
+ type: varchar
6
+ length: 40
7
+ isNullable: true
8
+ - name: name
9
+ type: varchar
10
+ length: 180
11
+ - name: description
12
+ type: text
13
+ isNullable: true
14
+ - name: contract_category
15
+ type: enum
16
+ values: [employee, contractor, client, supplier, vendor, partner, internal, other]
17
+ default: client
18
+ - name: contract_type
19
+ type: enum
20
+ values: [clt, pj, freelancer_agreement, service_agreement, fixed_term, recurring_service, nda, amendment, addendum, other]
21
+ default: service_agreement
22
+ - name: billing_model
23
+ type: enum
24
+ values: [time_and_material, monthly_retainer, fixed_price]
25
+ default: time_and_material
26
+ - name: signature_status
27
+ type: enum
28
+ values: [not_started, pending, partially_signed, signed, expired]
29
+ default: not_started
30
+ - name: is_active
31
+ type: boolean
32
+ default: true
33
+ - name: status
34
+ type: enum
35
+ values: [draft, active, inactive, archived]
36
+ default: active
37
+ - name: content_html
38
+ type: text
39
+ isNullable: true
40
+ - name: deleted_at
41
+ type: datetime
42
+ isNullable: true
43
+ - type: created_at
44
+ - type: updated_at
45
+
46
+ indices:
47
+ - columns: [slug]
48
+ isUnique: true
49
+ - columns: [code]
50
+ isUnique: true
51
+ - columns: [name]
52
+ - columns: [contract_category]
53
+ - columns: [contract_type]
54
+ - columns: [billing_model]
55
+ - columns: [signature_status]
56
+ - columns: [is_active]
57
+ - columns: [status]
58
+ - columns: [deleted_at]
@@ -0,0 +1,24 @@
1
+ columns:
2
+ - type: pk
3
+ - type: slug
4
+ - name: code
5
+ type: varchar
6
+ length: 32
7
+ isNullable: true
8
+ - name: name
9
+ type: varchar
10
+ length: 120
11
+ - name: description
12
+ type: text
13
+ isNullable: true
14
+ - name: deleted_at
15
+ type: datetime
16
+ isNullable: true
17
+ - type: created_at
18
+ - type: updated_at
19
+
20
+ indices:
21
+ - columns: [code]
22
+ isUnique: true
23
+ - columns: [name]
24
+ - columns: [deleted_at]
@@ -1,53 +1,53 @@
1
- columns:
2
- - type: pk
3
- - name: contract_id
4
- type: fk
5
- isNullable: true
1
+ columns:
2
+ - type: pk
3
+ - name: contract_id
4
+ type: fk
5
+ isNullable: true
6
+ references:
7
+ table: operations_contract
8
+ column: id
9
+ onDelete: SET NULL
10
+ onUpdate: CASCADE
11
+ - name: manager_collaborator_id
12
+ type: fk
13
+ isNullable: true
6
14
  references:
7
- table: operations_contract
8
- column: id
9
- onDelete: SET NULL
10
- onUpdate: CASCADE
11
- - name: manager_collaborator_id
12
- type: fk
13
- isNullable: true
14
- references:
15
- table: operations_collaborator
16
- column: id
17
- onDelete: SET NULL
18
- onUpdate: CASCADE
19
- - name: code
20
- type: varchar
15
+ table: operations_collaborator
16
+ column: id
17
+ onDelete: SET NULL
18
+ onUpdate: CASCADE
19
+ - name: code
20
+ type: varchar
21
21
  length: 40
22
22
  - name: name
23
23
  type: varchar
24
24
  length: 180
25
- - name: client_name
26
- type: varchar
27
- length: 180
28
- isNullable: true
29
- - name: summary
30
- type: text
31
- isNullable: true
32
- - name: status
33
- type: enum
34
- values: [planning, active, at_risk, paused, completed, archived]
25
+ - name: client_name
26
+ type: varchar
27
+ length: 180
28
+ isNullable: true
29
+ - name: summary
30
+ type: text
31
+ isNullable: true
32
+ - name: status
33
+ type: enum
34
+ values: [planning, active, at_risk, paused, completed, archived]
35
35
  default: planning
36
- - name: progress_percent
37
- type: decimal
38
- precision: 5
39
- scale: 2
40
- isNullable: true
41
- - name: delivery_model
42
- type: enum
43
- values: [dedicated_team, shared_team, project_delivery, support]
44
- default: project_delivery
45
- - name: budget_amount
46
- type: decimal
47
- precision: 12
48
- scale: 2
49
- isNullable: true
50
- - name: start_date
36
+ - name: progress_percent
37
+ type: decimal
38
+ precision: 5
39
+ scale: 2
40
+ isNullable: true
41
+ - name: delivery_model
42
+ type: enum
43
+ values: [dedicated_team, shared_team, project_delivery, support]
44
+ default: project_delivery
45
+ - name: budget_amount
46
+ type: decimal
47
+ precision: 12
48
+ scale: 2
49
+ isNullable: true
50
+ - name: start_date
51
51
  type: date
52
52
  isNullable: true
53
53
  - name: end_date
@@ -58,13 +58,13 @@ columns:
58
58
  isNullable: true
59
59
  - type: created_at
60
60
  - type: updated_at
61
-
62
- indices:
63
- - columns: [code]
64
- isUnique: true
65
- - columns: [contract_id]
66
- - columns: [manager_collaborator_id]
67
- - columns: [status]
68
- - columns: [start_date]
69
- - columns: [end_date]
70
- - columns: [deleted_at]
61
+
62
+ indices:
63
+ - columns: [code]
64
+ isUnique: true
65
+ - columns: [contract_id]
66
+ - columns: [manager_collaborator_id]
67
+ - columns: [status]
68
+ - columns: [start_date]
69
+ - columns: [end_date]
70
+ - columns: [deleted_at]