@ajayjbtickets/common 1.0.56 → 1.0.59
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.
- package/dist/index.cjs +3 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -9,6 +9,8 @@ declare const ENVIRONMENTS: {
|
|
|
9
9
|
production: string;
|
|
10
10
|
development: string;
|
|
11
11
|
testing: string;
|
|
12
|
+
qa: string;
|
|
13
|
+
uat: string;
|
|
12
14
|
};
|
|
13
15
|
|
|
14
16
|
declare enum ErrorType {
|
|
@@ -229,6 +231,7 @@ interface Ticket {
|
|
|
229
231
|
createdBy: string;
|
|
230
232
|
version: number;
|
|
231
233
|
orderId?: string | null;
|
|
234
|
+
isDeleted: boolean;
|
|
232
235
|
}
|
|
233
236
|
interface TicketCreatedEvent {
|
|
234
237
|
subject: Subjects.TicketCreated;
|
package/dist/index.d.ts
CHANGED
|
@@ -9,6 +9,8 @@ declare const ENVIRONMENTS: {
|
|
|
9
9
|
production: string;
|
|
10
10
|
development: string;
|
|
11
11
|
testing: string;
|
|
12
|
+
qa: string;
|
|
13
|
+
uat: string;
|
|
12
14
|
};
|
|
13
15
|
|
|
14
16
|
declare enum ErrorType {
|
|
@@ -229,6 +231,7 @@ interface Ticket {
|
|
|
229
231
|
createdBy: string;
|
|
230
232
|
version: number;
|
|
231
233
|
orderId?: string | null;
|
|
234
|
+
isDeleted: boolean;
|
|
232
235
|
}
|
|
233
236
|
interface TicketCreatedEvent {
|
|
234
237
|
subject: Subjects.TicketCreated;
|
package/dist/index.js
CHANGED