retell-sync-cli 3.14.1 → 3.14.2
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/cli.js +7 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -134753,8 +134753,13 @@ function computeComponentChanges(local, remote) {
|
|
|
134753
134753
|
const ref = refMap.get(component._id);
|
|
134754
134754
|
if (!ref)
|
|
134755
134755
|
continue;
|
|
134756
|
-
const
|
|
134757
|
-
|
|
134756
|
+
const omitFields = [
|
|
134757
|
+
"_id",
|
|
134758
|
+
"_timestamp",
|
|
134759
|
+
"linked_conversation_flow_ids"
|
|
134760
|
+
];
|
|
134761
|
+
const a5 = keyArraysById(n6(ref, omitFields));
|
|
134762
|
+
const b7 = keyArraysById(n6(component, omitFields));
|
|
134758
134763
|
const differences = diff(a5, b7);
|
|
134759
134764
|
if (differences.length > 0) {
|
|
134760
134765
|
changes.push({
|