@webex/internal-plugin-conversation 2.29.3 → 2.30.0
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/conversation.js +2 -2
- package/dist/conversation.js.map +1 -1
- package/dist/decryption-transforms.js +13 -13
- package/dist/decryption-transforms.js.map +1 -1
- package/dist/share-activity.js +2 -2
- package/dist/share-activity.js.map +1 -1
- package/package.json +39 -30
- package/src/conversation.js +1 -1
- package/src/decryption-transforms.js +13 -13
- package/src/share-activity.js +1 -1
- package/test/integration/spec/get.js +3 -5
|
@@ -738,8 +738,8 @@ describe('plugin-conversation', function () {
|
|
|
738
738
|
parentActivityId: parent.id,
|
|
739
739
|
activityType: 'reply'
|
|
740
740
|
}).then(({parent: parentObj} = {}) => {
|
|
741
|
-
assert.equal(parentObj
|
|
742
|
-
assert.equal(parentObj
|
|
741
|
+
assert.equal(parentObj.type, 'reply');
|
|
742
|
+
assert.equal(parentObj.id, parent.id);
|
|
743
743
|
|
|
744
744
|
return webex.internal.conversation.listParentActivityIds(conversation.url, {activityType: 'reply'});
|
|
745
745
|
}).then(({reply}) => {
|
|
@@ -872,9 +872,7 @@ describe('plugin-conversation', function () {
|
|
|
872
872
|
}
|
|
873
873
|
},
|
|
874
874
|
{
|
|
875
|
-
object:
|
|
876
|
-
...message
|
|
877
|
-
}
|
|
875
|
+
object: message
|
|
878
876
|
}
|
|
879
877
|
);
|
|
880
878
|
|