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,46 @@
1
+
2
+ # EmployeeProjectDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `clientId` | string
10
+ `closed` | boolean
11
+ `description` | string
12
+ `githubOrganization` | string
13
+ `id` | string
14
+ `jiraOrganization` | string
15
+ `projectName` | string
16
+
17
+ ## Example
18
+
19
+ ```typescript
20
+ import type { EmployeeProjectDTO } from ''
21
+
22
+ // TODO: Update the object below with actual values
23
+ const example = {
24
+ "clientId": null,
25
+ "closed": null,
26
+ "description": null,
27
+ "githubOrganization": null,
28
+ "id": null,
29
+ "jiraOrganization": null,
30
+ "projectName": null,
31
+ } satisfies EmployeeProjectDTO
32
+
33
+ console.log(example)
34
+
35
+ // Convert the instance to a JSON string
36
+ const exampleJSON: string = JSON.stringify(example)
37
+ console.log(exampleJSON)
38
+
39
+ // Parse the JSON string back to an object
40
+ const exampleParsed = JSON.parse(exampleJSON) as EmployeeProjectDTO
41
+ console.log(exampleParsed)
42
+ ```
43
+
44
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
45
+
46
+
@@ -0,0 +1,78 @@
1
+
2
+ # EmployeeUpdateDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `actived` | boolean
10
+ `availableHolidays` | number
11
+ `bankAddress` | string
12
+ `bankAddressNumber` | string
13
+ `bankCity` | string
14
+ `bankName` | string
15
+ `bankSwiftCode` | string
16
+ `city` | string
17
+ `country` | string
18
+ `email` | string
19
+ `firstName` | string
20
+ `houseNumber` | string
21
+ `iban` | string
22
+ `lastName` | string
23
+ `paymentCurrency` | string
24
+ `paymentUnit` | string
25
+ `paymentValue` | number
26
+ `phoneNumber` | string
27
+ `postalCode` | string
28
+ `street` | string
29
+ `taxNumber` | string
30
+ `userId` | string
31
+ `vatNumber` | string
32
+
33
+ ## Example
34
+
35
+ ```typescript
36
+ import type { EmployeeUpdateDTO } from ''
37
+
38
+ // TODO: Update the object below with actual values
39
+ const example = {
40
+ "actived": null,
41
+ "availableHolidays": null,
42
+ "bankAddress": null,
43
+ "bankAddressNumber": null,
44
+ "bankCity": null,
45
+ "bankName": null,
46
+ "bankSwiftCode": null,
47
+ "city": null,
48
+ "country": null,
49
+ "email": null,
50
+ "firstName": null,
51
+ "houseNumber": null,
52
+ "iban": null,
53
+ "lastName": null,
54
+ "paymentCurrency": null,
55
+ "paymentUnit": null,
56
+ "paymentValue": null,
57
+ "phoneNumber": null,
58
+ "postalCode": null,
59
+ "street": null,
60
+ "taxNumber": null,
61
+ "userId": null,
62
+ "vatNumber": null,
63
+ } satisfies EmployeeUpdateDTO
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 EmployeeUpdateDTO
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,34 @@
1
+
2
+ # ErrorDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `message` | string
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { ErrorDTO } from ''
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "message": null,
19
+ } satisfies ErrorDTO
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 ErrorDTO
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,42 @@
1
+
2
+ # GlobalTimesheetDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `entries` | [Array<GlobalTimesheetEntryDTO>](GlobalTimesheetEntryDTO.md)
10
+ `id` | string
11
+ `month` | string
12
+ `projectID` | string
13
+ `status` | string
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { GlobalTimesheetDTO } from ''
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "entries": null,
23
+ "id": null,
24
+ "month": null,
25
+ "projectID": null,
26
+ "status": null,
27
+ } satisfies GlobalTimesheetDTO
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 GlobalTimesheetDTO
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,40 @@
1
+
2
+ # GlobalTimesheetEntryDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `comments` | string
10
+ `day` | number
11
+ `hours` | number
12
+ `id` | string
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { GlobalTimesheetEntryDTO } from ''
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "comments": null,
22
+ "day": null,
23
+ "hours": null,
24
+ "id": null,
25
+ } satisfies GlobalTimesheetEntryDTO
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 GlobalTimesheetEntryDTO
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,36 @@
1
+
2
+ # GlobalTimesheetEntryUpdateDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `comments` | string
10
+ `hours` | number
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import type { GlobalTimesheetEntryUpdateDTO } from ''
16
+
17
+ // TODO: Update the object below with actual values
18
+ const example = {
19
+ "comments": null,
20
+ "hours": null,
21
+ } satisfies GlobalTimesheetEntryUpdateDTO
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 GlobalTimesheetEntryUpdateDTO
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,34 @@
1
+
2
+ # HolidayCreateDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `date` | string
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { HolidayCreateDTO } from ''
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "date": null,
19
+ } satisfies HolidayCreateDTO
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 HolidayCreateDTO
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,38 @@
1
+
2
+ # HolidayDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `date` | string
10
+ `id` | string
11
+ `userID` | string
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import type { HolidayDTO } from ''
17
+
18
+ // TODO: Update the object below with actual values
19
+ const example = {
20
+ "date": null,
21
+ "id": null,
22
+ "userID": null,
23
+ } satisfies HolidayDTO
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 HolidayDTO
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
+
@@ -0,0 +1,34 @@
1
+
2
+ # MarkEmployeeInvoicePaidDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `isPaid` | boolean
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { MarkEmployeeInvoicePaidDTO } from ''
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "isPaid": null,
19
+ } satisfies MarkEmployeeInvoicePaidDTO
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 MarkEmployeeInvoicePaidDTO
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,34 @@
1
+
2
+ # MarkInvoicePaidDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `paidDate` | string
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { MarkInvoicePaidDTO } from ''
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "paidDate": null,
19
+ } satisfies MarkInvoicePaidDTO
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 MarkInvoicePaidDTO
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,42 @@
1
+
2
+ # PaginatedAdjustedTimesheets
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `items` | [Array<AdjustedTimesheetDTO>](AdjustedTimesheetDTO.md)
10
+ `page` | number
11
+ `pageSize` | number
12
+ `totalItems` | number
13
+ `totalPages` | number
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { PaginatedAdjustedTimesheets } 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 PaginatedAdjustedTimesheets
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 PaginatedAdjustedTimesheets
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
+ # PaginatedClientInvoices
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `items` | [Array<ClientInvoiceDTO>](ClientInvoiceDTO.md)
10
+ `page` | number
11
+ `pageSize` | number
12
+ `totalItems` | number
13
+ `totalPages` | number
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { PaginatedClientInvoices } 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 PaginatedClientInvoices
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 PaginatedClientInvoices
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
+ # PaginatedClients
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `items` | [Array<ClientDTO>](ClientDTO.md)
10
+ `page` | number
11
+ `pageSize` | number
12
+ `totalItems` | number
13
+ `totalPages` | number
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { PaginatedClients } 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 PaginatedClients
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 PaginatedClients
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
+ # PaginatedEmployeeInvoices
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `items` | [Array<EmployeeInvoiceDTO>](EmployeeInvoiceDTO.md)
10
+ `page` | number
11
+ `pageSize` | number
12
+ `totalItems` | number
13
+ `totalPages` | number
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { PaginatedEmployeeInvoices } 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 PaginatedEmployeeInvoices
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 PaginatedEmployeeInvoices
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
+ # PaginatedEmployeeProjects
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `items` | [Array<EmployeeProjectDTO>](EmployeeProjectDTO.md)
10
+ `page` | number
11
+ `pageSize` | number
12
+ `totalItems` | number
13
+ `totalPages` | number
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { PaginatedEmployeeProjects } 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 PaginatedEmployeeProjects
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 PaginatedEmployeeProjects
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
+ # PaginatedEmployees
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `items` | [Array<EmployeeDTO>](EmployeeDTO.md)
10
+ `page` | number
11
+ `pageSize` | number
12
+ `totalItems` | number
13
+ `totalPages` | number
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { PaginatedEmployees } 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 PaginatedEmployees
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 PaginatedEmployees
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
+