@doctocar/tooling 0.3.1-17 → 0.3.1-18

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.
@@ -1,12 +1,12 @@
1
1
  import type { SupportedIsoCurrency } from "../../../enums";
2
2
  export type CustomerBookingConfirmationEmailData = {
3
3
  orderPublicReference: string;
4
- customerFullName: string;
4
+ customerDisplayName: string;
5
5
  formattedScheduledAt: string;
6
6
  commaSeparatedServicesNames: string;
7
7
  servicesProviderDetails: {
8
8
  companyLegalName: string;
9
- assignedServiceProviderFullName: string;
9
+ assignedServiceProviderDisplayName: string;
10
10
  };
11
11
  pricingDetails: {
12
12
  currency: SupportedIsoCurrency;
@@ -1,6 +1,6 @@
1
1
  export type CustomerConfirmedOrderCancelledEmailData = {
2
2
  orderPublicReference: string;
3
- customerFullName: string;
3
+ customerDisplayName: string;
4
4
  cancellationReason: string;
5
5
  professionalCompanyLegalName: string;
6
6
  formattedScheduledAt: string;
@@ -1,5 +1,5 @@
1
1
  export type CustomerOrderIssueReportedConfirmationEmailData = {
2
2
  orderPublicReference: string;
3
3
  orderIssuePublicReference: string;
4
- customerFullName: string;
4
+ customerDisplayName: string;
5
5
  };
@@ -1,5 +1,5 @@
1
1
  export type CustomerOrderNewMessageReceivedEmailData = {
2
2
  orderPublicReference: string;
3
- customerFullName: string;
3
+ customerDisplayName: string;
4
4
  senderFullName: string;
5
5
  };
@@ -1,5 +1,5 @@
1
1
  export type CustomerOrderReviewRequestedEmailData = {
2
2
  orderPublicReference: string;
3
- customerFullName: string;
3
+ customerDisplayName: string;
4
4
  professionalCompanyLegalName: string;
5
5
  };
@@ -1,5 +1,5 @@
1
1
  export type CustomerServiceCompletedByProfessionalEmailData = {
2
2
  orderPublicReference: string;
3
- customerFullName: string;
3
+ customerDisplayName: string;
4
4
  professionalCompanyLegalName: string;
5
5
  };
@@ -1,5 +1,5 @@
1
1
  export type CustomerServiceStartedEmailData = {
2
2
  orderPublicReference: string;
3
- customerFullName: string;
3
+ customerDisplayName: string;
4
4
  professionalCompanyLegalName: string;
5
5
  };
@@ -1,6 +1,6 @@
1
1
  export type CustomerUpcomingOrderReminderEmailData = {
2
2
  orderPublicReference: string;
3
- customerFullName: string;
3
+ customerDisplayName: string;
4
4
  professionalCompanyLegalName: string;
5
5
  formattedScheduledAt: string;
6
6
  };
@@ -1,6 +1,6 @@
1
1
  export type ProfessionalConfirmedOrderCancelledEmailData = {
2
2
  orderPublicReference: string;
3
- customerFullName: string;
3
+ customerDisplayName: string;
4
4
  cancellationReason: string;
5
5
  professionalCompanyLegalName: string;
6
6
  formattedScheduledAt: string;
@@ -1,7 +1,7 @@
1
1
  import type { SupportedIsoCurrency } from "../../../enums";
2
2
  export type ProfessionalNewBookingEmailData = {
3
3
  orderPublicReference: string;
4
- customerFullName: string;
4
+ customerDisplayName: string;
5
5
  customerPhone?: string;
6
6
  formattedScheduledAt: string;
7
7
  commaSeparatedServicesNames: string;
@@ -1,5 +1,5 @@
1
1
  export type ProfessionalOrderIssueReportedConfirmationEmailData = {
2
2
  orderPublicReference: string;
3
3
  orderIssuePublicReference: string;
4
- professionalFullName: string;
4
+ professionalDisplayName: string;
5
5
  };
@@ -1,6 +1,6 @@
1
1
  export type ProfessionalServiceCompletedByProfessionalEmailData = {
2
2
  orderPublicReference: string;
3
- customerFullName: string;
3
+ customerDisplayName: string;
4
4
  formattedScheduledAt: string;
5
- professionalFullName: string;
5
+ professionalDisplayName: string;
6
6
  };
@@ -1,5 +1,5 @@
1
1
  export type ProfessionalUpcomingOrderReminderEmailData = {
2
2
  orderPublicReference: string;
3
- customerFullName: string;
3
+ customerDisplayName: string;
4
4
  formattedScheduledAt: string;
5
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@doctocar/tooling",
3
- "version": "0.3.1-17",
3
+ "version": "0.3.1-18",
4
4
  "description": "A set of tools for DoctoCar projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",