@abyss-project/console 1.0.72 → 1.0.73
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/dist/api/internal-ticket-config.api.d.ts +7 -1
- package/dist/api/internal-ticket-config.api.js +31 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.js +6 -0
- package/dist/types/interface/api/requests/internal-ticket-config.request.d.ts +29 -5
- package/dist/types/interface/api/responses/internal-ticket-config.response.d.ts +24 -0
- package/dist/types/interface/models/internal-ticket-category.model.d.ts +1 -0
- package/dist/types/interface/models/internal-ticket-priority.model.d.ts +2 -0
- package/dist/types/interface/models/internal-ticket-section.model.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,14 +1,20 @@
|
|
|
1
|
-
import { ICreateInternalTicketSectionParams, ICreateInternalTicketSectionBody, IListInternalTicketSectionParams, IUpdateInternalTicketSectionParams, IUpdateInternalTicketSectionBody, IDeleteInternalTicketSectionParams, IGetInternalTicketSectionStatsParams, ICreateInternalTicketCategoryParams, ICreateInternalTicketCategoryBody, IListInternalTicketCategoryParams, IListInternalTicketCategoryQuery, IUpdateInternalTicketCategoryParams, IUpdateInternalTicketCategoryBody, IDeleteInternalTicketCategoryParams, ICreateInternalTicketPriorityParams, ICreateInternalTicketPriorityBody, IListInternalTicketPriorityParams, IListInternalTicketPriorityQuery, IUpdateInternalTicketPriorityParams, IUpdateInternalTicketPriorityBody, IDeleteInternalTicketPriorityParams, ICreateInternalTicketSectionResponse, IListInternalTicketSectionResponse, IUpdateInternalTicketSectionResponse, IDeleteInternalTicketSectionResponse, IGetInternalTicketSectionStatsResponse, ICreateInternalTicketCategoryResponse, IListInternalTicketCategoryResponse, IUpdateInternalTicketCategoryResponse, IDeleteInternalTicketCategoryResponse, ICreateInternalTicketPriorityResponse, IListInternalTicketPriorityResponse, IUpdateInternalTicketPriorityResponse, IDeleteInternalTicketPriorityResponse } from '../types';
|
|
1
|
+
import { ICreateInternalTicketSectionParams, ICreateInternalTicketSectionBody, IListInternalTicketSectionParams, IUpdateInternalTicketSectionParams, IUpdateInternalTicketSectionBody, IDeleteInternalTicketSectionParams, IArchiveInternalTicketSectionParams, IUnarchiveInternalTicketSectionParams, IGetInternalTicketSectionStatsParams, ICreateInternalTicketCategoryParams, ICreateInternalTicketCategoryBody, IListInternalTicketCategoryParams, IListInternalTicketCategoryQuery, IUpdateInternalTicketCategoryParams, IUpdateInternalTicketCategoryBody, IDeleteInternalTicketCategoryParams, IArchiveInternalTicketCategoryParams, IUnarchiveInternalTicketCategoryParams, ICreateInternalTicketPriorityParams, ICreateInternalTicketPriorityBody, IListInternalTicketPriorityParams, IListInternalTicketPriorityQuery, IUpdateInternalTicketPriorityParams, IUpdateInternalTicketPriorityBody, IDeleteInternalTicketPriorityParams, IArchiveInternalTicketPriorityParams, IUnarchiveInternalTicketPriorityParams, ICreateInternalTicketSectionResponse, IListInternalTicketSectionResponse, IUpdateInternalTicketSectionResponse, IDeleteInternalTicketSectionResponse, IArchiveInternalTicketSectionResponse, IUnarchiveInternalTicketSectionResponse, IGetInternalTicketSectionStatsResponse, ICreateInternalTicketCategoryResponse, IListInternalTicketCategoryResponse, IUpdateInternalTicketCategoryResponse, IDeleteInternalTicketCategoryResponse, IArchiveInternalTicketCategoryResponse, IUnarchiveInternalTicketCategoryResponse, ICreateInternalTicketPriorityResponse, IListInternalTicketPriorityResponse, IUpdateInternalTicketPriorityResponse, IDeleteInternalTicketPriorityResponse, IArchiveInternalTicketPriorityResponse, IUnarchiveInternalTicketPriorityResponse } from '../types';
|
|
2
2
|
export declare const createInternalTicketSection: (params: ICreateInternalTicketSectionParams, body: ICreateInternalTicketSectionBody) => Promise<ICreateInternalTicketSectionResponse>;
|
|
3
3
|
export declare const listInternalTicketSection: (params: IListInternalTicketSectionParams) => Promise<IListInternalTicketSectionResponse>;
|
|
4
4
|
export declare const updateInternalTicketSection: (params: IUpdateInternalTicketSectionParams, body: IUpdateInternalTicketSectionBody) => Promise<IUpdateInternalTicketSectionResponse>;
|
|
5
5
|
export declare const deleteInternalTicketSection: (params: IDeleteInternalTicketSectionParams) => Promise<IDeleteInternalTicketSectionResponse>;
|
|
6
6
|
export declare const getInternalTicketSectionStats: (params: IGetInternalTicketSectionStatsParams) => Promise<IGetInternalTicketSectionStatsResponse>;
|
|
7
|
+
export declare const archiveInternalTicketSection: (params: IArchiveInternalTicketSectionParams) => Promise<IArchiveInternalTicketSectionResponse>;
|
|
8
|
+
export declare const unarchiveInternalTicketSection: (params: IUnarchiveInternalTicketSectionParams) => Promise<IUnarchiveInternalTicketSectionResponse>;
|
|
7
9
|
export declare const createInternalTicketCategory: (params: ICreateInternalTicketCategoryParams, body: ICreateInternalTicketCategoryBody) => Promise<ICreateInternalTicketCategoryResponse>;
|
|
8
10
|
export declare const listInternalTicketCategory: (params: IListInternalTicketCategoryParams, query?: IListInternalTicketCategoryQuery) => Promise<IListInternalTicketCategoryResponse>;
|
|
9
11
|
export declare const updateInternalTicketCategory: (params: IUpdateInternalTicketCategoryParams, body: IUpdateInternalTicketCategoryBody) => Promise<IUpdateInternalTicketCategoryResponse>;
|
|
10
12
|
export declare const deleteInternalTicketCategory: (params: IDeleteInternalTicketCategoryParams) => Promise<IDeleteInternalTicketCategoryResponse>;
|
|
13
|
+
export declare const archiveInternalTicketCategory: (params: IArchiveInternalTicketCategoryParams) => Promise<IArchiveInternalTicketCategoryResponse>;
|
|
14
|
+
export declare const unarchiveInternalTicketCategory: (params: IUnarchiveInternalTicketCategoryParams) => Promise<IUnarchiveInternalTicketCategoryResponse>;
|
|
11
15
|
export declare const createInternalTicketPriority: (params: ICreateInternalTicketPriorityParams, body: ICreateInternalTicketPriorityBody) => Promise<ICreateInternalTicketPriorityResponse>;
|
|
12
16
|
export declare const listInternalTicketPriority: (params: IListInternalTicketPriorityParams, query?: IListInternalTicketPriorityQuery) => Promise<IListInternalTicketPriorityResponse>;
|
|
13
17
|
export declare const updateInternalTicketPriority: (params: IUpdateInternalTicketPriorityParams, body: IUpdateInternalTicketPriorityBody) => Promise<IUpdateInternalTicketPriorityResponse>;
|
|
14
18
|
export declare const deleteInternalTicketPriority: (params: IDeleteInternalTicketPriorityParams) => Promise<IDeleteInternalTicketPriorityResponse>;
|
|
19
|
+
export declare const archiveInternalTicketPriority: (params: IArchiveInternalTicketPriorityParams) => Promise<IArchiveInternalTicketPriorityResponse>;
|
|
20
|
+
export declare const unarchiveInternalTicketPriority: (params: IUnarchiveInternalTicketPriorityParams) => Promise<IUnarchiveInternalTicketPriorityResponse>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.deleteInternalTicketPriority = exports.updateInternalTicketPriority = exports.listInternalTicketPriority = exports.createInternalTicketPriority = exports.deleteInternalTicketCategory = exports.updateInternalTicketCategory = exports.listInternalTicketCategory = exports.createInternalTicketCategory = exports.getInternalTicketSectionStats = exports.deleteInternalTicketSection = exports.updateInternalTicketSection = exports.listInternalTicketSection = exports.createInternalTicketSection = void 0;
|
|
3
|
+
exports.unarchiveInternalTicketPriority = exports.archiveInternalTicketPriority = exports.deleteInternalTicketPriority = exports.updateInternalTicketPriority = exports.listInternalTicketPriority = exports.createInternalTicketPriority = exports.unarchiveInternalTicketCategory = exports.archiveInternalTicketCategory = exports.deleteInternalTicketCategory = exports.updateInternalTicketCategory = exports.listInternalTicketCategory = exports.createInternalTicketCategory = exports.unarchiveInternalTicketSection = exports.archiveInternalTicketSection = exports.getInternalTicketSectionStats = exports.deleteInternalTicketSection = exports.updateInternalTicketSection = exports.listInternalTicketSection = exports.createInternalTicketSection = void 0;
|
|
4
4
|
const __1 = require("..");
|
|
5
5
|
const createInternalTicketSection = async (params, body) => {
|
|
6
6
|
const response = await __1.AbyssConsoleCore.axios.post(`/internal-ticket-config/${params.projectId}/section`, body);
|
|
@@ -27,6 +27,16 @@ const getInternalTicketSectionStats = async (params) => {
|
|
|
27
27
|
return response.data;
|
|
28
28
|
};
|
|
29
29
|
exports.getInternalTicketSectionStats = getInternalTicketSectionStats;
|
|
30
|
+
const archiveInternalTicketSection = async (params) => {
|
|
31
|
+
const response = await __1.AbyssConsoleCore.axios.put(`/internal-ticket-config/${params.projectId}/section/${params.internalTicketSectionId}/archive`);
|
|
32
|
+
return response.data;
|
|
33
|
+
};
|
|
34
|
+
exports.archiveInternalTicketSection = archiveInternalTicketSection;
|
|
35
|
+
const unarchiveInternalTicketSection = async (params) => {
|
|
36
|
+
const response = await __1.AbyssConsoleCore.axios.put(`/internal-ticket-config/${params.projectId}/section/${params.internalTicketSectionId}/unarchive`);
|
|
37
|
+
return response.data;
|
|
38
|
+
};
|
|
39
|
+
exports.unarchiveInternalTicketSection = unarchiveInternalTicketSection;
|
|
30
40
|
const createInternalTicketCategory = async (params, body) => {
|
|
31
41
|
const response = await __1.AbyssConsoleCore.axios.post(`/internal-ticket-config/${params.projectId}/category`, body);
|
|
32
42
|
return response.data;
|
|
@@ -47,6 +57,16 @@ const deleteInternalTicketCategory = async (params) => {
|
|
|
47
57
|
return response.data;
|
|
48
58
|
};
|
|
49
59
|
exports.deleteInternalTicketCategory = deleteInternalTicketCategory;
|
|
60
|
+
const archiveInternalTicketCategory = async (params) => {
|
|
61
|
+
const response = await __1.AbyssConsoleCore.axios.put(`/internal-ticket-config/${params.projectId}/category/${params.internalTicketCategoryId}/archive`);
|
|
62
|
+
return response.data;
|
|
63
|
+
};
|
|
64
|
+
exports.archiveInternalTicketCategory = archiveInternalTicketCategory;
|
|
65
|
+
const unarchiveInternalTicketCategory = async (params) => {
|
|
66
|
+
const response = await __1.AbyssConsoleCore.axios.put(`/internal-ticket-config/${params.projectId}/category/${params.internalTicketCategoryId}/unarchive`);
|
|
67
|
+
return response.data;
|
|
68
|
+
};
|
|
69
|
+
exports.unarchiveInternalTicketCategory = unarchiveInternalTicketCategory;
|
|
50
70
|
const createInternalTicketPriority = async (params, body) => {
|
|
51
71
|
const response = await __1.AbyssConsoleCore.axios.post(`/internal-ticket-config/${params.projectId}/priority`, body);
|
|
52
72
|
return response.data;
|
|
@@ -67,3 +87,13 @@ const deleteInternalTicketPriority = async (params) => {
|
|
|
67
87
|
return response.data;
|
|
68
88
|
};
|
|
69
89
|
exports.deleteInternalTicketPriority = deleteInternalTicketPriority;
|
|
90
|
+
const archiveInternalTicketPriority = async (params) => {
|
|
91
|
+
const response = await __1.AbyssConsoleCore.axios.put(`/internal-ticket-config/${params.projectId}/priority/${params.internalTicketPriorityId}/archive`);
|
|
92
|
+
return response.data;
|
|
93
|
+
};
|
|
94
|
+
exports.archiveInternalTicketPriority = archiveInternalTicketPriority;
|
|
95
|
+
const unarchiveInternalTicketPriority = async (params) => {
|
|
96
|
+
const response = await __1.AbyssConsoleCore.axios.put(`/internal-ticket-config/${params.projectId}/priority/${params.internalTicketPriorityId}/unarchive`);
|
|
97
|
+
return response.data;
|
|
98
|
+
};
|
|
99
|
+
exports.unarchiveInternalTicketPriority = unarchiveInternalTicketPriority;
|
package/dist/index.d.ts
CHANGED
|
@@ -166,6 +166,8 @@ type AbyssConsoleCoreSDK = {
|
|
|
166
166
|
list: typeof internalTicketConfigApi.listInternalTicketSection;
|
|
167
167
|
update: typeof internalTicketConfigApi.updateInternalTicketSection;
|
|
168
168
|
delete: typeof internalTicketConfigApi.deleteInternalTicketSection;
|
|
169
|
+
archive: typeof internalTicketConfigApi.archiveInternalTicketSection;
|
|
170
|
+
unarchive: typeof internalTicketConfigApi.unarchiveInternalTicketSection;
|
|
169
171
|
getStats: typeof internalTicketConfigApi.getInternalTicketSectionStats;
|
|
170
172
|
};
|
|
171
173
|
category: {
|
|
@@ -173,12 +175,16 @@ type AbyssConsoleCoreSDK = {
|
|
|
173
175
|
list: typeof internalTicketConfigApi.listInternalTicketCategory;
|
|
174
176
|
update: typeof internalTicketConfigApi.updateInternalTicketCategory;
|
|
175
177
|
delete: typeof internalTicketConfigApi.deleteInternalTicketCategory;
|
|
178
|
+
archive: typeof internalTicketConfigApi.archiveInternalTicketCategory;
|
|
179
|
+
unarchive: typeof internalTicketConfigApi.unarchiveInternalTicketCategory;
|
|
176
180
|
};
|
|
177
181
|
priority: {
|
|
178
182
|
create: typeof internalTicketConfigApi.createInternalTicketPriority;
|
|
179
183
|
list: typeof internalTicketConfigApi.listInternalTicketPriority;
|
|
180
184
|
update: typeof internalTicketConfigApi.updateInternalTicketPriority;
|
|
181
185
|
delete: typeof internalTicketConfigApi.deleteInternalTicketPriority;
|
|
186
|
+
archive: typeof internalTicketConfigApi.archiveInternalTicketPriority;
|
|
187
|
+
unarchive: typeof internalTicketConfigApi.unarchiveInternalTicketPriority;
|
|
182
188
|
};
|
|
183
189
|
};
|
|
184
190
|
workflow: {
|
package/dist/index.js
CHANGED
|
@@ -270,6 +270,8 @@ class AbyssConsoleCore {
|
|
|
270
270
|
list: internalTicketConfigApi.listInternalTicketSection,
|
|
271
271
|
update: internalTicketConfigApi.updateInternalTicketSection,
|
|
272
272
|
delete: internalTicketConfigApi.deleteInternalTicketSection,
|
|
273
|
+
archive: internalTicketConfigApi.archiveInternalTicketSection,
|
|
274
|
+
unarchive: internalTicketConfigApi.unarchiveInternalTicketSection,
|
|
273
275
|
getStats: internalTicketConfigApi.getInternalTicketSectionStats,
|
|
274
276
|
},
|
|
275
277
|
category: {
|
|
@@ -277,12 +279,16 @@ class AbyssConsoleCore {
|
|
|
277
279
|
list: internalTicketConfigApi.listInternalTicketCategory,
|
|
278
280
|
update: internalTicketConfigApi.updateInternalTicketCategory,
|
|
279
281
|
delete: internalTicketConfigApi.deleteInternalTicketCategory,
|
|
282
|
+
archive: internalTicketConfigApi.archiveInternalTicketCategory,
|
|
283
|
+
unarchive: internalTicketConfigApi.unarchiveInternalTicketCategory,
|
|
280
284
|
},
|
|
281
285
|
priority: {
|
|
282
286
|
create: internalTicketConfigApi.createInternalTicketPriority,
|
|
283
287
|
list: internalTicketConfigApi.listInternalTicketPriority,
|
|
284
288
|
update: internalTicketConfigApi.updateInternalTicketPriority,
|
|
285
289
|
delete: internalTicketConfigApi.deleteInternalTicketPriority,
|
|
290
|
+
archive: internalTicketConfigApi.archiveInternalTicketPriority,
|
|
291
|
+
unarchive: internalTicketConfigApi.unarchiveInternalTicketPriority,
|
|
286
292
|
},
|
|
287
293
|
},
|
|
288
294
|
workflow: workflowSDK,
|
|
@@ -7,7 +7,6 @@ export interface ICreateInternalTicketSectionBody {
|
|
|
7
7
|
color?: string;
|
|
8
8
|
icon?: string;
|
|
9
9
|
order?: number;
|
|
10
|
-
requirePriorityReason?: boolean;
|
|
11
10
|
}
|
|
12
11
|
export interface IListInternalTicketSectionParams {
|
|
13
12
|
projectId: string;
|
|
@@ -18,16 +17,23 @@ export interface IUpdateInternalTicketSectionParams {
|
|
|
18
17
|
}
|
|
19
18
|
export interface IUpdateInternalTicketSectionBody {
|
|
20
19
|
name?: string;
|
|
21
|
-
description?: string;
|
|
22
|
-
color?: string;
|
|
23
|
-
icon?: string;
|
|
20
|
+
description?: string | null;
|
|
21
|
+
color?: string | null;
|
|
22
|
+
icon?: string | null;
|
|
24
23
|
order?: number;
|
|
25
|
-
requirePriorityReason?: boolean;
|
|
26
24
|
}
|
|
27
25
|
export interface IDeleteInternalTicketSectionParams {
|
|
28
26
|
projectId: string;
|
|
29
27
|
internalTicketSectionId: string;
|
|
30
28
|
}
|
|
29
|
+
export interface IArchiveInternalTicketSectionParams {
|
|
30
|
+
projectId: string;
|
|
31
|
+
internalTicketSectionId: string;
|
|
32
|
+
}
|
|
33
|
+
export interface IUnarchiveInternalTicketSectionParams {
|
|
34
|
+
projectId: string;
|
|
35
|
+
internalTicketSectionId: string;
|
|
36
|
+
}
|
|
31
37
|
export interface IGetInternalTicketSectionStatsParams {
|
|
32
38
|
projectId: string;
|
|
33
39
|
internalTicketSectionId: string;
|
|
@@ -62,6 +68,14 @@ export interface IDeleteInternalTicketCategoryParams {
|
|
|
62
68
|
projectId: string;
|
|
63
69
|
internalTicketCategoryId: string;
|
|
64
70
|
}
|
|
71
|
+
export interface IArchiveInternalTicketCategoryParams {
|
|
72
|
+
projectId: string;
|
|
73
|
+
internalTicketCategoryId: string;
|
|
74
|
+
}
|
|
75
|
+
export interface IUnarchiveInternalTicketCategoryParams {
|
|
76
|
+
projectId: string;
|
|
77
|
+
internalTicketCategoryId: string;
|
|
78
|
+
}
|
|
65
79
|
export interface ICreateInternalTicketPriorityParams {
|
|
66
80
|
projectId: string;
|
|
67
81
|
}
|
|
@@ -71,6 +85,7 @@ export interface ICreateInternalTicketPriorityBody {
|
|
|
71
85
|
color?: string;
|
|
72
86
|
level: number;
|
|
73
87
|
label?: string;
|
|
88
|
+
requirePriorityReason?: boolean;
|
|
74
89
|
}
|
|
75
90
|
export interface IListInternalTicketPriorityParams {
|
|
76
91
|
projectId: string;
|
|
@@ -89,8 +104,17 @@ export interface IUpdateInternalTicketPriorityBody {
|
|
|
89
104
|
isDefault?: boolean;
|
|
90
105
|
label?: string;
|
|
91
106
|
isEnabled?: boolean;
|
|
107
|
+
requirePriorityReason?: boolean;
|
|
92
108
|
}
|
|
93
109
|
export interface IDeleteInternalTicketPriorityParams {
|
|
94
110
|
projectId: string;
|
|
95
111
|
internalTicketPriorityId: string;
|
|
96
112
|
}
|
|
113
|
+
export interface IArchiveInternalTicketPriorityParams {
|
|
114
|
+
projectId: string;
|
|
115
|
+
internalTicketPriorityId: string;
|
|
116
|
+
}
|
|
117
|
+
export interface IUnarchiveInternalTicketPriorityParams {
|
|
118
|
+
projectId: string;
|
|
119
|
+
internalTicketPriorityId: string;
|
|
120
|
+
}
|
|
@@ -17,6 +17,14 @@ export type IUpdateInternalTicketSectionResponse = IResponse<IUpdateInternalTick
|
|
|
17
17
|
export interface IDeleteInternalTicketSectionData {
|
|
18
18
|
}
|
|
19
19
|
export type IDeleteInternalTicketSectionResponse = IResponse<IDeleteInternalTicketSectionData>;
|
|
20
|
+
export interface IArchiveInternalTicketSectionData {
|
|
21
|
+
internalTicketSection: IInternalTicketSection;
|
|
22
|
+
}
|
|
23
|
+
export type IArchiveInternalTicketSectionResponse = IResponse<IArchiveInternalTicketSectionData>;
|
|
24
|
+
export interface IUnarchiveInternalTicketSectionData {
|
|
25
|
+
internalTicketSection: IInternalTicketSection;
|
|
26
|
+
}
|
|
27
|
+
export type IUnarchiveInternalTicketSectionResponse = IResponse<IUnarchiveInternalTicketSectionData>;
|
|
20
28
|
export interface IGetInternalTicketSectionStatsData {
|
|
21
29
|
total: number;
|
|
22
30
|
open: number;
|
|
@@ -41,6 +49,14 @@ export type IUpdateInternalTicketCategoryResponse = IResponse<IUpdateInternalTic
|
|
|
41
49
|
export interface IDeleteInternalTicketCategoryData {
|
|
42
50
|
}
|
|
43
51
|
export type IDeleteInternalTicketCategoryResponse = IResponse<IDeleteInternalTicketCategoryData>;
|
|
52
|
+
export interface IArchiveInternalTicketCategoryData {
|
|
53
|
+
internalTicketCategory: IInternalTicketCategory;
|
|
54
|
+
}
|
|
55
|
+
export type IArchiveInternalTicketCategoryResponse = IResponse<IArchiveInternalTicketCategoryData>;
|
|
56
|
+
export interface IUnarchiveInternalTicketCategoryData {
|
|
57
|
+
internalTicketCategory: IInternalTicketCategory;
|
|
58
|
+
}
|
|
59
|
+
export type IUnarchiveInternalTicketCategoryResponse = IResponse<IUnarchiveInternalTicketCategoryData>;
|
|
44
60
|
export interface ICreateInternalTicketPriorityData {
|
|
45
61
|
internalTicketPriority: IInternalTicketPriority;
|
|
46
62
|
}
|
|
@@ -56,3 +72,11 @@ export type IUpdateInternalTicketPriorityResponse = IResponse<IUpdateInternalTic
|
|
|
56
72
|
export interface IDeleteInternalTicketPriorityData {
|
|
57
73
|
}
|
|
58
74
|
export type IDeleteInternalTicketPriorityResponse = IResponse<IDeleteInternalTicketPriorityData>;
|
|
75
|
+
export interface IArchiveInternalTicketPriorityData {
|
|
76
|
+
internalTicketPriority: IInternalTicketPriority;
|
|
77
|
+
}
|
|
78
|
+
export type IArchiveInternalTicketPriorityResponse = IResponse<IArchiveInternalTicketPriorityData>;
|
|
79
|
+
export interface IUnarchiveInternalTicketPriorityData {
|
|
80
|
+
internalTicketPriority: IInternalTicketPriority;
|
|
81
|
+
}
|
|
82
|
+
export type IUnarchiveInternalTicketPriorityResponse = IResponse<IUnarchiveInternalTicketPriorityData>;
|
|
@@ -10,6 +10,8 @@ export interface IInternalTicketPriority {
|
|
|
10
10
|
level: number;
|
|
11
11
|
isDefault: boolean;
|
|
12
12
|
isEnabled: boolean;
|
|
13
|
+
requirePriorityReason: boolean;
|
|
14
|
+
archivedAt: Date | null;
|
|
13
15
|
createdAt?: Date;
|
|
14
16
|
updatedAt?: Date;
|
|
15
17
|
internalTicketSection?: IInternalTicketSection;
|
|
@@ -9,7 +9,7 @@ export interface IInternalTicketSection {
|
|
|
9
9
|
color: string | null;
|
|
10
10
|
icon: string | null;
|
|
11
11
|
order: number;
|
|
12
|
-
|
|
12
|
+
archivedAt: Date | null;
|
|
13
13
|
createdAt?: Date;
|
|
14
14
|
updatedAt?: Date;
|
|
15
15
|
internalTicketCategory?: IInternalTicketCategory[];
|