@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 CHANGED
@@ -73,7 +73,9 @@ module.exports = __toCommonJS(index_exports);
73
73
  var ENVIRONMENTS = {
74
74
  production: "production",
75
75
  development: "development",
76
- testing: "testing"
76
+ testing: "test",
77
+ qa: "qa",
78
+ uat: "uat"
77
79
  };
78
80
 
79
81
  // src/core/ApiResponse.ts
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
@@ -2,7 +2,9 @@
2
2
  var ENVIRONMENTS = {
3
3
  production: "production",
4
4
  development: "development",
5
- testing: "testing"
5
+ testing: "test",
6
+ qa: "qa",
7
+ uat: "uat"
6
8
  };
7
9
 
8
10
  // src/core/ApiResponse.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ajayjbtickets/common",
3
- "version": "1.0.56",
3
+ "version": "1.0.59",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",