promote-email-templates 0.1.4 → 0.1.5

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.js CHANGED
@@ -141,7 +141,7 @@ var appRoutes = {
141
141
  brandJobDetails: (jobId) => `${appBaseUrl}/brands/jobs/${jobId}`,
142
142
  adminOrderDetails: (orderId) => `${appBaseUrl}/admin/orders/${orderId}`,
143
143
  creatorPublicProfile: (username) => `${appBaseUrl}/content-creators/${username}`,
144
- brandConversation: (conversationPath, chatRoomId) => `${appBaseUrl}/${conversationPath}?chatRoomId=${chatRoomId}`
144
+ brandConversation: (conversationPath, chatRoomId) => `${appBaseUrl}${conversationPath}?chatRoomId=${chatRoomId}`
145
145
  };
146
146
  var socialNetworkLinks = {
147
147
  linkedin: "https://www.linkedin.com/company/promotemz",
package/dist/index.mjs CHANGED
@@ -83,7 +83,7 @@ var appRoutes = {
83
83
  brandJobDetails: (jobId) => `${appBaseUrl}/brands/jobs/${jobId}`,
84
84
  adminOrderDetails: (orderId) => `${appBaseUrl}/admin/orders/${orderId}`,
85
85
  creatorPublicProfile: (username) => `${appBaseUrl}/content-creators/${username}`,
86
- brandConversation: (conversationPath, chatRoomId) => `${appBaseUrl}/${conversationPath}?chatRoomId=${chatRoomId}`
86
+ brandConversation: (conversationPath, chatRoomId) => `${appBaseUrl}${conversationPath}?chatRoomId=${chatRoomId}`
87
87
  };
88
88
  var socialNetworkLinks = {
89
89
  linkedin: "https://www.linkedin.com/company/promotemz",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "promote-email-templates",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Promote Email Templates",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",