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,50 @@
1
+
2
+ # ClientDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `address` | string
10
+ `city` | string
11
+ `country` | string
12
+ `email` | string
13
+ `fullName` | string
14
+ `id` | string
15
+ `phoneNumber` | string
16
+ `postalCode` | string
17
+ `vatNumber` | string
18
+
19
+ ## Example
20
+
21
+ ```typescript
22
+ import type { ClientDTO } from ''
23
+
24
+ // TODO: Update the object below with actual values
25
+ const example = {
26
+ "address": null,
27
+ "city": null,
28
+ "country": null,
29
+ "email": null,
30
+ "fullName": null,
31
+ "id": null,
32
+ "phoneNumber": null,
33
+ "postalCode": null,
34
+ "vatNumber": null,
35
+ } satisfies ClientDTO
36
+
37
+ console.log(example)
38
+
39
+ // Convert the instance to a JSON string
40
+ const exampleJSON: string = JSON.stringify(example)
41
+ console.log(exampleJSON)
42
+
43
+ // Parse the JSON string back to an object
44
+ const exampleParsed = JSON.parse(exampleJSON) as ClientDTO
45
+ console.log(exampleParsed)
46
+ ```
47
+
48
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
49
+
50
+
@@ -0,0 +1,34 @@
1
+
2
+ # ClientGithubAccountDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `username` | string
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { ClientGithubAccountDTO } from ''
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "username": null,
19
+ } satisfies ClientGithubAccountDTO
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 ClientGithubAccountDTO
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,36 @@
1
+
2
+ # ClientGithubCommitCountDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `commitCount` | number
10
+ `groupPeriod` | string
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import type { ClientGithubCommitCountDTO } from ''
16
+
17
+ // TODO: Update the object below with actual values
18
+ const example = {
19
+ "commitCount": null,
20
+ "groupPeriod": null,
21
+ } satisfies ClientGithubCommitCountDTO
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 ClientGithubCommitCountDTO
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,46 @@
1
+
2
+ # ClientGithubUserDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `active` | boolean
10
+ `email` | string
11
+ `firstName` | string
12
+ `githubAccount` | [ClientGithubAccountDTO](ClientGithubAccountDTO.md)
13
+ `id` | string
14
+ `lastName` | string
15
+ `userId` | string
16
+
17
+ ## Example
18
+
19
+ ```typescript
20
+ import type { ClientGithubUserDTO } from ''
21
+
22
+ // TODO: Update the object below with actual values
23
+ const example = {
24
+ "active": null,
25
+ "email": null,
26
+ "firstName": null,
27
+ "githubAccount": null,
28
+ "id": null,
29
+ "lastName": null,
30
+ "userId": null,
31
+ } satisfies ClientGithubUserDTO
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 ClientGithubUserDTO
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,46 @@
1
+
2
+ # ClientInvoiceDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `createdAt` | string
10
+ `gross` | number
11
+ `id` | string
12
+ `net` | number
13
+ `number` | string
14
+ `paidDate` | string
15
+ `vatPercentage` | number
16
+
17
+ ## Example
18
+
19
+ ```typescript
20
+ import type { ClientInvoiceDTO } from ''
21
+
22
+ // TODO: Update the object below with actual values
23
+ const example = {
24
+ "createdAt": null,
25
+ "gross": null,
26
+ "id": null,
27
+ "net": null,
28
+ "number": null,
29
+ "paidDate": null,
30
+ "vatPercentage": null,
31
+ } satisfies ClientInvoiceDTO
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 ClientInvoiceDTO
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,38 @@
1
+
2
+ # ClientJiraAccountDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `id` | string
10
+ `name` | string
11
+ `site` | string
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import type { ClientJiraAccountDTO } from ''
17
+
18
+ // TODO: Update the object below with actual values
19
+ const example = {
20
+ "id": null,
21
+ "name": null,
22
+ "site": null,
23
+ } satisfies ClientJiraAccountDTO
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 ClientJiraAccountDTO
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,48 @@
1
+
2
+ # ClientJiraUserDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `createdAt` | string
10
+ `email` | string
11
+ `firstName` | string
12
+ `id` | string
13
+ `lastName` | string
14
+ `timeZone` | string
15
+ `updatedAt` | string
16
+ `workingHours` | number
17
+
18
+ ## Example
19
+
20
+ ```typescript
21
+ import type { ClientJiraUserDTO } from ''
22
+
23
+ // TODO: Update the object below with actual values
24
+ const example = {
25
+ "createdAt": null,
26
+ "email": null,
27
+ "firstName": null,
28
+ "id": null,
29
+ "lastName": null,
30
+ "timeZone": null,
31
+ "updatedAt": null,
32
+ "workingHours": null,
33
+ } satisfies ClientJiraUserDTO
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 ClientJiraUserDTO
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,70 @@
1
+
2
+ # CompanyDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `bankAddressCity` | string
10
+ `bankAddressHouseNumber` | string
11
+ `bankAddressPostalCode` | string
12
+ `bankAddressStreet` | string
13
+ `bankName` | string
14
+ `bankSwiftCode` | string
15
+ `city` | string
16
+ `companyName` | string
17
+ `country` | string
18
+ `email` | string
19
+ `houseNumber` | string
20
+ `iban` | string
21
+ `id` | string
22
+ `phoneNumber` | string
23
+ `postalCode` | string
24
+ `street` | string
25
+ `taxNumber` | string
26
+ `vatNumber` | string
27
+ `vatPercentage` | number
28
+
29
+ ## Example
30
+
31
+ ```typescript
32
+ import type { CompanyDTO } from ''
33
+
34
+ // TODO: Update the object below with actual values
35
+ const example = {
36
+ "bankAddressCity": null,
37
+ "bankAddressHouseNumber": null,
38
+ "bankAddressPostalCode": null,
39
+ "bankAddressStreet": null,
40
+ "bankName": null,
41
+ "bankSwiftCode": null,
42
+ "city": null,
43
+ "companyName": null,
44
+ "country": null,
45
+ "email": null,
46
+ "houseNumber": null,
47
+ "iban": null,
48
+ "id": null,
49
+ "phoneNumber": null,
50
+ "postalCode": null,
51
+ "street": null,
52
+ "taxNumber": null,
53
+ "vatNumber": null,
54
+ "vatPercentage": null,
55
+ } satisfies CompanyDTO
56
+
57
+ console.log(example)
58
+
59
+ // Convert the instance to a JSON string
60
+ const exampleJSON: string = JSON.stringify(example)
61
+ console.log(exampleJSON)
62
+
63
+ // Parse the JSON string back to an object
64
+ const exampleParsed = JSON.parse(exampleJSON) as CompanyDTO
65
+ console.log(exampleParsed)
66
+ ```
67
+
68
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
69
+
70
+
@@ -0,0 +1,40 @@
1
+
2
+ # CreateEmployeeInvoiceInputDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `adjustment` | number
10
+ `dateOverride` | string
11
+ `isPaid` | boolean
12
+ `monthDate` | string
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { CreateEmployeeInvoiceInputDTO } from ''
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "adjustment": null,
22
+ "dateOverride": null,
23
+ "isPaid": null,
24
+ "monthDate": null,
25
+ } satisfies CreateEmployeeInvoiceInputDTO
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 CreateEmployeeInvoiceInputDTO
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,40 @@
1
+
2
+ # CreateGithubUserRequestDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `email` | string
10
+ `firstName` | string
11
+ `lastName` | string
12
+ `token` | string
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { CreateGithubUserRequestDTO } from ''
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "email": null,
22
+ "firstName": null,
23
+ "lastName": null,
24
+ "token": null,
25
+ } satisfies CreateGithubUserRequestDTO
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 CreateGithubUserRequestDTO
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,40 @@
1
+
2
+ # CreateJiraAccountDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `email` | string
10
+ `name` | string
11
+ `site` | string
12
+ `token` | string
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { CreateJiraAccountDTO } from ''
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "email": null,
22
+ "name": null,
23
+ "site": null,
24
+ "token": null,
25
+ } satisfies CreateJiraAccountDTO
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 CreateJiraAccountDTO
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
+ # CreateJiraUserRequestDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `email` | string
10
+ `firstName` | string
11
+ `lastName` | string
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import type { CreateJiraUserRequestDTO } from ''
17
+
18
+ // TODO: Update the object below with actual values
19
+ const example = {
20
+ "email": null,
21
+ "firstName": null,
22
+ "lastName": null,
23
+ } satisfies CreateJiraUserRequestDTO
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 CreateJiraUserRequestDTO
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,82 @@
1
+
2
+ # EmployeeDTO
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
+ `id` | string
23
+ `lastName` | string
24
+ `paymentCurrency` | string
25
+ `paymentUnit` | string
26
+ `paymentValue` | number
27
+ `phoneNumber` | string
28
+ `postalCode` | string
29
+ `role` | string
30
+ `street` | string
31
+ `taxNumber` | string
32
+ `userId` | string
33
+ `vatNumber` | string
34
+
35
+ ## Example
36
+
37
+ ```typescript
38
+ import type { EmployeeDTO } from ''
39
+
40
+ // TODO: Update the object below with actual values
41
+ const example = {
42
+ "actived": null,
43
+ "availableHolidays": null,
44
+ "bankAddress": null,
45
+ "bankAddressNumber": null,
46
+ "bankCity": null,
47
+ "bankName": null,
48
+ "bankSwiftCode": null,
49
+ "city": null,
50
+ "country": null,
51
+ "email": null,
52
+ "firstName": null,
53
+ "houseNumber": null,
54
+ "iban": null,
55
+ "id": null,
56
+ "lastName": null,
57
+ "paymentCurrency": null,
58
+ "paymentUnit": null,
59
+ "paymentValue": null,
60
+ "phoneNumber": null,
61
+ "postalCode": null,
62
+ "role": null,
63
+ "street": null,
64
+ "taxNumber": null,
65
+ "userId": null,
66
+ "vatNumber": null,
67
+ } satisfies EmployeeDTO
68
+
69
+ console.log(example)
70
+
71
+ // Convert the instance to a JSON string
72
+ const exampleJSON: string = JSON.stringify(example)
73
+ console.log(exampleJSON)
74
+
75
+ // Parse the JSON string back to an object
76
+ const exampleParsed = JSON.parse(exampleJSON) as EmployeeDTO
77
+ console.log(exampleParsed)
78
+ ```
79
+
80
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
81
+
82
+
@@ -0,0 +1,44 @@
1
+
2
+ # EmployeeInvoiceDTO
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `createdAt` | string
10
+ `gross` | number
11
+ `id` | string
12
+ `isPaid` | boolean
13
+ `net` | number
14
+ `number` | string
15
+
16
+ ## Example
17
+
18
+ ```typescript
19
+ import type { EmployeeInvoiceDTO } from ''
20
+
21
+ // TODO: Update the object below with actual values
22
+ const example = {
23
+ "createdAt": null,
24
+ "gross": null,
25
+ "id": null,
26
+ "isPaid": null,
27
+ "net": null,
28
+ "number": null,
29
+ } satisfies EmployeeInvoiceDTO
30
+
31
+ console.log(example)
32
+
33
+ // Convert the instance to a JSON string
34
+ const exampleJSON: string = JSON.stringify(example)
35
+ console.log(exampleJSON)
36
+
37
+ // Parse the JSON string back to an object
38
+ const exampleParsed = JSON.parse(exampleJSON) as EmployeeInvoiceDTO
39
+ console.log(exampleParsed)
40
+ ```
41
+
42
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
43
+
44
+