@snippyly/sdk-staging
Advanced tools
Comparing version 1.0.595 to 1.0.596
@@ -225,2 +225,12 @@ // @ts-nocheck | ||
public disableAutoCategorize: () => any; | ||
/** | ||
* To enable suggestion mode | ||
*/ | ||
public enableSuggestionMode: () => any; | ||
/** | ||
* To disable suggestion mode | ||
*/ | ||
public disableSuggestionMode: () => any; | ||
constructor(); | ||
@@ -447,2 +457,12 @@ /** | ||
private _disableAutoCategorize; | ||
/** | ||
* To enable suggestion mode | ||
*/ | ||
private _enableSuggestionMode; | ||
/** | ||
* To disable suggestion mode | ||
*/ | ||
private _disableSuggestionMode; | ||
} |
@@ -1,2 +0,2 @@ | ||
import { CustomPriorityMap, CustomStatusMap } from "../models/data/custom-filter.data.model"; | ||
import { CustomPriorityMap, CustomStatus, CustomStatusMap } from "../models/data/custom-filter.data.model"; | ||
import { UserRole } from "../models/data/user-role.data.model"; | ||
@@ -204,2 +204,4 @@ export declare class Constants { | ||
static CommentAnnotationStatusMap: CustomStatusMap; | ||
static CommentAcceptStatus: CustomStatus; | ||
static CommentRejectStatus: CustomStatus; | ||
static CommentAnnotationPriorityMap: CustomPriorityMap; | ||
@@ -206,0 +208,0 @@ static WorkspaceRoles: Array<UserRole>; |
@@ -11,3 +11,5 @@ export declare enum CommentStatus { | ||
STATUS_CHANGED = "statusChanged", | ||
PRIORITY_CHANGED = "priorityChanged" | ||
PRIORITY_CHANGED = "priorityChanged", | ||
ACCEPTED = "accepted", | ||
REJECTED = "rejected" | ||
} | ||
@@ -24,3 +26,5 @@ export declare enum CommentAction { | ||
CHANGE_STATUS = "changeStatus", | ||
CHANGE_PRIORITY = "changePriority" | ||
CHANGE_PRIORITY = "changePriority", | ||
ACCEPT = "accept", | ||
REJECT = "reject" | ||
} | ||
@@ -27,0 +31,0 @@ export declare enum TagStatus { |
{ | ||
"name": "@snippyly/sdk-staging", | ||
"version": "1.0.595", | ||
"version": "1.0.596", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "snippyly.js", |
Sorry, the diff of this file is too big to display
2811285
13463