tuix-projects-service-client 0.0.1

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 (222) hide show
  1. package/.openapi-generator/FILES +107 -0
  2. package/.openapi-generator/VERSION +1 -0
  3. package/.openapi-generator-ignore +23 -0
  4. package/README.md +48 -0
  5. package/apis/ClientApi.js +2854 -0
  6. package/apis/ClientApi.js.map +1 -0
  7. package/apis/ClientApi.ts +4331 -0
  8. package/apis/index.js +20 -0
  9. package/apis/index.js.map +1 -0
  10. package/apis/index.ts +3 -0
  11. package/docs/AccountInfoDTO.md +36 -0
  12. package/docs/AdjustedTimesheetDTO.md +48 -0
  13. package/docs/AdjustedTimesheetEmployeeInfo.md +36 -0
  14. package/docs/AdjustedTimesheetEntryDTO.md +48 -0
  15. package/docs/AdjustedTimesheetUpdateEntryDTO.md +40 -0
  16. package/docs/ClientApi.md +5220 -0
  17. package/docs/ClientDTO.md +50 -0
  18. package/docs/ClientGithubAccountDTO.md +34 -0
  19. package/docs/ClientGithubCommitCountDTO.md +36 -0
  20. package/docs/ClientGithubUserDTO.md +46 -0
  21. package/docs/ClientInvoiceDTO.md +46 -0
  22. package/docs/ClientJiraAccountDTO.md +38 -0
  23. package/docs/ClientJiraUserDTO.md +48 -0
  24. package/docs/CompanyDTO.md +70 -0
  25. package/docs/CreateEmployeeInvoiceInputDTO.md +40 -0
  26. package/docs/CreateGithubUserRequestDTO.md +40 -0
  27. package/docs/CreateJiraAccountDTO.md +40 -0
  28. package/docs/CreateJiraUserRequestDTO.md +38 -0
  29. package/docs/EmployeeDTO.md +82 -0
  30. package/docs/EmployeeInvoiceDTO.md +44 -0
  31. package/docs/EmployeeProjectDTO.md +46 -0
  32. package/docs/EmployeeUpdateDTO.md +78 -0
  33. package/docs/ErrorDTO.md +34 -0
  34. package/docs/GlobalTimesheetDTO.md +42 -0
  35. package/docs/GlobalTimesheetEntryDTO.md +40 -0
  36. package/docs/GlobalTimesheetEntryUpdateDTO.md +36 -0
  37. package/docs/HolidayCreateDTO.md +34 -0
  38. package/docs/HolidayDTO.md +38 -0
  39. package/docs/MarkEmployeeInvoicePaidDTO.md +34 -0
  40. package/docs/MarkInvoicePaidDTO.md +34 -0
  41. package/docs/PaginatedAdjustedTimesheets.md +42 -0
  42. package/docs/PaginatedClientInvoices.md +42 -0
  43. package/docs/PaginatedClients.md +42 -0
  44. package/docs/PaginatedEmployeeInvoices.md +42 -0
  45. package/docs/PaginatedEmployeeProjects.md +42 -0
  46. package/docs/PaginatedEmployees.md +42 -0
  47. package/docs/PaginatedGlobalTimesheets.md +42 -0
  48. package/docs/PaginatedHolidaysDTO.md +42 -0
  49. package/docs/PaginatedProjects.md +42 -0
  50. package/docs/PaginatedTimesheets.md +42 -0
  51. package/docs/PaginatedUsers.md +42 -0
  52. package/docs/ProjectDTO.md +78 -0
  53. package/docs/ProjectInputDTO.md +72 -0
  54. package/docs/ProjectUpdateDTO.md +72 -0
  55. package/docs/TeamUpdateDTO.md +34 -0
  56. package/docs/TimesheetDTO.md +48 -0
  57. package/docs/TimesheetEmployeeInfo.md +36 -0
  58. package/docs/TimesheetEntryDTO.md +48 -0
  59. package/docs/TimesheetEntryUpdateDTO.md +40 -0
  60. package/docs/UserEnrollDTO.md +38 -0
  61. package/docs/UserProjectReport.md +52 -0
  62. package/index.js +22 -0
  63. package/index.js.map +1 -0
  64. package/index.ts +5 -0
  65. package/models/AccountInfoDTO.js +51 -0
  66. package/models/AccountInfoDTO.js.map +1 -0
  67. package/models/AccountInfoDTO.ts +73 -0
  68. package/models/AdjustedTimesheetDTO.js +75 -0
  69. package/models/AdjustedTimesheetDTO.js.map +1 -0
  70. package/models/AdjustedTimesheetDTO.ts +141 -0
  71. package/models/AdjustedTimesheetEmployeeInfo.js +51 -0
  72. package/models/AdjustedTimesheetEmployeeInfo.js.map +1 -0
  73. package/models/AdjustedTimesheetEmployeeInfo.ts +73 -0
  74. package/models/AdjustedTimesheetEntryDTO.js +63 -0
  75. package/models/AdjustedTimesheetEntryDTO.js.map +1 -0
  76. package/models/AdjustedTimesheetEntryDTO.ts +121 -0
  77. package/models/AdjustedTimesheetUpdateEntryDTO.js +55 -0
  78. package/models/AdjustedTimesheetUpdateEntryDTO.js.map +1 -0
  79. package/models/AdjustedTimesheetUpdateEntryDTO.ts +89 -0
  80. package/models/ClientDTO.js +65 -0
  81. package/models/ClientDTO.js.map +1 -0
  82. package/models/ClientDTO.ts +129 -0
  83. package/models/ClientGithubAccountDTO.js +49 -0
  84. package/models/ClientGithubAccountDTO.js.map +1 -0
  85. package/models/ClientGithubAccountDTO.ts +65 -0
  86. package/models/ClientGithubCommitCountDTO.js +51 -0
  87. package/models/ClientGithubCommitCountDTO.js.map +1 -0
  88. package/models/ClientGithubCommitCountDTO.ts +73 -0
  89. package/models/ClientGithubUserDTO.js +62 -0
  90. package/models/ClientGithubUserDTO.js.map +1 -0
  91. package/models/ClientGithubUserDTO.ts +121 -0
  92. package/models/ClientInvoiceDTO.js +61 -0
  93. package/models/ClientInvoiceDTO.js.map +1 -0
  94. package/models/ClientInvoiceDTO.ts +113 -0
  95. package/models/ClientJiraAccountDTO.js +53 -0
  96. package/models/ClientJiraAccountDTO.js.map +1 -0
  97. package/models/ClientJiraAccountDTO.ts +81 -0
  98. package/models/ClientJiraUserDTO.js +63 -0
  99. package/models/ClientJiraUserDTO.js.map +1 -0
  100. package/models/ClientJiraUserDTO.ts +121 -0
  101. package/models/CompanyDTO.js +85 -0
  102. package/models/CompanyDTO.js.map +1 -0
  103. package/models/CompanyDTO.ts +209 -0
  104. package/models/CreateEmployeeInvoiceInputDTO.js +61 -0
  105. package/models/CreateEmployeeInvoiceInputDTO.js.map +1 -0
  106. package/models/CreateEmployeeInvoiceInputDTO.ts +92 -0
  107. package/models/CreateGithubUserRequestDTO.js +63 -0
  108. package/models/CreateGithubUserRequestDTO.js.map +1 -0
  109. package/models/CreateGithubUserRequestDTO.ts +93 -0
  110. package/models/CreateJiraAccountDTO.js +55 -0
  111. package/models/CreateJiraAccountDTO.js.map +1 -0
  112. package/models/CreateJiraAccountDTO.ts +89 -0
  113. package/models/CreateJiraUserRequestDTO.js +53 -0
  114. package/models/CreateJiraUserRequestDTO.js.map +1 -0
  115. package/models/CreateJiraUserRequestDTO.ts +81 -0
  116. package/models/EmployeeDTO.js +97 -0
  117. package/models/EmployeeDTO.js.map +1 -0
  118. package/models/EmployeeDTO.ts +257 -0
  119. package/models/EmployeeInvoiceDTO.js +69 -0
  120. package/models/EmployeeInvoiceDTO.js.map +1 -0
  121. package/models/EmployeeInvoiceDTO.ts +110 -0
  122. package/models/EmployeeProjectDTO.js +61 -0
  123. package/models/EmployeeProjectDTO.js.map +1 -0
  124. package/models/EmployeeProjectDTO.ts +113 -0
  125. package/models/EmployeeUpdateDTO.js +93 -0
  126. package/models/EmployeeUpdateDTO.js.map +1 -0
  127. package/models/EmployeeUpdateDTO.ts +241 -0
  128. package/models/ErrorDTO.js +49 -0
  129. package/models/ErrorDTO.js.map +1 -0
  130. package/models/ErrorDTO.ts +65 -0
  131. package/models/GlobalTimesheetDTO.js +58 -0
  132. package/models/GlobalTimesheetDTO.js.map +1 -0
  133. package/models/GlobalTimesheetDTO.ts +105 -0
  134. package/models/GlobalTimesheetEntryDTO.js +63 -0
  135. package/models/GlobalTimesheetEntryDTO.js.map +1 -0
  136. package/models/GlobalTimesheetEntryDTO.ts +93 -0
  137. package/models/GlobalTimesheetEntryUpdateDTO.js +51 -0
  138. package/models/GlobalTimesheetEntryUpdateDTO.js.map +1 -0
  139. package/models/GlobalTimesheetEntryUpdateDTO.ts +73 -0
  140. package/models/HolidayCreateDTO.js +51 -0
  141. package/models/HolidayCreateDTO.js.map +1 -0
  142. package/models/HolidayCreateDTO.ts +66 -0
  143. package/models/HolidayDTO.js +53 -0
  144. package/models/HolidayDTO.js.map +1 -0
  145. package/models/HolidayDTO.ts +81 -0
  146. package/models/MarkEmployeeInvoicePaidDTO.js +51 -0
  147. package/models/MarkEmployeeInvoicePaidDTO.js.map +1 -0
  148. package/models/MarkEmployeeInvoicePaidDTO.ts +66 -0
  149. package/models/MarkInvoicePaidDTO.js +51 -0
  150. package/models/MarkInvoicePaidDTO.js.map +1 -0
  151. package/models/MarkInvoicePaidDTO.ts +66 -0
  152. package/models/PaginatedAdjustedTimesheets.js +68 -0
  153. package/models/PaginatedAdjustedTimesheets.js.map +1 -0
  154. package/models/PaginatedAdjustedTimesheets.ts +110 -0
  155. package/models/PaginatedClientInvoices.js +68 -0
  156. package/models/PaginatedClientInvoices.js.map +1 -0
  157. package/models/PaginatedClientInvoices.ts +110 -0
  158. package/models/PaginatedClients.js +68 -0
  159. package/models/PaginatedClients.js.map +1 -0
  160. package/models/PaginatedClients.ts +110 -0
  161. package/models/PaginatedEmployeeInvoices.js +68 -0
  162. package/models/PaginatedEmployeeInvoices.js.map +1 -0
  163. package/models/PaginatedEmployeeInvoices.ts +110 -0
  164. package/models/PaginatedEmployeeProjects.js +68 -0
  165. package/models/PaginatedEmployeeProjects.js.map +1 -0
  166. package/models/PaginatedEmployeeProjects.ts +110 -0
  167. package/models/PaginatedEmployees.js +68 -0
  168. package/models/PaginatedEmployees.js.map +1 -0
  169. package/models/PaginatedEmployees.ts +110 -0
  170. package/models/PaginatedGlobalTimesheets.js +68 -0
  171. package/models/PaginatedGlobalTimesheets.js.map +1 -0
  172. package/models/PaginatedGlobalTimesheets.ts +110 -0
  173. package/models/PaginatedHolidaysDTO.js +68 -0
  174. package/models/PaginatedHolidaysDTO.js.map +1 -0
  175. package/models/PaginatedHolidaysDTO.ts +110 -0
  176. package/models/PaginatedProjects.js +68 -0
  177. package/models/PaginatedProjects.js.map +1 -0
  178. package/models/PaginatedProjects.ts +110 -0
  179. package/models/PaginatedTimesheets.js +68 -0
  180. package/models/PaginatedTimesheets.js.map +1 -0
  181. package/models/PaginatedTimesheets.ts +110 -0
  182. package/models/PaginatedUsers.js +68 -0
  183. package/models/PaginatedUsers.js.map +1 -0
  184. package/models/PaginatedUsers.ts +110 -0
  185. package/models/ProjectDTO.js +129 -0
  186. package/models/ProjectDTO.js.map +1 -0
  187. package/models/ProjectDTO.ts +259 -0
  188. package/models/ProjectInputDTO.js +123 -0
  189. package/models/ProjectInputDTO.js.map +1 -0
  190. package/models/ProjectInputDTO.ts +235 -0
  191. package/models/ProjectUpdateDTO.js +93 -0
  192. package/models/ProjectUpdateDTO.js.map +1 -0
  193. package/models/ProjectUpdateDTO.ts +220 -0
  194. package/models/TeamUpdateDTO.js +50 -0
  195. package/models/TeamUpdateDTO.js.map +1 -0
  196. package/models/TeamUpdateDTO.ts +73 -0
  197. package/models/TimesheetDTO.js +65 -0
  198. package/models/TimesheetDTO.js.map +1 -0
  199. package/models/TimesheetDTO.ts +136 -0
  200. package/models/TimesheetEmployeeInfo.js +51 -0
  201. package/models/TimesheetEmployeeInfo.js.map +1 -0
  202. package/models/TimesheetEmployeeInfo.ts +73 -0
  203. package/models/TimesheetEntryDTO.js +63 -0
  204. package/models/TimesheetEntryDTO.js.map +1 -0
  205. package/models/TimesheetEntryDTO.ts +121 -0
  206. package/models/TimesheetEntryUpdateDTO.js +55 -0
  207. package/models/TimesheetEntryUpdateDTO.js.map +1 -0
  208. package/models/TimesheetEntryUpdateDTO.ts +89 -0
  209. package/models/UserEnrollDTO.js +53 -0
  210. package/models/UserEnrollDTO.js.map +1 -0
  211. package/models/UserEnrollDTO.ts +81 -0
  212. package/models/UserProjectReport.js +67 -0
  213. package/models/UserProjectReport.js.map +1 -0
  214. package/models/UserProjectReport.ts +137 -0
  215. package/models/index.js +69 -0
  216. package/models/index.js.map +1 -0
  217. package/models/index.ts +52 -0
  218. package/package.json +17 -0
  219. package/runtime.js +345 -0
  220. package/runtime.js.map +1 -0
  221. package/runtime.ts +449 -0
  222. package/tsconfig.build.tsbuildinfo +1 -0
@@ -0,0 +1,42 @@
1
+
2
+ # PaginatedGlobalTimesheets
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `items` | [Array<GlobalTimesheetDTO>](GlobalTimesheetDTO.md)
10
+ `page` | number
11
+ `pageSize` | number
12
+ `totalItems` | number
13
+ `totalPages` | number
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { PaginatedGlobalTimesheets } from ''
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "items": null,
23
+ "page": null,
24
+ "pageSize": null,
25
+ "totalItems": null,
26
+ "totalPages": null,
27
+ } satisfies PaginatedGlobalTimesheets
28
+
29
+ console.log(example)
30
+
31
+ // Convert the instance to a JSON string
32
+ const exampleJSON: string = JSON.stringify(example)
33
+ console.log(exampleJSON)
34
+
35
+ // Parse the JSON string back to an object
36
+ const exampleParsed = JSON.parse(exampleJSON) as PaginatedGlobalTimesheets
37
+ console.log(exampleParsed)
38
+ ```
39
+
40
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
41
+
42
+
@@ -0,0 +1,42 @@
1
+
2
+ # PaginatedHolidaysDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `items` | [Array<HolidayDTO>](HolidayDTO.md)
10
+ `page` | number
11
+ `pageSize` | number
12
+ `totalItems` | number
13
+ `totalPages` | number
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { PaginatedHolidaysDTO } from ''
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "items": null,
23
+ "page": null,
24
+ "pageSize": null,
25
+ "totalItems": null,
26
+ "totalPages": null,
27
+ } satisfies PaginatedHolidaysDTO
28
+
29
+ console.log(example)
30
+
31
+ // Convert the instance to a JSON string
32
+ const exampleJSON: string = JSON.stringify(example)
33
+ console.log(exampleJSON)
34
+
35
+ // Parse the JSON string back to an object
36
+ const exampleParsed = JSON.parse(exampleJSON) as PaginatedHolidaysDTO
37
+ console.log(exampleParsed)
38
+ ```
39
+
40
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
41
+
42
+
@@ -0,0 +1,42 @@
1
+
2
+ # PaginatedProjects
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `items` | [Array<ProjectDTO>](ProjectDTO.md)
10
+ `page` | number
11
+ `pageSize` | number
12
+ `totalItems` | number
13
+ `totalPages` | number
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { PaginatedProjects } from ''
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "items": null,
23
+ "page": null,
24
+ "pageSize": null,
25
+ "totalItems": null,
26
+ "totalPages": null,
27
+ } satisfies PaginatedProjects
28
+
29
+ console.log(example)
30
+
31
+ // Convert the instance to a JSON string
32
+ const exampleJSON: string = JSON.stringify(example)
33
+ console.log(exampleJSON)
34
+
35
+ // Parse the JSON string back to an object
36
+ const exampleParsed = JSON.parse(exampleJSON) as PaginatedProjects
37
+ console.log(exampleParsed)
38
+ ```
39
+
40
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
41
+
42
+
@@ -0,0 +1,42 @@
1
+
2
+ # PaginatedTimesheets
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `items` | [Array<TimesheetDTO>](TimesheetDTO.md)
10
+ `page` | number
11
+ `pageSize` | number
12
+ `totalItems` | number
13
+ `totalPages` | number
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { PaginatedTimesheets } from ''
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "items": null,
23
+ "page": null,
24
+ "pageSize": null,
25
+ "totalItems": null,
26
+ "totalPages": null,
27
+ } satisfies PaginatedTimesheets
28
+
29
+ console.log(example)
30
+
31
+ // Convert the instance to a JSON string
32
+ const exampleJSON: string = JSON.stringify(example)
33
+ console.log(exampleJSON)
34
+
35
+ // Parse the JSON string back to an object
36
+ const exampleParsed = JSON.parse(exampleJSON) as PaginatedTimesheets
37
+ console.log(exampleParsed)
38
+ ```
39
+
40
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
41
+
42
+
@@ -0,0 +1,42 @@
1
+
2
+ # PaginatedUsers
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `items` | [Array<UserEnrollDTO>](UserEnrollDTO.md)
10
+ `page` | number
11
+ `pageSize` | number
12
+ `totalItems` | number
13
+ `totalPages` | number
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { PaginatedUsers } from ''
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "items": null,
23
+ "page": null,
24
+ "pageSize": null,
25
+ "totalItems": null,
26
+ "totalPages": null,
27
+ } satisfies PaginatedUsers
28
+
29
+ console.log(example)
30
+
31
+ // Convert the instance to a JSON string
32
+ const exampleJSON: string = JSON.stringify(example)
33
+ console.log(exampleJSON)
34
+
35
+ // Parse the JSON string back to an object
36
+ const exampleParsed = JSON.parse(exampleJSON) as PaginatedUsers
37
+ console.log(exampleParsed)
38
+ ```
39
+
40
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
41
+
42
+
@@ -0,0 +1,78 @@
1
+
2
+ # ProjectDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `city` | string
10
+ `clientId` | string
11
+ `closed` | boolean
12
+ `companyContactPerson` | string
13
+ `contactEmail` | string
14
+ `contactName` | string
15
+ `contactPhoneNumber` | string
16
+ `createdAt` | string
17
+ `description` | string
18
+ `endDate` | string
19
+ `gitPrefix` | string
20
+ `githubOrganization` | string
21
+ `hourlyRate` | number
22
+ `houseNumber` | string
23
+ `id` | string
24
+ `jiraOrganization` | string
25
+ `jiraPrefix` | string
26
+ `paymentMonthDay` | number
27
+ `postalCode` | string
28
+ `projectName` | string
29
+ `startDate` | string
30
+ `street` | string
31
+ `updatedAt` | string
32
+
33
+ ## Example
34
+
35
+ ```typescript
36
+ import type { ProjectDTO } from ''
37
+
38
+ // TODO: Update the object below with actual values
39
+ const example = {
40
+ "city": New York,
41
+ "clientId": null,
42
+ "closed": false,
43
+ "companyContactPerson": Jane Doe,
44
+ "contactEmail": john.doe@example.com,
45
+ "contactName": John Doe,
46
+ "contactPhoneNumber": +1234567890,
47
+ "createdAt": null,
48
+ "description": This is a project description.,
49
+ "endDate": 2024-12-31T23:59:59Z,
50
+ "gitPrefix": PROJECT,
51
+ "githubOrganization": github-org,
52
+ "hourlyRate": 50,
53
+ "houseNumber": Apt 101,
54
+ "id": null,
55
+ "jiraOrganization": jira-org,
56
+ "jiraPrefix": PROJECT,
57
+ "paymentMonthDay": 15,
58
+ "postalCode": 12345,
59
+ "projectName": Project X,
60
+ "startDate": 2024-01-01T00:00:00Z,
61
+ "street": 123 Main St,
62
+ "updatedAt": null,
63
+ } satisfies ProjectDTO
64
+
65
+ console.log(example)
66
+
67
+ // Convert the instance to a JSON string
68
+ const exampleJSON: string = JSON.stringify(example)
69
+ console.log(exampleJSON)
70
+
71
+ // Parse the JSON string back to an object
72
+ const exampleParsed = JSON.parse(exampleJSON) as ProjectDTO
73
+ console.log(exampleParsed)
74
+ ```
75
+
76
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
77
+
78
+
@@ -0,0 +1,72 @@
1
+
2
+ # ProjectInputDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `city` | string
10
+ `clientId` | string
11
+ `closed` | boolean
12
+ `companyContactPerson` | string
13
+ `contactEmail` | string
14
+ `contactName` | string
15
+ `contactPhoneNumber` | string
16
+ `description` | string
17
+ `endDate` | string
18
+ `gitPrefix` | string
19
+ `githubOrganization` | string
20
+ `hourlyRate` | number
21
+ `houseNumber` | string
22
+ `jiraOrganization` | string
23
+ `jiraPrefix` | string
24
+ `paymentMonthDay` | number
25
+ `postalCode` | string
26
+ `projectName` | string
27
+ `startDate` | string
28
+ `street` | string
29
+
30
+ ## Example
31
+
32
+ ```typescript
33
+ import type { ProjectInputDTO } from ''
34
+
35
+ // TODO: Update the object below with actual values
36
+ const example = {
37
+ "city": New York,
38
+ "clientId": 123e4567-e89b-12d3-a456-426614174000,
39
+ "closed": false,
40
+ "companyContactPerson": Jane Doe,
41
+ "contactEmail": john.doe@example.com,
42
+ "contactName": John Doe,
43
+ "contactPhoneNumber": +1234567890,
44
+ "description": This is a project description.,
45
+ "endDate": 2024-12-31T23:59:59Z,
46
+ "gitPrefix": PROJECT,
47
+ "githubOrganization": github-org,
48
+ "hourlyRate": 50,
49
+ "houseNumber": Apt 101,
50
+ "jiraOrganization": jira-org,
51
+ "jiraPrefix": PROJECT,
52
+ "paymentMonthDay": 15,
53
+ "postalCode": 12345,
54
+ "projectName": Project X,
55
+ "startDate": 2024-01-01T00:00:00Z,
56
+ "street": 123 Main St,
57
+ } satisfies ProjectInputDTO
58
+
59
+ console.log(example)
60
+
61
+ // Convert the instance to a JSON string
62
+ const exampleJSON: string = JSON.stringify(example)
63
+ console.log(exampleJSON)
64
+
65
+ // Parse the JSON string back to an object
66
+ const exampleParsed = JSON.parse(exampleJSON) as ProjectInputDTO
67
+ console.log(exampleParsed)
68
+ ```
69
+
70
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
71
+
72
+
@@ -0,0 +1,72 @@
1
+
2
+ # ProjectUpdateDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `city` | string
10
+ `clientId` | string
11
+ `closed` | boolean
12
+ `companyContactPerson` | string
13
+ `contactEmail` | string
14
+ `contactName` | string
15
+ `contactPhoneNumber` | string
16
+ `description` | string
17
+ `endDate` | string
18
+ `gitPrefix` | string
19
+ `githubOrganization` | string
20
+ `hourlyRate` | number
21
+ `houseNumber` | string
22
+ `jiraOrganization` | string
23
+ `jiraPrefix` | string
24
+ `paymentMonthDay` | number
25
+ `postalCode` | string
26
+ `projectName` | string
27
+ `startDate` | string
28
+ `street` | string
29
+
30
+ ## Example
31
+
32
+ ```typescript
33
+ import type { ProjectUpdateDTO } from ''
34
+
35
+ // TODO: Update the object below with actual values
36
+ const example = {
37
+ "city": Los Angeles,
38
+ "clientId": 550e8400-e29b-41d4-a716-446655440000,
39
+ "closed": true,
40
+ "companyContactPerson": Jane Doe,
41
+ "contactEmail": jane.doe@example.com,
42
+ "contactName": Jane Doe,
43
+ "contactPhoneNumber": +10987654321,
44
+ "description": Updated project description.,
45
+ "endDate": 2024-09-30T23:59:59Z,
46
+ "gitPrefix": PROJECT,
47
+ "githubOrganization": updated-github-org,
48
+ "hourlyRate": 55,
49
+ "houseNumber": Suite 200,
50
+ "jiraOrganization": updated-jira-org,
51
+ "jiraPrefix": PROJECT,
52
+ "paymentMonthDay": 16,
53
+ "postalCode": 54321,
54
+ "projectName": Updated Project,
55
+ "startDate": 2024-04-01T00:00:00Z,
56
+ "street": 456 Elm St,
57
+ } satisfies ProjectUpdateDTO
58
+
59
+ console.log(example)
60
+
61
+ // Convert the instance to a JSON string
62
+ const exampleJSON: string = JSON.stringify(example)
63
+ console.log(exampleJSON)
64
+
65
+ // Parse the JSON string back to an object
66
+ const exampleParsed = JSON.parse(exampleJSON) as ProjectUpdateDTO
67
+ console.log(exampleParsed)
68
+ ```
69
+
70
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
71
+
72
+
@@ -0,0 +1,34 @@
1
+
2
+ # TeamUpdateDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `team` | [Array<UserEnrollDTO>](UserEnrollDTO.md)
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { TeamUpdateDTO } from ''
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "team": null,
19
+ } satisfies TeamUpdateDTO
20
+
21
+ console.log(example)
22
+
23
+ // Convert the instance to a JSON string
24
+ const exampleJSON: string = JSON.stringify(example)
25
+ console.log(exampleJSON)
26
+
27
+ // Parse the JSON string back to an object
28
+ const exampleParsed = JSON.parse(exampleJSON) as TeamUpdateDTO
29
+ console.log(exampleParsed)
30
+ ```
31
+
32
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
33
+
34
+
@@ -0,0 +1,48 @@
1
+
2
+ # TimesheetDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `employeeData` | [TimesheetEmployeeInfo](TimesheetEmployeeInfo.md)
10
+ `employeeID` | string
11
+ `expectedHours` | number
12
+ `id` | string
13
+ `month` | string
14
+ `projectID` | string
15
+ `status` | string
16
+ `timesheetEntries` | [Array<TimesheetEntryDTO>](TimesheetEntryDTO.md)
17
+
18
+ ## Example
19
+
20
+ ```typescript
21
+ import type { TimesheetDTO } from ''
22
+
23
+ // TODO: Update the object below with actual values
24
+ const example = {
25
+ "employeeData": null,
26
+ "employeeID": null,
27
+ "expectedHours": null,
28
+ "id": null,
29
+ "month": null,
30
+ "projectID": null,
31
+ "status": null,
32
+ "timesheetEntries": null,
33
+ } satisfies TimesheetDTO
34
+
35
+ console.log(example)
36
+
37
+ // Convert the instance to a JSON string
38
+ const exampleJSON: string = JSON.stringify(example)
39
+ console.log(exampleJSON)
40
+
41
+ // Parse the JSON string back to an object
42
+ const exampleParsed = JSON.parse(exampleJSON) as TimesheetDTO
43
+ console.log(exampleParsed)
44
+ ```
45
+
46
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
47
+
48
+
@@ -0,0 +1,36 @@
1
+
2
+ # TimesheetEmployeeInfo
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `firstName` | string
10
+ `lastName` | string
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import type { TimesheetEmployeeInfo } from ''
16
+
17
+ // TODO: Update the object below with actual values
18
+ const example = {
19
+ "firstName": null,
20
+ "lastName": null,
21
+ } satisfies TimesheetEmployeeInfo
22
+
23
+ console.log(example)
24
+
25
+ // Convert the instance to a JSON string
26
+ const exampleJSON: string = JSON.stringify(example)
27
+ console.log(exampleJSON)
28
+
29
+ // Parse the JSON string back to an object
30
+ const exampleParsed = JSON.parse(exampleJSON) as TimesheetEmployeeInfo
31
+ console.log(exampleParsed)
32
+ ```
33
+
34
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
35
+
36
+
@@ -0,0 +1,48 @@
1
+
2
+ # TimesheetEntryDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `checkIn` | string
10
+ `checkOut` | string
11
+ `comments` | string
12
+ `day` | number
13
+ `id` | string
14
+ `isEmployeeHoliday` | boolean
15
+ `isHoliday` | boolean
16
+ `pause` | number
17
+
18
+ ## Example
19
+
20
+ ```typescript
21
+ import type { TimesheetEntryDTO } from ''
22
+
23
+ // TODO: Update the object below with actual values
24
+ const example = {
25
+ "checkIn": null,
26
+ "checkOut": null,
27
+ "comments": null,
28
+ "day": null,
29
+ "id": null,
30
+ "isEmployeeHoliday": null,
31
+ "isHoliday": null,
32
+ "pause": null,
33
+ } satisfies TimesheetEntryDTO
34
+
35
+ console.log(example)
36
+
37
+ // Convert the instance to a JSON string
38
+ const exampleJSON: string = JSON.stringify(example)
39
+ console.log(exampleJSON)
40
+
41
+ // Parse the JSON string back to an object
42
+ const exampleParsed = JSON.parse(exampleJSON) as TimesheetEntryDTO
43
+ console.log(exampleParsed)
44
+ ```
45
+
46
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
47
+
48
+
@@ -0,0 +1,40 @@
1
+
2
+ # TimesheetEntryUpdateDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `checkIn` | string
10
+ `checkOut` | string
11
+ `comments` | string
12
+ `pause` | number
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { TimesheetEntryUpdateDTO } from ''
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "checkIn": null,
22
+ "checkOut": null,
23
+ "comments": null,
24
+ "pause": null,
25
+ } satisfies TimesheetEntryUpdateDTO
26
+
27
+ console.log(example)
28
+
29
+ // Convert the instance to a JSON string
30
+ const exampleJSON: string = JSON.stringify(example)
31
+ console.log(exampleJSON)
32
+
33
+ // Parse the JSON string back to an object
34
+ const exampleParsed = JSON.parse(exampleJSON) as TimesheetEntryUpdateDTO
35
+ console.log(exampleParsed)
36
+ ```
37
+
38
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
39
+
40
+
@@ -0,0 +1,38 @@
1
+
2
+ # UserEnrollDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `createdAt` | string
10
+ `id` | string
11
+ `updatedAt` | string
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import type { UserEnrollDTO } from ''
17
+
18
+ // TODO: Update the object below with actual values
19
+ const example = {
20
+ "createdAt": null,
21
+ "id": null,
22
+ "updatedAt": null,
23
+ } satisfies UserEnrollDTO
24
+
25
+ console.log(example)
26
+
27
+ // Convert the instance to a JSON string
28
+ const exampleJSON: string = JSON.stringify(example)
29
+ console.log(exampleJSON)
30
+
31
+ // Parse the JSON string back to an object
32
+ const exampleParsed = JSON.parse(exampleJSON) as UserEnrollDTO
33
+ console.log(exampleParsed)
34
+ ```
35
+
36
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
37
+
38
+