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,55 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Tuix Project Service
6
+ * Service to manage Tuix projects
7
+ *
8
+ * The version of the OpenAPI document: 0.0.1
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfTimesheetEntryUpdateDTO = instanceOfTimesheetEntryUpdateDTO;
17
+ exports.TimesheetEntryUpdateDTOFromJSON = TimesheetEntryUpdateDTOFromJSON;
18
+ exports.TimesheetEntryUpdateDTOFromJSONTyped = TimesheetEntryUpdateDTOFromJSONTyped;
19
+ exports.TimesheetEntryUpdateDTOToJSON = TimesheetEntryUpdateDTOToJSON;
20
+ exports.TimesheetEntryUpdateDTOToJSONTyped = TimesheetEntryUpdateDTOToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the TimesheetEntryUpdateDTO interface.
23
+ */
24
+ function instanceOfTimesheetEntryUpdateDTO(value) {
25
+ return true;
26
+ }
27
+ function TimesheetEntryUpdateDTOFromJSON(json) {
28
+ return TimesheetEntryUpdateDTOFromJSONTyped(json, false);
29
+ }
30
+ function TimesheetEntryUpdateDTOFromJSONTyped(json, ignoreDiscriminator) {
31
+ if (json == null) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'checkIn': json['checkIn'] == null ? undefined : json['checkIn'],
36
+ 'checkOut': json['checkOut'] == null ? undefined : json['checkOut'],
37
+ 'comments': json['comments'] == null ? undefined : json['comments'],
38
+ 'pause': json['pause'] == null ? undefined : json['pause'],
39
+ };
40
+ }
41
+ function TimesheetEntryUpdateDTOToJSON(json) {
42
+ return TimesheetEntryUpdateDTOToJSONTyped(json, false);
43
+ }
44
+ function TimesheetEntryUpdateDTOToJSONTyped(value, ignoreDiscriminator = false) {
45
+ if (value == null) {
46
+ return value;
47
+ }
48
+ return {
49
+ 'checkIn': value['checkIn'],
50
+ 'checkOut': value['checkOut'],
51
+ 'comments': value['comments'],
52
+ 'pause': value['pause'],
53
+ };
54
+ }
55
+ //# sourceMappingURL=TimesheetEntryUpdateDTO.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TimesheetEntryUpdateDTO.js","sourceRoot":"","sources":["TimesheetEntryUpdateDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAsCH,8EAEC;AAED,0EAEC;AAED,oFAWC;AAED,sEAEC;AAED,gFAYC;AAxCD;;GAEG;AACH,SAAgB,iCAAiC,CAAC,KAAa;IAC3D,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,+BAA+B,CAAC,IAAS;IACrD,OAAO,oCAAoC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC7D,CAAC;AAED,SAAgB,oCAAoC,CAAC,IAAS,EAAE,mBAA4B;IACxF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC;QAChE,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC;QACnE,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC;QACnE,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC;KAC7D,CAAC;AACN,CAAC;AAED,SAAgB,6BAA6B,CAAC,IAAS;IACnD,OAAO,kCAAkC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC3D,CAAC;AAED,SAAgB,kCAAkC,CAAC,KAAsC,EAAE,sBAA+B,KAAK;IAC3H,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC;QAC3B,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC;QAC7B,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC;QAC7B,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC;KAC1B,CAAC;AACN,CAAC"}
@@ -0,0 +1,89 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Tuix Project Service
5
+ * Service to manage Tuix projects
6
+ *
7
+ * The version of the OpenAPI document: 0.0.1
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface TimesheetEntryUpdateDTO
20
+ */
21
+ export interface TimesheetEntryUpdateDTO {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof TimesheetEntryUpdateDTO
26
+ */
27
+ checkIn?: string;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof TimesheetEntryUpdateDTO
32
+ */
33
+ checkOut?: string;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof TimesheetEntryUpdateDTO
38
+ */
39
+ comments?: string;
40
+ /**
41
+ *
42
+ * @type {number}
43
+ * @memberof TimesheetEntryUpdateDTO
44
+ */
45
+ pause?: number;
46
+ }
47
+
48
+ /**
49
+ * Check if a given object implements the TimesheetEntryUpdateDTO interface.
50
+ */
51
+ export function instanceOfTimesheetEntryUpdateDTO(value: object): value is TimesheetEntryUpdateDTO {
52
+ return true;
53
+ }
54
+
55
+ export function TimesheetEntryUpdateDTOFromJSON(json: any): TimesheetEntryUpdateDTO {
56
+ return TimesheetEntryUpdateDTOFromJSONTyped(json, false);
57
+ }
58
+
59
+ export function TimesheetEntryUpdateDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimesheetEntryUpdateDTO {
60
+ if (json == null) {
61
+ return json;
62
+ }
63
+ return {
64
+
65
+ 'checkIn': json['checkIn'] == null ? undefined : json['checkIn'],
66
+ 'checkOut': json['checkOut'] == null ? undefined : json['checkOut'],
67
+ 'comments': json['comments'] == null ? undefined : json['comments'],
68
+ 'pause': json['pause'] == null ? undefined : json['pause'],
69
+ };
70
+ }
71
+
72
+ export function TimesheetEntryUpdateDTOToJSON(json: any): TimesheetEntryUpdateDTO {
73
+ return TimesheetEntryUpdateDTOToJSONTyped(json, false);
74
+ }
75
+
76
+ export function TimesheetEntryUpdateDTOToJSONTyped(value?: TimesheetEntryUpdateDTO | null, ignoreDiscriminator: boolean = false): any {
77
+ if (value == null) {
78
+ return value;
79
+ }
80
+
81
+ return {
82
+
83
+ 'checkIn': value['checkIn'],
84
+ 'checkOut': value['checkOut'],
85
+ 'comments': value['comments'],
86
+ 'pause': value['pause'],
87
+ };
88
+ }
89
+
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Tuix Project Service
6
+ * Service to manage Tuix projects
7
+ *
8
+ * The version of the OpenAPI document: 0.0.1
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfUserEnrollDTO = instanceOfUserEnrollDTO;
17
+ exports.UserEnrollDTOFromJSON = UserEnrollDTOFromJSON;
18
+ exports.UserEnrollDTOFromJSONTyped = UserEnrollDTOFromJSONTyped;
19
+ exports.UserEnrollDTOToJSON = UserEnrollDTOToJSON;
20
+ exports.UserEnrollDTOToJSONTyped = UserEnrollDTOToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the UserEnrollDTO interface.
23
+ */
24
+ function instanceOfUserEnrollDTO(value) {
25
+ return true;
26
+ }
27
+ function UserEnrollDTOFromJSON(json) {
28
+ return UserEnrollDTOFromJSONTyped(json, false);
29
+ }
30
+ function UserEnrollDTOFromJSONTyped(json, ignoreDiscriminator) {
31
+ if (json == null) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
36
+ 'id': json['id'] == null ? undefined : json['id'],
37
+ 'updatedAt': json['updatedAt'] == null ? undefined : json['updatedAt'],
38
+ };
39
+ }
40
+ function UserEnrollDTOToJSON(json) {
41
+ return UserEnrollDTOToJSONTyped(json, false);
42
+ }
43
+ function UserEnrollDTOToJSONTyped(value, ignoreDiscriminator = false) {
44
+ if (value == null) {
45
+ return value;
46
+ }
47
+ return {
48
+ 'createdAt': value['createdAt'],
49
+ 'id': value['id'],
50
+ 'updatedAt': value['updatedAt'],
51
+ };
52
+ }
53
+ //# sourceMappingURL=UserEnrollDTO.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UserEnrollDTO.js","sourceRoot":"","sources":["UserEnrollDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAgCH,0DAEC;AAED,sDAEC;AAED,gEAUC;AAED,kDAEC;AAED,4DAWC;AAtCD;;GAEG;AACH,SAAgB,uBAAuB,CAAC,KAAa;IACjD,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,qBAAqB,CAAC,IAAS;IAC3C,OAAO,0BAA0B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACnD,CAAC;AAED,SAAgB,0BAA0B,CAAC,IAAS,EAAE,mBAA4B;IAC9E,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;QACjD,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;KACzE,CAAC;AACN,CAAC;AAED,SAAgB,mBAAmB,CAAC,IAAS;IACzC,OAAO,wBAAwB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACjD,CAAC;AAED,SAAgB,wBAAwB,CAAC,KAA4B,EAAE,sBAA+B,KAAK;IACvG,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;QACjB,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;KAClC,CAAC;AACN,CAAC"}
@@ -0,0 +1,81 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Tuix Project Service
5
+ * Service to manage Tuix projects
6
+ *
7
+ * The version of the OpenAPI document: 0.0.1
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface UserEnrollDTO
20
+ */
21
+ export interface UserEnrollDTO {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof UserEnrollDTO
26
+ */
27
+ createdAt?: string;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof UserEnrollDTO
32
+ */
33
+ id?: string;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof UserEnrollDTO
38
+ */
39
+ updatedAt?: string;
40
+ }
41
+
42
+ /**
43
+ * Check if a given object implements the UserEnrollDTO interface.
44
+ */
45
+ export function instanceOfUserEnrollDTO(value: object): value is UserEnrollDTO {
46
+ return true;
47
+ }
48
+
49
+ export function UserEnrollDTOFromJSON(json: any): UserEnrollDTO {
50
+ return UserEnrollDTOFromJSONTyped(json, false);
51
+ }
52
+
53
+ export function UserEnrollDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserEnrollDTO {
54
+ if (json == null) {
55
+ return json;
56
+ }
57
+ return {
58
+
59
+ 'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
60
+ 'id': json['id'] == null ? undefined : json['id'],
61
+ 'updatedAt': json['updatedAt'] == null ? undefined : json['updatedAt'],
62
+ };
63
+ }
64
+
65
+ export function UserEnrollDTOToJSON(json: any): UserEnrollDTO {
66
+ return UserEnrollDTOToJSONTyped(json, false);
67
+ }
68
+
69
+ export function UserEnrollDTOToJSONTyped(value?: UserEnrollDTO | null, ignoreDiscriminator: boolean = false): any {
70
+ if (value == null) {
71
+ return value;
72
+ }
73
+
74
+ return {
75
+
76
+ 'createdAt': value['createdAt'],
77
+ 'id': value['id'],
78
+ 'updatedAt': value['updatedAt'],
79
+ };
80
+ }
81
+
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Tuix Project Service
6
+ * Service to manage Tuix projects
7
+ *
8
+ * The version of the OpenAPI document: 0.0.1
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfUserProjectReport = instanceOfUserProjectReport;
17
+ exports.UserProjectReportFromJSON = UserProjectReportFromJSON;
18
+ exports.UserProjectReportFromJSONTyped = UserProjectReportFromJSONTyped;
19
+ exports.UserProjectReportToJSON = UserProjectReportToJSON;
20
+ exports.UserProjectReportToJSONTyped = UserProjectReportToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the UserProjectReport interface.
23
+ */
24
+ function instanceOfUserProjectReport(value) {
25
+ return true;
26
+ }
27
+ function UserProjectReportFromJSON(json) {
28
+ return UserProjectReportFromJSONTyped(json, false);
29
+ }
30
+ function UserProjectReportFromJSONTyped(json, ignoreDiscriminator) {
31
+ if (json == null) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'lastEntryDate': json['last_entry_date'] == null ? undefined : json['last_entry_date'],
36
+ 'projectGitPrefix': json['project_git_prefix'] == null ? undefined : json['project_git_prefix'],
37
+ 'projectGithubOrganization': json['project_github_organization'] == null ? undefined : json['project_github_organization'],
38
+ 'projectId': json['project_id'] == null ? undefined : json['project_id'],
39
+ 'projectJiraOrganization': json['project_jira_organization'] == null ? undefined : json['project_jira_organization'],
40
+ 'projectJiraPrefix': json['project_jira_prefix'] == null ? undefined : json['project_jira_prefix'],
41
+ 'projectName': json['project_name'] == null ? undefined : json['project_name'],
42
+ 'timesheetEntryId': json['timesheet_entry_id'] == null ? undefined : json['timesheet_entry_id'],
43
+ 'timesheetId': json['timesheet_id'] == null ? undefined : json['timesheet_id'],
44
+ 'userId': json['user_id'] == null ? undefined : json['user_id'],
45
+ };
46
+ }
47
+ function UserProjectReportToJSON(json) {
48
+ return UserProjectReportToJSONTyped(json, false);
49
+ }
50
+ function UserProjectReportToJSONTyped(value, ignoreDiscriminator = false) {
51
+ if (value == null) {
52
+ return value;
53
+ }
54
+ return {
55
+ 'last_entry_date': value['lastEntryDate'],
56
+ 'project_git_prefix': value['projectGitPrefix'],
57
+ 'project_github_organization': value['projectGithubOrganization'],
58
+ 'project_id': value['projectId'],
59
+ 'project_jira_organization': value['projectJiraOrganization'],
60
+ 'project_jira_prefix': value['projectJiraPrefix'],
61
+ 'project_name': value['projectName'],
62
+ 'timesheet_entry_id': value['timesheetEntryId'],
63
+ 'timesheet_id': value['timesheetId'],
64
+ 'user_id': value['userId'],
65
+ };
66
+ }
67
+ //# sourceMappingURL=UserProjectReport.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UserProjectReport.js","sourceRoot":"","sources":["UserProjectReport.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,137 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Tuix Project Service
5
+ * Service to manage Tuix projects
6
+ *
7
+ * The version of the OpenAPI document: 0.0.1
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface UserProjectReport
20
+ */
21
+ export interface UserProjectReport {
22
+ /**
23
+ *
24
+ * @type {Array<number>}
25
+ * @memberof UserProjectReport
26
+ */
27
+ lastEntryDate?: Array<number>;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof UserProjectReport
32
+ */
33
+ projectGitPrefix?: string;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof UserProjectReport
38
+ */
39
+ projectGithubOrganization?: string;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof UserProjectReport
44
+ */
45
+ projectId?: string;
46
+ /**
47
+ *
48
+ * @type {string}
49
+ * @memberof UserProjectReport
50
+ */
51
+ projectJiraOrganization?: string;
52
+ /**
53
+ *
54
+ * @type {string}
55
+ * @memberof UserProjectReport
56
+ */
57
+ projectJiraPrefix?: string;
58
+ /**
59
+ *
60
+ * @type {string}
61
+ * @memberof UserProjectReport
62
+ */
63
+ projectName?: string;
64
+ /**
65
+ *
66
+ * @type {string}
67
+ * @memberof UserProjectReport
68
+ */
69
+ timesheetEntryId?: string;
70
+ /**
71
+ *
72
+ * @type {string}
73
+ * @memberof UserProjectReport
74
+ */
75
+ timesheetId?: string;
76
+ /**
77
+ *
78
+ * @type {string}
79
+ * @memberof UserProjectReport
80
+ */
81
+ userId?: string;
82
+ }
83
+
84
+ /**
85
+ * Check if a given object implements the UserProjectReport interface.
86
+ */
87
+ export function instanceOfUserProjectReport(value: object): value is UserProjectReport {
88
+ return true;
89
+ }
90
+
91
+ export function UserProjectReportFromJSON(json: any): UserProjectReport {
92
+ return UserProjectReportFromJSONTyped(json, false);
93
+ }
94
+
95
+ export function UserProjectReportFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserProjectReport {
96
+ if (json == null) {
97
+ return json;
98
+ }
99
+ return {
100
+
101
+ 'lastEntryDate': json['last_entry_date'] == null ? undefined : json['last_entry_date'],
102
+ 'projectGitPrefix': json['project_git_prefix'] == null ? undefined : json['project_git_prefix'],
103
+ 'projectGithubOrganization': json['project_github_organization'] == null ? undefined : json['project_github_organization'],
104
+ 'projectId': json['project_id'] == null ? undefined : json['project_id'],
105
+ 'projectJiraOrganization': json['project_jira_organization'] == null ? undefined : json['project_jira_organization'],
106
+ 'projectJiraPrefix': json['project_jira_prefix'] == null ? undefined : json['project_jira_prefix'],
107
+ 'projectName': json['project_name'] == null ? undefined : json['project_name'],
108
+ 'timesheetEntryId': json['timesheet_entry_id'] == null ? undefined : json['timesheet_entry_id'],
109
+ 'timesheetId': json['timesheet_id'] == null ? undefined : json['timesheet_id'],
110
+ 'userId': json['user_id'] == null ? undefined : json['user_id'],
111
+ };
112
+ }
113
+
114
+ export function UserProjectReportToJSON(json: any): UserProjectReport {
115
+ return UserProjectReportToJSONTyped(json, false);
116
+ }
117
+
118
+ export function UserProjectReportToJSONTyped(value?: UserProjectReport | null, ignoreDiscriminator: boolean = false): any {
119
+ if (value == null) {
120
+ return value;
121
+ }
122
+
123
+ return {
124
+
125
+ 'last_entry_date': value['lastEntryDate'],
126
+ 'project_git_prefix': value['projectGitPrefix'],
127
+ 'project_github_organization': value['projectGithubOrganization'],
128
+ 'project_id': value['projectId'],
129
+ 'project_jira_organization': value['projectJiraOrganization'],
130
+ 'project_jira_prefix': value['projectJiraPrefix'],
131
+ 'project_name': value['projectName'],
132
+ 'timesheet_entry_id': value['timesheetEntryId'],
133
+ 'timesheet_id': value['timesheetId'],
134
+ 'user_id': value['userId'],
135
+ };
136
+ }
137
+
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ /* tslint:disable */
18
+ /* eslint-disable */
19
+ __exportStar(require("./AccountInfoDTO"), exports);
20
+ __exportStar(require("./AdjustedTimesheetDTO"), exports);
21
+ __exportStar(require("./AdjustedTimesheetEmployeeInfo"), exports);
22
+ __exportStar(require("./AdjustedTimesheetEntryDTO"), exports);
23
+ __exportStar(require("./AdjustedTimesheetUpdateEntryDTO"), exports);
24
+ __exportStar(require("./ClientDTO"), exports);
25
+ __exportStar(require("./ClientGithubAccountDTO"), exports);
26
+ __exportStar(require("./ClientGithubCommitCountDTO"), exports);
27
+ __exportStar(require("./ClientGithubUserDTO"), exports);
28
+ __exportStar(require("./ClientInvoiceDTO"), exports);
29
+ __exportStar(require("./ClientJiraAccountDTO"), exports);
30
+ __exportStar(require("./ClientJiraUserDTO"), exports);
31
+ __exportStar(require("./CompanyDTO"), exports);
32
+ __exportStar(require("./CreateEmployeeInvoiceInputDTO"), exports);
33
+ __exportStar(require("./CreateGithubUserRequestDTO"), exports);
34
+ __exportStar(require("./CreateJiraAccountDTO"), exports);
35
+ __exportStar(require("./CreateJiraUserRequestDTO"), exports);
36
+ __exportStar(require("./EmployeeDTO"), exports);
37
+ __exportStar(require("./EmployeeInvoiceDTO"), exports);
38
+ __exportStar(require("./EmployeeProjectDTO"), exports);
39
+ __exportStar(require("./EmployeeUpdateDTO"), exports);
40
+ __exportStar(require("./ErrorDTO"), exports);
41
+ __exportStar(require("./GlobalTimesheetDTO"), exports);
42
+ __exportStar(require("./GlobalTimesheetEntryDTO"), exports);
43
+ __exportStar(require("./GlobalTimesheetEntryUpdateDTO"), exports);
44
+ __exportStar(require("./HolidayCreateDTO"), exports);
45
+ __exportStar(require("./HolidayDTO"), exports);
46
+ __exportStar(require("./MarkEmployeeInvoicePaidDTO"), exports);
47
+ __exportStar(require("./MarkInvoicePaidDTO"), exports);
48
+ __exportStar(require("./PaginatedAdjustedTimesheets"), exports);
49
+ __exportStar(require("./PaginatedClientInvoices"), exports);
50
+ __exportStar(require("./PaginatedClients"), exports);
51
+ __exportStar(require("./PaginatedEmployeeInvoices"), exports);
52
+ __exportStar(require("./PaginatedEmployeeProjects"), exports);
53
+ __exportStar(require("./PaginatedEmployees"), exports);
54
+ __exportStar(require("./PaginatedGlobalTimesheets"), exports);
55
+ __exportStar(require("./PaginatedHolidaysDTO"), exports);
56
+ __exportStar(require("./PaginatedProjects"), exports);
57
+ __exportStar(require("./PaginatedTimesheets"), exports);
58
+ __exportStar(require("./PaginatedUsers"), exports);
59
+ __exportStar(require("./ProjectDTO"), exports);
60
+ __exportStar(require("./ProjectInputDTO"), exports);
61
+ __exportStar(require("./ProjectUpdateDTO"), exports);
62
+ __exportStar(require("./TeamUpdateDTO"), exports);
63
+ __exportStar(require("./TimesheetDTO"), exports);
64
+ __exportStar(require("./TimesheetEmployeeInfo"), exports);
65
+ __exportStar(require("./TimesheetEntryDTO"), exports);
66
+ __exportStar(require("./TimesheetEntryUpdateDTO"), exports);
67
+ __exportStar(require("./UserEnrollDTO"), exports);
68
+ __exportStar(require("./UserProjectReport"), exports);
69
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oBAAoB;AACpB,oBAAoB;AACpB,mDAAiC;AACjC,yDAAuC;AACvC,kEAAgD;AAChD,8DAA4C;AAC5C,oEAAkD;AAClD,8CAA4B;AAC5B,2DAAyC;AACzC,+DAA6C;AAC7C,wDAAsC;AACtC,qDAAmC;AACnC,yDAAuC;AACvC,sDAAoC;AACpC,+CAA6B;AAC7B,kEAAgD;AAChD,+DAA6C;AAC7C,yDAAuC;AACvC,6DAA2C;AAC3C,gDAA8B;AAC9B,uDAAqC;AACrC,uDAAqC;AACrC,sDAAoC;AACpC,6CAA2B;AAC3B,uDAAqC;AACrC,4DAA0C;AAC1C,kEAAgD;AAChD,qDAAmC;AACnC,+CAA6B;AAC7B,+DAA6C;AAC7C,uDAAqC;AACrC,gEAA8C;AAC9C,4DAA0C;AAC1C,qDAAmC;AACnC,8DAA4C;AAC5C,8DAA4C;AAC5C,uDAAqC;AACrC,8DAA4C;AAC5C,yDAAuC;AACvC,sDAAoC;AACpC,wDAAsC;AACtC,mDAAiC;AACjC,+CAA6B;AAC7B,oDAAkC;AAClC,qDAAmC;AACnC,kDAAgC;AAChC,iDAA+B;AAC/B,0DAAwC;AACxC,sDAAoC;AACpC,4DAA0C;AAC1C,kDAAgC;AAChC,sDAAoC"}
@@ -0,0 +1,52 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ export * from './AccountInfoDTO';
4
+ export * from './AdjustedTimesheetDTO';
5
+ export * from './AdjustedTimesheetEmployeeInfo';
6
+ export * from './AdjustedTimesheetEntryDTO';
7
+ export * from './AdjustedTimesheetUpdateEntryDTO';
8
+ export * from './ClientDTO';
9
+ export * from './ClientGithubAccountDTO';
10
+ export * from './ClientGithubCommitCountDTO';
11
+ export * from './ClientGithubUserDTO';
12
+ export * from './ClientInvoiceDTO';
13
+ export * from './ClientJiraAccountDTO';
14
+ export * from './ClientJiraUserDTO';
15
+ export * from './CompanyDTO';
16
+ export * from './CreateEmployeeInvoiceInputDTO';
17
+ export * from './CreateGithubUserRequestDTO';
18
+ export * from './CreateJiraAccountDTO';
19
+ export * from './CreateJiraUserRequestDTO';
20
+ export * from './EmployeeDTO';
21
+ export * from './EmployeeInvoiceDTO';
22
+ export * from './EmployeeProjectDTO';
23
+ export * from './EmployeeUpdateDTO';
24
+ export * from './ErrorDTO';
25
+ export * from './GlobalTimesheetDTO';
26
+ export * from './GlobalTimesheetEntryDTO';
27
+ export * from './GlobalTimesheetEntryUpdateDTO';
28
+ export * from './HolidayCreateDTO';
29
+ export * from './HolidayDTO';
30
+ export * from './MarkEmployeeInvoicePaidDTO';
31
+ export * from './MarkInvoicePaidDTO';
32
+ export * from './PaginatedAdjustedTimesheets';
33
+ export * from './PaginatedClientInvoices';
34
+ export * from './PaginatedClients';
35
+ export * from './PaginatedEmployeeInvoices';
36
+ export * from './PaginatedEmployeeProjects';
37
+ export * from './PaginatedEmployees';
38
+ export * from './PaginatedGlobalTimesheets';
39
+ export * from './PaginatedHolidaysDTO';
40
+ export * from './PaginatedProjects';
41
+ export * from './PaginatedTimesheets';
42
+ export * from './PaginatedUsers';
43
+ export * from './ProjectDTO';
44
+ export * from './ProjectInputDTO';
45
+ export * from './ProjectUpdateDTO';
46
+ export * from './TeamUpdateDTO';
47
+ export * from './TimesheetDTO';
48
+ export * from './TimesheetEmployeeInfo';
49
+ export * from './TimesheetEntryDTO';
50
+ export * from './TimesheetEntryUpdateDTO';
51
+ export * from './UserEnrollDTO';
52
+ export * from './UserProjectReport';
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "tuix-projects-service-client",
3
+ "version": "0.0.1",
4
+ "description": "This package facilitates the client request to tuix tuix-projects-service",
5
+ "main": "index.js",
6
+ "private": false,
7
+ "keywords": [
8
+ "tuix",
9
+ "api"
10
+ ],
11
+ "author": "",
12
+ "license": "ISC",
13
+ "devDependencies": {
14
+ "@openapitools/openapi-generator-cli": "2.9.0",
15
+ "typescript": "5.3.3"
16
+ }
17
+ }