@abyss-project/console 1.4.0 → 1.5.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.
|
@@ -10,6 +10,7 @@ export interface ICreateInternalTicketBody {
|
|
|
10
10
|
internalTicketPriorityId: string;
|
|
11
11
|
internalTicketCategoryId?: string;
|
|
12
12
|
priorityReason?: string;
|
|
13
|
+
isPrivate?: boolean;
|
|
13
14
|
tagIds?: string[];
|
|
14
15
|
artifacts?: {
|
|
15
16
|
label: string;
|
|
@@ -57,6 +58,7 @@ export interface IUpdateInternalTicketBody {
|
|
|
57
58
|
closedAt?: Date | null;
|
|
58
59
|
closedReason?: string;
|
|
59
60
|
isArchived?: boolean;
|
|
61
|
+
isPrivate?: boolean;
|
|
60
62
|
projectId?: string;
|
|
61
63
|
}
|
|
62
64
|
export interface IDeleteInternalTicketParams {
|
|
@@ -88,6 +88,7 @@ export interface IRemoveInternalTicketMessageReactionData {
|
|
|
88
88
|
export type IRemoveInternalTicketMessageReactionResponse = IResponse<IRemoveInternalTicketMessageReactionData>;
|
|
89
89
|
export interface IInternalTicketSSEPayloadInput {
|
|
90
90
|
isAgentOnly?: boolean;
|
|
91
|
+
allowedUserIds?: string[];
|
|
91
92
|
organizationId: string;
|
|
92
93
|
projectId: string;
|
|
93
94
|
internalTicketId: string;
|
package/package.json
CHANGED
|
@@ -1,9 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abyss-project/console",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "Core package to interact with AbyssConsole",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"types": "dist/index.d.ts"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"lint": "eslint \"{src,apps,libs,test,core}/**/*.ts\" --fix",
|
|
13
|
+
"lint:check": "eslint \"{src,apps,libs,test,core}/**/*.ts\" --max-warnings 0",
|
|
14
|
+
"tsc": "tsc",
|
|
15
|
+
"build": "tsc",
|
|
16
|
+
"dev": "tsc --watch",
|
|
17
|
+
"prepublish": "tsc"
|
|
18
|
+
},
|
|
7
19
|
"keywords": [],
|
|
8
20
|
"author": "scylla",
|
|
9
21
|
"license": "ISC",
|
|
@@ -40,13 +52,5 @@
|
|
|
40
52
|
"sequelize-cli": "^6.2.0",
|
|
41
53
|
"tsc-watch": "^7.2.0",
|
|
42
54
|
"typescript": "5.4.2"
|
|
43
|
-
},
|
|
44
|
-
"scripts": {
|
|
45
|
-
"lint": "eslint \"{src,apps,libs,test,core}/**/*.ts\" --fix",
|
|
46
|
-
"lint:check": "eslint \"{src,apps,libs,test,core}/**/*.ts\" --max-warnings 0",
|
|
47
|
-
"tsc": "tsc",
|
|
48
|
-
"build": "tsc",
|
|
49
|
-
"dev": "tsc --watch",
|
|
50
|
-
"prepublish": "tsc"
|
|
51
55
|
}
|
|
52
|
-
}
|
|
56
|
+
}
|