@gitgov/core 2.1.1 → 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/README.md +53 -6
- package/dist/src/{agent_runner-ByOUWOt6.d.ts → agent_runner-Cs5HXt4h.d.ts} +2 -1
- package/dist/src/fs.d.ts +11 -20
- package/dist/src/fs.js +9 -0
- package/dist/src/fs.js.map +1 -1
- package/dist/src/github.d.ts +472 -0
- package/dist/src/github.js +1281 -0
- package/dist/src/github.js.map +1 -0
- package/dist/src/{index--ahcnsG3.d.ts → index-D1RVufxB.d.ts} +38 -234
- package/dist/src/index.d.ts +10 -7
- package/dist/src/index.js +9 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/key_provider-CRpHFGjN.d.ts +227 -0
- package/dist/src/memory.d.ts +10 -4
- package/dist/src/memory.js +9 -1
- package/dist/src/memory.js.map +1 -1
- package/dist/src/{memory_file_lister-BkQ_C3ZU.d.ts → memory_file_lister-CfHtByeZ.d.ts} +2 -1
- package/package.json +6 -1
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 = {};
|