@misterhuydo/sentinel 1.4.34 → 1.4.35
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/.cairn/session.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"message": "Auto-checkpoint at 2026-03-
|
|
3
|
-
"checkpoint_at": "2026-03-
|
|
2
|
+
"message": "Auto-checkpoint at 2026-03-25T06:09:17.198Z",
|
|
3
|
+
"checkpoint_at": "2026-03-25T06:09:17.200Z",
|
|
4
4
|
"active_files": [],
|
|
5
5
|
"notes": [],
|
|
6
6
|
"mtime_snapshot": {}
|
package/package.json
CHANGED
|
@@ -1164,10 +1164,10 @@ async def _run_tool(name: str, inputs: dict, cfg_loader, store, slack_client=Non
|
|
|
1164
1164
|
submitter_name = store.get_user_name(user_id) if user_id else ""
|
|
1165
1165
|
submitter_line = f"SUBMITTED_BY: {submitter_name} ({user_id})" if user_id else ""
|
|
1166
1166
|
lines = []
|
|
1167
|
-
if submitter_line:
|
|
1168
|
-
lines.append(submitter_line)
|
|
1169
1167
|
if target_repo:
|
|
1170
1168
|
lines.append(f"TARGET_REPO: {target_repo}")
|
|
1169
|
+
if submitter_line:
|
|
1170
|
+
lines.append(submitter_line)
|
|
1171
1171
|
if support_url:
|
|
1172
1172
|
lines.append(f"SUPPORT_URL: {support_url}")
|
|
1173
1173
|
lines.append(f"SUBMITTED_AT: {datetime.now(timezone.utc).isoformat()}")
|