tuix-timesheets-api 0.67.0 → 0.68.0
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.
- package/.openapi-generator/FILES +4 -4
- package/apis/TuixTimesheetsClientApi.js +36 -26
- package/apis/TuixTimesheetsClientApi.js.map +1 -1
- package/apis/TuixTimesheetsClientApi.ts +55 -45
- package/models/{CreateUserDto.js → CreateUserDTO.js} +15 -15
- package/models/CreateUserDTO.js.map +1 -0
- package/models/{CreateUserDto.ts → CreateUserDTO.ts} +16 -16
- package/models/ErrorDTO.js +2 -2
- package/models/ErrorDTO.js.map +1 -1
- package/models/ErrorDTO.ts +2 -3
- package/models/SlackAccountResponseDTO.js +51 -0
- package/models/SlackAccountResponseDTO.js.map +1 -0
- package/models/{SlackAccountReponseDto.ts → SlackAccountResponseDTO.ts} +9 -9
- package/models/SlackUserDTO.js +55 -0
- package/models/SlackUserDTO.js.map +1 -0
- package/models/{SlackUserDto.ts → SlackUserDTO.ts} +20 -23
- package/models/UpdateUserDTO.js +53 -0
- package/models/UpdateUserDTO.js.map +1 -0
- package/models/{UpdateUserDto.ts → UpdateUserDTO.ts} +17 -19
- package/models/index.js +4 -4
- package/models/index.js.map +1 -1
- package/models/index.ts +4 -4
- package/package.json +1 -1
- package/models/CreateUserDto.js.map +0 -1
- package/models/SlackAccountReponseDto.js +0 -51
- package/models/SlackAccountReponseDto.js.map +0 -1
- package/models/SlackUserDto.js +0 -57
- package/models/SlackUserDto.js.map +0 -1
- package/models/UpdateUserDto.js +0 -54
- package/models/UpdateUserDto.js.map +0 -1
|
@@ -16,58 +16,55 @@ import { exists, mapValues } from '../runtime';
|
|
|
16
16
|
/**
|
|
17
17
|
*
|
|
18
18
|
* @export
|
|
19
|
-
* @interface
|
|
19
|
+
* @interface SlackUserDTO
|
|
20
20
|
*/
|
|
21
|
-
export interface
|
|
21
|
+
export interface SlackUserDTO {
|
|
22
22
|
/**
|
|
23
23
|
*
|
|
24
24
|
* @type {string}
|
|
25
|
-
* @memberof
|
|
25
|
+
* @memberof SlackUserDTO
|
|
26
26
|
*/
|
|
27
|
-
email
|
|
27
|
+
email?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
31
|
-
* @memberof
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof SlackUserDTO
|
|
32
32
|
*/
|
|
33
|
-
|
|
33
|
+
timeZone?: string;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
37
|
-
* @memberof
|
|
36
|
+
* @type {number}
|
|
37
|
+
* @memberof SlackUserDTO
|
|
38
38
|
*/
|
|
39
|
-
|
|
39
|
+
workingHours?: number;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
/**
|
|
43
|
-
* Check if a given object implements the
|
|
43
|
+
* Check if a given object implements the SlackUserDTO interface.
|
|
44
44
|
*/
|
|
45
|
-
export function
|
|
45
|
+
export function instanceOfSlackUserDTO(value: object): boolean {
|
|
46
46
|
let isInstance = true;
|
|
47
|
-
isInstance = isInstance && "email" in value;
|
|
48
|
-
isInstance = isInstance && "workingHours" in value;
|
|
49
|
-
isInstance = isInstance && "timeZone" in value;
|
|
50
47
|
|
|
51
48
|
return isInstance;
|
|
52
49
|
}
|
|
53
50
|
|
|
54
|
-
export function
|
|
55
|
-
return
|
|
51
|
+
export function SlackUserDTOFromJSON(json: any): SlackUserDTO {
|
|
52
|
+
return SlackUserDTOFromJSONTyped(json, false);
|
|
56
53
|
}
|
|
57
54
|
|
|
58
|
-
export function
|
|
55
|
+
export function SlackUserDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): SlackUserDTO {
|
|
59
56
|
if ((json === undefined) || (json === null)) {
|
|
60
57
|
return json;
|
|
61
58
|
}
|
|
62
59
|
return {
|
|
63
60
|
|
|
64
|
-
'email': json['email'],
|
|
65
|
-
'
|
|
66
|
-
'
|
|
61
|
+
'email': !exists(json, 'email') ? undefined : json['email'],
|
|
62
|
+
'timeZone': !exists(json, 'timeZone') ? undefined : json['timeZone'],
|
|
63
|
+
'workingHours': !exists(json, 'workingHours') ? undefined : json['workingHours'],
|
|
67
64
|
};
|
|
68
65
|
}
|
|
69
66
|
|
|
70
|
-
export function
|
|
67
|
+
export function SlackUserDTOToJSON(value?: SlackUserDTO | null): any {
|
|
71
68
|
if (value === undefined) {
|
|
72
69
|
return undefined;
|
|
73
70
|
}
|
|
@@ -77,8 +74,8 @@ export function SlackUserDtoToJSON(value?: SlackUserDto | null): any {
|
|
|
77
74
|
return {
|
|
78
75
|
|
|
79
76
|
'email': value.email,
|
|
80
|
-
'workingHours': value.workingHours,
|
|
81
77
|
'timeZone': value.timeZone,
|
|
78
|
+
'workingHours': value.workingHours,
|
|
82
79
|
};
|
|
83
80
|
}
|
|
84
81
|
|
|
@@ -0,0 +1,53 @@
|
|
|
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.UpdateUserDTOToJSON = exports.UpdateUserDTOFromJSONTyped = exports.UpdateUserDTOFromJSON = exports.instanceOfUpdateUserDTO = void 0;
|
|
17
|
+
const runtime_1 = require("../runtime");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the UpdateUserDTO interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfUpdateUserDTO(value) {
|
|
22
|
+
let isInstance = true;
|
|
23
|
+
return isInstance;
|
|
24
|
+
}
|
|
25
|
+
exports.instanceOfUpdateUserDTO = instanceOfUpdateUserDTO;
|
|
26
|
+
function UpdateUserDTOFromJSON(json) {
|
|
27
|
+
return UpdateUserDTOFromJSONTyped(json, false);
|
|
28
|
+
}
|
|
29
|
+
exports.UpdateUserDTOFromJSON = UpdateUserDTOFromJSON;
|
|
30
|
+
function UpdateUserDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if ((json === undefined) || (json === null)) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'timeZone': !(0, runtime_1.exists)(json, 'timeZone') ? undefined : json['timeZone'],
|
|
36
|
+
'workingHours': !(0, runtime_1.exists)(json, 'workingHours') ? undefined : json['workingHours'],
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
exports.UpdateUserDTOFromJSONTyped = UpdateUserDTOFromJSONTyped;
|
|
40
|
+
function UpdateUserDTOToJSON(value) {
|
|
41
|
+
if (value === undefined) {
|
|
42
|
+
return undefined;
|
|
43
|
+
}
|
|
44
|
+
if (value === null) {
|
|
45
|
+
return null;
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
'timeZone': value.timeZone,
|
|
49
|
+
'workingHours': value.workingHours,
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
exports.UpdateUserDTOToJSON = UpdateUserDTOToJSON;
|
|
53
|
+
//# sourceMappingURL=UpdateUserDTO.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UpdateUserDTO.js","sourceRoot":"","sources":["UpdateUserDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH,wCAA+C;AAqB/C;;GAEG;AACH,SAAgB,uBAAuB,CAAC,KAAa;IACjD,IAAI,UAAU,GAAG,IAAI,CAAC;IAEtB,OAAO,UAAU,CAAC;AACtB,CAAC;AAJD,0DAIC;AAED,SAAgB,qBAAqB,CAAC,IAAS;IAC3C,OAAO,0BAA0B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACnD,CAAC;AAFD,sDAEC;AAED,SAAgB,0BAA0B,CAAC,IAAS,EAAE,mBAA4B;IAC9E,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,CAAC;QAC1C,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,UAAU,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC;QACpE,cAAc,EAAE,CAAC,IAAA,gBAAM,EAAC,IAAI,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC;KACnF,CAAC;AACN,CAAC;AATD,gEASC;AAED,SAAgB,mBAAmB,CAAC,KAA4B;IAC5D,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,UAAU,EAAE,KAAK,CAAC,QAAQ;QAC1B,cAAc,EAAE,KAAK,CAAC,YAAY;KACrC,CAAC;AACN,CAAC;AAZD,kDAYC"}
|
|
@@ -16,50 +16,48 @@ import { exists, mapValues } from '../runtime';
|
|
|
16
16
|
/**
|
|
17
17
|
*
|
|
18
18
|
* @export
|
|
19
|
-
* @interface
|
|
19
|
+
* @interface UpdateUserDTO
|
|
20
20
|
*/
|
|
21
|
-
export interface
|
|
21
|
+
export interface UpdateUserDTO {
|
|
22
22
|
/**
|
|
23
23
|
*
|
|
24
|
-
* @type {
|
|
25
|
-
* @memberof
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof UpdateUserDTO
|
|
26
26
|
*/
|
|
27
|
-
|
|
27
|
+
timeZone?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
31
|
-
* @memberof
|
|
30
|
+
* @type {number}
|
|
31
|
+
* @memberof UpdateUserDTO
|
|
32
32
|
*/
|
|
33
|
-
|
|
33
|
+
workingHours?: number;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
/**
|
|
37
|
-
* Check if a given object implements the
|
|
37
|
+
* Check if a given object implements the UpdateUserDTO interface.
|
|
38
38
|
*/
|
|
39
|
-
export function
|
|
39
|
+
export function instanceOfUpdateUserDTO(value: object): boolean {
|
|
40
40
|
let isInstance = true;
|
|
41
|
-
isInstance = isInstance && "workingHours" in value;
|
|
42
|
-
isInstance = isInstance && "timeZone" in value;
|
|
43
41
|
|
|
44
42
|
return isInstance;
|
|
45
43
|
}
|
|
46
44
|
|
|
47
|
-
export function
|
|
48
|
-
return
|
|
45
|
+
export function UpdateUserDTOFromJSON(json: any): UpdateUserDTO {
|
|
46
|
+
return UpdateUserDTOFromJSONTyped(json, false);
|
|
49
47
|
}
|
|
50
48
|
|
|
51
|
-
export function
|
|
49
|
+
export function UpdateUserDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateUserDTO {
|
|
52
50
|
if ((json === undefined) || (json === null)) {
|
|
53
51
|
return json;
|
|
54
52
|
}
|
|
55
53
|
return {
|
|
56
54
|
|
|
57
|
-
'
|
|
58
|
-
'
|
|
55
|
+
'timeZone': !exists(json, 'timeZone') ? undefined : json['timeZone'],
|
|
56
|
+
'workingHours': !exists(json, 'workingHours') ? undefined : json['workingHours'],
|
|
59
57
|
};
|
|
60
58
|
}
|
|
61
59
|
|
|
62
|
-
export function
|
|
60
|
+
export function UpdateUserDTOToJSON(value?: UpdateUserDTO | null): any {
|
|
63
61
|
if (value === undefined) {
|
|
64
62
|
return undefined;
|
|
65
63
|
}
|
|
@@ -68,8 +66,8 @@ export function UpdateUserDtoToJSON(value?: UpdateUserDto | null): any {
|
|
|
68
66
|
}
|
|
69
67
|
return {
|
|
70
68
|
|
|
71
|
-
'workingHours': value.workingHours,
|
|
72
69
|
'timeZone': value.timeZone,
|
|
70
|
+
'workingHours': value.workingHours,
|
|
73
71
|
};
|
|
74
72
|
}
|
|
75
73
|
|
package/models/index.js
CHANGED
|
@@ -29,7 +29,7 @@ __exportStar(require("./CreateGithubUserDTO"), exports);
|
|
|
29
29
|
__exportStar(require("./CreateJiraAccountDTO"), exports);
|
|
30
30
|
__exportStar(require("./CreateJiraUserDTO"), exports);
|
|
31
31
|
__exportStar(require("./CreateTokenResponseDTO"), exports);
|
|
32
|
-
__exportStar(require("./
|
|
32
|
+
__exportStar(require("./CreateUserDTO"), exports);
|
|
33
33
|
__exportStar(require("./EmployeeDTO"), exports);
|
|
34
34
|
__exportStar(require("./EmployeeInvoiceDTO"), exports);
|
|
35
35
|
__exportStar(require("./EmployeeProjectDTO"), exports);
|
|
@@ -64,8 +64,8 @@ __exportStar(require("./ProjectDTO"), exports);
|
|
|
64
64
|
__exportStar(require("./ProjectInputDTO"), exports);
|
|
65
65
|
__exportStar(require("./ProjectUpdateDTO"), exports);
|
|
66
66
|
__exportStar(require("./RolePermissionsDTO"), exports);
|
|
67
|
-
__exportStar(require("./
|
|
68
|
-
__exportStar(require("./
|
|
67
|
+
__exportStar(require("./SlackAccountResponseDTO"), exports);
|
|
68
|
+
__exportStar(require("./SlackUserDTO"), exports);
|
|
69
69
|
__exportStar(require("./TeamUpdateDTO"), exports);
|
|
70
70
|
__exportStar(require("./TimesheetDTO"), exports);
|
|
71
71
|
__exportStar(require("./TimesheetEmployeeInfo"), exports);
|
|
@@ -74,6 +74,6 @@ __exportStar(require("./TimesheetEntryUpdateDTO"), exports);
|
|
|
74
74
|
__exportStar(require("./TokenDTO"), exports);
|
|
75
75
|
__exportStar(require("./TokenInputDTO"), exports);
|
|
76
76
|
__exportStar(require("./TokenValidationErrorDTO"), exports);
|
|
77
|
-
__exportStar(require("./
|
|
77
|
+
__exportStar(require("./UpdateUserDTO"), exports);
|
|
78
78
|
__exportStar(require("./UserEnrollDTO"), exports);
|
|
79
79
|
//# sourceMappingURL=index.js.map
|
package/models/index.js.map
CHANGED
|
@@ -1 +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,qDAAmC;AACnC,+CAA6B;AAC7B,kEAAgD;AAChD,wDAAsC;AACtC,yDAAuC;AACvC,sDAAoC;AACpC,2DAAyC;AACzC,kDAAgC;AAChC,gDAA8B;AAC9B,uDAAqC;AACrC,uDAAqC;AACrC,sDAAoC;AACpC,6CAA2B;AAC3B,qDAAmC;AACnC,yDAAuC;AACvC,kDAAgC;AAChC,uDAAqC;AACrC,4DAA0C;AAC1C,kEAAgD;AAChD,qDAAmC;AACnC,+CAA6B;AAC7B,mDAAiC;AACjC,gDAA8B;AAC9B,+DAA6C;AAC7C,uDAAqC;AACrC,gEAA8C;AAC9C,4DAA0C;AAC1C,qDAAmC;AACnC,8DAA4C;AAC5C,8DAA4C;AAC5C,uDAAqC;AACrC,8DAA4C;AAC5C,yDAAuC;AACvC,sDAAoC;AACpC,wDAAsC;AACtC,oDAAkC;AAClC,mDAAiC;AACjC,kDAAgC;AAChC,+CAA6B;AAC7B,oDAAkC;AAClC,qDAAmC;AACnC,uDAAqC;AACrC,
|
|
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,qDAAmC;AACnC,+CAA6B;AAC7B,kEAAgD;AAChD,wDAAsC;AACtC,yDAAuC;AACvC,sDAAoC;AACpC,2DAAyC;AACzC,kDAAgC;AAChC,gDAA8B;AAC9B,uDAAqC;AACrC,uDAAqC;AACrC,sDAAoC;AACpC,6CAA2B;AAC3B,qDAAmC;AACnC,yDAAuC;AACvC,kDAAgC;AAChC,uDAAqC;AACrC,4DAA0C;AAC1C,kEAAgD;AAChD,qDAAmC;AACnC,+CAA6B;AAC7B,mDAAiC;AACjC,gDAA8B;AAC9B,+DAA6C;AAC7C,uDAAqC;AACrC,gEAA8C;AAC9C,4DAA0C;AAC1C,qDAAmC;AACnC,8DAA4C;AAC5C,8DAA4C;AAC5C,uDAAqC;AACrC,8DAA4C;AAC5C,yDAAuC;AACvC,sDAAoC;AACpC,wDAAsC;AACtC,oDAAkC;AAClC,mDAAiC;AACjC,kDAAgC;AAChC,+CAA6B;AAC7B,oDAAkC;AAClC,qDAAmC;AACnC,uDAAqC;AACrC,4DAA0C;AAC1C,iDAA+B;AAC/B,kDAAgC;AAChC,iDAA+B;AAC/B,0DAAwC;AACxC,sDAAoC;AACpC,4DAA0C;AAC1C,6CAA2B;AAC3B,kDAAgC;AAChC,4DAA0C;AAC1C,kDAAgC;AAChC,kDAAgC"}
|
package/models/index.ts
CHANGED
|
@@ -13,7 +13,7 @@ export * from './CreateGithubUserDTO';
|
|
|
13
13
|
export * from './CreateJiraAccountDTO';
|
|
14
14
|
export * from './CreateJiraUserDTO';
|
|
15
15
|
export * from './CreateTokenResponseDTO';
|
|
16
|
-
export * from './
|
|
16
|
+
export * from './CreateUserDTO';
|
|
17
17
|
export * from './EmployeeDTO';
|
|
18
18
|
export * from './EmployeeInvoiceDTO';
|
|
19
19
|
export * from './EmployeeProjectDTO';
|
|
@@ -48,8 +48,8 @@ export * from './ProjectDTO';
|
|
|
48
48
|
export * from './ProjectInputDTO';
|
|
49
49
|
export * from './ProjectUpdateDTO';
|
|
50
50
|
export * from './RolePermissionsDTO';
|
|
51
|
-
export * from './
|
|
52
|
-
export * from './
|
|
51
|
+
export * from './SlackAccountResponseDTO';
|
|
52
|
+
export * from './SlackUserDTO';
|
|
53
53
|
export * from './TeamUpdateDTO';
|
|
54
54
|
export * from './TimesheetDTO';
|
|
55
55
|
export * from './TimesheetEmployeeInfo';
|
|
@@ -58,5 +58,5 @@ export * from './TimesheetEntryUpdateDTO';
|
|
|
58
58
|
export * from './TokenDTO';
|
|
59
59
|
export * from './TokenInputDTO';
|
|
60
60
|
export * from './TokenValidationErrorDTO';
|
|
61
|
-
export * from './
|
|
61
|
+
export * from './UpdateUserDTO';
|
|
62
62
|
export * from './UserEnrollDTO';
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CreateUserDto.js","sourceRoot":"","sources":["CreateUserDto.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AA6BH;;GAEG;AACH,SAAgB,uBAAuB,CAAC,KAAa;IACjD,IAAI,UAAU,GAAG,IAAI,CAAC;IACtB,UAAU,GAAG,UAAU,IAAI,OAAO,IAAI,KAAK,CAAC;IAC5C,UAAU,GAAG,UAAU,IAAI,MAAM,IAAI,KAAK,CAAC;IAC3C,UAAU,GAAG,UAAU,IAAI,aAAa,IAAI,KAAK,CAAC;IAElD,OAAO,UAAU,CAAC;AACtB,CAAC;AAPD,0DAOC;AAED,SAAgB,qBAAqB,CAAC,IAAS;IAC3C,OAAO,0BAA0B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACnD,CAAC;AAFD,sDAEC;AAED,SAAgB,0BAA0B,CAAC,IAAS,EAAE,mBAA4B;IAC9E,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,CAAC;QAC1C,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC;QACtB,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;QACpB,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC;KACrC,CAAC;AACN,CAAC;AAVD,gEAUC;AAED,SAAgB,mBAAmB,CAAC,KAA4B;IAC5D,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,OAAO,EAAE,KAAK,CAAC,KAAK;QACpB,MAAM,EAAE,KAAK,CAAC,IAAI;QAClB,aAAa,EAAE,KAAK,CAAC,WAAW;KACnC,CAAC;AACN,CAAC;AAbD,kDAaC"}
|
|
@@ -1,51 +0,0 @@
|
|
|
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.SlackAccountReponseDtoToJSON = exports.SlackAccountReponseDtoFromJSONTyped = exports.SlackAccountReponseDtoFromJSON = exports.instanceOfSlackAccountReponseDto = void 0;
|
|
17
|
-
/**
|
|
18
|
-
* Check if a given object implements the SlackAccountReponseDto interface.
|
|
19
|
-
*/
|
|
20
|
-
function instanceOfSlackAccountReponseDto(value) {
|
|
21
|
-
let isInstance = true;
|
|
22
|
-
isInstance = isInstance && "slackAccountId" in value;
|
|
23
|
-
return isInstance;
|
|
24
|
-
}
|
|
25
|
-
exports.instanceOfSlackAccountReponseDto = instanceOfSlackAccountReponseDto;
|
|
26
|
-
function SlackAccountReponseDtoFromJSON(json) {
|
|
27
|
-
return SlackAccountReponseDtoFromJSONTyped(json, false);
|
|
28
|
-
}
|
|
29
|
-
exports.SlackAccountReponseDtoFromJSON = SlackAccountReponseDtoFromJSON;
|
|
30
|
-
function SlackAccountReponseDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
-
if ((json === undefined) || (json === null)) {
|
|
32
|
-
return json;
|
|
33
|
-
}
|
|
34
|
-
return {
|
|
35
|
-
'slackAccountId': json['slackAccountId'],
|
|
36
|
-
};
|
|
37
|
-
}
|
|
38
|
-
exports.SlackAccountReponseDtoFromJSONTyped = SlackAccountReponseDtoFromJSONTyped;
|
|
39
|
-
function SlackAccountReponseDtoToJSON(value) {
|
|
40
|
-
if (value === undefined) {
|
|
41
|
-
return undefined;
|
|
42
|
-
}
|
|
43
|
-
if (value === null) {
|
|
44
|
-
return null;
|
|
45
|
-
}
|
|
46
|
-
return {
|
|
47
|
-
'slackAccountId': value.slackAccountId,
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
exports.SlackAccountReponseDtoToJSON = SlackAccountReponseDtoToJSON;
|
|
51
|
-
//# sourceMappingURL=SlackAccountReponseDto.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SlackAccountReponseDto.js","sourceRoot":"","sources":["SlackAccountReponseDto.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAiBH;;GAEG;AACH,SAAgB,gCAAgC,CAAC,KAAa;IAC1D,IAAI,UAAU,GAAG,IAAI,CAAC;IACtB,UAAU,GAAG,UAAU,IAAI,gBAAgB,IAAI,KAAK,CAAC;IAErD,OAAO,UAAU,CAAC;AACtB,CAAC;AALD,4EAKC;AAED,SAAgB,8BAA8B,CAAC,IAAS;IACpD,OAAO,mCAAmC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC5D,CAAC;AAFD,wEAEC;AAED,SAAgB,mCAAmC,CAAC,IAAS,EAAE,mBAA4B;IACvF,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;KAC3C,CAAC;AACN,CAAC;AARD,kFAQC;AAED,SAAgB,4BAA4B,CAAC,KAAqC;IAC9E,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;KACzC,CAAC;AACN,CAAC;AAXD,oEAWC"}
|
package/models/SlackUserDto.js
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
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.SlackUserDtoToJSON = exports.SlackUserDtoFromJSONTyped = exports.SlackUserDtoFromJSON = exports.instanceOfSlackUserDto = void 0;
|
|
17
|
-
/**
|
|
18
|
-
* Check if a given object implements the SlackUserDto interface.
|
|
19
|
-
*/
|
|
20
|
-
function instanceOfSlackUserDto(value) {
|
|
21
|
-
let isInstance = true;
|
|
22
|
-
isInstance = isInstance && "email" in value;
|
|
23
|
-
isInstance = isInstance && "workingHours" in value;
|
|
24
|
-
isInstance = isInstance && "timeZone" in value;
|
|
25
|
-
return isInstance;
|
|
26
|
-
}
|
|
27
|
-
exports.instanceOfSlackUserDto = instanceOfSlackUserDto;
|
|
28
|
-
function SlackUserDtoFromJSON(json) {
|
|
29
|
-
return SlackUserDtoFromJSONTyped(json, false);
|
|
30
|
-
}
|
|
31
|
-
exports.SlackUserDtoFromJSON = SlackUserDtoFromJSON;
|
|
32
|
-
function SlackUserDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
-
if ((json === undefined) || (json === null)) {
|
|
34
|
-
return json;
|
|
35
|
-
}
|
|
36
|
-
return {
|
|
37
|
-
'email': json['email'],
|
|
38
|
-
'workingHours': json['workingHours'],
|
|
39
|
-
'timeZone': json['timeZone'],
|
|
40
|
-
};
|
|
41
|
-
}
|
|
42
|
-
exports.SlackUserDtoFromJSONTyped = SlackUserDtoFromJSONTyped;
|
|
43
|
-
function SlackUserDtoToJSON(value) {
|
|
44
|
-
if (value === undefined) {
|
|
45
|
-
return undefined;
|
|
46
|
-
}
|
|
47
|
-
if (value === null) {
|
|
48
|
-
return null;
|
|
49
|
-
}
|
|
50
|
-
return {
|
|
51
|
-
'email': value.email,
|
|
52
|
-
'workingHours': value.workingHours,
|
|
53
|
-
'timeZone': value.timeZone,
|
|
54
|
-
};
|
|
55
|
-
}
|
|
56
|
-
exports.SlackUserDtoToJSON = SlackUserDtoToJSON;
|
|
57
|
-
//# sourceMappingURL=SlackUserDto.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SlackUserDto.js","sourceRoot":"","sources":["SlackUserDto.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AA6BH;;GAEG;AACH,SAAgB,sBAAsB,CAAC,KAAa;IAChD,IAAI,UAAU,GAAG,IAAI,CAAC;IACtB,UAAU,GAAG,UAAU,IAAI,OAAO,IAAI,KAAK,CAAC;IAC5C,UAAU,GAAG,UAAU,IAAI,cAAc,IAAI,KAAK,CAAC;IACnD,UAAU,GAAG,UAAU,IAAI,UAAU,IAAI,KAAK,CAAC;IAE/C,OAAO,UAAU,CAAC;AACtB,CAAC;AAPD,wDAOC;AAED,SAAgB,oBAAoB,CAAC,IAAS;IAC1C,OAAO,yBAAyB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAClD,CAAC;AAFD,oDAEC;AAED,SAAgB,yBAAyB,CAAC,IAAS,EAAE,mBAA4B;IAC7E,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,CAAC;QAC1C,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC;QACtB,cAAc,EAAE,IAAI,CAAC,cAAc,CAAC;QACpC,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC;KAC/B,CAAC;AACN,CAAC;AAVD,8DAUC;AAED,SAAgB,kBAAkB,CAAC,KAA2B;IAC1D,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,OAAO,EAAE,KAAK,CAAC,KAAK;QACpB,cAAc,EAAE,KAAK,CAAC,YAAY;QAClC,UAAU,EAAE,KAAK,CAAC,QAAQ;KAC7B,CAAC;AACN,CAAC;AAbD,gDAaC"}
|
package/models/UpdateUserDto.js
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
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.UpdateUserDtoToJSON = exports.UpdateUserDtoFromJSONTyped = exports.UpdateUserDtoFromJSON = exports.instanceOfUpdateUserDto = void 0;
|
|
17
|
-
/**
|
|
18
|
-
* Check if a given object implements the UpdateUserDto interface.
|
|
19
|
-
*/
|
|
20
|
-
function instanceOfUpdateUserDto(value) {
|
|
21
|
-
let isInstance = true;
|
|
22
|
-
isInstance = isInstance && "workingHours" in value;
|
|
23
|
-
isInstance = isInstance && "timeZone" in value;
|
|
24
|
-
return isInstance;
|
|
25
|
-
}
|
|
26
|
-
exports.instanceOfUpdateUserDto = instanceOfUpdateUserDto;
|
|
27
|
-
function UpdateUserDtoFromJSON(json) {
|
|
28
|
-
return UpdateUserDtoFromJSONTyped(json, false);
|
|
29
|
-
}
|
|
30
|
-
exports.UpdateUserDtoFromJSON = UpdateUserDtoFromJSON;
|
|
31
|
-
function UpdateUserDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
-
if ((json === undefined) || (json === null)) {
|
|
33
|
-
return json;
|
|
34
|
-
}
|
|
35
|
-
return {
|
|
36
|
-
'workingHours': json['workingHours'],
|
|
37
|
-
'timeZone': json['timeZone'],
|
|
38
|
-
};
|
|
39
|
-
}
|
|
40
|
-
exports.UpdateUserDtoFromJSONTyped = UpdateUserDtoFromJSONTyped;
|
|
41
|
-
function UpdateUserDtoToJSON(value) {
|
|
42
|
-
if (value === undefined) {
|
|
43
|
-
return undefined;
|
|
44
|
-
}
|
|
45
|
-
if (value === null) {
|
|
46
|
-
return null;
|
|
47
|
-
}
|
|
48
|
-
return {
|
|
49
|
-
'workingHours': value.workingHours,
|
|
50
|
-
'timeZone': value.timeZone,
|
|
51
|
-
};
|
|
52
|
-
}
|
|
53
|
-
exports.UpdateUserDtoToJSON = UpdateUserDtoToJSON;
|
|
54
|
-
//# sourceMappingURL=UpdateUserDto.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"UpdateUserDto.js","sourceRoot":"","sources":["UpdateUserDto.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAuBH;;GAEG;AACH,SAAgB,uBAAuB,CAAC,KAAa;IACjD,IAAI,UAAU,GAAG,IAAI,CAAC;IACtB,UAAU,GAAG,UAAU,IAAI,cAAc,IAAI,KAAK,CAAC;IACnD,UAAU,GAAG,UAAU,IAAI,UAAU,IAAI,KAAK,CAAC;IAE/C,OAAO,UAAU,CAAC;AACtB,CAAC;AAND,0DAMC;AAED,SAAgB,qBAAqB,CAAC,IAAS;IAC3C,OAAO,0BAA0B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACnD,CAAC;AAFD,sDAEC;AAED,SAAgB,0BAA0B,CAAC,IAAS,EAAE,mBAA4B;IAC9E,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,CAAC;QAC1C,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,cAAc,EAAE,IAAI,CAAC,cAAc,CAAC;QACpC,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC;KAC/B,CAAC;AACN,CAAC;AATD,gEASC;AAED,SAAgB,mBAAmB,CAAC,KAA4B;IAC5D,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,cAAc,EAAE,KAAK,CAAC,YAAY;QAClC,UAAU,EAAE,KAAK,CAAC,QAAQ;KAC7B,CAAC;AACN,CAAC;AAZD,kDAYC"}
|