tuix-timesheets-api 0.6.85 → 0.6.87

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 (35) hide show
  1. package/.openapi-generator/FILES +9 -0
  2. package/apis/TuixTimesheetsClientApi.js +101 -0
  3. package/apis/TuixTimesheetsClientApi.js.map +1 -1
  4. package/apis/TuixTimesheetsClientApi.ts +140 -0
  5. package/models/GithubAccount.js +61 -0
  6. package/models/GithubAccount.js.map +1 -0
  7. package/models/GithubAccount.ts +100 -0
  8. package/models/GithubAccountDto.js +51 -0
  9. package/models/GithubAccountDto.js.map +1 -0
  10. package/models/GithubAccountDto.ts +66 -0
  11. package/models/LogsBranchDto.js +58 -0
  12. package/models/LogsBranchDto.js.map +1 -0
  13. package/models/LogsBranchDto.ts +91 -0
  14. package/models/LogsCommitDto.js +54 -0
  15. package/models/LogsCommitDto.js.map +1 -0
  16. package/models/LogsCommitDto.ts +75 -0
  17. package/models/LogsRepositoryDto.js +58 -0
  18. package/models/LogsRepositoryDto.js.map +1 -0
  19. package/models/LogsRepositoryDto.ts +91 -0
  20. package/models/MatchPullRequestDto.js +93 -0
  21. package/models/MatchPullRequestDto.js.map +1 -0
  22. package/models/MatchPullRequestDto.ts +192 -0
  23. package/models/MatchPullRequestResponseDto.js +52 -0
  24. package/models/MatchPullRequestResponseDto.js.map +1 -0
  25. package/models/MatchPullRequestResponseDto.ts +73 -0
  26. package/models/SyncDataByAccountDto.js +63 -0
  27. package/models/SyncDataByAccountDto.js.map +1 -0
  28. package/models/SyncDataByAccountDto.ts +102 -0
  29. package/models/SyncGithubDataResponseDto.js +52 -0
  30. package/models/SyncGithubDataResponseDto.js.map +1 -0
  31. package/models/SyncGithubDataResponseDto.ts +73 -0
  32. package/models/index.js +9 -0
  33. package/models/index.js.map +1 -1
  34. package/models/index.ts +9 -0
  35. package/package.json +1 -1
@@ -0,0 +1,73 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Tuix Services
5
+ * Tuix Services API
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
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 { exists, mapValues } from '../runtime';
16
+ import type { MatchPullRequestDto } from './MatchPullRequestDto';
17
+ import {
18
+ MatchPullRequestDtoFromJSON,
19
+ MatchPullRequestDtoFromJSONTyped,
20
+ MatchPullRequestDtoToJSON,
21
+ } from './MatchPullRequestDto';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface MatchPullRequestResponseDto
27
+ */
28
+ export interface MatchPullRequestResponseDto {
29
+ /**
30
+ *
31
+ * @type {Array<MatchPullRequestDto>}
32
+ * @memberof MatchPullRequestResponseDto
33
+ */
34
+ summary: Array<MatchPullRequestDto>;
35
+ }
36
+
37
+ /**
38
+ * Check if a given object implements the MatchPullRequestResponseDto interface.
39
+ */
40
+ export function instanceOfMatchPullRequestResponseDto(value: object): boolean {
41
+ let isInstance = true;
42
+ isInstance = isInstance && "summary" in value;
43
+
44
+ return isInstance;
45
+ }
46
+
47
+ export function MatchPullRequestResponseDtoFromJSON(json: any): MatchPullRequestResponseDto {
48
+ return MatchPullRequestResponseDtoFromJSONTyped(json, false);
49
+ }
50
+
51
+ export function MatchPullRequestResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): MatchPullRequestResponseDto {
52
+ if ((json === undefined) || (json === null)) {
53
+ return json;
54
+ }
55
+ return {
56
+
57
+ 'summary': ((json['summary'] as Array<any>).map(MatchPullRequestDtoFromJSON)),
58
+ };
59
+ }
60
+
61
+ export function MatchPullRequestResponseDtoToJSON(value?: MatchPullRequestResponseDto | null): any {
62
+ if (value === undefined) {
63
+ return undefined;
64
+ }
65
+ if (value === null) {
66
+ return null;
67
+ }
68
+ return {
69
+
70
+ 'summary': ((value.summary as Array<any>).map(MatchPullRequestDtoToJSON)),
71
+ };
72
+ }
73
+
@@ -0,0 +1,63 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Tuix Services
6
+ * Tuix Services API
7
+ *
8
+ * The version of the OpenAPI document: 1.0.0
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.SyncDataByAccountDtoToJSON = exports.SyncDataByAccountDtoFromJSONTyped = exports.SyncDataByAccountDtoFromJSON = exports.instanceOfSyncDataByAccountDto = void 0;
17
+ /**
18
+ * Check if a given object implements the SyncDataByAccountDto interface.
19
+ */
20
+ function instanceOfSyncDataByAccountDto(value) {
21
+ let isInstance = true;
22
+ isInstance = isInstance && "githubUsername" in value;
23
+ isInstance = isInstance && "synchedRepositories" in value;
24
+ isInstance = isInstance && "synchedBranches" in value;
25
+ isInstance = isInstance && "synchedCommits" in value;
26
+ isInstance = isInstance && "synchedPullRequests" in value;
27
+ return isInstance;
28
+ }
29
+ exports.instanceOfSyncDataByAccountDto = instanceOfSyncDataByAccountDto;
30
+ function SyncDataByAccountDtoFromJSON(json) {
31
+ return SyncDataByAccountDtoFromJSONTyped(json, false);
32
+ }
33
+ exports.SyncDataByAccountDtoFromJSON = SyncDataByAccountDtoFromJSON;
34
+ function SyncDataByAccountDtoFromJSONTyped(json, ignoreDiscriminator) {
35
+ if ((json === undefined) || (json === null)) {
36
+ return json;
37
+ }
38
+ return {
39
+ 'githubUsername': json['githubUsername'],
40
+ 'synchedRepositories': json['synchedRepositories'],
41
+ 'synchedBranches': json['synchedBranches'],
42
+ 'synchedCommits': json['synchedCommits'],
43
+ 'synchedPullRequests': json['synchedPullRequests'],
44
+ };
45
+ }
46
+ exports.SyncDataByAccountDtoFromJSONTyped = SyncDataByAccountDtoFromJSONTyped;
47
+ function SyncDataByAccountDtoToJSON(value) {
48
+ if (value === undefined) {
49
+ return undefined;
50
+ }
51
+ if (value === null) {
52
+ return null;
53
+ }
54
+ return {
55
+ 'githubUsername': value.githubUsername,
56
+ 'synchedRepositories': value.synchedRepositories,
57
+ 'synchedBranches': value.synchedBranches,
58
+ 'synchedCommits': value.synchedCommits,
59
+ 'synchedPullRequests': value.synchedPullRequests,
60
+ };
61
+ }
62
+ exports.SyncDataByAccountDtoToJSON = SyncDataByAccountDtoToJSON;
63
+ //# sourceMappingURL=SyncDataByAccountDto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SyncDataByAccountDto.js","sourceRoot":"","sources":["SyncDataByAccountDto.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAyCH;;GAEG;AACH,SAAgB,8BAA8B,CAAC,KAAa;IACxD,IAAI,UAAU,GAAG,IAAI,CAAC;IACtB,UAAU,GAAG,UAAU,IAAI,gBAAgB,IAAI,KAAK,CAAC;IACrD,UAAU,GAAG,UAAU,IAAI,qBAAqB,IAAI,KAAK,CAAC;IAC1D,UAAU,GAAG,UAAU,IAAI,iBAAiB,IAAI,KAAK,CAAC;IACtD,UAAU,GAAG,UAAU,IAAI,gBAAgB,IAAI,KAAK,CAAC;IACrD,UAAU,GAAG,UAAU,IAAI,qBAAqB,IAAI,KAAK,CAAC;IAE1D,OAAO,UAAU,CAAC;AACtB,CAAC;AATD,wEASC;AAED,SAAgB,4BAA4B,CAAC,IAAS;IAClD,OAAO,iCAAiC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC1D,CAAC;AAFD,oEAEC;AAED,SAAgB,iCAAiC,CAAC,IAAS,EAAE,mBAA4B;IACrF,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,CAAC;QAC1C,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,gBAAgB,EAAE,IAAI,CAAC,gBAAgB,CAAC;QACxC,qBAAqB,EAAE,IAAI,CAAC,qBAAqB,CAAC;QAClD,iBAAiB,EAAE,IAAI,CAAC,iBAAiB,CAAC;QAC1C,gBAAgB,EAAE,IAAI,CAAC,gBAAgB,CAAC;QACxC,qBAAqB,EAAE,IAAI,CAAC,qBAAqB,CAAC;KACrD,CAAC;AACN,CAAC;AAZD,8EAYC;AAED,SAAgB,0BAA0B,CAAC,KAAmC;IAC1E,IAAI,KAAK,KAAK,SAAS,EAAE,CAAC;QACtB,OAAO,SAAS,CAAC;IACrB,CAAC;IACD,IAAI,KAAK,KAAK,IAAI,EAAE,CAAC;QACjB,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,gBAAgB,EAAE,KAAK,CAAC,cAAc;QACtC,qBAAqB,EAAE,KAAK,CAAC,mBAAmB;QAChD,iBAAiB,EAAE,KAAK,CAAC,eAAe;QACxC,gBAAgB,EAAE,KAAK,CAAC,cAAc;QACtC,qBAAqB,EAAE,KAAK,CAAC,mBAAmB;KACnD,CAAC;AACN,CAAC;AAfD,gEAeC"}
@@ -0,0 +1,102 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Tuix Services
5
+ * Tuix Services API
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
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 { exists, mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface SyncDataByAccountDto
20
+ */
21
+ export interface SyncDataByAccountDto {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof SyncDataByAccountDto
26
+ */
27
+ githubUsername: string;
28
+ /**
29
+ *
30
+ * @type {number}
31
+ * @memberof SyncDataByAccountDto
32
+ */
33
+ synchedRepositories: number;
34
+ /**
35
+ *
36
+ * @type {number}
37
+ * @memberof SyncDataByAccountDto
38
+ */
39
+ synchedBranches: number;
40
+ /**
41
+ *
42
+ * @type {number}
43
+ * @memberof SyncDataByAccountDto
44
+ */
45
+ synchedCommits: number;
46
+ /**
47
+ *
48
+ * @type {number}
49
+ * @memberof SyncDataByAccountDto
50
+ */
51
+ synchedPullRequests: number;
52
+ }
53
+
54
+ /**
55
+ * Check if a given object implements the SyncDataByAccountDto interface.
56
+ */
57
+ export function instanceOfSyncDataByAccountDto(value: object): boolean {
58
+ let isInstance = true;
59
+ isInstance = isInstance && "githubUsername" in value;
60
+ isInstance = isInstance && "synchedRepositories" in value;
61
+ isInstance = isInstance && "synchedBranches" in value;
62
+ isInstance = isInstance && "synchedCommits" in value;
63
+ isInstance = isInstance && "synchedPullRequests" in value;
64
+
65
+ return isInstance;
66
+ }
67
+
68
+ export function SyncDataByAccountDtoFromJSON(json: any): SyncDataByAccountDto {
69
+ return SyncDataByAccountDtoFromJSONTyped(json, false);
70
+ }
71
+
72
+ export function SyncDataByAccountDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): SyncDataByAccountDto {
73
+ if ((json === undefined) || (json === null)) {
74
+ return json;
75
+ }
76
+ return {
77
+
78
+ 'githubUsername': json['githubUsername'],
79
+ 'synchedRepositories': json['synchedRepositories'],
80
+ 'synchedBranches': json['synchedBranches'],
81
+ 'synchedCommits': json['synchedCommits'],
82
+ 'synchedPullRequests': json['synchedPullRequests'],
83
+ };
84
+ }
85
+
86
+ export function SyncDataByAccountDtoToJSON(value?: SyncDataByAccountDto | null): any {
87
+ if (value === undefined) {
88
+ return undefined;
89
+ }
90
+ if (value === null) {
91
+ return null;
92
+ }
93
+ return {
94
+
95
+ 'githubUsername': value.githubUsername,
96
+ 'synchedRepositories': value.synchedRepositories,
97
+ 'synchedBranches': value.synchedBranches,
98
+ 'synchedCommits': value.synchedCommits,
99
+ 'synchedPullRequests': value.synchedPullRequests,
100
+ };
101
+ }
102
+
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Tuix Services
6
+ * Tuix Services API
7
+ *
8
+ * The version of the OpenAPI document: 1.0.0
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.SyncGithubDataResponseDtoToJSON = exports.SyncGithubDataResponseDtoFromJSONTyped = exports.SyncGithubDataResponseDtoFromJSON = exports.instanceOfSyncGithubDataResponseDto = void 0;
17
+ const SyncDataByAccountDto_1 = require("./SyncDataByAccountDto");
18
+ /**
19
+ * Check if a given object implements the SyncGithubDataResponseDto interface.
20
+ */
21
+ function instanceOfSyncGithubDataResponseDto(value) {
22
+ let isInstance = true;
23
+ isInstance = isInstance && "summary" in value;
24
+ return isInstance;
25
+ }
26
+ exports.instanceOfSyncGithubDataResponseDto = instanceOfSyncGithubDataResponseDto;
27
+ function SyncGithubDataResponseDtoFromJSON(json) {
28
+ return SyncGithubDataResponseDtoFromJSONTyped(json, false);
29
+ }
30
+ exports.SyncGithubDataResponseDtoFromJSON = SyncGithubDataResponseDtoFromJSON;
31
+ function SyncGithubDataResponseDtoFromJSONTyped(json, ignoreDiscriminator) {
32
+ if ((json === undefined) || (json === null)) {
33
+ return json;
34
+ }
35
+ return {
36
+ 'summary': (json['summary'].map(SyncDataByAccountDto_1.SyncDataByAccountDtoFromJSON)),
37
+ };
38
+ }
39
+ exports.SyncGithubDataResponseDtoFromJSONTyped = SyncGithubDataResponseDtoFromJSONTyped;
40
+ function SyncGithubDataResponseDtoToJSON(value) {
41
+ if (value === undefined) {
42
+ return undefined;
43
+ }
44
+ if (value === null) {
45
+ return null;
46
+ }
47
+ return {
48
+ 'summary': (value.summary.map(SyncDataByAccountDto_1.SyncDataByAccountDtoToJSON)),
49
+ };
50
+ }
51
+ exports.SyncGithubDataResponseDtoToJSON = SyncGithubDataResponseDtoToJSON;
52
+ //# sourceMappingURL=SyncGithubDataResponseDto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SyncGithubDataResponseDto.js","sourceRoot":"","sources":["SyncGithubDataResponseDto.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAIH,iEAIgC;AAgBhC;;GAEG;AACH,SAAgB,mCAAmC,CAAC,KAAa;IAC7D,IAAI,UAAU,GAAG,IAAI,CAAC;IACtB,UAAU,GAAG,UAAU,IAAI,SAAS,IAAI,KAAK,CAAC;IAE9C,OAAO,UAAU,CAAC;AACtB,CAAC;AALD,kFAKC;AAED,SAAgB,iCAAiC,CAAC,IAAS;IACvD,OAAO,sCAAsC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC/D,CAAC;AAFD,8EAEC;AAED,SAAgB,sCAAsC,CAAC,IAAS,EAAE,mBAA4B;IAC1F,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,CAAC;QAC1C,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,SAAS,EAAE,CAAE,IAAI,CAAC,SAAS,CAAgB,CAAC,GAAG,CAAC,mDAA4B,CAAC,CAAC;KACjF,CAAC;AACN,CAAC;AARD,wFAQC;AAED,SAAgB,+BAA+B,CAAC,KAAwC;IACpF,IAAI,KAAK,KAAK,SAAS,EAAE,CAAC;QACtB,OAAO,SAAS,CAAC;IACrB,CAAC;IACD,IAAI,KAAK,KAAK,IAAI,EAAE,CAAC;QACjB,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,SAAS,EAAE,CAAE,KAAK,CAAC,OAAsB,CAAC,GAAG,CAAC,iDAA0B,CAAC,CAAC;KAC7E,CAAC;AACN,CAAC;AAXD,0EAWC"}
@@ -0,0 +1,73 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Tuix Services
5
+ * Tuix Services API
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
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 { exists, mapValues } from '../runtime';
16
+ import type { SyncDataByAccountDto } from './SyncDataByAccountDto';
17
+ import {
18
+ SyncDataByAccountDtoFromJSON,
19
+ SyncDataByAccountDtoFromJSONTyped,
20
+ SyncDataByAccountDtoToJSON,
21
+ } from './SyncDataByAccountDto';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface SyncGithubDataResponseDto
27
+ */
28
+ export interface SyncGithubDataResponseDto {
29
+ /**
30
+ *
31
+ * @type {Array<SyncDataByAccountDto>}
32
+ * @memberof SyncGithubDataResponseDto
33
+ */
34
+ summary: Array<SyncDataByAccountDto>;
35
+ }
36
+
37
+ /**
38
+ * Check if a given object implements the SyncGithubDataResponseDto interface.
39
+ */
40
+ export function instanceOfSyncGithubDataResponseDto(value: object): boolean {
41
+ let isInstance = true;
42
+ isInstance = isInstance && "summary" in value;
43
+
44
+ return isInstance;
45
+ }
46
+
47
+ export function SyncGithubDataResponseDtoFromJSON(json: any): SyncGithubDataResponseDto {
48
+ return SyncGithubDataResponseDtoFromJSONTyped(json, false);
49
+ }
50
+
51
+ export function SyncGithubDataResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): SyncGithubDataResponseDto {
52
+ if ((json === undefined) || (json === null)) {
53
+ return json;
54
+ }
55
+ return {
56
+
57
+ 'summary': ((json['summary'] as Array<any>).map(SyncDataByAccountDtoFromJSON)),
58
+ };
59
+ }
60
+
61
+ export function SyncGithubDataResponseDtoToJSON(value?: SyncGithubDataResponseDto | null): any {
62
+ if (value === undefined) {
63
+ return undefined;
64
+ }
65
+ if (value === null) {
66
+ return null;
67
+ }
68
+ return {
69
+
70
+ 'summary': ((value.summary as Array<any>).map(SyncDataByAccountDtoToJSON)),
71
+ };
72
+ }
73
+
package/models/index.js CHANGED
@@ -35,16 +35,23 @@ __exportStar(require("./EmployeeProjectDTO"), exports);
35
35
  __exportStar(require("./EmployeeUpdateDTO"), exports);
36
36
  __exportStar(require("./ErrorDTO"), exports);
37
37
  __exportStar(require("./FromDto"), exports);
38
+ __exportStar(require("./GithubAccount"), exports);
39
+ __exportStar(require("./GithubAccountDto"), exports);
38
40
  __exportStar(require("./GlobalTimesheetDTO"), exports);
39
41
  __exportStar(require("./GlobalTimesheetEntryDTO"), exports);
40
42
  __exportStar(require("./GlobalTimesheetEntryUpdateDTO"), exports);
41
43
  __exportStar(require("./JiraAccount"), exports);
42
44
  __exportStar(require("./LogsBoardDto"), exports);
45
+ __exportStar(require("./LogsBranchDto"), exports);
43
46
  __exportStar(require("./LogsCommentDto"), exports);
47
+ __exportStar(require("./LogsCommitDto"), exports);
44
48
  __exportStar(require("./LogsJiraAccountDto"), exports);
45
49
  __exportStar(require("./LogsProjectDto"), exports);
50
+ __exportStar(require("./LogsRepositoryDto"), exports);
46
51
  __exportStar(require("./LogsResponseDto"), exports);
47
52
  __exportStar(require("./LogsTicketDto"), exports);
53
+ __exportStar(require("./MatchPullRequestDto"), exports);
54
+ __exportStar(require("./MatchPullRequestResponseDto"), exports);
48
55
  __exportStar(require("./PaginatedAdjustedTimesheets"), exports);
49
56
  __exportStar(require("./PaginatedClientInvoices"), exports);
50
57
  __exportStar(require("./PaginatedClients"), exports);
@@ -65,8 +72,10 @@ __exportStar(require("./SendNewsletterDto"), exports);
65
72
  __exportStar(require("./Subscription"), exports);
66
73
  __exportStar(require("./SubscriptionSentDto"), exports);
67
74
  __exportStar(require("./SubscriptionsSentResponseDto"), exports);
75
+ __exportStar(require("./SyncDataByAccountDto"), exports);
68
76
  __exportStar(require("./SyncDataDto"), exports);
69
77
  __exportStar(require("./SyncDataResponseDto"), exports);
78
+ __exportStar(require("./SyncGithubDataResponseDto"), exports);
70
79
  __exportStar(require("./SyncTicketsResponseDto"), exports);
71
80
  __exportStar(require("./TeamUpdateDTO"), exports);
72
81
  __exportStar(require("./TimesheetDTO"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oBAAoB;AACpB,oBAAoB;AACpB,yDAAuC;AACvC,8DAA4C;AAC5C,qEAAmD;AACnD,8CAA4B;AAC5B,qDAAmC;AACnC,+CAA6B;AAC7B,kDAAgC;AAChC,0DAAwC;AACxC,kEAAgD;AAChD,yDAAuC;AACvC,0DAAwC;AACxC,kDAAgC;AAChC,mDAAiC;AACjC,gDAA8B;AAC9B,uDAAqC;AACrC,uDAAqC;AACrC,sDAAoC;AACpC,6CAA2B;AAC3B,4CAA0B;AAC1B,uDAAqC;AACrC,4DAA0C;AAC1C,kEAAgD;AAChD,gDAA8B;AAC9B,iDAA+B;AAC/B,mDAAiC;AACjC,uDAAqC;AACrC,mDAAiC;AACjC,oDAAkC;AAClC,kDAAgC;AAChC,gEAA8C;AAC9C,4DAA0C;AAC1C,qDAAmC;AACnC,8DAA4C;AAC5C,8DAA4C;AAC5C,uDAAqC;AACrC,8DAA4C;AAC5C,sDAAoC;AACpC,wDAAsC;AACtC,mDAAiC;AACjC,mDAAiC;AACjC,+CAA6B;AAC7B,oDAAkC;AAClC,qDAAmC;AACnC,sDAAoC;AACpC,uDAAqC;AACrC,sDAAoC;AACpC,iDAA+B;AAC/B,wDAAsC;AACtC,iEAA+C;AAC/C,gDAA8B;AAC9B,wDAAsC;AACtC,2DAAyC;AACzC,kDAAgC;AAChC,iDAA+B;AAC/B,sDAAoC;AACpC,4DAA0C;AAC1C,0CAAwB;AACxB,yDAAuC;AACvC,kDAAgC;AAChC,yCAAuB;AACvB,8CAA4B;AAC5B,kDAAgC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oBAAoB;AACpB,oBAAoB;AACpB,yDAAuC;AACvC,8DAA4C;AAC5C,qEAAmD;AACnD,8CAA4B;AAC5B,qDAAmC;AACnC,+CAA6B;AAC7B,kDAAgC;AAChC,0DAAwC;AACxC,kEAAgD;AAChD,yDAAuC;AACvC,0DAAwC;AACxC,kDAAgC;AAChC,mDAAiC;AACjC,gDAA8B;AAC9B,uDAAqC;AACrC,uDAAqC;AACrC,sDAAoC;AACpC,6CAA2B;AAC3B,4CAA0B;AAC1B,kDAAgC;AAChC,qDAAmC;AACnC,uDAAqC;AACrC,4DAA0C;AAC1C,kEAAgD;AAChD,gDAA8B;AAC9B,iDAA+B;AAC/B,kDAAgC;AAChC,mDAAiC;AACjC,kDAAgC;AAChC,uDAAqC;AACrC,mDAAiC;AACjC,sDAAoC;AACpC,oDAAkC;AAClC,kDAAgC;AAChC,wDAAsC;AACtC,gEAA8C;AAC9C,gEAA8C;AAC9C,4DAA0C;AAC1C,qDAAmC;AACnC,8DAA4C;AAC5C,8DAA4C;AAC5C,uDAAqC;AACrC,8DAA4C;AAC5C,sDAAoC;AACpC,wDAAsC;AACtC,mDAAiC;AACjC,mDAAiC;AACjC,+CAA6B;AAC7B,oDAAkC;AAClC,qDAAmC;AACnC,sDAAoC;AACpC,uDAAqC;AACrC,sDAAoC;AACpC,iDAA+B;AAC/B,wDAAsC;AACtC,iEAA+C;AAC/C,yDAAuC;AACvC,gDAA8B;AAC9B,wDAAsC;AACtC,8DAA4C;AAC5C,2DAAyC;AACzC,kDAAgC;AAChC,iDAA+B;AAC/B,sDAAoC;AACpC,4DAA0C;AAC1C,0CAAwB;AACxB,yDAAuC;AACvC,kDAAgC;AAChC,yCAAuB;AACvB,8CAA4B;AAC5B,kDAAgC"}
package/models/index.ts CHANGED
@@ -19,16 +19,23 @@ export * from './EmployeeProjectDTO';
19
19
  export * from './EmployeeUpdateDTO';
20
20
  export * from './ErrorDTO';
21
21
  export * from './FromDto';
22
+ export * from './GithubAccount';
23
+ export * from './GithubAccountDto';
22
24
  export * from './GlobalTimesheetDTO';
23
25
  export * from './GlobalTimesheetEntryDTO';
24
26
  export * from './GlobalTimesheetEntryUpdateDTO';
25
27
  export * from './JiraAccount';
26
28
  export * from './LogsBoardDto';
29
+ export * from './LogsBranchDto';
27
30
  export * from './LogsCommentDto';
31
+ export * from './LogsCommitDto';
28
32
  export * from './LogsJiraAccountDto';
29
33
  export * from './LogsProjectDto';
34
+ export * from './LogsRepositoryDto';
30
35
  export * from './LogsResponseDto';
31
36
  export * from './LogsTicketDto';
37
+ export * from './MatchPullRequestDto';
38
+ export * from './MatchPullRequestResponseDto';
32
39
  export * from './PaginatedAdjustedTimesheets';
33
40
  export * from './PaginatedClientInvoices';
34
41
  export * from './PaginatedClients';
@@ -49,8 +56,10 @@ export * from './SendNewsletterDto';
49
56
  export * from './Subscription';
50
57
  export * from './SubscriptionSentDto';
51
58
  export * from './SubscriptionsSentResponseDto';
59
+ export * from './SyncDataByAccountDto';
52
60
  export * from './SyncDataDto';
53
61
  export * from './SyncDataResponseDto';
62
+ export * from './SyncGithubDataResponseDto';
54
63
  export * from './SyncTicketsResponseDto';
55
64
  export * from './TeamUpdateDTO';
56
65
  export * from './TimesheetDTO';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tuix-timesheets-api",
3
- "version": "0.6.85",
3
+ "version": "0.6.87",
4
4
  "description": "This package facilitates the client request to tuix timesheets api",
5
5
  "main": "index.js",
6
6
  "private": false,