promote-email-templates 0.0.7 → 0.0.9

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.
@@ -61,5 +61,5 @@ export function generateMetadata({ params }: { params: PreviewParams }) {
61
61
 
62
62
 
63
63
  export async function generateStaticParams() {
64
- return [{"slug":["admin","abort-order-request"]},{"slug":["admin","revert-payment-request-admin"]},{"slug":["all","welcome"]},{"slug":["brand","evidences-accepted-brand"]},{"slug":["brand","evidences-submitted-brand"]},{"slug":["brand","new-job-application-received-brand"]},{"slug":["brand","new-job-created-brand"]},{"slug":["brand","new-order-created-brand"]},{"slug":["brand","order-accepted-brand"]},{"slug":["brand","order-cancelled-brand"]},{"slug":["brand","order-rejected-brand"]},{"slug":["creator","evidences-approved-creator"]},{"slug":["creator","evidences-rejected-creator"]},{"slug":["creator","new-job-application-unapproved-creator"]},{"slug":["creator","new-order-created-creator"]},{"slug":["creator","order-cancelled-creator"]},{"slug":["creator","order-payment-creator"]},{"slug":["shared","components","base-head"]},{"slug":["shared","components","comment-component"]},{"slug":["shared","components","footer"]},{"slug":["shared","components","header"]},{"slug":["shared","components","new-order-info"]},{"slug":["shared","components","payment-amount"]},{"slug":["shared","components","user-Info"]}];
64
+ return [{"slug":["admin","abort-order-request"]},{"slug":["admin","revert-payment-request-admin"]},{"slug":["all","new-message-notification"]},{"slug":["all","welcome"]},{"slug":["brand","evidences-accepted-brand"]},{"slug":["brand","evidences-submitted-brand"]},{"slug":["brand","new-job-application-received-brand"]},{"slug":["brand","new-job-created-brand"]},{"slug":["brand","new-order-created-brand"]},{"slug":["brand","order-accepted-brand"]},{"slug":["brand","order-cancelled-brand"]},{"slug":["brand","order-rejected-brand"]},{"slug":["creator","evidences-approved-creator"]},{"slug":["creator","evidences-rejected-creator"]},{"slug":["creator","new-job-application-unapproved-creator"]},{"slug":["creator","new-order-created-creator"]},{"slug":["creator","order-cancelled-creator"]},{"slug":["creator","order-payment-creator"]},{"slug":["shared","components","base-head"]},{"slug":["shared","components","comment-component"]},{"slug":["shared","components","footer"]},{"slug":["shared","components","header"]},{"slug":["shared","components","new-order-info"]},{"slug":["shared","components","payment-amount"]},{"slug":["shared","components","user-Info"]}];
65
65
  }
package/dist/index.d.mts CHANGED
@@ -216,6 +216,23 @@ interface WelcomeTemplateProps {
216
216
  name?: string;
217
217
  userType: USER_ROLES;
218
218
  }
219
+ interface NewMessageNotificationProps {
220
+ recipient: {
221
+ name: string;
222
+ };
223
+ sender: {
224
+ name: string;
225
+ photo: string;
226
+ userType: USER_ROLES;
227
+ username: string;
228
+ };
229
+ message: {
230
+ content: string;
231
+ createdAt: string;
232
+ };
233
+ chatRoomId: string;
234
+ conversationPath: string;
235
+ }
219
236
 
220
237
  declare function AbortOrderRequest(props: AbortOrderRequestProps): react_jsx_runtime.JSX.Element;
221
238
  declare namespace AbortOrderRequest {
@@ -314,6 +331,7 @@ declare const appRoutes: {
314
331
  brandJobDetails: (jobId: string) => string;
315
332
  adminOrderDetails: (orderId: string) => string;
316
333
  creatorPublicProfile: (username: string) => string;
334
+ brandConversation: (conversationPath: string, chatRoomId: string) => string;
317
335
  };
318
336
  declare const socialNetworkLinks: {
319
337
  linkedin: string;
@@ -580,4 +598,4 @@ declare namespace Welcome {
580
598
  };
581
599
  }
582
600
 
583
- export { AbortOrderRequest, type AbortOrderRequestProps, EvidenceApprovedCreator, type EvidenceApprovedCreatorProps, type EvidenceSubmittedBrandProps, EvidencesRejectedCreator, type EvidencesRejectedProps, EvidencesSubmittedBrand, NewJobApplicationUnapprovedCreator, type NewJobApplicationUnapprovedCreatorProps, NewJobApplicationsReceivedBrand, type NewJobApplicationsReceivedBrandProps, NewJobCreatedBrand, type NewJobCreatedBrandProps, 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 };
601
+ export { AbortOrderRequest, type AbortOrderRequestProps, EvidenceApprovedCreator, type EvidenceApprovedCreatorProps, type EvidenceSubmittedBrandProps, EvidencesRejectedCreator, type EvidencesRejectedProps, EvidencesSubmittedBrand, NewJobApplicationUnapprovedCreator, type NewJobApplicationUnapprovedCreatorProps, NewJobApplicationsReceivedBrand, type NewJobApplicationsReceivedBrandProps, NewJobCreatedBrand, type NewJobCreatedBrandProps, 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
@@ -216,6 +216,23 @@ interface WelcomeTemplateProps {
216
216
  name?: string;
217
217
  userType: USER_ROLES;
218
218
  }
219
+ interface NewMessageNotificationProps {
220
+ recipient: {
221
+ name: string;
222
+ };
223
+ sender: {
224
+ name: string;
225
+ photo: string;
226
+ userType: USER_ROLES;
227
+ username: string;
228
+ };
229
+ message: {
230
+ content: string;
231
+ createdAt: string;
232
+ };
233
+ chatRoomId: string;
234
+ conversationPath: string;
235
+ }
219
236
 
220
237
  declare function AbortOrderRequest(props: AbortOrderRequestProps): react_jsx_runtime.JSX.Element;
221
238
  declare namespace AbortOrderRequest {
@@ -314,6 +331,7 @@ declare const appRoutes: {
314
331
  brandJobDetails: (jobId: string) => string;
315
332
  adminOrderDetails: (orderId: string) => string;
316
333
  creatorPublicProfile: (username: string) => string;
334
+ brandConversation: (conversationPath: string, chatRoomId: string) => string;
317
335
  };
318
336
  declare const socialNetworkLinks: {
319
337
  linkedin: string;
@@ -580,4 +598,4 @@ declare namespace Welcome {
580
598
  };
581
599
  }
582
600
 
583
- export { AbortOrderRequest, type AbortOrderRequestProps, EvidenceApprovedCreator, type EvidenceApprovedCreatorProps, type EvidenceSubmittedBrandProps, EvidencesRejectedCreator, type EvidencesRejectedProps, EvidencesSubmittedBrand, NewJobApplicationUnapprovedCreator, type NewJobApplicationUnapprovedCreatorProps, NewJobApplicationsReceivedBrand, type NewJobApplicationsReceivedBrandProps, NewJobCreatedBrand, type NewJobCreatedBrandProps, 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 };
601
+ export { AbortOrderRequest, type AbortOrderRequestProps, EvidenceApprovedCreator, type EvidenceApprovedCreatorProps, type EvidenceSubmittedBrandProps, EvidencesRejectedCreator, type EvidencesRejectedProps, EvidencesSubmittedBrand, NewJobApplicationUnapprovedCreator, type NewJobApplicationUnapprovedCreatorProps, NewJobApplicationsReceivedBrand, type NewJobApplicationsReceivedBrandProps, NewJobCreatedBrand, type NewJobCreatedBrandProps, 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
@@ -139,7 +139,8 @@ var appRoutes = {
139
139
  brandOrderDetails: (orderId) => `${appBaseUrl}/brands/orders/${orderId}`,
140
140
  brandJobDetails: (jobId) => `${appBaseUrl}/brands/jobs/${jobId}`,
141
141
  adminOrderDetails: (orderId) => `${appBaseUrl}/admin/orders/${orderId}`,
142
- creatorPublicProfile: (username) => `${appBaseUrl}/content-creators/${username}`
142
+ creatorPublicProfile: (username) => `${appBaseUrl}/content-creators/${username}`,
143
+ brandConversation: (conversationPath, chatRoomId) => `${appBaseUrl}/${conversationPath}?chatRoomId=${chatRoomId}`
143
144
  };
144
145
  var socialNetworkLinks = {
145
146
  linkedin: "https://www.linkedin.com/company/promotemz",
@@ -439,7 +440,7 @@ var import_jsx_runtime9 = require("react/jsx-runtime");
439
440
  function EvidencesSubmittedBrand(props) {
440
441
  return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_components9.Html, { style: rootStyles, children: [
441
442
  /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(BaseHead, {}),
442
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_components9.Preview, { children: "Evid\xEAncias submetidas \u{1F195}" }),
443
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_components9.Preview, { children: "Materiais de Entrega submetidos \u{1F195}" }),
443
444
  /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_components9.Body, { style: { ...main, ...baseContainer }, children: [
444
445
  /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Header, {}),
445
446
  /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(UserInfo, { photo: props.creator.photo, name: props.creator.name, userType: "creator" /* CREATOR */, username: props.creator.username }),
@@ -454,19 +455,19 @@ function EvidencesSubmittedBrand(props) {
454
455
  " ",
455
456
  /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_components9.Link, { href: appRoutes.creatorPublicProfile(props.creator.username), target: "_blank", style: link, children: props.creator.name }),
456
457
  " ",
457
- "submeteu novas evid\xEAncias para o seu",
458
+ "submeteu novo material de entrega para o seu",
458
459
  " ",
459
460
  /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_components9.Link, { href: appRoutes.brandOrderDetails(props.order.id), target: "_blank", style: link, children: "pedido. \u{1F680}" }),
460
461
  " ",
461
462
  /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("br", {}),
462
- " Por favor, verifique as evid\xEAncias submetidas e ",
463
+ " Por favor, verifique os materiais de entrega submetidos e ",
463
464
  /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("b", { children: "aprove \u2705" }),
464
465
  " ou ",
465
466
  /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("b", { children: "rejeite \u274C" }),
466
467
  " o trabalho."
467
468
  ] })
468
469
  ] }),
469
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_components9.Container, { style: { ...baseContentContainer }, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_components9.Link, { href: appRoutes.brandOrderDetails(props.order.id), style: { ...button, width: "150px" }, children: "VER EVID\xCANCIAS" }) }),
470
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_components9.Container, { style: { ...baseContentContainer }, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_components9.Link, { href: appRoutes.brandOrderDetails(props.order.id), style: { ...button, width: "150px" }, children: "VER MATERIAL" }) }),
470
471
  /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Footer, {})
471
472
  ] })
472
473
  ] });
@@ -913,7 +914,7 @@ var import_jsx_runtime18 = require("react/jsx-runtime");
913
914
  function EvidenceApprovedCreator(props) {
914
915
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_components18.Html, { style: rootStyles, children: [
915
916
  /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(BaseHead, {}),
916
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_components18.Preview, { children: "Evid\xEAncia aprovada \u2705" }),
917
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_components18.Preview, { children: "Material de Entrega aprovado \u2705" }),
917
918
  /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_components18.Body, { style: { ...main, ...baseContainer }, children: [
918
919
  /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Header, {}),
919
920
  /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(UserInfo, { photo: props.brand.photo, name: props.brand.name, userType: "brand" /* BRAND */ }),
@@ -924,11 +925,11 @@ function EvidenceApprovedCreator(props) {
924
925
  " \u{1F38A},"
925
926
  ] }),
926
927
  /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_components18.Text, { style: baseText, children: [
927
- "Actualiza\xE7\xF5es, a",
928
+ "Actualiza\xE7\xF5es, o",
928
929
  " ",
929
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_components18.Link, { href: appRoutes.creatorOrderDetails(props.evidenceLink), target: "_blank", style: link, children: "evid\xEAncia" }),
930
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_components18.Link, { href: appRoutes.creatorOrderDetails(props.evidenceLink), target: "_blank", style: link, children: "material de entrega" }),
930
931
  " ",
931
- "que submeteste foi aprovada pela marca \u{1F389}."
932
+ "que submeteste foi aprovado pela marca \u{1F389}."
932
933
  ] }),
933
934
  /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_components18.Text, { style: baseText, children: "Aguarde pela aprova\xE7\xE3o total por parte da marca para receberes o pagamento. Se tiveres alguma d\xFAvida, n\xE3o hesites em contactar" })
934
935
  ] }),
@@ -968,9 +969,9 @@ function EvidencesRejectedCreator(props) {
968
969
  ","
969
970
  ] }),
970
971
  /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(import_components19.Text, { style: baseText, children: [
971
- "A",
972
+ "O",
972
973
  " ",
973
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_components19.Link, { href: props.evidenceLink, target: "_blank", style: link, children: "evid\xEAncia" }),
974
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_components19.Link, { href: props.evidenceLink, target: "_blank", style: link, children: "material de entrega" }),
974
975
  " ",
975
976
  "foi rejeitada \u274C pela marca.",
976
977
  /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("br", {}),
package/dist/index.mjs CHANGED
@@ -82,7 +82,8 @@ var appRoutes = {
82
82
  brandOrderDetails: (orderId) => `${appBaseUrl}/brands/orders/${orderId}`,
83
83
  brandJobDetails: (jobId) => `${appBaseUrl}/brands/jobs/${jobId}`,
84
84
  adminOrderDetails: (orderId) => `${appBaseUrl}/admin/orders/${orderId}`,
85
- creatorPublicProfile: (username) => `${appBaseUrl}/content-creators/${username}`
85
+ creatorPublicProfile: (username) => `${appBaseUrl}/content-creators/${username}`,
86
+ brandConversation: (conversationPath, chatRoomId) => `${appBaseUrl}/${conversationPath}?chatRoomId=${chatRoomId}`
86
87
  };
87
88
  var socialNetworkLinks = {
88
89
  linkedin: "https://www.linkedin.com/company/promotemz",
@@ -382,7 +383,7 @@ import { jsx as jsx9, jsxs as jsxs7 } from "react/jsx-runtime";
382
383
  function EvidencesSubmittedBrand(props) {
383
384
  return /* @__PURE__ */ jsxs7(Html4, { style: rootStyles, children: [
384
385
  /* @__PURE__ */ jsx9(BaseHead, {}),
385
- /* @__PURE__ */ jsx9(Preview4, { children: "Evid\xEAncias submetidas \u{1F195}" }),
386
+ /* @__PURE__ */ jsx9(Preview4, { children: "Materiais de Entrega submetidos \u{1F195}" }),
386
387
  /* @__PURE__ */ jsxs7(Body4, { style: { ...main, ...baseContainer }, children: [
387
388
  /* @__PURE__ */ jsx9(Header, {}),
388
389
  /* @__PURE__ */ jsx9(UserInfo, { photo: props.creator.photo, name: props.creator.name, userType: "creator" /* CREATOR */, username: props.creator.username }),
@@ -397,19 +398,19 @@ function EvidencesSubmittedBrand(props) {
397
398
  " ",
398
399
  /* @__PURE__ */ jsx9(Link7, { href: appRoutes.creatorPublicProfile(props.creator.username), target: "_blank", style: link, children: props.creator.name }),
399
400
  " ",
400
- "submeteu novas evid\xEAncias para o seu",
401
+ "submeteu novo material de entrega para o seu",
401
402
  " ",
402
403
  /* @__PURE__ */ jsx9(Link7, { href: appRoutes.brandOrderDetails(props.order.id), target: "_blank", style: link, children: "pedido. \u{1F680}" }),
403
404
  " ",
404
405
  /* @__PURE__ */ jsx9("br", {}),
405
- " Por favor, verifique as evid\xEAncias submetidas e ",
406
+ " Por favor, verifique os materiais de entrega submetidos e ",
406
407
  /* @__PURE__ */ jsx9("b", { children: "aprove \u2705" }),
407
408
  " ou ",
408
409
  /* @__PURE__ */ jsx9("b", { children: "rejeite \u274C" }),
409
410
  " o trabalho."
410
411
  ] })
411
412
  ] }),
412
- /* @__PURE__ */ jsx9(Container8, { style: { ...baseContentContainer }, children: /* @__PURE__ */ jsx9(Link7, { href: appRoutes.brandOrderDetails(props.order.id), style: { ...button, width: "150px" }, children: "VER EVID\xCANCIAS" }) }),
413
+ /* @__PURE__ */ jsx9(Container8, { style: { ...baseContentContainer }, children: /* @__PURE__ */ jsx9(Link7, { href: appRoutes.brandOrderDetails(props.order.id), style: { ...button, width: "150px" }, children: "VER MATERIAL" }) }),
413
414
  /* @__PURE__ */ jsx9(Footer, {})
414
415
  ] })
415
416
  ] });
@@ -856,7 +857,7 @@ import { jsx as jsx18, jsxs as jsxs16 } from "react/jsx-runtime";
856
857
  function EvidenceApprovedCreator(props) {
857
858
  return /* @__PURE__ */ jsxs16(Html11, { style: rootStyles, children: [
858
859
  /* @__PURE__ */ jsx18(BaseHead, {}),
859
- /* @__PURE__ */ jsx18(Preview11, { children: "Evid\xEAncia aprovada \u2705" }),
860
+ /* @__PURE__ */ jsx18(Preview11, { children: "Material de Entrega aprovado \u2705" }),
860
861
  /* @__PURE__ */ jsxs16(Body11, { style: { ...main, ...baseContainer }, children: [
861
862
  /* @__PURE__ */ jsx18(Header, {}),
862
863
  /* @__PURE__ */ jsx18(UserInfo, { photo: props.brand.photo, name: props.brand.name, userType: "brand" /* BRAND */ }),
@@ -867,11 +868,11 @@ function EvidenceApprovedCreator(props) {
867
868
  " \u{1F38A},"
868
869
  ] }),
869
870
  /* @__PURE__ */ jsxs16(Text16, { style: baseText, children: [
870
- "Actualiza\xE7\xF5es, a",
871
+ "Actualiza\xE7\xF5es, o",
871
872
  " ",
872
- /* @__PURE__ */ jsx18(Link14, { href: appRoutes.creatorOrderDetails(props.evidenceLink), target: "_blank", style: link, children: "evid\xEAncia" }),
873
+ /* @__PURE__ */ jsx18(Link14, { href: appRoutes.creatorOrderDetails(props.evidenceLink), target: "_blank", style: link, children: "material de entrega" }),
873
874
  " ",
874
- "que submeteste foi aprovada pela marca \u{1F389}."
875
+ "que submeteste foi aprovado pela marca \u{1F389}."
875
876
  ] }),
876
877
  /* @__PURE__ */ jsx18(Text16, { style: baseText, children: "Aguarde pela aprova\xE7\xE3o total por parte da marca para receberes o pagamento. Se tiveres alguma d\xFAvida, n\xE3o hesites em contactar" })
877
878
  ] }),
@@ -911,9 +912,9 @@ function EvidencesRejectedCreator(props) {
911
912
  ","
912
913
  ] }),
913
914
  /* @__PURE__ */ jsxs17(Text17, { style: baseText, children: [
914
- "A",
915
+ "O",
915
916
  " ",
916
- /* @__PURE__ */ jsx19(Link15, { href: props.evidenceLink, target: "_blank", style: link, children: "evid\xEAncia" }),
917
+ /* @__PURE__ */ jsx19(Link15, { href: props.evidenceLink, target: "_blank", style: link, children: "material de entrega" }),
917
918
  " ",
918
919
  "foi rejeitada \u274C pela marca.",
919
920
  /* @__PURE__ */ jsx19("br", {}),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "promote-email-templates",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "description": "Promote Email Templates",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",