tuix-projects-service-client 0.0.21 → 0.0.22
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 +10 -0
- package/apis/ClientApi.js +149 -0
- package/apis/ClientApi.js.map +1 -1
- package/apis/ClientApi.ts +219 -0
- package/docs/ClientApi.md +283 -0
- package/docs/ClientSlackAccountResponseDTO.md +34 -0
- package/docs/ClientSlackUserAccountDTO.md +36 -0
- package/docs/ClientSlackUserDTO.md +38 -0
- package/docs/ClientUpdateSlackUserDTO.md +36 -0
- package/docs/CreateSlackUserRequestDTO.md +38 -0
- package/models/ClientSlackAccountResponseDTO.js +49 -0
- package/models/ClientSlackAccountResponseDTO.js.map +1 -0
- package/models/ClientSlackAccountResponseDTO.ts +65 -0
- package/models/ClientSlackUserAccountDTO.js +52 -0
- package/models/ClientSlackUserAccountDTO.js.map +1 -0
- package/models/ClientSlackUserAccountDTO.ts +81 -0
- package/models/ClientSlackUserDTO.js +53 -0
- package/models/ClientSlackUserDTO.js.map +1 -0
- package/models/ClientSlackUserDTO.ts +81 -0
- package/models/ClientUpdateSlackUserDTO.js +51 -0
- package/models/ClientUpdateSlackUserDTO.js.map +1 -0
- package/models/ClientUpdateSlackUserDTO.ts +73 -0
- package/models/CreateSlackUserRequestDTO.js +53 -0
- package/models/CreateSlackUserRequestDTO.js.map +1 -0
- package/models/CreateSlackUserRequestDTO.ts +81 -0
- package/models/index.js +5 -0
- package/models/index.js.map +1 -1
- package/models/index.ts +5 -0
- package/package.json +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
|
|
2
|
+
# ClientSlackUserDTO
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type
|
|
8
|
+
------------ | -------------
|
|
9
|
+
`email` | string
|
|
10
|
+
`timeZone` | string
|
|
11
|
+
`workingHours` | number
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import type { ClientSlackUserDTO } from ''
|
|
17
|
+
|
|
18
|
+
// TODO: Update the object below with actual values
|
|
19
|
+
const example = {
|
|
20
|
+
"email": null,
|
|
21
|
+
"timeZone": null,
|
|
22
|
+
"workingHours": null,
|
|
23
|
+
} satisfies ClientSlackUserDTO
|
|
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 ClientSlackUserDTO
|
|
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,36 @@
|
|
|
1
|
+
|
|
2
|
+
# ClientUpdateSlackUserDTO
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type
|
|
8
|
+
------------ | -------------
|
|
9
|
+
`timeZone` | string
|
|
10
|
+
`workingHours` | number
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import type { ClientUpdateSlackUserDTO } from ''
|
|
16
|
+
|
|
17
|
+
// TODO: Update the object below with actual values
|
|
18
|
+
const example = {
|
|
19
|
+
"timeZone": null,
|
|
20
|
+
"workingHours": null,
|
|
21
|
+
} satisfies ClientUpdateSlackUserDTO
|
|
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 ClientUpdateSlackUserDTO
|
|
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,38 @@
|
|
|
1
|
+
|
|
2
|
+
# CreateSlackUserRequestDTO
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type
|
|
8
|
+
------------ | -------------
|
|
9
|
+
`code` | string
|
|
10
|
+
`email` | string
|
|
11
|
+
`redirectUri` | string
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import type { CreateSlackUserRequestDTO } from ''
|
|
17
|
+
|
|
18
|
+
// TODO: Update the object below with actual values
|
|
19
|
+
const example = {
|
|
20
|
+
"code": null,
|
|
21
|
+
"email": null,
|
|
22
|
+
"redirectUri": null,
|
|
23
|
+
} satisfies CreateSlackUserRequestDTO
|
|
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 CreateSlackUserRequestDTO
|
|
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,49 @@
|
|
|
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.instanceOfClientSlackAccountResponseDTO = instanceOfClientSlackAccountResponseDTO;
|
|
17
|
+
exports.ClientSlackAccountResponseDTOFromJSON = ClientSlackAccountResponseDTOFromJSON;
|
|
18
|
+
exports.ClientSlackAccountResponseDTOFromJSONTyped = ClientSlackAccountResponseDTOFromJSONTyped;
|
|
19
|
+
exports.ClientSlackAccountResponseDTOToJSON = ClientSlackAccountResponseDTOToJSON;
|
|
20
|
+
exports.ClientSlackAccountResponseDTOToJSONTyped = ClientSlackAccountResponseDTOToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the ClientSlackAccountResponseDTO interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfClientSlackAccountResponseDTO(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function ClientSlackAccountResponseDTOFromJSON(json) {
|
|
28
|
+
return ClientSlackAccountResponseDTOFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function ClientSlackAccountResponseDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'slackAccountId': json['slackAccountId'] == null ? undefined : json['slackAccountId'],
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
function ClientSlackAccountResponseDTOToJSON(json) {
|
|
39
|
+
return ClientSlackAccountResponseDTOToJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
function ClientSlackAccountResponseDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
42
|
+
if (value == null) {
|
|
43
|
+
return value;
|
|
44
|
+
}
|
|
45
|
+
return {
|
|
46
|
+
'slackAccountId': value['slackAccountId'],
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=ClientSlackAccountResponseDTO.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClientSlackAccountResponseDTO.js","sourceRoot":"","sources":["ClientSlackAccountResponseDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAoBH,0FAEC;AAED,sFAEC;AAED,gGAQC;AAED,kFAEC;AAED,4FASC;AAlCD;;GAEG;AACH,SAAgB,uCAAuC,CAAC,KAAa;IACjE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,qCAAqC,CAAC,IAAS;IAC3D,OAAO,0CAA0C,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACnE,CAAC;AAED,SAAgB,0CAA0C,CAAC,IAAS,EAAE,mBAA4B;IAC9F,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,gBAAgB,EAAE,IAAI,CAAC,gBAAgB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC;KACxF,CAAC;AACN,CAAC;AAED,SAAgB,mCAAmC,CAAC,IAAS;IACzD,OAAO,wCAAwC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACjE,CAAC;AAED,SAAgB,wCAAwC,CAAC,KAA4C,EAAE,sBAA+B,KAAK;IACvI,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,gBAAgB,EAAE,KAAK,CAAC,gBAAgB,CAAC;KAC5C,CAAC;AACN,CAAC"}
|
|
@@ -0,0 +1,65 @@
|
|
|
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 ClientSlackAccountResponseDTO
|
|
20
|
+
*/
|
|
21
|
+
export interface ClientSlackAccountResponseDTO {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof ClientSlackAccountResponseDTO
|
|
26
|
+
*/
|
|
27
|
+
slackAccountId?: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Check if a given object implements the ClientSlackAccountResponseDTO interface.
|
|
32
|
+
*/
|
|
33
|
+
export function instanceOfClientSlackAccountResponseDTO(value: object): value is ClientSlackAccountResponseDTO {
|
|
34
|
+
return true;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export function ClientSlackAccountResponseDTOFromJSON(json: any): ClientSlackAccountResponseDTO {
|
|
38
|
+
return ClientSlackAccountResponseDTOFromJSONTyped(json, false);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export function ClientSlackAccountResponseDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClientSlackAccountResponseDTO {
|
|
42
|
+
if (json == null) {
|
|
43
|
+
return json;
|
|
44
|
+
}
|
|
45
|
+
return {
|
|
46
|
+
|
|
47
|
+
'slackAccountId': json['slackAccountId'] == null ? undefined : json['slackAccountId'],
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export function ClientSlackAccountResponseDTOToJSON(json: any): ClientSlackAccountResponseDTO {
|
|
52
|
+
return ClientSlackAccountResponseDTOToJSONTyped(json, false);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export function ClientSlackAccountResponseDTOToJSONTyped(value?: ClientSlackAccountResponseDTO | null, ignoreDiscriminator: boolean = false): any {
|
|
56
|
+
if (value == null) {
|
|
57
|
+
return value;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
return {
|
|
61
|
+
|
|
62
|
+
'slackAccountId': value['slackAccountId'],
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
@@ -0,0 +1,52 @@
|
|
|
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.instanceOfClientSlackUserAccountDTO = instanceOfClientSlackUserAccountDTO;
|
|
17
|
+
exports.ClientSlackUserAccountDTOFromJSON = ClientSlackUserAccountDTOFromJSON;
|
|
18
|
+
exports.ClientSlackUserAccountDTOFromJSONTyped = ClientSlackUserAccountDTOFromJSONTyped;
|
|
19
|
+
exports.ClientSlackUserAccountDTOToJSON = ClientSlackUserAccountDTOToJSON;
|
|
20
|
+
exports.ClientSlackUserAccountDTOToJSONTyped = ClientSlackUserAccountDTOToJSONTyped;
|
|
21
|
+
const ClientSlackAccountResponseDTO_1 = require("./ClientSlackAccountResponseDTO");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the ClientSlackUserAccountDTO interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfClientSlackUserAccountDTO(value) {
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
function ClientSlackUserAccountDTOFromJSON(json) {
|
|
29
|
+
return ClientSlackUserAccountDTOFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
function ClientSlackUserAccountDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
if (json == null) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
37
|
+
'slackAccount': json['slackAccount'] == null ? undefined : (0, ClientSlackAccountResponseDTO_1.ClientSlackAccountResponseDTOFromJSON)(json['slackAccount']),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
function ClientSlackUserAccountDTOToJSON(json) {
|
|
41
|
+
return ClientSlackUserAccountDTOToJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
function ClientSlackUserAccountDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
44
|
+
if (value == null) {
|
|
45
|
+
return value;
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
'id': value['id'],
|
|
49
|
+
'slackAccount': (0, ClientSlackAccountResponseDTO_1.ClientSlackAccountResponseDTOToJSON)(value['slackAccount']),
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
//# sourceMappingURL=ClientSlackUserAccountDTO.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClientSlackUserAccountDTO.js","sourceRoot":"","sources":["ClientSlackUserAccountDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAkCH,kFAEC;AAED,8EAEC;AAED,wFASC;AAED,0EAEC;AAED,oFAUC;AA/DD,mFAKyC;AAsBzC;;GAEG;AACH,SAAgB,mCAAmC,CAAC,KAAa;IAC7D,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,iCAAiC,CAAC,IAAS;IACvD,OAAO,sCAAsC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC/D,CAAC;AAED,SAAgB,sCAAsC,CAAC,IAAS,EAAE,mBAA4B;IAC1F,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;QACjD,cAAc,EAAE,IAAI,CAAC,cAAc,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAA,qEAAqC,EAAC,IAAI,CAAC,cAAc,CAAC,CAAC;KACzH,CAAC;AACN,CAAC;AAED,SAAgB,+BAA+B,CAAC,IAAS;IACrD,OAAO,oCAAoC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC7D,CAAC;AAED,SAAgB,oCAAoC,CAAC,KAAwC,EAAE,sBAA+B,KAAK;IAC/H,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;QACjB,cAAc,EAAE,IAAA,mEAAmC,EAAC,KAAK,CAAC,cAAc,CAAC,CAAC;KAC7E,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
|
+
import type { ClientSlackAccountResponseDTO } from './ClientSlackAccountResponseDTO';
|
|
17
|
+
import {
|
|
18
|
+
ClientSlackAccountResponseDTOFromJSON,
|
|
19
|
+
ClientSlackAccountResponseDTOFromJSONTyped,
|
|
20
|
+
ClientSlackAccountResponseDTOToJSON,
|
|
21
|
+
ClientSlackAccountResponseDTOToJSONTyped,
|
|
22
|
+
} from './ClientSlackAccountResponseDTO';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @export
|
|
27
|
+
* @interface ClientSlackUserAccountDTO
|
|
28
|
+
*/
|
|
29
|
+
export interface ClientSlackUserAccountDTO {
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ClientSlackUserAccountDTO
|
|
34
|
+
*/
|
|
35
|
+
id?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {ClientSlackAccountResponseDTO}
|
|
39
|
+
* @memberof ClientSlackUserAccountDTO
|
|
40
|
+
*/
|
|
41
|
+
slackAccount?: ClientSlackAccountResponseDTO;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Check if a given object implements the ClientSlackUserAccountDTO interface.
|
|
46
|
+
*/
|
|
47
|
+
export function instanceOfClientSlackUserAccountDTO(value: object): value is ClientSlackUserAccountDTO {
|
|
48
|
+
return true;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export function ClientSlackUserAccountDTOFromJSON(json: any): ClientSlackUserAccountDTO {
|
|
52
|
+
return ClientSlackUserAccountDTOFromJSONTyped(json, false);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export function ClientSlackUserAccountDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClientSlackUserAccountDTO {
|
|
56
|
+
if (json == null) {
|
|
57
|
+
return json;
|
|
58
|
+
}
|
|
59
|
+
return {
|
|
60
|
+
|
|
61
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
62
|
+
'slackAccount': json['slackAccount'] == null ? undefined : ClientSlackAccountResponseDTOFromJSON(json['slackAccount']),
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export function ClientSlackUserAccountDTOToJSON(json: any): ClientSlackUserAccountDTO {
|
|
67
|
+
return ClientSlackUserAccountDTOToJSONTyped(json, false);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export function ClientSlackUserAccountDTOToJSONTyped(value?: ClientSlackUserAccountDTO | null, ignoreDiscriminator: boolean = false): any {
|
|
71
|
+
if (value == null) {
|
|
72
|
+
return value;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
return {
|
|
76
|
+
|
|
77
|
+
'id': value['id'],
|
|
78
|
+
'slackAccount': ClientSlackAccountResponseDTOToJSON(value['slackAccount']),
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
|
|
@@ -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.instanceOfClientSlackUserDTO = instanceOfClientSlackUserDTO;
|
|
17
|
+
exports.ClientSlackUserDTOFromJSON = ClientSlackUserDTOFromJSON;
|
|
18
|
+
exports.ClientSlackUserDTOFromJSONTyped = ClientSlackUserDTOFromJSONTyped;
|
|
19
|
+
exports.ClientSlackUserDTOToJSON = ClientSlackUserDTOToJSON;
|
|
20
|
+
exports.ClientSlackUserDTOToJSONTyped = ClientSlackUserDTOToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the ClientSlackUserDTO interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfClientSlackUserDTO(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function ClientSlackUserDTOFromJSON(json) {
|
|
28
|
+
return ClientSlackUserDTOFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function ClientSlackUserDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'email': json['email'] == null ? undefined : json['email'],
|
|
36
|
+
'timeZone': json['timeZone'] == null ? undefined : json['timeZone'],
|
|
37
|
+
'workingHours': json['workingHours'] == null ? undefined : json['workingHours'],
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
function ClientSlackUserDTOToJSON(json) {
|
|
41
|
+
return ClientSlackUserDTOToJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
function ClientSlackUserDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
44
|
+
if (value == null) {
|
|
45
|
+
return value;
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
'email': value['email'],
|
|
49
|
+
'timeZone': value['timeZone'],
|
|
50
|
+
'workingHours': value['workingHours'],
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
//# sourceMappingURL=ClientSlackUserDTO.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClientSlackUserDTO.js","sourceRoot":"","sources":["ClientSlackUserDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAgCH,oEAEC;AAED,gEAEC;AAED,0EAUC;AAED,4DAEC;AAED,sEAWC;AAtCD;;GAEG;AACH,SAAgB,4BAA4B,CAAC,KAAa;IACtD,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,0BAA0B,CAAC,IAAS;IAChD,OAAO,+BAA+B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxD,CAAC;AAED,SAAgB,+BAA+B,CAAC,IAAS,EAAE,mBAA4B;IACnF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC;QAC1D,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC;QACnE,cAAc,EAAE,IAAI,CAAC,cAAc,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC;KAClF,CAAC;AACN,CAAC;AAED,SAAgB,wBAAwB,CAAC,IAAS;IAC9C,OAAO,6BAA6B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACtD,CAAC;AAED,SAAgB,6BAA6B,CAAC,KAAiC,EAAE,sBAA+B,KAAK;IACjH,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC;QACvB,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC;QAC7B,cAAc,EAAE,KAAK,CAAC,cAAc,CAAC;KACxC,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 ClientSlackUserDTO
|
|
20
|
+
*/
|
|
21
|
+
export interface ClientSlackUserDTO {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof ClientSlackUserDTO
|
|
26
|
+
*/
|
|
27
|
+
email?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof ClientSlackUserDTO
|
|
32
|
+
*/
|
|
33
|
+
timeZone?: string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {number}
|
|
37
|
+
* @memberof ClientSlackUserDTO
|
|
38
|
+
*/
|
|
39
|
+
workingHours?: number;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Check if a given object implements the ClientSlackUserDTO interface.
|
|
44
|
+
*/
|
|
45
|
+
export function instanceOfClientSlackUserDTO(value: object): value is ClientSlackUserDTO {
|
|
46
|
+
return true;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function ClientSlackUserDTOFromJSON(json: any): ClientSlackUserDTO {
|
|
50
|
+
return ClientSlackUserDTOFromJSONTyped(json, false);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export function ClientSlackUserDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClientSlackUserDTO {
|
|
54
|
+
if (json == null) {
|
|
55
|
+
return json;
|
|
56
|
+
}
|
|
57
|
+
return {
|
|
58
|
+
|
|
59
|
+
'email': json['email'] == null ? undefined : json['email'],
|
|
60
|
+
'timeZone': json['timeZone'] == null ? undefined : json['timeZone'],
|
|
61
|
+
'workingHours': json['workingHours'] == null ? undefined : json['workingHours'],
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export function ClientSlackUserDTOToJSON(json: any): ClientSlackUserDTO {
|
|
66
|
+
return ClientSlackUserDTOToJSONTyped(json, false);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export function ClientSlackUserDTOToJSONTyped(value?: ClientSlackUserDTO | null, ignoreDiscriminator: boolean = false): any {
|
|
70
|
+
if (value == null) {
|
|
71
|
+
return value;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
return {
|
|
75
|
+
|
|
76
|
+
'email': value['email'],
|
|
77
|
+
'timeZone': value['timeZone'],
|
|
78
|
+
'workingHours': value['workingHours'],
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
|
|
@@ -0,0 +1,51 @@
|
|
|
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.instanceOfClientUpdateSlackUserDTO = instanceOfClientUpdateSlackUserDTO;
|
|
17
|
+
exports.ClientUpdateSlackUserDTOFromJSON = ClientUpdateSlackUserDTOFromJSON;
|
|
18
|
+
exports.ClientUpdateSlackUserDTOFromJSONTyped = ClientUpdateSlackUserDTOFromJSONTyped;
|
|
19
|
+
exports.ClientUpdateSlackUserDTOToJSON = ClientUpdateSlackUserDTOToJSON;
|
|
20
|
+
exports.ClientUpdateSlackUserDTOToJSONTyped = ClientUpdateSlackUserDTOToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the ClientUpdateSlackUserDTO interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfClientUpdateSlackUserDTO(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function ClientUpdateSlackUserDTOFromJSON(json) {
|
|
28
|
+
return ClientUpdateSlackUserDTOFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function ClientUpdateSlackUserDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'timeZone': json['timeZone'] == null ? undefined : json['timeZone'],
|
|
36
|
+
'workingHours': json['workingHours'] == null ? undefined : json['workingHours'],
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function ClientUpdateSlackUserDTOToJSON(json) {
|
|
40
|
+
return ClientUpdateSlackUserDTOToJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
function ClientUpdateSlackUserDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
43
|
+
if (value == null) {
|
|
44
|
+
return value;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
'timeZone': value['timeZone'],
|
|
48
|
+
'workingHours': value['workingHours'],
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=ClientUpdateSlackUserDTO.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClientUpdateSlackUserDTO.js","sourceRoot":"","sources":["ClientUpdateSlackUserDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AA0BH,gFAEC;AAED,4EAEC;AAED,sFASC;AAED,wEAEC;AAED,kFAUC;AApCD;;GAEG;AACH,SAAgB,kCAAkC,CAAC,KAAa;IAC5D,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,gCAAgC,CAAC,IAAS;IACtD,OAAO,qCAAqC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC9D,CAAC;AAED,SAAgB,qCAAqC,CAAC,IAAS,EAAE,mBAA4B;IACzF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC;QACnE,cAAc,EAAE,IAAI,CAAC,cAAc,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC;KAClF,CAAC;AACN,CAAC;AAED,SAAgB,8BAA8B,CAAC,IAAS;IACpD,OAAO,mCAAmC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC5D,CAAC;AAED,SAAgB,mCAAmC,CAAC,KAAuC,EAAE,sBAA+B,KAAK;IAC7H,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC;QAC7B,cAAc,EAAE,KAAK,CAAC,cAAc,CAAC;KACxC,CAAC;AACN,CAAC"}
|
|
@@ -0,0 +1,73 @@
|
|
|
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 ClientUpdateSlackUserDTO
|
|
20
|
+
*/
|
|
21
|
+
export interface ClientUpdateSlackUserDTO {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof ClientUpdateSlackUserDTO
|
|
26
|
+
*/
|
|
27
|
+
timeZone?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {number}
|
|
31
|
+
* @memberof ClientUpdateSlackUserDTO
|
|
32
|
+
*/
|
|
33
|
+
workingHours?: number;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Check if a given object implements the ClientUpdateSlackUserDTO interface.
|
|
38
|
+
*/
|
|
39
|
+
export function instanceOfClientUpdateSlackUserDTO(value: object): value is ClientUpdateSlackUserDTO {
|
|
40
|
+
return true;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function ClientUpdateSlackUserDTOFromJSON(json: any): ClientUpdateSlackUserDTO {
|
|
44
|
+
return ClientUpdateSlackUserDTOFromJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export function ClientUpdateSlackUserDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClientUpdateSlackUserDTO {
|
|
48
|
+
if (json == null) {
|
|
49
|
+
return json;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
|
|
53
|
+
'timeZone': json['timeZone'] == null ? undefined : json['timeZone'],
|
|
54
|
+
'workingHours': json['workingHours'] == null ? undefined : json['workingHours'],
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export function ClientUpdateSlackUserDTOToJSON(json: any): ClientUpdateSlackUserDTO {
|
|
59
|
+
return ClientUpdateSlackUserDTOToJSONTyped(json, false);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export function ClientUpdateSlackUserDTOToJSONTyped(value?: ClientUpdateSlackUserDTO | null, ignoreDiscriminator: boolean = false): any {
|
|
63
|
+
if (value == null) {
|
|
64
|
+
return value;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
return {
|
|
68
|
+
|
|
69
|
+
'timeZone': value['timeZone'],
|
|
70
|
+
'workingHours': value['workingHours'],
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
|