@ajayjbtickets/common 1.0.40 → 1.0.41

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.d.cts CHANGED
@@ -221,8 +221,9 @@ declare abstract class Publisher<T extends Event> {
221
221
  interface Ticket {
222
222
  id: string;
223
223
  name: string;
224
+ slug: string;
224
225
  price: number;
225
- userId: string;
226
+ createdBy: string;
226
227
  }
227
228
  interface TicketCreatedEvent {
228
229
  subject: Subjects.TicketCreated;
package/dist/index.d.ts CHANGED
@@ -221,8 +221,9 @@ declare abstract class Publisher<T extends Event> {
221
221
  interface Ticket {
222
222
  id: string;
223
223
  name: string;
224
+ slug: string;
224
225
  price: number;
225
- userId: string;
226
+ createdBy: string;
226
227
  }
227
228
  interface TicketCreatedEvent {
228
229
  subject: Subjects.TicketCreated;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ajayjbtickets/common",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",