promote-email-templates 0.1.0 → 0.1.1
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.mts +22 -1
- package/dist/index.d.ts +22 -1
- package/dist/index.js +2 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -598,4 +598,25 @@ declare namespace Welcome {
|
|
|
598
598
|
};
|
|
599
599
|
}
|
|
600
600
|
|
|
601
|
-
|
|
601
|
+
declare function NewMessageNotification(props: NewMessageNotificationProps): react_jsx_runtime.JSX.Element;
|
|
602
|
+
declare namespace NewMessageNotification {
|
|
603
|
+
var PreviewProps: {
|
|
604
|
+
recipient: {
|
|
605
|
+
name: string;
|
|
606
|
+
};
|
|
607
|
+
sender: {
|
|
608
|
+
name: string;
|
|
609
|
+
photo: string;
|
|
610
|
+
userType: USER_ROLES;
|
|
611
|
+
username: string;
|
|
612
|
+
};
|
|
613
|
+
message: {
|
|
614
|
+
content: string;
|
|
615
|
+
createdAt: string;
|
|
616
|
+
};
|
|
617
|
+
conversationPath: string;
|
|
618
|
+
chatRoomId: string;
|
|
619
|
+
};
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
export { AbortOrderRequest, type AbortOrderRequestProps, EvidenceApprovedCreator, type EvidenceApprovedCreatorProps, type EvidenceSubmittedBrandProps, EvidencesRejectedCreator, type EvidencesRejectedProps, EvidencesSubmittedBrand, NewJobApplicationUnapprovedCreator, type NewJobApplicationUnapprovedCreatorProps, NewJobApplicationsReceivedBrand, type NewJobApplicationsReceivedBrandProps, NewJobCreatedBrand, type NewJobCreatedBrandProps, NewMessageNotification, type NewMessageNotificationProps, NewOrderCreatedBrand, type NewOrderCreatedBrandProps, NewOrderCreatedCreator, type NewOrderCreatedCreatorProps, OrderAcceptedBrand, type OrderAcceptedBrandProps, OrderCancelledBrand, type OrderCancelledBrandProps, OrderCancelledCreator, type OrderCancelledCreatorProps, OrderEvidencesAcceptedBrand, type OrderEvidencesAcceptedBrandProps, type OrderOrderPaymentCreatorProps, OrderPaymentCreator, OrderRejectedBrand, type OrderRejectedBrandProps, RevertPaymentRequestAdmin, type RevertPaymentRequestAdminProps, USER_ROLES, Welcome, type WelcomeTemplateProps, appBaseUrl, appRoutes, assetsBasePath, baseContainer, baseContentContainer, baseText, button, centerBlock, centerText, colors, link, main, rootStyles, socialNetworkLinks };
|
package/dist/index.d.ts
CHANGED
|
@@ -598,4 +598,25 @@ declare namespace Welcome {
|
|
|
598
598
|
};
|
|
599
599
|
}
|
|
600
600
|
|
|
601
|
-
|
|
601
|
+
declare function NewMessageNotification(props: NewMessageNotificationProps): react_jsx_runtime.JSX.Element;
|
|
602
|
+
declare namespace NewMessageNotification {
|
|
603
|
+
var PreviewProps: {
|
|
604
|
+
recipient: {
|
|
605
|
+
name: string;
|
|
606
|
+
};
|
|
607
|
+
sender: {
|
|
608
|
+
name: string;
|
|
609
|
+
photo: string;
|
|
610
|
+
userType: USER_ROLES;
|
|
611
|
+
username: string;
|
|
612
|
+
};
|
|
613
|
+
message: {
|
|
614
|
+
content: string;
|
|
615
|
+
createdAt: string;
|
|
616
|
+
};
|
|
617
|
+
conversationPath: string;
|
|
618
|
+
chatRoomId: string;
|
|
619
|
+
};
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
export { AbortOrderRequest, type AbortOrderRequestProps, EvidenceApprovedCreator, type EvidenceApprovedCreatorProps, type EvidenceSubmittedBrandProps, EvidencesRejectedCreator, type EvidencesRejectedProps, EvidencesSubmittedBrand, NewJobApplicationUnapprovedCreator, type NewJobApplicationUnapprovedCreatorProps, NewJobApplicationsReceivedBrand, type NewJobApplicationsReceivedBrandProps, NewJobCreatedBrand, type NewJobCreatedBrandProps, NewMessageNotification, type NewMessageNotificationProps, NewOrderCreatedBrand, type NewOrderCreatedBrandProps, NewOrderCreatedCreator, type NewOrderCreatedCreatorProps, OrderAcceptedBrand, type OrderAcceptedBrandProps, OrderCancelledBrand, type OrderCancelledBrandProps, OrderCancelledCreator, type OrderCancelledCreatorProps, OrderEvidencesAcceptedBrand, type OrderEvidencesAcceptedBrandProps, type OrderOrderPaymentCreatorProps, OrderPaymentCreator, OrderRejectedBrand, type OrderRejectedBrandProps, RevertPaymentRequestAdmin, type RevertPaymentRequestAdminProps, USER_ROLES, Welcome, type WelcomeTemplateProps, appBaseUrl, appRoutes, assetsBasePath, baseContainer, baseContentContainer, baseText, button, centerBlock, centerText, colors, link, main, rootStyles, socialNetworkLinks };
|
package/dist/index.js
CHANGED
|
@@ -27,6 +27,7 @@ __export(emails_exports, {
|
|
|
27
27
|
NewJobApplicationUnapprovedCreator: () => NewJobApplicationUnapprovedCreator,
|
|
28
28
|
NewJobApplicationsReceivedBrand: () => NewJobApplicationsReceivedBrand,
|
|
29
29
|
NewJobCreatedBrand: () => NewJobCreatedBrand,
|
|
30
|
+
NewMessageNotification: () => NewMessageNotification,
|
|
30
31
|
NewOrderCreatedBrand: () => NewOrderCreatedBrand,
|
|
31
32
|
NewOrderCreatedCreator: () => NewOrderCreatedCreator,
|
|
32
33
|
OrderAcceptedBrand: () => OrderAcceptedBrand,
|
|
@@ -1352,6 +1353,7 @@ NewMessageNotification.PreviewProps = {
|
|
|
1352
1353
|
NewJobApplicationUnapprovedCreator,
|
|
1353
1354
|
NewJobApplicationsReceivedBrand,
|
|
1354
1355
|
NewJobCreatedBrand,
|
|
1356
|
+
NewMessageNotification,
|
|
1355
1357
|
NewOrderCreatedBrand,
|
|
1356
1358
|
NewOrderCreatedCreator,
|
|
1357
1359
|
OrderAcceptedBrand,
|
package/dist/index.mjs
CHANGED