@abyss-project/console 4.1.0 → 5.0.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.
@@ -122,7 +122,7 @@ export interface IInternalTicketCreateWorkflowTriggerData {
122
122
  sectionName: string;
123
123
  creatorUserId: string | null;
124
124
  organizationId: string;
125
- projectId: string;
125
+ projectId: string | null;
126
126
  priority?: string;
127
127
  category?: string;
128
128
  tags?: string[];
@@ -135,7 +135,7 @@ export interface IInternalTicketDeleteWorkflowTriggerData {
135
135
  sectionName: string;
136
136
  deletedByUserId: string;
137
137
  organizationId: string;
138
- projectId: string;
138
+ projectId: string | null;
139
139
  deletedAt: string;
140
140
  }
141
141
  export interface IInternalTicketStatusChangeWorkflowTriggerData {
@@ -148,7 +148,7 @@ export interface IInternalTicketStatusChangeWorkflowTriggerData {
148
148
  reason?: string;
149
149
  changedByUserId: string;
150
150
  organizationId: string;
151
- projectId: string;
151
+ projectId: string | null;
152
152
  priority?: string;
153
153
  category?: string;
154
154
  tags?: string[];
@@ -166,7 +166,7 @@ export interface IInternalTicketMessageWorkflowTriggerData {
166
166
  replyToMessageId?: string;
167
167
  replyToAuthorUserId?: string;
168
168
  organizationId: string;
169
- projectId: string;
169
+ projectId: string | null;
170
170
  status: string;
171
171
  createdAt: string;
172
172
  }
@@ -178,7 +178,7 @@ export interface IInternalTicketAssignWorkflowTriggerData {
178
178
  assignedUserId: string;
179
179
  assignedByUserId: string;
180
180
  organizationId: string;
181
- projectId: string;
181
+ projectId: string | null;
182
182
  status: string;
183
183
  priority?: string;
184
184
  category?: string;
@@ -193,7 +193,7 @@ export interface IInternalTicketUnassignWorkflowTriggerData {
193
193
  unassignedUserId: string;
194
194
  unassignedByUserId: string;
195
195
  organizationId: string;
196
- projectId: string;
196
+ projectId: string | null;
197
197
  status: string;
198
198
  priority?: string;
199
199
  category?: string;
@@ -208,7 +208,7 @@ export interface IInternalTicketActivityWorkflowTriggerData {
208
208
  activityType: InternalTicketActivityType;
209
209
  userId: string | null;
210
210
  organizationId: string;
211
- projectId: string;
211
+ projectId: string | null;
212
212
  status: string;
213
213
  priority?: string;
214
214
  category?: string;
@@ -227,7 +227,7 @@ export interface IInternalTicketMessageReplyWorkflowTriggerData {
227
227
  replyToMessageId: string;
228
228
  replyToAuthorUserId: string;
229
229
  organizationId: string;
230
- projectId: string;
230
+ projectId: string | null;
231
231
  status: string;
232
232
  createdAt: string;
233
233
  }
@@ -91,7 +91,7 @@ export interface IInternalTicketSSEPayloadInput {
91
91
  isAgentOnly?: boolean;
92
92
  allowedUserIds?: string[];
93
93
  organizationId: string;
94
- projectId: string;
94
+ projectId: string | null;
95
95
  internalTicketId: string;
96
96
  userId: string | null;
97
97
  messageId?: string;
@@ -11,7 +11,7 @@ import { IInternalTicketTicketTag } from './internal-ticket-ticket-tag.model';
11
11
  import { IInternalTicketArtifact } from './internal-ticket-artifact.model';
12
12
  export interface IInternalTicket {
13
13
  id: string;
14
- projectId: string;
14
+ projectId: string | null;
15
15
  organizationId: string;
16
16
  requesterUserId: string | null;
17
17
  internalTicketSectionId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abyss-project/console",
3
- "version": "4.1.0",
3
+ "version": "5.0.0",
4
4
  "description": "Core package to interact with AbyssConsole",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",