@gitgov/core 2.1.2 → 2.2.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/src/index.js CHANGED
@@ -9061,6 +9061,15 @@ var project_initializer_exports = {};
9061
9061
 
9062
9062
  // src/record_store/index.ts
9063
9063
  var record_store_exports = {};
9064
+ __export(record_store_exports, {
9065
+ DEFAULT_ID_ENCODER: () => DEFAULT_ID_ENCODER
9066
+ });
9067
+
9068
+ // src/record_store/record_store.ts
9069
+ var DEFAULT_ID_ENCODER = {
9070
+ encode: (id) => id.replace(/:/g, "_"),
9071
+ decode: (encoded) => encoded.replace(/_/g, ":")
9072
+ };
9064
9073
 
9065
9074
  // src/sync_state/index.ts
9066
9075
  var sync_state_exports = {};