memorysync-sdk 1.7.1 → 1.7.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/index.mjs CHANGED
@@ -532,7 +532,7 @@ var IntegrationsNamespace = class extends Namespace {
532
532
  };
533
533
 
534
534
  // src/control-plane.ts
535
- var SDK_VERSION = "1.7.1";
535
+ var SDK_VERSION = "1.7.2";
536
536
  function safeJson(text) {
537
537
  try {
538
538
  return JSON.parse(text);
@@ -1088,7 +1088,7 @@ var ControlPlaneClient = class {
1088
1088
  };
1089
1089
 
1090
1090
  // src/index.ts
1091
- var SDK_VERSION2 = "1.7.1";
1091
+ var SDK_VERSION2 = "1.7.2";
1092
1092
  function camelToSnakeKey(key) {
1093
1093
  return key.replace(/([A-Z])/g, "_$1").toLowerCase();
1094
1094
  }