@emilgroup/task-sdk-node 1.0.1-beta.1 → 1.0.1-beta.11

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 (72) hide show
  1. package/.openapi-generator/FILES +9 -11
  2. package/README.md +2 -2
  3. package/api/assignees-api.ts +166 -0
  4. package/api/categories-api.ts +74 -60
  5. package/api/statuses-api.ts +70 -56
  6. package/api/tasks-api.ts +105 -63
  7. package/api.ts +2 -2
  8. package/dist/api/assignees-api.d.ts +96 -0
  9. package/dist/api/{priorities-api.js → assignees-api.js} +41 -141
  10. package/dist/api/categories-api.d.ts +58 -49
  11. package/dist/api/categories-api.js +53 -47
  12. package/dist/api/statuses-api.d.ts +54 -45
  13. package/dist/api/statuses-api.js +49 -43
  14. package/dist/api/tasks-api.d.ts +77 -50
  15. package/dist/api/tasks-api.js +66 -48
  16. package/dist/api.d.ts +1 -1
  17. package/dist/api.js +1 -1
  18. package/dist/models/{create-priority-request-dto.d.ts → assignee-class.d.ts} +5 -5
  19. package/dist/models/category-class.d.ts +6 -0
  20. package/dist/models/create-category-request-dto.d.ts +7 -1
  21. package/dist/models/create-status-request-dto.d.ts +7 -1
  22. package/dist/models/create-task-request-dto.d.ts +31 -13
  23. package/dist/models/create-task-request-dto.js +6 -0
  24. package/dist/models/index.d.ts +8 -10
  25. package/dist/models/index.js +8 -10
  26. package/dist/models/list-assignees-response-class.d.ts +43 -0
  27. package/dist/models/patch-category-request-dto.d.ts +36 -0
  28. package/dist/models/{update-category-response-class.d.ts → patch-category-response-class.d.ts} +3 -3
  29. package/dist/models/{update-status-request-dto.d.ts → patch-status-request-dto.d.ts} +13 -7
  30. package/dist/models/{update-status-response-class.d.ts → patch-status-response-class.d.ts} +3 -3
  31. package/dist/models/patch-task-request-dto.d.ts +108 -0
  32. package/dist/models/{update-task-response-class.d.ts → patch-task-response-class.d.ts} +3 -3
  33. package/dist/models/status-class.d.ts +6 -0
  34. package/dist/models/task-class.d.ts +25 -8
  35. package/dist/models/task-class.js +6 -0
  36. package/models/{create-priority-request-dto.ts → assignee-class.ts} +5 -5
  37. package/models/category-class.ts +6 -0
  38. package/models/create-category-request-dto.ts +7 -1
  39. package/models/create-status-request-dto.ts +7 -1
  40. package/models/create-task-request-dto.ts +34 -13
  41. package/models/index.ts +8 -10
  42. package/models/list-assignees-response-class.ts +49 -0
  43. package/models/{update-category-request-dto.ts → patch-category-request-dto.ts} +13 -7
  44. package/models/{update-category-response-class.ts → patch-category-response-class.ts} +3 -3
  45. package/models/{update-status-request-dto.ts → patch-status-request-dto.ts} +13 -7
  46. package/models/{update-status-response-class.ts → patch-status-response-class.ts} +3 -3
  47. package/models/patch-task-request-dto.ts +114 -0
  48. package/models/{update-task-response-class.ts → patch-task-response-class.ts} +3 -3
  49. package/models/status-class.ts +6 -0
  50. package/models/task-class.ts +28 -8
  51. package/package.json +1 -1
  52. package/api/priorities-api.ts +0 -288
  53. package/dist/api/priorities-api.d.ts +0 -162
  54. package/dist/models/create-priority-response-class.d.ts +0 -25
  55. package/dist/models/get-priority-response-class.d.ts +0 -25
  56. package/dist/models/priority-class.d.ts +0 -60
  57. package/dist/models/update-category-request-dto.d.ts +0 -30
  58. package/dist/models/update-task-request-dto.d.ts +0 -60
  59. package/dist/models/update-task-request-dto.js +0 -15
  60. package/dist/models/update-task-response-class.js +0 -15
  61. package/models/create-priority-response-class.ts +0 -31
  62. package/models/get-priority-response-class.ts +0 -31
  63. package/models/priority-class.ts +0 -66
  64. package/models/update-task-request-dto.ts +0 -66
  65. /package/dist/models/{create-priority-request-dto.js → assignee-class.js} +0 -0
  66. /package/dist/models/{create-priority-response-class.js → list-assignees-response-class.js} +0 -0
  67. /package/dist/models/{get-priority-response-class.js → patch-category-request-dto.js} +0 -0
  68. /package/dist/models/{priority-class.js → patch-category-response-class.js} +0 -0
  69. /package/dist/models/{update-category-request-dto.js → patch-status-request-dto.js} +0 -0
  70. /package/dist/models/{update-category-response-class.js → patch-status-response-class.js} +0 -0
  71. /package/dist/models/{update-status-request-dto.js → patch-task-request-dto.js} +0 -0
  72. /package/dist/models/{update-status-response-class.js → patch-task-response-class.js} +0 -0
@@ -1,25 +0,0 @@
1
- /**
2
- * EMIL TaskService
3
- * The EMIL Task API description
4
- *
5
- * The version of the OpenAPI document: 1.0
6
- * Contact: kontakt@emil.de
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- import { PriorityClass } from './priority-class';
13
- /**
14
- *
15
- * @export
16
- * @interface GetPriorityResponseClass
17
- */
18
- export interface GetPriorityResponseClass {
19
- /**
20
- * priority
21
- * @type {PriorityClass}
22
- * @memberof GetPriorityResponseClass
23
- */
24
- 'priority'?: PriorityClass;
25
- }
@@ -1,60 +0,0 @@
1
- /**
2
- * EMIL TaskService
3
- * The EMIL Task API description
4
- *
5
- * The version of the OpenAPI document: 1.0
6
- * Contact: kontakt@emil.de
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- /**
13
- *
14
- * @export
15
- * @interface PriorityClass
16
- */
17
- export interface PriorityClass {
18
- /**
19
- * id
20
- * @type {number}
21
- * @memberof PriorityClass
22
- */
23
- 'id': number;
24
- /**
25
- * code
26
- * @type {string}
27
- * @memberof PriorityClass
28
- */
29
- 'code': string;
30
- /**
31
- * level
32
- * @type {string}
33
- * @memberof PriorityClass
34
- */
35
- 'level': string;
36
- /**
37
- * createdBy
38
- * @type {string}
39
- * @memberof PriorityClass
40
- */
41
- 'createdBy': string;
42
- /**
43
- * updatedBy
44
- * @type {string}
45
- * @memberof PriorityClass
46
- */
47
- 'updatedBy': string;
48
- /**
49
- * createdAt
50
- * @type {string}
51
- * @memberof PriorityClass
52
- */
53
- 'createdAt'?: string;
54
- /**
55
- * updatedAt
56
- * @type {string}
57
- * @memberof PriorityClass
58
- */
59
- 'updatedAt'?: string;
60
- }
@@ -1,30 +0,0 @@
1
- /**
2
- * EMIL TaskService
3
- * The EMIL Task API description
4
- *
5
- * The version of the OpenAPI document: 1.0
6
- * Contact: kontakt@emil.de
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- /**
13
- *
14
- * @export
15
- * @interface UpdateCategoryRequestDto
16
- */
17
- export interface UpdateCategoryRequestDto {
18
- /**
19
- * code
20
- * @type {string}
21
- * @memberof UpdateCategoryRequestDto
22
- */
23
- 'code': string;
24
- /**
25
- * name
26
- * @type {string}
27
- * @memberof UpdateCategoryRequestDto
28
- */
29
- 'name': string;
30
- }
@@ -1,60 +0,0 @@
1
- /**
2
- * EMIL TaskService
3
- * The EMIL Task API description
4
- *
5
- * The version of the OpenAPI document: 1.0
6
- * Contact: kontakt@emil.de
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- /**
13
- *
14
- * @export
15
- * @interface UpdateTaskRequestDto
16
- */
17
- export interface UpdateTaskRequestDto {
18
- /**
19
- * code
20
- * @type {string}
21
- * @memberof UpdateTaskRequestDto
22
- */
23
- 'code': string;
24
- /**
25
- * subject
26
- * @type {string}
27
- * @memberof UpdateTaskRequestDto
28
- */
29
- 'subject': string;
30
- /**
31
- * description
32
- * @type {string}
33
- * @memberof UpdateTaskRequestDto
34
- */
35
- 'description': string;
36
- /**
37
- * assignee
38
- * @type {string}
39
- * @memberof UpdateTaskRequestDto
40
- */
41
- 'assignee'?: string;
42
- /**
43
- * categoryId
44
- * @type {number}
45
- * @memberof UpdateTaskRequestDto
46
- */
47
- 'categoryId'?: number | null;
48
- /**
49
- * statusId
50
- * @type {number}
51
- * @memberof UpdateTaskRequestDto
52
- */
53
- 'statusId'?: number | null;
54
- /**
55
- * priorityId
56
- * @type {number}
57
- * @memberof UpdateTaskRequestDto
58
- */
59
- 'priorityId'?: number | null;
60
- }
@@ -1,15 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * EMIL TaskService
6
- * The EMIL Task API description
7
- *
8
- * The version of the OpenAPI document: 1.0
9
- * Contact: kontakt@emil.de
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 });
@@ -1,15 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * EMIL TaskService
6
- * The EMIL Task API description
7
- *
8
- * The version of the OpenAPI document: 1.0
9
- * Contact: kontakt@emil.de
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 });
@@ -1,31 +0,0 @@
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 { PriorityClass } from './priority-class';
17
-
18
- /**
19
- *
20
- * @export
21
- * @interface CreatePriorityResponseClass
22
- */
23
- export interface CreatePriorityResponseClass {
24
- /**
25
- * priority
26
- * @type {PriorityClass}
27
- * @memberof CreatePriorityResponseClass
28
- */
29
- 'priority'?: PriorityClass;
30
- }
31
-
@@ -1,31 +0,0 @@
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 { PriorityClass } from './priority-class';
17
-
18
- /**
19
- *
20
- * @export
21
- * @interface GetPriorityResponseClass
22
- */
23
- export interface GetPriorityResponseClass {
24
- /**
25
- * priority
26
- * @type {PriorityClass}
27
- * @memberof GetPriorityResponseClass
28
- */
29
- 'priority'?: PriorityClass;
30
- }
31
-
@@ -1,66 +0,0 @@
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 PriorityClass
21
- */
22
- export interface PriorityClass {
23
- /**
24
- * id
25
- * @type {number}
26
- * @memberof PriorityClass
27
- */
28
- 'id': number;
29
- /**
30
- * code
31
- * @type {string}
32
- * @memberof PriorityClass
33
- */
34
- 'code': string;
35
- /**
36
- * level
37
- * @type {string}
38
- * @memberof PriorityClass
39
- */
40
- 'level': string;
41
- /**
42
- * createdBy
43
- * @type {string}
44
- * @memberof PriorityClass
45
- */
46
- 'createdBy': string;
47
- /**
48
- * updatedBy
49
- * @type {string}
50
- * @memberof PriorityClass
51
- */
52
- 'updatedBy': string;
53
- /**
54
- * createdAt
55
- * @type {string}
56
- * @memberof PriorityClass
57
- */
58
- 'createdAt'?: string;
59
- /**
60
- * updatedAt
61
- * @type {string}
62
- * @memberof PriorityClass
63
- */
64
- 'updatedAt'?: string;
65
- }
66
-
@@ -1,66 +0,0 @@
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 UpdateTaskRequestDto
21
- */
22
- export interface UpdateTaskRequestDto {
23
- /**
24
- * code
25
- * @type {string}
26
- * @memberof UpdateTaskRequestDto
27
- */
28
- 'code': string;
29
- /**
30
- * subject
31
- * @type {string}
32
- * @memberof UpdateTaskRequestDto
33
- */
34
- 'subject': string;
35
- /**
36
- * description
37
- * @type {string}
38
- * @memberof UpdateTaskRequestDto
39
- */
40
- 'description': string;
41
- /**
42
- * assignee
43
- * @type {string}
44
- * @memberof UpdateTaskRequestDto
45
- */
46
- 'assignee'?: string;
47
- /**
48
- * categoryId
49
- * @type {number}
50
- * @memberof UpdateTaskRequestDto
51
- */
52
- 'categoryId'?: number | null;
53
- /**
54
- * statusId
55
- * @type {number}
56
- * @memberof UpdateTaskRequestDto
57
- */
58
- 'statusId'?: number | null;
59
- /**
60
- * priorityId
61
- * @type {number}
62
- * @memberof UpdateTaskRequestDto
63
- */
64
- 'priorityId'?: number | null;
65
- }
66
-