@hastehaul/common 2.0.20 → 2.0.22

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.
@@ -109,7 +109,7 @@ class NatsConsumer {
109
109
  }
110
110
  }
111
111
  catch (error) {
112
- console.error(error.message);
112
+ console.error(error);
113
113
  // throw new Error("Failed to consume messages");
114
114
  }
115
115
  });
@@ -36,7 +36,7 @@ class NatsPublisher {
36
36
  return yield jetStreamClient.publish(this.subject, typeof data === "string" ? this.sc.encode(data) : this.jc.encode(data));
37
37
  }
38
38
  catch (error) {
39
- console.error(error.message);
39
+ console.error(error);
40
40
  throw new Error(`Failed to publish message. Error: [${error.message}]`);
41
41
  }
42
42
  });
@@ -22,7 +22,6 @@ export interface CustomerCreatedEvent {
22
22
  * Events of different types may be grouped into different streams based on their common characteristics.
23
23
  */
24
24
  stream: CustomerStream.Customer;
25
- type: string;
26
25
  /**
27
26
  * The data payload of the "Customer Created" event.
28
27
  * The data payload contains specific details related to the customer cancellation, such as customer ID, version, status, user ID, and trip ID.
@@ -30,5 +29,6 @@ export interface CustomerCreatedEvent {
30
29
  data: {
31
30
  userId: null | string;
32
31
  phoneNumber: string;
32
+ isNew: boolean;
33
33
  };
34
34
  }
@@ -29,7 +29,7 @@ export interface CustomerNewEvent {
29
29
  data: {
30
30
  userId: string;
31
31
  phoneNumber: string;
32
- phoneUniqueId: string;
33
- hashedOtp: string;
32
+ phoneUniqueId?: string;
33
+ hashedOtp?: string;
34
34
  };
35
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hastehaul/common",
3
- "version": "2.0.20",
3
+ "version": "2.0.22",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",