@hed-hog/operations 0.0.299 → 0.0.300

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 (34) hide show
  1. package/dist/operations.service.js +1193 -1193
  2. package/hedhog/data/menu.yaml +198 -198
  3. package/hedhog/data/role.yaml +23 -23
  4. package/hedhog/data/route.yaml +317 -317
  5. package/hedhog/table/operations_approval.yaml +49 -49
  6. package/hedhog/table/operations_approval_history.yaml +29 -29
  7. package/hedhog/table/operations_collaborator.yaml +67 -67
  8. package/hedhog/table/operations_collaborator_schedule_day.yaml +34 -34
  9. package/hedhog/table/operations_contract.yaml +100 -100
  10. package/hedhog/table/operations_contract_document.yaml +39 -39
  11. package/hedhog/table/operations_contract_financial_term.yaml +40 -40
  12. package/hedhog/table/operations_contract_history.yaml +27 -27
  13. package/hedhog/table/operations_contract_party.yaml +46 -46
  14. package/hedhog/table/operations_contract_revision.yaml +38 -38
  15. package/hedhog/table/operations_contract_signature.yaml +38 -38
  16. package/hedhog/table/operations_project.yaml +54 -54
  17. package/hedhog/table/operations_project_assignment.yaml +55 -55
  18. package/hedhog/table/operations_schedule_adjustment_day.yaml +34 -34
  19. package/hedhog/table/operations_schedule_adjustment_request.yaml +53 -53
  20. package/hedhog/table/operations_time_off_request.yaml +57 -57
  21. package/hedhog/table/operations_timesheet.yaml +41 -41
  22. package/hedhog/table/operations_timesheet_entry.yaml +40 -40
  23. package/package.json +4 -4
  24. package/src/operations.controller.ts +182 -182
  25. package/src/operations.module.ts +22 -22
  26. package/src/operations.service.ts +3595 -3595
  27. package/dist/operations-data.controller.d.ts +0 -139
  28. package/dist/operations-data.controller.d.ts.map +0 -1
  29. package/dist/operations-data.controller.js +0 -113
  30. package/dist/operations-data.controller.js.map +0 -1
  31. package/dist/operations-growth.controller.d.ts +0 -48
  32. package/dist/operations-growth.controller.d.ts.map +0 -1
  33. package/dist/operations-growth.controller.js +0 -90
  34. package/dist/operations-growth.controller.js.map +0 -1
@@ -1,317 +1,317 @@
1
- - url: /operations/dashboard
2
- method: GET
3
- relations:
4
- role:
5
- - where:
6
- slug: admin
7
- - where:
8
- slug: admin-operations-collaborator
9
- - where:
10
- slug: admin-operations-supervisor
11
- - where:
12
- slug: admin-operations-director
13
-
14
- - url: /operations/collaborators
15
- method: GET
16
- relations:
17
- role:
18
- - where:
19
- slug: admin
20
- - where:
21
- slug: admin-operations-collaborator
22
- - where:
23
- slug: admin-operations-supervisor
24
- - where:
25
- slug: admin-operations-director
26
-
27
- - url: /operations/collaborators
28
- method: POST
29
- relations:
30
- role:
31
- - where:
32
- slug: admin
33
- - where:
34
- slug: admin-operations-director
35
-
36
- - url: /operations/collaborators/me
37
- method: GET
38
- relations:
39
- role:
40
- - where:
41
- slug: admin
42
- - where:
43
- slug: admin-operations-collaborator
44
- - where:
45
- slug: admin-operations-supervisor
46
- - where:
47
- slug: admin-operations-director
48
-
49
- - url: /operations/collaborators/team
50
- method: GET
51
- relations:
52
- role:
53
- - where:
54
- slug: admin
55
- - where:
56
- slug: admin-operations-supervisor
57
- - where:
58
- slug: admin-operations-director
59
-
60
- - url: /operations/collaborators/:id
61
- method: GET
62
- relations:
63
- role:
64
- - where:
65
- slug: admin
66
- - where:
67
- slug: admin-operations-collaborator
68
- - where:
69
- slug: admin-operations-supervisor
70
- - where:
71
- slug: admin-operations-director
72
-
73
- - url: /operations/collaborators/:id
74
- method: PATCH
75
- relations:
76
- role:
77
- - where:
78
- slug: admin
79
- - where:
80
- slug: admin-operations-director
81
-
82
- - url: /operations/projects
83
- method: GET
84
- relations:
85
- role:
86
- - where:
87
- slug: admin
88
- - where:
89
- slug: admin-operations-collaborator
90
- - where:
91
- slug: admin-operations-supervisor
92
- - where:
93
- slug: admin-operations-director
94
-
95
- - url: /operations/projects
96
- method: POST
97
- relations:
98
- role:
99
- - where:
100
- slug: admin
101
- - where:
102
- slug: admin-operations-director
103
-
104
- - url: /operations/projects/:id
105
- method: GET
106
- relations:
107
- role:
108
- - where:
109
- slug: admin
110
- - where:
111
- slug: admin-operations-collaborator
112
- - where:
113
- slug: admin-operations-supervisor
114
- - where:
115
- slug: admin-operations-director
116
-
117
- - url: /operations/projects/:id
118
- method: PATCH
119
- relations:
120
- role:
121
- - where:
122
- slug: admin
123
- - where:
124
- slug: admin-operations-director
125
-
126
- - url: /operations/contracts
127
- method: GET
128
- relations:
129
- role:
130
- - where:
131
- slug: admin
132
- - where:
133
- slug: admin-operations-collaborator
134
- - where:
135
- slug: admin-operations-supervisor
136
- - where:
137
- slug: admin-operations-director
138
-
139
- - url: /operations/contracts
140
- method: POST
141
- relations:
142
- role:
143
- - where:
144
- slug: admin
145
- - where:
146
- slug: admin-operations-director
147
-
148
- - url: /operations/contracts/:id
149
- method: GET
150
- relations:
151
- role:
152
- - where:
153
- slug: admin
154
- - where:
155
- slug: admin-operations-collaborator
156
- - where:
157
- slug: admin-operations-supervisor
158
- - where:
159
- slug: admin-operations-director
160
-
161
- - url: /operations/contracts/:id
162
- method: PATCH
163
- relations:
164
- role:
165
- - where:
166
- slug: admin
167
- - where:
168
- slug: admin-operations-director
169
-
170
- - url: /operations/timesheets
171
- method: GET
172
- relations:
173
- role:
174
- - where:
175
- slug: admin
176
- - where:
177
- slug: admin-operations-collaborator
178
- - where:
179
- slug: admin-operations-supervisor
180
- - where:
181
- slug: admin-operations-director
182
-
183
- - url: /operations/timesheets
184
- method: POST
185
- relations:
186
- role:
187
- - where:
188
- slug: admin
189
- - where:
190
- slug: admin-operations-collaborator
191
- - where:
192
- slug: admin-operations-director
193
-
194
- - url: /operations/timesheets/:id
195
- method: PATCH
196
- relations:
197
- role:
198
- - where:
199
- slug: admin
200
- - where:
201
- slug: admin-operations-collaborator
202
- - where:
203
- slug: admin-operations-director
204
-
205
- - url: /operations/timesheets/:id/submit
206
- method: POST
207
- relations:
208
- role:
209
- - where:
210
- slug: admin
211
- - where:
212
- slug: admin-operations-collaborator
213
- - where:
214
- slug: admin-operations-director
215
-
216
- - url: /operations/time-off
217
- method: GET
218
- relations:
219
- role:
220
- - where:
221
- slug: admin
222
- - where:
223
- slug: admin-operations-collaborator
224
- - where:
225
- slug: admin-operations-supervisor
226
- - where:
227
- slug: admin-operations-director
228
-
229
- - url: /operations/time-off
230
- method: POST
231
- relations:
232
- role:
233
- - where:
234
- slug: admin
235
- - where:
236
- slug: admin-operations-collaborator
237
- - where:
238
- slug: admin-operations-director
239
-
240
- - url: /operations/schedule-adjustments
241
- method: GET
242
- relations:
243
- role:
244
- - where:
245
- slug: admin
246
- - where:
247
- slug: admin-operations-collaborator
248
- - where:
249
- slug: admin-operations-supervisor
250
- - where:
251
- slug: admin-operations-director
252
-
253
- - url: /operations/schedule-adjustments
254
- method: POST
255
- relations:
256
- role:
257
- - where:
258
- slug: admin
259
- - where:
260
- slug: admin-operations-collaborator
261
- - where:
262
- slug: admin-operations-director
263
-
264
- - url: /operations/approvals
265
- method: GET
266
- relations:
267
- role:
268
- - where:
269
- slug: admin
270
- - where:
271
- slug: admin-operations-supervisor
272
- - where:
273
- slug: admin-operations-director
274
-
275
- - url: /operations/approvals/:id/approve
276
- method: POST
277
- relations:
278
- role:
279
- - where:
280
- slug: admin
281
- - where:
282
- slug: admin-operations-supervisor
283
- - where:
284
- slug: admin-operations-director
285
-
286
- - url: /operations/approvals/:id/reject
287
- method: POST
288
- relations:
289
- role:
290
- - where:
291
- slug: admin
292
- - where:
293
- slug: admin-operations-supervisor
294
- - where:
295
- slug: admin-operations-director
296
-
297
- - url: /operations/integration/examples/accounts-payable
298
- method: POST
299
- relations:
300
- role:
301
- - where:
302
- slug: admin
303
- - where:
304
- slug: admin-operations-supervisor
305
- - where:
306
- slug: admin-operations-director
307
-
308
- - url: /operations/team
309
- method: GET
310
- relations:
311
- role:
312
- - where:
313
- slug: admin
314
- - where:
315
- slug: admin-operations-supervisor
316
- - where:
317
- slug: admin-operations-director
1
+ - url: /operations/dashboard
2
+ method: GET
3
+ relations:
4
+ role:
5
+ - where:
6
+ slug: admin
7
+ - where:
8
+ slug: admin-operations-collaborator
9
+ - where:
10
+ slug: admin-operations-supervisor
11
+ - where:
12
+ slug: admin-operations-director
13
+
14
+ - url: /operations/collaborators
15
+ method: GET
16
+ relations:
17
+ role:
18
+ - where:
19
+ slug: admin
20
+ - where:
21
+ slug: admin-operations-collaborator
22
+ - where:
23
+ slug: admin-operations-supervisor
24
+ - where:
25
+ slug: admin-operations-director
26
+
27
+ - url: /operations/collaborators
28
+ method: POST
29
+ relations:
30
+ role:
31
+ - where:
32
+ slug: admin
33
+ - where:
34
+ slug: admin-operations-director
35
+
36
+ - url: /operations/collaborators/me
37
+ method: GET
38
+ relations:
39
+ role:
40
+ - where:
41
+ slug: admin
42
+ - where:
43
+ slug: admin-operations-collaborator
44
+ - where:
45
+ slug: admin-operations-supervisor
46
+ - where:
47
+ slug: admin-operations-director
48
+
49
+ - url: /operations/collaborators/team
50
+ method: GET
51
+ relations:
52
+ role:
53
+ - where:
54
+ slug: admin
55
+ - where:
56
+ slug: admin-operations-supervisor
57
+ - where:
58
+ slug: admin-operations-director
59
+
60
+ - url: /operations/collaborators/:id
61
+ method: GET
62
+ relations:
63
+ role:
64
+ - where:
65
+ slug: admin
66
+ - where:
67
+ slug: admin-operations-collaborator
68
+ - where:
69
+ slug: admin-operations-supervisor
70
+ - where:
71
+ slug: admin-operations-director
72
+
73
+ - url: /operations/collaborators/:id
74
+ method: PATCH
75
+ relations:
76
+ role:
77
+ - where:
78
+ slug: admin
79
+ - where:
80
+ slug: admin-operations-director
81
+
82
+ - url: /operations/projects
83
+ method: GET
84
+ relations:
85
+ role:
86
+ - where:
87
+ slug: admin
88
+ - where:
89
+ slug: admin-operations-collaborator
90
+ - where:
91
+ slug: admin-operations-supervisor
92
+ - where:
93
+ slug: admin-operations-director
94
+
95
+ - url: /operations/projects
96
+ method: POST
97
+ relations:
98
+ role:
99
+ - where:
100
+ slug: admin
101
+ - where:
102
+ slug: admin-operations-director
103
+
104
+ - url: /operations/projects/:id
105
+ method: GET
106
+ relations:
107
+ role:
108
+ - where:
109
+ slug: admin
110
+ - where:
111
+ slug: admin-operations-collaborator
112
+ - where:
113
+ slug: admin-operations-supervisor
114
+ - where:
115
+ slug: admin-operations-director
116
+
117
+ - url: /operations/projects/:id
118
+ method: PATCH
119
+ relations:
120
+ role:
121
+ - where:
122
+ slug: admin
123
+ - where:
124
+ slug: admin-operations-director
125
+
126
+ - url: /operations/contracts
127
+ method: GET
128
+ relations:
129
+ role:
130
+ - where:
131
+ slug: admin
132
+ - where:
133
+ slug: admin-operations-collaborator
134
+ - where:
135
+ slug: admin-operations-supervisor
136
+ - where:
137
+ slug: admin-operations-director
138
+
139
+ - url: /operations/contracts
140
+ method: POST
141
+ relations:
142
+ role:
143
+ - where:
144
+ slug: admin
145
+ - where:
146
+ slug: admin-operations-director
147
+
148
+ - url: /operations/contracts/:id
149
+ method: GET
150
+ relations:
151
+ role:
152
+ - where:
153
+ slug: admin
154
+ - where:
155
+ slug: admin-operations-collaborator
156
+ - where:
157
+ slug: admin-operations-supervisor
158
+ - where:
159
+ slug: admin-operations-director
160
+
161
+ - url: /operations/contracts/:id
162
+ method: PATCH
163
+ relations:
164
+ role:
165
+ - where:
166
+ slug: admin
167
+ - where:
168
+ slug: admin-operations-director
169
+
170
+ - url: /operations/timesheets
171
+ method: GET
172
+ relations:
173
+ role:
174
+ - where:
175
+ slug: admin
176
+ - where:
177
+ slug: admin-operations-collaborator
178
+ - where:
179
+ slug: admin-operations-supervisor
180
+ - where:
181
+ slug: admin-operations-director
182
+
183
+ - url: /operations/timesheets
184
+ method: POST
185
+ relations:
186
+ role:
187
+ - where:
188
+ slug: admin
189
+ - where:
190
+ slug: admin-operations-collaborator
191
+ - where:
192
+ slug: admin-operations-director
193
+
194
+ - url: /operations/timesheets/:id
195
+ method: PATCH
196
+ relations:
197
+ role:
198
+ - where:
199
+ slug: admin
200
+ - where:
201
+ slug: admin-operations-collaborator
202
+ - where:
203
+ slug: admin-operations-director
204
+
205
+ - url: /operations/timesheets/:id/submit
206
+ method: POST
207
+ relations:
208
+ role:
209
+ - where:
210
+ slug: admin
211
+ - where:
212
+ slug: admin-operations-collaborator
213
+ - where:
214
+ slug: admin-operations-director
215
+
216
+ - url: /operations/time-off
217
+ method: GET
218
+ relations:
219
+ role:
220
+ - where:
221
+ slug: admin
222
+ - where:
223
+ slug: admin-operations-collaborator
224
+ - where:
225
+ slug: admin-operations-supervisor
226
+ - where:
227
+ slug: admin-operations-director
228
+
229
+ - url: /operations/time-off
230
+ method: POST
231
+ relations:
232
+ role:
233
+ - where:
234
+ slug: admin
235
+ - where:
236
+ slug: admin-operations-collaborator
237
+ - where:
238
+ slug: admin-operations-director
239
+
240
+ - url: /operations/schedule-adjustments
241
+ method: GET
242
+ relations:
243
+ role:
244
+ - where:
245
+ slug: admin
246
+ - where:
247
+ slug: admin-operations-collaborator
248
+ - where:
249
+ slug: admin-operations-supervisor
250
+ - where:
251
+ slug: admin-operations-director
252
+
253
+ - url: /operations/schedule-adjustments
254
+ method: POST
255
+ relations:
256
+ role:
257
+ - where:
258
+ slug: admin
259
+ - where:
260
+ slug: admin-operations-collaborator
261
+ - where:
262
+ slug: admin-operations-director
263
+
264
+ - url: /operations/approvals
265
+ method: GET
266
+ relations:
267
+ role:
268
+ - where:
269
+ slug: admin
270
+ - where:
271
+ slug: admin-operations-supervisor
272
+ - where:
273
+ slug: admin-operations-director
274
+
275
+ - url: /operations/approvals/:id/approve
276
+ method: POST
277
+ relations:
278
+ role:
279
+ - where:
280
+ slug: admin
281
+ - where:
282
+ slug: admin-operations-supervisor
283
+ - where:
284
+ slug: admin-operations-director
285
+
286
+ - url: /operations/approvals/:id/reject
287
+ method: POST
288
+ relations:
289
+ role:
290
+ - where:
291
+ slug: admin
292
+ - where:
293
+ slug: admin-operations-supervisor
294
+ - where:
295
+ slug: admin-operations-director
296
+
297
+ - url: /operations/integration/examples/accounts-payable
298
+ method: POST
299
+ relations:
300
+ role:
301
+ - where:
302
+ slug: admin
303
+ - where:
304
+ slug: admin-operations-supervisor
305
+ - where:
306
+ slug: admin-operations-director
307
+
308
+ - url: /operations/team
309
+ method: GET
310
+ relations:
311
+ role:
312
+ - where:
313
+ slug: admin
314
+ - where:
315
+ slug: admin-operations-supervisor
316
+ - where:
317
+ slug: admin-operations-director