promote-email-templates 0.1.12 → 0.1.13

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 CHANGED
@@ -257,6 +257,25 @@ declare namespace AbortOrderRequest {
257
257
  declare const AbortOrderRequestText: (props: AbortOrderRequestProps) => Promise<string>;
258
258
  declare const AbortOrderRequestHtml: (props: AbortOrderRequestProps) => Promise<string>;
259
259
 
260
+ declare function NewMessage(props: NewMessageProps): react_jsx_runtime.JSX.Element;
261
+ declare namespace NewMessage {
262
+ var PreviewProps: {
263
+ recipient: {
264
+ name: string;
265
+ email: string;
266
+ };
267
+ sender: {
268
+ name: string;
269
+ };
270
+ message: {
271
+ content: string;
272
+ };
273
+ };
274
+ }
275
+
276
+ declare const NewMessageText: (props: NewMessageProps) => Promise<string>;
277
+ declare const NewMessageHtml: (props: NewMessageProps) => Promise<string>;
278
+
260
279
  declare function RevertPaymentRequestAdmin(props: RevertPaymentRequestAdminProps): react_jsx_runtime.JSX.Element;
261
280
  declare namespace RevertPaymentRequestAdmin {
262
281
  var PreviewProps: {
@@ -684,4 +703,4 @@ declare namespace NewMessageNotification {
684
703
  declare const NewMessageNotificationText: (props: NewMessageNotificationProps) => Promise<string>;
685
704
  declare const NewMessageNotificationHtml: (props: NewMessageNotificationProps) => Promise<string>;
686
705
 
687
- export { AbortOrderRequest, AbortOrderRequestHtml, type AbortOrderRequestProps, AbortOrderRequestText, EvidenceApprovedCreator, EvidenceApprovedCreatorHtml, type EvidenceApprovedCreatorProps, EvidenceApprovedCreatorText, type EvidenceSubmittedBrandProps, EvidencesRejectedCreator, EvidencesRejectedCreatorHtml, EvidencesRejectedCreatorText, type EvidencesRejectedProps, EvidencesSubmittedBrand, EvidencesSubmittedBrandHtml, EvidencesSubmittedBrandText, NewJobApplicationUnapprovedCreator, NewJobApplicationUnapprovedCreatorHtml, type NewJobApplicationUnapprovedCreatorProps, NewJobApplicationUnapprovedCreatorText, NewJobApplicationsReceivedBrand, NewJobApplicationsReceivedBrandHtml, type NewJobApplicationsReceivedBrandProps, NewJobApplicationsReceivedBrandText, NewJobCreatedBrand, NewJobCreatedBrandHtml, type NewJobCreatedBrandProps, NewJobCreatedBrandText, NewMessageNotification, NewMessageNotificationHtml, type NewMessageNotificationProps, NewMessageNotificationText, type NewMessageProps, NewOrderCreatedBrand, NewOrderCreatedBrandHtml, type NewOrderCreatedBrandProps, NewOrderCreatedBrandText, NewOrderCreatedCreator, NewOrderCreatedCreatorHtml, type NewOrderCreatedCreatorProps, NewOrderCreatedCreatorText, OrderAcceptedBrand, OrderAcceptedBrandHtml, type OrderAcceptedBrandProps, OrderAcceptedBrandText, OrderCancelledBrand, OrderCancelledBrandHtml, type OrderCancelledBrandProps, OrderCancelledBrandText, OrderCancelledCreator, OrderCancelledCreatorHtml, type OrderCancelledCreatorProps, OrderCancelledCreatorText, OrderEvidencesAcceptedBrand, OrderEvidencesAcceptedBrandHtml, type OrderEvidencesAcceptedBrandProps, OrderEvidencesAcceptedBrandText, type OrderOrderPaymentCreatorProps, OrderPaymentCreator, OrderPaymentCreatorHtml, OrderPaymentCreatorText, OrderRejectedBrand, OrderRejectedBrandHtml, type OrderRejectedBrandProps, OrderRejectedBrandText, RevertPaymentRequestAdmin, RevertPaymentRequestAdminHtml, type RevertPaymentRequestAdminProps, RevertPaymentRequestAdminText, USER_ROLES, Welcome, WelcomeHtml, type WelcomeTemplateProps, WelcomeText, appBaseUrl, appRoutes, assetsBasePath, baseContainer, baseContentContainer, baseText, button, centerBlock, centerText, chatbotUrl, colors, link, main, rootStyles, socialNetworkLinks };
706
+ export { AbortOrderRequest, AbortOrderRequestHtml, type AbortOrderRequestProps, AbortOrderRequestText, EvidenceApprovedCreator, EvidenceApprovedCreatorHtml, type EvidenceApprovedCreatorProps, EvidenceApprovedCreatorText, type EvidenceSubmittedBrandProps, EvidencesRejectedCreator, EvidencesRejectedCreatorHtml, EvidencesRejectedCreatorText, type EvidencesRejectedProps, EvidencesSubmittedBrand, EvidencesSubmittedBrandHtml, EvidencesSubmittedBrandText, NewJobApplicationUnapprovedCreator, NewJobApplicationUnapprovedCreatorHtml, type NewJobApplicationUnapprovedCreatorProps, NewJobApplicationUnapprovedCreatorText, NewJobApplicationsReceivedBrand, NewJobApplicationsReceivedBrandHtml, type NewJobApplicationsReceivedBrandProps, NewJobApplicationsReceivedBrandText, NewJobCreatedBrand, NewJobCreatedBrandHtml, type NewJobCreatedBrandProps, NewJobCreatedBrandText, NewMessage, NewMessageHtml, NewMessageNotification, NewMessageNotificationHtml, type NewMessageNotificationProps, NewMessageNotificationText, type NewMessageProps, NewMessageText, NewOrderCreatedBrand, NewOrderCreatedBrandHtml, type NewOrderCreatedBrandProps, NewOrderCreatedBrandText, NewOrderCreatedCreator, NewOrderCreatedCreatorHtml, type NewOrderCreatedCreatorProps, NewOrderCreatedCreatorText, OrderAcceptedBrand, OrderAcceptedBrandHtml, type OrderAcceptedBrandProps, OrderAcceptedBrandText, OrderCancelledBrand, OrderCancelledBrandHtml, type OrderCancelledBrandProps, OrderCancelledBrandText, OrderCancelledCreator, OrderCancelledCreatorHtml, type OrderCancelledCreatorProps, OrderCancelledCreatorText, OrderEvidencesAcceptedBrand, OrderEvidencesAcceptedBrandHtml, type OrderEvidencesAcceptedBrandProps, OrderEvidencesAcceptedBrandText, type OrderOrderPaymentCreatorProps, OrderPaymentCreator, OrderPaymentCreatorHtml, OrderPaymentCreatorText, OrderRejectedBrand, OrderRejectedBrandHtml, type OrderRejectedBrandProps, OrderRejectedBrandText, RevertPaymentRequestAdmin, RevertPaymentRequestAdminHtml, type RevertPaymentRequestAdminProps, RevertPaymentRequestAdminText, USER_ROLES, Welcome, WelcomeHtml, type WelcomeTemplateProps, WelcomeText, appBaseUrl, appRoutes, assetsBasePath, baseContainer, baseContentContainer, baseText, button, centerBlock, centerText, chatbotUrl, colors, link, main, rootStyles, socialNetworkLinks };
package/dist/index.d.ts CHANGED
@@ -257,6 +257,25 @@ declare namespace AbortOrderRequest {
257
257
  declare const AbortOrderRequestText: (props: AbortOrderRequestProps) => Promise<string>;
258
258
  declare const AbortOrderRequestHtml: (props: AbortOrderRequestProps) => Promise<string>;
259
259
 
260
+ declare function NewMessage(props: NewMessageProps): react_jsx_runtime.JSX.Element;
261
+ declare namespace NewMessage {
262
+ var PreviewProps: {
263
+ recipient: {
264
+ name: string;
265
+ email: string;
266
+ };
267
+ sender: {
268
+ name: string;
269
+ };
270
+ message: {
271
+ content: string;
272
+ };
273
+ };
274
+ }
275
+
276
+ declare const NewMessageText: (props: NewMessageProps) => Promise<string>;
277
+ declare const NewMessageHtml: (props: NewMessageProps) => Promise<string>;
278
+
260
279
  declare function RevertPaymentRequestAdmin(props: RevertPaymentRequestAdminProps): react_jsx_runtime.JSX.Element;
261
280
  declare namespace RevertPaymentRequestAdmin {
262
281
  var PreviewProps: {
@@ -684,4 +703,4 @@ declare namespace NewMessageNotification {
684
703
  declare const NewMessageNotificationText: (props: NewMessageNotificationProps) => Promise<string>;
685
704
  declare const NewMessageNotificationHtml: (props: NewMessageNotificationProps) => Promise<string>;
686
705
 
687
- export { AbortOrderRequest, AbortOrderRequestHtml, type AbortOrderRequestProps, AbortOrderRequestText, EvidenceApprovedCreator, EvidenceApprovedCreatorHtml, type EvidenceApprovedCreatorProps, EvidenceApprovedCreatorText, type EvidenceSubmittedBrandProps, EvidencesRejectedCreator, EvidencesRejectedCreatorHtml, EvidencesRejectedCreatorText, type EvidencesRejectedProps, EvidencesSubmittedBrand, EvidencesSubmittedBrandHtml, EvidencesSubmittedBrandText, NewJobApplicationUnapprovedCreator, NewJobApplicationUnapprovedCreatorHtml, type NewJobApplicationUnapprovedCreatorProps, NewJobApplicationUnapprovedCreatorText, NewJobApplicationsReceivedBrand, NewJobApplicationsReceivedBrandHtml, type NewJobApplicationsReceivedBrandProps, NewJobApplicationsReceivedBrandText, NewJobCreatedBrand, NewJobCreatedBrandHtml, type NewJobCreatedBrandProps, NewJobCreatedBrandText, NewMessageNotification, NewMessageNotificationHtml, type NewMessageNotificationProps, NewMessageNotificationText, type NewMessageProps, NewOrderCreatedBrand, NewOrderCreatedBrandHtml, type NewOrderCreatedBrandProps, NewOrderCreatedBrandText, NewOrderCreatedCreator, NewOrderCreatedCreatorHtml, type NewOrderCreatedCreatorProps, NewOrderCreatedCreatorText, OrderAcceptedBrand, OrderAcceptedBrandHtml, type OrderAcceptedBrandProps, OrderAcceptedBrandText, OrderCancelledBrand, OrderCancelledBrandHtml, type OrderCancelledBrandProps, OrderCancelledBrandText, OrderCancelledCreator, OrderCancelledCreatorHtml, type OrderCancelledCreatorProps, OrderCancelledCreatorText, OrderEvidencesAcceptedBrand, OrderEvidencesAcceptedBrandHtml, type OrderEvidencesAcceptedBrandProps, OrderEvidencesAcceptedBrandText, type OrderOrderPaymentCreatorProps, OrderPaymentCreator, OrderPaymentCreatorHtml, OrderPaymentCreatorText, OrderRejectedBrand, OrderRejectedBrandHtml, type OrderRejectedBrandProps, OrderRejectedBrandText, RevertPaymentRequestAdmin, RevertPaymentRequestAdminHtml, type RevertPaymentRequestAdminProps, RevertPaymentRequestAdminText, USER_ROLES, Welcome, WelcomeHtml, type WelcomeTemplateProps, WelcomeText, appBaseUrl, appRoutes, assetsBasePath, baseContainer, baseContentContainer, baseText, button, centerBlock, centerText, chatbotUrl, colors, link, main, rootStyles, socialNetworkLinks };
706
+ export { AbortOrderRequest, AbortOrderRequestHtml, type AbortOrderRequestProps, AbortOrderRequestText, EvidenceApprovedCreator, EvidenceApprovedCreatorHtml, type EvidenceApprovedCreatorProps, EvidenceApprovedCreatorText, type EvidenceSubmittedBrandProps, EvidencesRejectedCreator, EvidencesRejectedCreatorHtml, EvidencesRejectedCreatorText, type EvidencesRejectedProps, EvidencesSubmittedBrand, EvidencesSubmittedBrandHtml, EvidencesSubmittedBrandText, NewJobApplicationUnapprovedCreator, NewJobApplicationUnapprovedCreatorHtml, type NewJobApplicationUnapprovedCreatorProps, NewJobApplicationUnapprovedCreatorText, NewJobApplicationsReceivedBrand, NewJobApplicationsReceivedBrandHtml, type NewJobApplicationsReceivedBrandProps, NewJobApplicationsReceivedBrandText, NewJobCreatedBrand, NewJobCreatedBrandHtml, type NewJobCreatedBrandProps, NewJobCreatedBrandText, NewMessage, NewMessageHtml, NewMessageNotification, NewMessageNotificationHtml, type NewMessageNotificationProps, NewMessageNotificationText, type NewMessageProps, NewMessageText, NewOrderCreatedBrand, NewOrderCreatedBrandHtml, type NewOrderCreatedBrandProps, NewOrderCreatedBrandText, NewOrderCreatedCreator, NewOrderCreatedCreatorHtml, type NewOrderCreatedCreatorProps, NewOrderCreatedCreatorText, OrderAcceptedBrand, OrderAcceptedBrandHtml, type OrderAcceptedBrandProps, OrderAcceptedBrandText, OrderCancelledBrand, OrderCancelledBrandHtml, type OrderCancelledBrandProps, OrderCancelledBrandText, OrderCancelledCreator, OrderCancelledCreatorHtml, type OrderCancelledCreatorProps, OrderCancelledCreatorText, OrderEvidencesAcceptedBrand, OrderEvidencesAcceptedBrandHtml, type OrderEvidencesAcceptedBrandProps, OrderEvidencesAcceptedBrandText, type OrderOrderPaymentCreatorProps, OrderPaymentCreator, OrderPaymentCreatorHtml, OrderPaymentCreatorText, OrderRejectedBrand, OrderRejectedBrandHtml, type OrderRejectedBrandProps, OrderRejectedBrandText, RevertPaymentRequestAdmin, RevertPaymentRequestAdminHtml, type RevertPaymentRequestAdminProps, RevertPaymentRequestAdminText, USER_ROLES, Welcome, WelcomeHtml, type WelcomeTemplateProps, WelcomeText, appBaseUrl, appRoutes, assetsBasePath, baseContainer, baseContentContainer, baseText, button, centerBlock, centerText, chatbotUrl, colors, link, main, rootStyles, socialNetworkLinks };