@stoker-platform/cli 0.5.14 → 0.5.15
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.
|
@@ -190,7 +190,7 @@ const Inbox: GenerateSchema = (sdk, utils, context): CollectionSchema => {
|
|
|
190
190
|
],
|
|
191
191
|
}
|
|
192
192
|
const replyRecord = {
|
|
193
|
-
Subject: `Re: ${originalRecord.Subject}`,
|
|
193
|
+
Subject: `Re: ${originalRecord.Subject.replaceAll("Re: ", "")}`,
|
|
194
194
|
Message: replyMessage,
|
|
195
195
|
Sender: {
|
|
196
196
|
[claims.doc as string]: {
|
|
@@ -241,7 +241,7 @@ const Inbox: GenerateSchema = (sdk, utils, context): CollectionSchema => {
|
|
|
241
241
|
return key !== Object.keys(originalRecord.Recipient)[0] ? value : undefined
|
|
242
242
|
})
|
|
243
243
|
const replyRecord = {
|
|
244
|
-
Subject: `Re: ${originalRecord.Subject}`,
|
|
244
|
+
Subject: `Re: ${originalRecord.Subject.replaceAll("Re: ", "")}`,
|
|
245
245
|
Message: replyMessage,
|
|
246
246
|
Sender: {
|
|
247
247
|
[claims.doc as string]: {
|
package/lib/package.json
CHANGED