@veltdev/sdk 1.0.90 → 1.0.92

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.
@@ -66,10 +66,14 @@ export declare class User {
66
66
  */
67
67
  isGuest?: boolean;
68
68
  }
69
- export declare class UserOptions {
69
+ export declare class Options {
70
70
  /**
71
71
  * If you want to replace the contacts of the user with the contacts you are sending.
72
72
  * This is replace personal and group contacts of the user.
73
73
  */
74
74
  replaceContacts?: boolean;
75
+ /**
76
+ * Pass the auth token of the user.
77
+ */
78
+ authToken?: string;
75
79
  }
@@ -1,4 +1,5 @@
1
1
  export declare enum CommentStatus {
2
+ NEWLY_ADDED = "newlyAdded",
2
3
  ADDED = "added",
3
4
  UPDATED = "updated",
4
5
  DELETED = "deleted",
@@ -6,29 +7,12 @@ export declare enum CommentStatus {
6
7
  ASSIGNED = "assigned",
7
8
  RESOLVED = "resolved",
8
9
  REOPENED = "reopened",
9
- IN_PROGRESS = "inProgress",
10
10
  STATUS_CHANGED = "statusChanged",
11
11
  PRIORITY_CHANGED = "priorityChanged",
12
12
  ACCESS_MODE_CHANGED = "accessModeChanged",
13
13
  ACCEPTED = "accepted",
14
14
  REJECTED = "rejected"
15
15
  }
16
- export declare enum CommentAction {
17
- NEW = "new",
18
- ADD = "add",
19
- UPDATE = "update",
20
- DELETE = "delete",
21
- APPROVE = "approve",
22
- ASSIGN = "assign",
23
- RESOLVE = "resolve",
24
- REOPEN = "reopen",
25
- IN_PROGRESS = "inProgress",
26
- CHANGE_STATUS = "changeStatus",
27
- CHANGE_PRIORITY = "changePriority",
28
- CHANGE_ACCESS_MODE = "changeAccessMode",
29
- ACCEPT = "accept",
30
- REJECT = "reject"
31
- }
32
16
  export declare enum TagStatus {
33
17
  ADDED = "added",
34
18
  UPDATED = "updated",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/sdk",
3
- "version": "1.0.90",
3
+ "version": "1.0.92",
4
4
  "description": "",
5
5
  "main": "velt.js",
6
6
  "scripts": {