@emilgroup/task-sdk-node 1.0.3 → 1.2.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 +49 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +84 -1
- package/api/assignees-api.ts +166 -0
- package/api/categories-api.ts +695 -0
- package/api/default-api.ts +128 -0
- package/api/hub-spot-api.ts +169 -0
- package/api/statuses-api.ts +667 -0
- package/api/tasks-api.ts +695 -0
- package/api.ts +41 -0
- package/base.ts +327 -0
- package/common.ts +199 -0
- package/configuration.ts +118 -0
- package/dist/api/assignees-api.d.ts +96 -0
- package/dist/api/assignees-api.js +228 -0
- package/dist/api/categories-api.d.ts +393 -0
- package/dist/api/categories-api.js +646 -0
- package/dist/api/default-api.d.ts +70 -0
- package/dist/api/default-api.js +204 -0
- package/dist/api/hub-spot-api.d.ts +97 -0
- package/dist/api/hub-spot-api.js +228 -0
- package/dist/api/statuses-api.d.ts +375 -0
- package/dist/api/statuses-api.js +634 -0
- package/dist/api/tasks-api.d.ts +393 -0
- package/dist/api/tasks-api.js +646 -0
- package/dist/api.d.ts +17 -0
- package/dist/api.js +35 -0
- package/dist/base.d.ts +88 -0
- package/dist/base.js +434 -0
- package/dist/common.d.ts +92 -0
- package/dist/common.js +277 -0
- package/dist/configuration.d.ts +96 -0
- package/dist/configuration.js +52 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +36 -0
- package/dist/models/assignee-class.d.ts +24 -0
- package/dist/models/assignee-class.js +15 -0
- package/dist/models/category-class.d.ts +66 -0
- package/dist/models/category-class.js +15 -0
- package/dist/models/create-category-request-dto.d.ts +30 -0
- package/dist/models/create-category-request-dto.js +15 -0
- package/dist/models/create-category-response-class.d.ts +25 -0
- package/dist/models/create-category-response-class.js +15 -0
- package/dist/models/create-hub-spot-ticket-request-dto.d.ts +31 -0
- package/dist/models/create-hub-spot-ticket-request-dto.js +15 -0
- package/dist/models/create-hub-spot-ticket-response-class.d.ts +25 -0
- package/dist/models/create-hub-spot-ticket-response-class.js +15 -0
- package/dist/models/create-status-request-dto.d.ts +36 -0
- package/dist/models/create-status-request-dto.js +15 -0
- package/dist/models/create-status-response-class.d.ts +25 -0
- package/dist/models/create-status-response-class.js +15 -0
- package/dist/models/create-task-request-dto.d.ts +91 -0
- package/dist/models/create-task-request-dto.js +27 -0
- package/dist/models/create-task-response-class.d.ts +25 -0
- package/dist/models/create-task-response-class.js +15 -0
- package/dist/models/get-category-response-class.d.ts +25 -0
- package/dist/models/get-category-response-class.js +15 -0
- package/dist/models/get-status-response-class.d.ts +25 -0
- package/dist/models/get-status-response-class.js +15 -0
- package/dist/models/get-task-response-class.d.ts +25 -0
- package/dist/models/get-task-response-class.js +15 -0
- package/dist/models/hub-spot-ticket-class.d.ts +49 -0
- package/dist/models/hub-spot-ticket-class.js +15 -0
- package/dist/models/hub-spot-ticket-error-class.d.ts +30 -0
- package/dist/models/hub-spot-ticket-error-class.js +15 -0
- package/dist/models/hub-spot-ticket-name-value-dto.d.ts +30 -0
- package/dist/models/hub-spot-ticket-name-value-dto.js +15 -0
- package/dist/models/index.d.ts +30 -0
- package/dist/models/index.js +46 -0
- package/dist/models/inline-response200.d.ts +54 -0
- package/dist/models/inline-response200.js +15 -0
- package/dist/models/inline-response503.d.ts +54 -0
- package/dist/models/inline-response503.js +15 -0
- package/dist/models/list-assignees-response-class.d.ts +43 -0
- package/dist/models/list-assignees-response-class.js +15 -0
- package/dist/models/list-categories-response-class.d.ts +43 -0
- package/dist/models/list-categories-response-class.js +15 -0
- package/dist/models/list-statuses-response-class.d.ts +43 -0
- package/dist/models/list-statuses-response-class.js +15 -0
- package/dist/models/list-tasks-response-class.d.ts +43 -0
- package/dist/models/list-tasks-response-class.js +15 -0
- package/dist/models/patch-category-request-dto.d.ts +36 -0
- package/dist/models/patch-category-request-dto.js +15 -0
- package/dist/models/patch-category-response-class.d.ts +25 -0
- package/dist/models/patch-category-response-class.js +15 -0
- package/dist/models/patch-status-request-dto.d.ts +42 -0
- package/dist/models/patch-status-request-dto.js +15 -0
- package/dist/models/patch-status-response-class.d.ts +25 -0
- package/dist/models/patch-status-response-class.js +15 -0
- package/dist/models/patch-task-request-dto.d.ts +139 -0
- package/dist/models/patch-task-request-dto.js +22 -0
- package/dist/models/patch-task-response-class.d.ts +25 -0
- package/dist/models/patch-task-response-class.js +15 -0
- package/dist/models/status-class.d.ts +72 -0
- package/dist/models/status-class.js +15 -0
- package/dist/models/task-class.d.ts +146 -0
- package/dist/models/task-class.js +21 -0
- package/git_push.sh +57 -0
- package/index.ts +19 -0
- package/models/assignee-class.ts +30 -0
- package/models/category-class.ts +72 -0
- package/models/create-category-request-dto.ts +36 -0
- package/models/create-category-response-class.ts +31 -0
- package/models/create-hub-spot-ticket-request-dto.ts +37 -0
- package/models/create-hub-spot-ticket-response-class.ts +31 -0
- package/models/create-status-request-dto.ts +42 -0
- package/models/create-status-response-class.ts +31 -0
- package/models/create-task-request-dto.ts +101 -0
- package/models/create-task-response-class.ts +31 -0
- package/models/get-category-response-class.ts +31 -0
- package/models/get-status-response-class.ts +31 -0
- package/models/get-task-response-class.ts +31 -0
- package/models/hub-spot-ticket-class.ts +55 -0
- package/models/hub-spot-ticket-error-class.ts +36 -0
- package/models/hub-spot-ticket-name-value-dto.ts +36 -0
- package/models/index.ts +30 -0
- package/models/inline-response200.ts +48 -0
- package/models/inline-response503.ts +48 -0
- package/models/list-assignees-response-class.ts +49 -0
- package/models/list-categories-response-class.ts +49 -0
- package/models/list-statuses-response-class.ts +49 -0
- package/models/list-tasks-response-class.ts +49 -0
- package/models/patch-category-request-dto.ts +42 -0
- package/models/patch-category-response-class.ts +31 -0
- package/models/patch-status-request-dto.ts +48 -0
- package/models/patch-status-response-class.ts +31 -0
- package/models/patch-task-request-dto.ts +148 -0
- package/models/patch-task-response-class.ts +31 -0
- package/models/status-class.ts +78 -0
- package/models/task-class.ts +155 -0
- package/package.json +24 -8
- package/tsconfig.json +23 -0
- package/index.js +0 -99
- package/scripts/deploy.js +0 -81
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL TaskService
|
|
5
|
+
* The EMIL Task API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
|
|
16
|
+
import { CategoryClass } from './category-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateCategoryResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateCategoryResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* category
|
|
26
|
+
* @type {CategoryClass}
|
|
27
|
+
* @memberof CreateCategoryResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'category'?: CategoryClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL TaskService
|
|
5
|
+
* The EMIL Task API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
|
|
16
|
+
import { HubSpotTicketNameValueDto } from './hub-spot-ticket-name-value-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateHubSpotTicketRequestDto
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateHubSpotTicketRequestDto {
|
|
24
|
+
/**
|
|
25
|
+
* submittedAt
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateHubSpotTicketRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'submittedAt'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* fields
|
|
32
|
+
* @type {Array<HubSpotTicketNameValueDto>}
|
|
33
|
+
* @memberof CreateHubSpotTicketRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'fields': Array<HubSpotTicketNameValueDto>;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL TaskService
|
|
5
|
+
* The EMIL Task API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
|
|
16
|
+
import { HubSpotTicketClass } from './hub-spot-ticket-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateHubSpotTicketResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateHubSpotTicketResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* hubSpotTicket
|
|
26
|
+
* @type {HubSpotTicketClass}
|
|
27
|
+
* @memberof CreateHubSpotTicketResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'hubSpotTicket'?: HubSpotTicketClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL TaskService
|
|
5
|
+
* The EMIL Task API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CreateStatusRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateStatusRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Task status name: display name of the status
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateStatusRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
* Task status slug - URL-friendly identifier (auto-generated from name if not provided)
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateStatusRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'slug'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Sort order for workflow display (must be unique per tenant). Lower values appear first.
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof CreateStatusRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'sortOrder': number;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL TaskService
|
|
5
|
+
* The EMIL Task API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
|
|
16
|
+
import { StatusClass } from './status-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateStatusResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateStatusResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* status
|
|
26
|
+
* @type {StatusClass}
|
|
27
|
+
* @memberof CreateStatusResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'status'?: StatusClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL TaskService
|
|
5
|
+
* The EMIL Task API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CreateTaskRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateTaskRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Task subject: title of the task
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateTaskRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'subject': string;
|
|
29
|
+
/**
|
|
30
|
+
* Task description: detailed description of the task
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateTaskRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'description': string;
|
|
35
|
+
/**
|
|
36
|
+
* Task assignee user code: person assigned to the task
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateTaskRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'assignee'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Task category slugs (array of category slugs)
|
|
43
|
+
* @type {Array<string>}
|
|
44
|
+
* @memberof CreateTaskRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'categorySlugs'?: Array<string>;
|
|
47
|
+
/**
|
|
48
|
+
* Task status slug
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CreateTaskRequestDto
|
|
51
|
+
*/
|
|
52
|
+
'statusSlug': string;
|
|
53
|
+
/**
|
|
54
|
+
* Task priority
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CreateTaskRequestDto
|
|
57
|
+
*/
|
|
58
|
+
'priority'?: CreateTaskRequestDtoPriorityEnum;
|
|
59
|
+
/**
|
|
60
|
+
* Task reporter user code: person who reported the task
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CreateTaskRequestDto
|
|
63
|
+
*/
|
|
64
|
+
'reporter'?: string;
|
|
65
|
+
/**
|
|
66
|
+
* Task due date.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof CreateTaskRequestDto
|
|
69
|
+
*/
|
|
70
|
+
'dueDate'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* Connected entity type. Must be one of: LEAD, POLICY, CLAIM, PARTNER (uppercase). If provided, entityCode is required.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof CreateTaskRequestDto
|
|
75
|
+
*/
|
|
76
|
+
'entityType'?: CreateTaskRequestDtoEntityTypeEnum;
|
|
77
|
+
/**
|
|
78
|
+
* Connected entity code. Unique code of the linked entity. If provided, entityType is required.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof CreateTaskRequestDto
|
|
81
|
+
*/
|
|
82
|
+
'entityCode'?: string;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export const CreateTaskRequestDtoPriorityEnum = {
|
|
86
|
+
Low: 'LOW',
|
|
87
|
+
Medium: 'MEDIUM',
|
|
88
|
+
High: 'HIGH'
|
|
89
|
+
} as const;
|
|
90
|
+
|
|
91
|
+
export type CreateTaskRequestDtoPriorityEnum = typeof CreateTaskRequestDtoPriorityEnum[keyof typeof CreateTaskRequestDtoPriorityEnum];
|
|
92
|
+
export const CreateTaskRequestDtoEntityTypeEnum = {
|
|
93
|
+
Lead: 'LEAD',
|
|
94
|
+
Policy: 'POLICY',
|
|
95
|
+
Claim: 'CLAIM',
|
|
96
|
+
Partner: 'PARTNER'
|
|
97
|
+
} as const;
|
|
98
|
+
|
|
99
|
+
export type CreateTaskRequestDtoEntityTypeEnum = typeof CreateTaskRequestDtoEntityTypeEnum[keyof typeof CreateTaskRequestDtoEntityTypeEnum];
|
|
100
|
+
|
|
101
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL TaskService
|
|
5
|
+
* The EMIL Task API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
|
|
16
|
+
import { TaskClass } from './task-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateTaskResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateTaskResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* task
|
|
26
|
+
* @type {TaskClass}
|
|
27
|
+
* @memberof CreateTaskResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'task'?: TaskClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL TaskService
|
|
5
|
+
* The EMIL Task API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
|
|
16
|
+
import { CategoryClass } from './category-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetCategoryResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetCategoryResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* category
|
|
26
|
+
* @type {CategoryClass}
|
|
27
|
+
* @memberof GetCategoryResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'category'?: CategoryClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL TaskService
|
|
5
|
+
* The EMIL Task API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
|
|
16
|
+
import { StatusClass } from './status-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetStatusResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetStatusResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* status
|
|
26
|
+
* @type {StatusClass}
|
|
27
|
+
* @memberof GetStatusResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'status'?: StatusClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL TaskService
|
|
5
|
+
* The EMIL Task API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
|
|
16
|
+
import { TaskClass } from './task-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetTaskResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetTaskResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* task
|
|
26
|
+
* @type {TaskClass}
|
|
27
|
+
* @memberof GetTaskResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'task'?: TaskClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL TaskService
|
|
5
|
+
* The EMIL Task API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
|
|
16
|
+
import { HubSpotTicketErrorClass } from './hub-spot-ticket-error-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface HubSpotTicketClass
|
|
22
|
+
*/
|
|
23
|
+
export interface HubSpotTicketClass {
|
|
24
|
+
/**
|
|
25
|
+
* status
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof HubSpotTicketClass
|
|
28
|
+
*/
|
|
29
|
+
'status': string;
|
|
30
|
+
/**
|
|
31
|
+
* message
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof HubSpotTicketClass
|
|
34
|
+
*/
|
|
35
|
+
'message': string;
|
|
36
|
+
/**
|
|
37
|
+
* correlationId
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof HubSpotTicketClass
|
|
40
|
+
*/
|
|
41
|
+
'correlationId': string;
|
|
42
|
+
/**
|
|
43
|
+
* inlineMessage
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof HubSpotTicketClass
|
|
46
|
+
*/
|
|
47
|
+
'inlineMessage': string;
|
|
48
|
+
/**
|
|
49
|
+
* errors
|
|
50
|
+
* @type {Array<HubSpotTicketErrorClass>}
|
|
51
|
+
* @memberof HubSpotTicketClass
|
|
52
|
+
*/
|
|
53
|
+
'errors': Array<HubSpotTicketErrorClass>;
|
|
54
|
+
}
|
|
55
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL TaskService
|
|
5
|
+
* The EMIL Task API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface HubSpotTicketErrorClass
|
|
21
|
+
*/
|
|
22
|
+
export interface HubSpotTicketErrorClass {
|
|
23
|
+
/**
|
|
24
|
+
* message
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof HubSpotTicketErrorClass
|
|
27
|
+
*/
|
|
28
|
+
'message': string;
|
|
29
|
+
/**
|
|
30
|
+
* errorType
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof HubSpotTicketErrorClass
|
|
33
|
+
*/
|
|
34
|
+
'errorType': string;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL TaskService
|
|
5
|
+
* The EMIL Task API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface HubSpotTicketNameValueDto
|
|
21
|
+
*/
|
|
22
|
+
export interface HubSpotTicketNameValueDto {
|
|
23
|
+
/**
|
|
24
|
+
* name
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof HubSpotTicketNameValueDto
|
|
27
|
+
*/
|
|
28
|
+
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
* value
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof HubSpotTicketNameValueDto
|
|
33
|
+
*/
|
|
34
|
+
'value': string;
|
|
35
|
+
}
|
|
36
|
+
|
package/models/index.ts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export * from './assignee-class';
|
|
2
|
+
export * from './category-class';
|
|
3
|
+
export * from './create-category-request-dto';
|
|
4
|
+
export * from './create-category-response-class';
|
|
5
|
+
export * from './create-hub-spot-ticket-request-dto';
|
|
6
|
+
export * from './create-hub-spot-ticket-response-class';
|
|
7
|
+
export * from './create-status-request-dto';
|
|
8
|
+
export * from './create-status-response-class';
|
|
9
|
+
export * from './create-task-request-dto';
|
|
10
|
+
export * from './create-task-response-class';
|
|
11
|
+
export * from './get-category-response-class';
|
|
12
|
+
export * from './get-status-response-class';
|
|
13
|
+
export * from './get-task-response-class';
|
|
14
|
+
export * from './hub-spot-ticket-class';
|
|
15
|
+
export * from './hub-spot-ticket-error-class';
|
|
16
|
+
export * from './hub-spot-ticket-name-value-dto';
|
|
17
|
+
export * from './inline-response200';
|
|
18
|
+
export * from './inline-response503';
|
|
19
|
+
export * from './list-assignees-response-class';
|
|
20
|
+
export * from './list-categories-response-class';
|
|
21
|
+
export * from './list-statuses-response-class';
|
|
22
|
+
export * from './list-tasks-response-class';
|
|
23
|
+
export * from './patch-category-request-dto';
|
|
24
|
+
export * from './patch-category-response-class';
|
|
25
|
+
export * from './patch-status-request-dto';
|
|
26
|
+
export * from './patch-status-response-class';
|
|
27
|
+
export * from './patch-task-request-dto';
|
|
28
|
+
export * from './patch-task-response-class';
|
|
29
|
+
export * from './status-class';
|
|
30
|
+
export * from './task-class';
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL TaskService
|
|
5
|
+
* The EMIL Task API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface InlineResponse200
|
|
21
|
+
*/
|
|
22
|
+
export interface InlineResponse200 {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof InlineResponse200
|
|
27
|
+
*/
|
|
28
|
+
'status'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
32
|
+
* @memberof InlineResponse200
|
|
33
|
+
*/
|
|
34
|
+
'info'?: { [key: string]: { [key: string]: object; }; } | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
38
|
+
* @memberof InlineResponse200
|
|
39
|
+
*/
|
|
40
|
+
'error'?: { [key: string]: { [key: string]: object; }; } | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
44
|
+
* @memberof InlineResponse200
|
|
45
|
+
*/
|
|
46
|
+
'details'?: { [key: string]: { [key: string]: object; }; };
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL TaskService
|
|
5
|
+
* The EMIL Task API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
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
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface InlineResponse503
|
|
21
|
+
*/
|
|
22
|
+
export interface InlineResponse503 {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof InlineResponse503
|
|
27
|
+
*/
|
|
28
|
+
'status'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
32
|
+
* @memberof InlineResponse503
|
|
33
|
+
*/
|
|
34
|
+
'info'?: { [key: string]: { [key: string]: object; }; } | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
38
|
+
* @memberof InlineResponse503
|
|
39
|
+
*/
|
|
40
|
+
'error'?: { [key: string]: { [key: string]: object; }; } | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
44
|
+
* @memberof InlineResponse503
|
|
45
|
+
*/
|
|
46
|
+
'details'?: { [key: string]: { [key: string]: object; }; };
|
|
47
|
+
}
|
|
48
|
+
|