kcommons 18.15.0 → 18.15.1
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.
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
export declare enum SOCKET_EVENT {
|
|
2
2
|
NOTIFICATION = "notification",
|
|
3
3
|
COMPANY_ITEM_UPLOAD_PROGRESS = "company_item_upload_progress",
|
|
4
|
-
COMPANY_VENDOR_UPLOAD_PROGRESS = "company_vendor_upload_progress"
|
|
4
|
+
COMPANY_VENDOR_UPLOAD_PROGRESS = "company_vendor_upload_progress",
|
|
5
|
+
COMMENT_CREATED = "comment_created",
|
|
6
|
+
COMMENT_UPDATED = "comment_updated",
|
|
7
|
+
COMMENT_DELETED = "comment_deleted",
|
|
8
|
+
CREATE_COMMENT = "create_comment",
|
|
9
|
+
UPDATE_COMMENT = "update_comment",
|
|
10
|
+
DELETE_COMMENT = "delete_comment"
|
|
5
11
|
}
|
|
@@ -6,4 +6,10 @@ var SOCKET_EVENT;
|
|
|
6
6
|
SOCKET_EVENT["NOTIFICATION"] = "notification";
|
|
7
7
|
SOCKET_EVENT["COMPANY_ITEM_UPLOAD_PROGRESS"] = "company_item_upload_progress";
|
|
8
8
|
SOCKET_EVENT["COMPANY_VENDOR_UPLOAD_PROGRESS"] = "company_vendor_upload_progress";
|
|
9
|
+
SOCKET_EVENT["COMMENT_CREATED"] = "comment_created";
|
|
10
|
+
SOCKET_EVENT["COMMENT_UPDATED"] = "comment_updated";
|
|
11
|
+
SOCKET_EVENT["COMMENT_DELETED"] = "comment_deleted";
|
|
12
|
+
SOCKET_EVENT["CREATE_COMMENT"] = "create_comment";
|
|
13
|
+
SOCKET_EVENT["UPDATE_COMMENT"] = "update_comment";
|
|
14
|
+
SOCKET_EVENT["DELETE_COMMENT"] = "delete_comment";
|
|
9
15
|
})(SOCKET_EVENT || (exports.SOCKET_EVENT = SOCKET_EVENT = {}));
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { IPaginationFilters } from "./common/paginationFilters.typings";
|
|
1
2
|
import { INestedCompany } from "./company.typings";
|
|
2
3
|
import { INestedUser } from "./user.typings";
|
|
3
|
-
import { IPaginationFilters } from "./common/paginationFilters.typings";
|
|
4
4
|
export declare enum DOCUMENT_TYPE {
|
|
5
5
|
ASN = "ASN",
|
|
6
6
|
COMPARATIVE = "COMPARATIVE",
|
|
@@ -48,3 +48,9 @@ export interface IApprovalCommentFilters extends Pick<IApprovalComment, "documen
|
|
|
48
48
|
}
|
|
49
49
|
export interface IApprovalCommentFiltersWithPagination extends IPaginationFilters, IApprovalCommentFilters {
|
|
50
50
|
}
|
|
51
|
+
export interface IApprovalCommentDeletedPayload {
|
|
52
|
+
comment_id: string;
|
|
53
|
+
}
|
|
54
|
+
export interface IApprovalCommentUpdateInput {
|
|
55
|
+
message: string;
|
|
56
|
+
}
|
|
@@ -250,6 +250,7 @@ export interface IPOItem extends ITaxRelatedItemInputs {
|
|
|
250
250
|
allow_tolerance: boolean;
|
|
251
251
|
upperbound_allowed_tolerance_value: number | null;
|
|
252
252
|
lowerbound_allowed_tolerance_value: number | null;
|
|
253
|
+
line_item_number: number | null;
|
|
253
254
|
allowed_tolerance_unit: ITEM_TOLERANCE_TYPES | null;
|
|
254
255
|
company: INestedCompany | null;
|
|
255
256
|
item: INestedItem | null;
|