agentplane 0.3.16 → 0.3.17
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/.build-manifest.json +159 -54
- package/dist/backends/task-backend/redmine/backend-runtime.d.ts +4 -146
- package/dist/backends/task-backend/redmine/backend-runtime.d.ts.map +1 -1
- package/dist/backends/task-backend/redmine/backend-runtime.js +4 -258
- package/dist/backends/task-backend/redmine/mapping.js +1 -1
- package/dist/backends/task-backend/redmine/runtime-context.d.ts +98 -0
- package/dist/backends/task-backend/redmine/runtime-context.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/runtime-context.js +57 -0
- package/dist/backends/task-backend/redmine/runtime-methods.d.ts +33 -0
- package/dist/backends/task-backend/redmine/runtime-methods.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/runtime-methods.js +86 -0
- package/dist/backends/task-backend/redmine/runtime-operations.d.ts +19 -0
- package/dist/backends/task-backend/redmine/runtime-operations.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/runtime-operations.js +83 -0
- package/dist/backends/task-backend/redmine/runtime-state.d.ts +10 -0
- package/dist/backends/task-backend/redmine/runtime-state.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/runtime-state.js +45 -0
- package/dist/backends/task-backend/shared/constants.d.ts +1 -1
- package/dist/backends/task-backend/shared/constants.d.ts.map +1 -1
- package/dist/backends/task-backend/shared/constants.js +1 -1
- package/dist/backends/task-index.d.ts +0 -4
- package/dist/backends/task-index.d.ts.map +1 -1
- package/dist/backends/task-index.js +0 -33
- package/dist/cli/exit-codes.d.ts.map +1 -1
- package/dist/cli/exit-codes.js +1 -0
- package/dist/cli/http.d.ts.map +1 -1
- package/dist/cli/http.js +34 -15
- package/dist/cli/run-cli/command-loaders.d.ts +1 -5
- package/dist/cli/run-cli/command-loaders.d.ts.map +1 -1
- package/dist/cli/spec/errors.d.ts +5 -0
- package/dist/cli/spec/errors.d.ts.map +1 -1
- package/dist/cli/spec/errors.js +14 -1
- package/dist/cli/spec/parse.d.ts.map +1 -1
- package/dist/cli/spec/parse.js +8 -1
- package/dist/commands/branch/work-start.d.ts.map +1 -1
- package/dist/commands/branch/work-start.direct.d.ts +13 -0
- package/dist/commands/branch/work-start.direct.d.ts.map +1 -0
- package/dist/commands/branch/work-start.direct.js +75 -0
- package/dist/commands/branch/work-start.git.d.ts +3 -0
- package/dist/commands/branch/work-start.git.d.ts.map +1 -0
- package/dist/commands/branch/work-start.git.js +19 -0
- package/dist/commands/branch/work-start.hook-shim.d.ts +2 -0
- package/dist/commands/branch/work-start.hook-shim.d.ts.map +1 -0
- package/dist/commands/branch/work-start.hook-shim.js +38 -0
- package/dist/commands/branch/work-start.js +6 -235
- package/dist/commands/branch/work-start.materialize.d.ts +16 -0
- package/dist/commands/branch/work-start.materialize.d.ts.map +1 -0
- package/dist/commands/branch/work-start.materialize.js +110 -0
- package/dist/commands/doctor/fixes.d.ts +0 -5
- package/dist/commands/doctor/fixes.d.ts.map +1 -1
- package/dist/commands/doctor/fixes.js +0 -70
- package/dist/commands/doctor/workflow.d.ts.map +1 -1
- package/dist/commands/doctor/workflow.js +2 -23
- package/dist/commands/doctor.run.d.ts.map +1 -1
- package/dist/commands/doctor.run.js +1 -3
- package/dist/commands/hooks/index.d.ts +4 -20
- package/dist/commands/hooks/index.d.ts.map +1 -1
- package/dist/commands/hooks/index.js +4 -432
- package/dist/commands/hooks/install.d.ts +11 -0
- package/dist/commands/hooks/install.d.ts.map +1 -0
- package/dist/commands/hooks/install.js +136 -0
- package/dist/commands/hooks/run.commit-msg.d.ts +3 -0
- package/dist/commands/hooks/run.commit-msg.d.ts.map +1 -0
- package/dist/commands/hooks/run.commit-msg.js +67 -0
- package/dist/commands/hooks/run.d.ts +9 -0
- package/dist/commands/hooks/run.d.ts.map +1 -0
- package/dist/commands/hooks/run.js +45 -0
- package/dist/commands/hooks/run.post-merge.d.ts +3 -0
- package/dist/commands/hooks/run.post-merge.d.ts.map +1 -0
- package/dist/commands/hooks/run.post-merge.js +44 -0
- package/dist/commands/hooks/run.pre-commit.d.ts +3 -0
- package/dist/commands/hooks/run.pre-commit.d.ts.map +1 -0
- package/dist/commands/hooks/run.pre-commit.js +48 -0
- package/dist/commands/hooks/run.pre-push.d.ts +6 -0
- package/dist/commands/hooks/run.pre-push.d.ts.map +1 -0
- package/dist/commands/hooks/run.pre-push.js +88 -0
- package/dist/commands/hooks/shared.d.ts +7 -0
- package/dist/commands/hooks/shared.d.ts.map +1 -0
- package/dist/commands/hooks/shared.js +41 -0
- package/dist/commands/recipes/impl/index.d.ts.map +1 -1
- package/dist/commands/recipes/impl/index.js +13 -3
- package/dist/commands/task/hosted-close-pr.command.d.ts +2 -7
- package/dist/commands/task/hosted-close-pr.command.d.ts.map +1 -1
- package/dist/commands/task/hosted-close-pr.command.js +9 -373
- package/dist/commands/task/hosted-close-pr.execute.d.ts +3 -0
- package/dist/commands/task/hosted-close-pr.execute.d.ts.map +1 -0
- package/dist/commands/task/hosted-close-pr.execute.js +135 -0
- package/dist/commands/task/hosted-close-pr.postcheck.d.ts +3 -0
- package/dist/commands/task/hosted-close-pr.postcheck.d.ts.map +1 -0
- package/dist/commands/task/hosted-close-pr.postcheck.js +13 -0
- package/dist/commands/task/hosted-close-pr.precheck.d.ts +4 -0
- package/dist/commands/task/hosted-close-pr.precheck.d.ts.map +1 -0
- package/dist/commands/task/hosted-close-pr.precheck.js +288 -0
- package/dist/commands/task/hosted-close-pr.report.d.ts +4 -0
- package/dist/commands/task/hosted-close-pr.report.d.ts.map +1 -0
- package/dist/commands/task/hosted-close-pr.report.js +42 -0
- package/dist/commands/task/hosted-close-pr.types.d.ts +75 -0
- package/dist/commands/task/hosted-close-pr.types.d.ts.map +1 -0
- package/dist/commands/task/hosted-close-pr.types.js +1 -0
- package/dist/commands/upgrade/materialize.d.ts.map +1 -1
- package/dist/commands/upgrade/materialize.js +0 -7
- package/dist/commands/upgrade/source.d.ts +0 -1
- package/dist/commands/upgrade/source.d.ts.map +1 -1
- package/dist/commands/upgrade/source.js +1 -9
- package/dist/runner/context/base-prompts.d.ts.map +1 -1
- package/dist/runner/context/base-prompts.js +4 -0
- package/dist/runner/context/project-skill-prompt-blocks.d.ts +5 -0
- package/dist/runner/context/project-skill-prompt-blocks.d.ts.map +1 -0
- package/dist/runner/context/project-skill-prompt-blocks.js +57 -0
- package/dist/runner/process-supervision/run.d.ts.map +1 -1
- package/dist/runner/process-supervision/run.js +61 -59
- package/dist/shared/errors.d.ts +4 -1
- package/dist/shared/errors.d.ts.map +1 -1
- package/dist/shared/errors.js +6 -0
- package/dist/shared/workflow-artifacts.d.ts.map +1 -1
- package/dist/shared/workflow-artifacts.js +1 -8
- package/dist/workflow-runtime/file-ops.d.ts.map +1 -1
- package/dist/workflow-runtime/file-ops.js +1 -20
- package/dist/workflow-runtime/paths.d.ts.map +1 -1
- package/dist/workflow-runtime/paths.js +0 -1
- package/dist/workflow-runtime/types.d.ts +0 -1
- package/dist/workflow-runtime/types.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": 1,
|
|
3
3
|
"package_dir": "/home/runner/work/agentplane/agentplane/packages/agentplane",
|
|
4
|
-
"generated_at": "2026-04-
|
|
5
|
-
"git_head": "
|
|
6
|
-
"src_cli_mtime_ms":
|
|
4
|
+
"generated_at": "2026-04-21T12:24:55.093Z",
|
|
5
|
+
"git_head": "f0ad813c01096c2d58f7b3cf8bfdf66908152950",
|
|
6
|
+
"src_cli_mtime_ms": 1776774188800.884,
|
|
7
7
|
"src_index_mtime_ms": null,
|
|
8
|
-
"dist_cli_mtime_ms":
|
|
8
|
+
"dist_cli_mtime_ms": 1776774294794.0469,
|
|
9
9
|
"dist_index_mtime_ms": null,
|
|
10
|
-
"tsbuildinfo_mtime_ms":
|
|
10
|
+
"tsbuildinfo_mtime_ms": 1776774294843.0469,
|
|
11
11
|
"watched_runtime_paths": [
|
|
12
12
|
"src",
|
|
13
13
|
"bin/agentplane.js",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"bin/runtime-context.js",
|
|
16
16
|
"bin/stale-dist-policy.js"
|
|
17
17
|
],
|
|
18
|
-
"watched_runtime_snapshot_hash": "
|
|
18
|
+
"watched_runtime_snapshot_hash": "8477a604d52c4e87fb2293aecb3b379dc300464eaade05deb089b61dba904a38",
|
|
19
19
|
"watched_runtime_files": [
|
|
20
20
|
{
|
|
21
21
|
"path": "bin/agentplane.js",
|
|
@@ -119,8 +119,8 @@
|
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
121
|
"path": "src/backends/task-backend/redmine/backend-runtime.ts",
|
|
122
|
-
"sha256": "
|
|
123
|
-
"size_bytes":
|
|
122
|
+
"sha256": "81da3a9dc37f777354b5ee6f440f7f1f86ecea9be9179b315ecf64a32c0d2dd2",
|
|
123
|
+
"size_bytes": 887
|
|
124
124
|
},
|
|
125
125
|
{
|
|
126
126
|
"path": "src/backends/task-backend/redmine/backend-sync.ts",
|
|
@@ -184,8 +184,8 @@
|
|
|
184
184
|
},
|
|
185
185
|
{
|
|
186
186
|
"path": "src/backends/task-backend/redmine/mapping.ts",
|
|
187
|
-
"sha256": "
|
|
188
|
-
"size_bytes":
|
|
187
|
+
"sha256": "d84c9cf7c4c8753868f68c6195d8cca753e354d00e896e174a6f72534daabca6",
|
|
188
|
+
"size_bytes": 8971
|
|
189
189
|
},
|
|
190
190
|
{
|
|
191
191
|
"path": "src/backends/task-backend/redmine/parse.ts",
|
|
@@ -197,6 +197,26 @@
|
|
|
197
197
|
"sha256": "a2367f7e019556608f75ad493a562f447f2e3fb16e7fff7d26ccc8004994c543",
|
|
198
198
|
"size_bytes": 3664
|
|
199
199
|
},
|
|
200
|
+
{
|
|
201
|
+
"path": "src/backends/task-backend/redmine/runtime-context.ts",
|
|
202
|
+
"sha256": "0d709f7459914951fb3615675b57de6297e6bc5af1b1653d927749b5228fbbdc",
|
|
203
|
+
"size_bytes": 7229
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"path": "src/backends/task-backend/redmine/runtime-methods.ts",
|
|
207
|
+
"sha256": "982008113ee8c68136d377e42513678be2f5ff9930959eb7e1f5aa566991828b",
|
|
208
|
+
"size_bytes": 5588
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"path": "src/backends/task-backend/redmine/runtime-operations.ts",
|
|
212
|
+
"sha256": "ef2424ad63b72248823ef4cb55cb2a4c923da20189d938bb0ae4485db5c3dbe2",
|
|
213
|
+
"size_bytes": 4744
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"path": "src/backends/task-backend/redmine/runtime-state.ts",
|
|
217
|
+
"sha256": "070f4aaa0dfffb58bd3cb798508516d5a30bddb8a6f6e5232734c398691d6473",
|
|
218
|
+
"size_bytes": 2385
|
|
219
|
+
},
|
|
200
220
|
{
|
|
201
221
|
"path": "src/backends/task-backend/redmine/state.ts",
|
|
202
222
|
"sha256": "b49c2aa363cceb7f882e0f4f15e587dcd43f7916bd57081aeafbb8e6ec5f1aca",
|
|
@@ -214,8 +234,8 @@
|
|
|
214
234
|
},
|
|
215
235
|
{
|
|
216
236
|
"path": "src/backends/task-backend/shared/constants.ts",
|
|
217
|
-
"sha256": "
|
|
218
|
-
"size_bytes":
|
|
237
|
+
"sha256": "d1c8afb903a8a07b831de826cd9ea2aabf6ac3859346b118782bccd93e048403",
|
|
238
|
+
"size_bytes": 314
|
|
219
239
|
},
|
|
220
240
|
{
|
|
221
241
|
"path": "src/backends/task-backend/shared/doc.ts",
|
|
@@ -264,8 +284,8 @@
|
|
|
264
284
|
},
|
|
265
285
|
{
|
|
266
286
|
"path": "src/backends/task-index.ts",
|
|
267
|
-
"sha256": "
|
|
268
|
-
"size_bytes":
|
|
287
|
+
"sha256": "c8d51055c0c4db47fea9a163c746fd73aaaff232d607894deb948b91f3928657",
|
|
288
|
+
"size_bytes": 3632
|
|
269
289
|
},
|
|
270
290
|
{
|
|
271
291
|
"path": "src/cli.ts",
|
|
@@ -329,8 +349,8 @@
|
|
|
329
349
|
},
|
|
330
350
|
{
|
|
331
351
|
"path": "src/cli/exit-codes.ts",
|
|
332
|
-
"sha256": "
|
|
333
|
-
"size_bytes":
|
|
352
|
+
"sha256": "8af714991f63f922b120d49ee90eeb5bc98b6a22a93ac810e3c91de36d22d0ff",
|
|
353
|
+
"size_bytes": 895
|
|
334
354
|
},
|
|
335
355
|
{
|
|
336
356
|
"path": "src/cli/fs-utils.ts",
|
|
@@ -344,8 +364,8 @@
|
|
|
344
364
|
},
|
|
345
365
|
{
|
|
346
366
|
"path": "src/cli/http.ts",
|
|
347
|
-
"sha256": "
|
|
348
|
-
"size_bytes":
|
|
367
|
+
"sha256": "6565c30310cf9e69fbda440db73e032fab84deaa7c0bd9860d7873a548cc854d",
|
|
368
|
+
"size_bytes": 3897
|
|
349
369
|
},
|
|
350
370
|
{
|
|
351
371
|
"path": "src/cli/output.ts",
|
|
@@ -574,8 +594,8 @@
|
|
|
574
594
|
},
|
|
575
595
|
{
|
|
576
596
|
"path": "src/cli/spec/errors.ts",
|
|
577
|
-
"sha256": "
|
|
578
|
-
"size_bytes":
|
|
597
|
+
"sha256": "458d3819aa675820e827d6b51825c5e3af85e116c60cedacbb198ea390b25808",
|
|
598
|
+
"size_bytes": 1922
|
|
579
599
|
},
|
|
580
600
|
{
|
|
581
601
|
"path": "src/cli/spec/help-render.ts",
|
|
@@ -594,8 +614,8 @@
|
|
|
594
614
|
},
|
|
595
615
|
{
|
|
596
616
|
"path": "src/cli/spec/parse.ts",
|
|
597
|
-
"sha256": "
|
|
598
|
-
"size_bytes":
|
|
617
|
+
"sha256": "3f8d5984ecdf283e78c8d1e62300759159378d16b5a0904510cdb492172d0398",
|
|
618
|
+
"size_bytes": 6839
|
|
599
619
|
},
|
|
600
620
|
{
|
|
601
621
|
"path": "src/cli/spec/registry.ts",
|
|
@@ -692,10 +712,30 @@
|
|
|
692
712
|
"sha256": "0200fa8dc9920565d081d2b716432142ce0aec4cbedc979ebcc07348733b94d4",
|
|
693
713
|
"size_bytes": 3227
|
|
694
714
|
},
|
|
715
|
+
{
|
|
716
|
+
"path": "src/commands/branch/work-start.direct.ts",
|
|
717
|
+
"sha256": "ed3d6fff5459757259163f392180737c7a92a2c593cd76024f4d654a36e7ce3a",
|
|
718
|
+
"size_bytes": 3056
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"path": "src/commands/branch/work-start.git.ts",
|
|
722
|
+
"sha256": "183aa9b1e32cfdde2fa6eed259a7e9d3041deae49f709f391f2ab35e84a469fa",
|
|
723
|
+
"size_bytes": 893
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
"path": "src/commands/branch/work-start.hook-shim.ts",
|
|
727
|
+
"sha256": "2774009f78ab0d950574c30829fc3c07a62c907503e4aa060ee63a8a30987216",
|
|
728
|
+
"size_bytes": 1548
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"path": "src/commands/branch/work-start.materialize.ts",
|
|
732
|
+
"sha256": "576c762a2ed96579a60afcbd1464ba675855679b9fcacabbc4f189a8a4df52a8",
|
|
733
|
+
"size_bytes": 4718
|
|
734
|
+
},
|
|
695
735
|
{
|
|
696
736
|
"path": "src/commands/branch/work-start.ts",
|
|
697
|
-
"sha256": "
|
|
698
|
-
"size_bytes":
|
|
737
|
+
"sha256": "add3ea6c11024e5d1e77b1bf1945adbc3284a8d85e4c930acfa34c61f6a3d055",
|
|
738
|
+
"size_bytes": 6752
|
|
699
739
|
},
|
|
700
740
|
{
|
|
701
741
|
"path": "src/commands/cleanup/merged.command.ts",
|
|
@@ -724,8 +764,8 @@
|
|
|
724
764
|
},
|
|
725
765
|
{
|
|
726
766
|
"path": "src/commands/doctor.run.ts",
|
|
727
|
-
"sha256": "
|
|
728
|
-
"size_bytes":
|
|
767
|
+
"sha256": "e46591e0a06886da29fac864d2744161d7624d26c48cbc18a287ffdfe6c12418",
|
|
768
|
+
"size_bytes": 3331
|
|
729
769
|
},
|
|
730
770
|
{
|
|
731
771
|
"path": "src/commands/doctor.spec.ts",
|
|
@@ -744,8 +784,8 @@
|
|
|
744
784
|
},
|
|
745
785
|
{
|
|
746
786
|
"path": "src/commands/doctor/fixes.ts",
|
|
747
|
-
"sha256": "
|
|
748
|
-
"size_bytes":
|
|
787
|
+
"sha256": "5d85f2539e6828a414cb9f5f2132de869c03d4913465dded51a8279a0aa43737",
|
|
788
|
+
"size_bytes": 1700
|
|
749
789
|
},
|
|
750
790
|
{
|
|
751
791
|
"path": "src/commands/doctor/layering.ts",
|
|
@@ -759,8 +799,8 @@
|
|
|
759
799
|
},
|
|
760
800
|
{
|
|
761
801
|
"path": "src/commands/doctor/workflow.ts",
|
|
762
|
-
"sha256": "
|
|
763
|
-
"size_bytes":
|
|
802
|
+
"sha256": "f6c6b5ef65ecb37a38772b07b2ac38fa61fe819ec75e4848b59cbaed3a12882c",
|
|
803
|
+
"size_bytes": 2228
|
|
764
804
|
},
|
|
765
805
|
{
|
|
766
806
|
"path": "src/commands/doctor/workspace.ts",
|
|
@@ -869,19 +909,54 @@
|
|
|
869
909
|
},
|
|
870
910
|
{
|
|
871
911
|
"path": "src/commands/hooks/index.ts",
|
|
872
|
-
"sha256": "
|
|
873
|
-
"size_bytes":
|
|
912
|
+
"sha256": "f02d334325492ee4ea93c28dfaa36131e03137f4fea0ce8ce77dd74bf43dd80f",
|
|
913
|
+
"size_bytes": 230
|
|
874
914
|
},
|
|
875
915
|
{
|
|
876
916
|
"path": "src/commands/hooks/install.command.ts",
|
|
877
917
|
"sha256": "a79b3dc06bd5d316f5510012efda78f86bd4251989325d027bf05522127ce072",
|
|
878
918
|
"size_bytes": 805
|
|
879
919
|
},
|
|
920
|
+
{
|
|
921
|
+
"path": "src/commands/hooks/install.ts",
|
|
922
|
+
"sha256": "f61a467027e2d39b197ce7acc163af034d2273813535ccff47851c050cfacdff",
|
|
923
|
+
"size_bytes": 5079
|
|
924
|
+
},
|
|
880
925
|
{
|
|
881
926
|
"path": "src/commands/hooks/run.command.ts",
|
|
882
927
|
"sha256": "e3f7b01444a08a8118ad54c83cc70629f2f8800d93b2d93a1aeff1d6406ffe0e",
|
|
883
928
|
"size_bytes": 1520
|
|
884
929
|
},
|
|
930
|
+
{
|
|
931
|
+
"path": "src/commands/hooks/run.commit-msg.ts",
|
|
932
|
+
"sha256": "91e186f4fc93924828a564a9d4fb8b78096e80d74e1513ef6e0c21ec6696de81",
|
|
933
|
+
"size_bytes": 2414
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"path": "src/commands/hooks/run.post-merge.ts",
|
|
937
|
+
"sha256": "f5a37652b03ab62df5616b279fcd1f5b886489bda0db52904097d78faada98cf",
|
|
938
|
+
"size_bytes": 1444
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"path": "src/commands/hooks/run.pre-commit.ts",
|
|
942
|
+
"sha256": "7d82ca85ac898f586f743fa7d0a991770fef634e0f816c9d229a3cb0803c6487",
|
|
943
|
+
"size_bytes": 1845
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"path": "src/commands/hooks/run.pre-push.ts",
|
|
947
|
+
"sha256": "c3f2cd9d3a4c7e794d4d025782d8943c8bf291a1cde8579f6214c1a5b6d0dea5",
|
|
948
|
+
"size_bytes": 3185
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"path": "src/commands/hooks/run.ts",
|
|
952
|
+
"sha256": "24e832ac1ab959b2123118e41e66feabfbb08ad0f21fab535a029ab0643a5007",
|
|
953
|
+
"size_bytes": 1656
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"path": "src/commands/hooks/shared.ts",
|
|
957
|
+
"sha256": "0974f92aceb7209d546f70884324e81ed150f4f54a3ef3efe12a42e0c9e10ae1",
|
|
958
|
+
"size_bytes": 1782
|
|
959
|
+
},
|
|
885
960
|
{
|
|
886
961
|
"path": "src/commands/hooks/uninstall.command.ts",
|
|
887
962
|
"sha256": "a79ebbf0a2a6e8b6a8de3f6c58f249b8d995b0ece319dd140fd8a4955896c370",
|
|
@@ -1234,8 +1309,8 @@
|
|
|
1234
1309
|
},
|
|
1235
1310
|
{
|
|
1236
1311
|
"path": "src/commands/recipes/impl/index.ts",
|
|
1237
|
-
"sha256": "
|
|
1238
|
-
"size_bytes":
|
|
1312
|
+
"sha256": "9734348c8f0805a6e6d4d9994f31f37651dc62930d56669cbd4f4471c352b4a2",
|
|
1313
|
+
"size_bytes": 7827
|
|
1239
1314
|
},
|
|
1240
1315
|
{
|
|
1241
1316
|
"path": "src/commands/recipes/impl/installed-recipes.ts",
|
|
@@ -1769,8 +1844,33 @@
|
|
|
1769
1844
|
},
|
|
1770
1845
|
{
|
|
1771
1846
|
"path": "src/commands/task/hosted-close-pr.command.ts",
|
|
1772
|
-
"sha256": "
|
|
1773
|
-
"size_bytes":
|
|
1847
|
+
"sha256": "0a7604daaeecd14de0665a7a86ab8005256e19c04991e3b45727bed931173222",
|
|
1848
|
+
"size_bytes": 4367
|
|
1849
|
+
},
|
|
1850
|
+
{
|
|
1851
|
+
"path": "src/commands/task/hosted-close-pr.execute.ts",
|
|
1852
|
+
"sha256": "18e55d37f8fd4c5a04a50ec6f3e61d2a60a3ae82b9aa9cb818267cd798652871",
|
|
1853
|
+
"size_bytes": 4614
|
|
1854
|
+
},
|
|
1855
|
+
{
|
|
1856
|
+
"path": "src/commands/task/hosted-close-pr.postcheck.ts",
|
|
1857
|
+
"sha256": "16e24b7cd2f468b4da6687cb2a920dba28c41b648570bb50fe1f41654df7030d",
|
|
1858
|
+
"size_bytes": 700
|
|
1859
|
+
},
|
|
1860
|
+
{
|
|
1861
|
+
"path": "src/commands/task/hosted-close-pr.precheck.ts",
|
|
1862
|
+
"sha256": "49372a0b0a2efe4aabb683232cdc529a62e325a3df31b1a3eaf255da9048b951",
|
|
1863
|
+
"size_bytes": 11570
|
|
1864
|
+
},
|
|
1865
|
+
{
|
|
1866
|
+
"path": "src/commands/task/hosted-close-pr.report.ts",
|
|
1867
|
+
"sha256": "4bf3c24be954d095da95a901dccdcff5db677548ea88e5fa46e8670877acf718",
|
|
1868
|
+
"size_bytes": 2226
|
|
1869
|
+
},
|
|
1870
|
+
{
|
|
1871
|
+
"path": "src/commands/task/hosted-close-pr.types.ts",
|
|
1872
|
+
"sha256": "f6f0f35ac0091f34ef7181137760b2b420f344b10ac7f458dc169aacca000c3d",
|
|
1873
|
+
"size_bytes": 1732
|
|
1774
1874
|
},
|
|
1775
1875
|
{
|
|
1776
1876
|
"path": "src/commands/task/hosted-close.command.ts",
|
|
@@ -2199,8 +2299,8 @@
|
|
|
2199
2299
|
},
|
|
2200
2300
|
{
|
|
2201
2301
|
"path": "src/commands/upgrade/materialize.ts",
|
|
2202
|
-
"sha256": "
|
|
2203
|
-
"size_bytes":
|
|
2302
|
+
"sha256": "3bbe7d0e9c05f915981c5efe5eff64523537576a28a1ee5b47f08a7a0fd7a286",
|
|
2303
|
+
"size_bytes": 7819
|
|
2204
2304
|
},
|
|
2205
2305
|
{
|
|
2206
2306
|
"path": "src/commands/upgrade/plan.ts",
|
|
@@ -2219,8 +2319,8 @@
|
|
|
2219
2319
|
},
|
|
2220
2320
|
{
|
|
2221
2321
|
"path": "src/commands/upgrade/source.ts",
|
|
2222
|
-
"sha256": "
|
|
2223
|
-
"size_bytes":
|
|
2322
|
+
"sha256": "0b1f8570fd69f3d7e403bd1ae83414446101feeee6a3730981e599808d8d6ab4",
|
|
2323
|
+
"size_bytes": 4880
|
|
2224
2324
|
},
|
|
2225
2325
|
{
|
|
2226
2326
|
"path": "src/commands/upgrade/types.ts",
|
|
@@ -2459,14 +2559,19 @@
|
|
|
2459
2559
|
},
|
|
2460
2560
|
{
|
|
2461
2561
|
"path": "src/runner/context/base-prompts.ts",
|
|
2462
|
-
"sha256": "
|
|
2463
|
-
"size_bytes":
|
|
2562
|
+
"sha256": "29ddbff5c5e368f72ed55d45028da2aacf590d97d76e63cf58be8918b24e884b",
|
|
2563
|
+
"size_bytes": 2665
|
|
2464
2564
|
},
|
|
2465
2565
|
{
|
|
2466
2566
|
"path": "src/runner/context/overlay-prompt-blocks.ts",
|
|
2467
2567
|
"sha256": "14de9404ebe72a713b9d3bf3891bd64b0a3ac863661383ed463e3d9dd284b596",
|
|
2468
2568
|
"size_bytes": 2813
|
|
2469
2569
|
},
|
|
2570
|
+
{
|
|
2571
|
+
"path": "src/runner/context/project-skill-prompt-blocks.ts",
|
|
2572
|
+
"sha256": "732beef20cbdb9ddd9547b39883ad679bf77bf633b49bbfe08bb1043e971a52d",
|
|
2573
|
+
"size_bytes": 2361
|
|
2574
|
+
},
|
|
2470
2575
|
{
|
|
2471
2576
|
"path": "src/runner/context/prompt-block-shared.ts",
|
|
2472
2577
|
"sha256": "8351a826aaa0df020db1c811e5061256ff02580c7ba245cb20e67f5a5a892f14",
|
|
@@ -2509,8 +2614,8 @@
|
|
|
2509
2614
|
},
|
|
2510
2615
|
{
|
|
2511
2616
|
"path": "src/runner/process-supervision/run.ts",
|
|
2512
|
-
"sha256": "
|
|
2513
|
-
"size_bytes":
|
|
2617
|
+
"sha256": "138a2e6d15894340131f950ec00d380e31b83be0f2fa6b6b1a73ba28c50ed021",
|
|
2618
|
+
"size_bytes": 13392
|
|
2514
2619
|
},
|
|
2515
2620
|
{
|
|
2516
2621
|
"path": "src/runner/process-supervision/signals.ts",
|
|
@@ -2814,8 +2919,8 @@
|
|
|
2814
2919
|
},
|
|
2815
2920
|
{
|
|
2816
2921
|
"path": "src/shared/errors.ts",
|
|
2817
|
-
"sha256": "
|
|
2818
|
-
"size_bytes":
|
|
2922
|
+
"sha256": "9fc903bd34b1efca225283324199119b14bcf71609bc33103f34786c3df276dd",
|
|
2923
|
+
"size_bytes": 3825
|
|
2819
2924
|
},
|
|
2820
2925
|
{
|
|
2821
2926
|
"path": "src/shared/git-path.ts",
|
|
@@ -2849,8 +2954,8 @@
|
|
|
2849
2954
|
},
|
|
2850
2955
|
{
|
|
2851
2956
|
"path": "src/shared/workflow-artifacts.ts",
|
|
2852
|
-
"sha256": "
|
|
2853
|
-
"size_bytes":
|
|
2957
|
+
"sha256": "b2aef768f439641f28f39a0c874103ceda999a53ccb5199eaa4ad20d37e66760",
|
|
2958
|
+
"size_bytes": 3583
|
|
2854
2959
|
},
|
|
2855
2960
|
{
|
|
2856
2961
|
"path": "src/shared/write-if-changed.ts",
|
|
@@ -2894,8 +2999,8 @@
|
|
|
2894
2999
|
},
|
|
2895
3000
|
{
|
|
2896
3001
|
"path": "src/workflow-runtime/file-ops.ts",
|
|
2897
|
-
"sha256": "
|
|
2898
|
-
"size_bytes":
|
|
3002
|
+
"sha256": "408cb3ac998e2ce97e8ce5c44854129a46a97148f12290468b2a5c4952b98f7d",
|
|
3003
|
+
"size_bytes": 7987
|
|
2899
3004
|
},
|
|
2900
3005
|
{
|
|
2901
3006
|
"path": "src/workflow-runtime/fix.ts",
|
|
@@ -2919,8 +3024,8 @@
|
|
|
2919
3024
|
},
|
|
2920
3025
|
{
|
|
2921
3026
|
"path": "src/workflow-runtime/paths.ts",
|
|
2922
|
-
"sha256": "
|
|
2923
|
-
"size_bytes":
|
|
3027
|
+
"sha256": "d40a83252fe3cdf3efc956b89211222c13ca5895a3d90786e7e006eafb87bebb",
|
|
3028
|
+
"size_bytes": 420
|
|
2924
3029
|
},
|
|
2925
3030
|
{
|
|
2926
3031
|
"path": "src/workflow-runtime/template.ts",
|
|
@@ -2929,8 +3034,8 @@
|
|
|
2929
3034
|
},
|
|
2930
3035
|
{
|
|
2931
3036
|
"path": "src/workflow-runtime/types.ts",
|
|
2932
|
-
"sha256": "
|
|
2933
|
-
"size_bytes":
|
|
3037
|
+
"sha256": "d6795d4fb32e673cc13d070af65322b8e74481feb218faf3e355dd23f7d1fc1d",
|
|
3038
|
+
"size_bytes": 2215
|
|
2934
3039
|
},
|
|
2935
3040
|
{
|
|
2936
3041
|
"path": "src/workflow-runtime/validate.ts",
|
|
@@ -1,147 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export
|
|
5
|
-
baseUrl: string;
|
|
6
|
-
apiKey: string;
|
|
7
|
-
projectId: string;
|
|
8
|
-
assigneeId: number | null;
|
|
9
|
-
ownerAgent: string;
|
|
10
|
-
statusMap: Record<string, unknown>;
|
|
11
|
-
customFields: Record<string, unknown>;
|
|
12
|
-
batchSize: number;
|
|
13
|
-
batchPauseMs: number;
|
|
14
|
-
cache: LocalBackend | null;
|
|
15
|
-
issueCache: Map<string, Record<string, unknown>>;
|
|
16
|
-
reverseStatus: Map<number, string>;
|
|
17
|
-
inferredStatusByTaskStatus: Map<string, number> | null;
|
|
18
|
-
capabilities: TaskBackend["capabilities"];
|
|
19
|
-
setInferredStatusByTaskStatus: (next: Map<string, number> | null) => void;
|
|
20
|
-
ensureDocMetadata: (task: TaskDocMeta) => void;
|
|
21
|
-
cacheTask: (task: TaskData, dirty: boolean) => Promise<void>;
|
|
22
|
-
assertExpectedRevisionSupported: (taskId: string, opts?: TaskWriteOptions) => void;
|
|
23
|
-
assertExpectedRevision: (taskId: string, expectedRevision: number | undefined, currentRevision: number) => void;
|
|
24
|
-
taskIdFieldId: () => unknown;
|
|
25
|
-
setIssueCustomFieldValue: (issue: Record<string, unknown>, fieldId: unknown, value: unknown) => void;
|
|
26
|
-
listTasksRemote: () => Promise<TaskData[]>;
|
|
27
|
-
findIssueByTaskId: (taskId: string) => Promise<Record<string, unknown> | null>;
|
|
28
|
-
issueToTask: (issue: Record<string, unknown>, taskIdOverride?: string) => TaskData | null;
|
|
29
|
-
taskToIssuePayload: (task: TaskData, existingIssue?: Record<string, unknown>) => Record<string, unknown>;
|
|
30
|
-
appendCustomField: (fields: Record<string, unknown>[], key: string, value: unknown) => void;
|
|
31
|
-
normalizeComments: (value: unknown) => TaskComment[];
|
|
32
|
-
appendCommentNotes: (issueId: string, existingComments: TaskComment[], desiredComments: TaskComment[]) => Promise<void>;
|
|
33
|
-
customFieldValue: (issue: Record<string, unknown>, fieldId: unknown) => string | null;
|
|
34
|
-
maybeParseJson: (value: unknown) => unknown;
|
|
35
|
-
requestJson: (method: string, reqPath: string, payload?: Record<string, unknown>, params?: Record<string, unknown>, opts?: {
|
|
36
|
-
attempts?: number;
|
|
37
|
-
backoff?: number;
|
|
38
|
-
}) => Promise<Record<string, unknown>>;
|
|
39
|
-
diffTasks: (localTask: TaskData, remoteTask: TaskData) => string;
|
|
40
|
-
tasksDiffer: (localTask: TaskData, remoteTask: TaskData) => boolean;
|
|
41
|
-
writeTask: (task: TaskData, opts?: TaskWriteOptions) => Promise<void>;
|
|
42
|
-
writeTasks: (tasks: TaskData[], opts?: TaskWriteOptions) => Promise<void>;
|
|
43
|
-
};
|
|
44
|
-
export declare function createRedmineCacheDocContext(host: RedmineBackendRuntimeHost): {
|
|
45
|
-
cache: LocalBackend | null;
|
|
46
|
-
customFields: Record<string, unknown>;
|
|
47
|
-
ownerAgent: string;
|
|
48
|
-
batchSize: number;
|
|
49
|
-
findIssueByTaskId: (taskId: string) => Promise<Record<string, unknown> | null>;
|
|
50
|
-
issueToTask: (issue: Record<string, unknown>, taskIdOverride?: string) => TaskData | null;
|
|
51
|
-
customFieldValue: (issue: Record<string, unknown>, fieldId: unknown) => string | null;
|
|
52
|
-
appendCustomField: (fields: Record<string, unknown>[], key: string, value: unknown) => void;
|
|
53
|
-
requestJson: (method: string, reqPath: string, payload?: Record<string, unknown>, params?: Record<string, unknown>) => Promise<Record<string, unknown>>;
|
|
54
|
-
assertExpectedRevisionSupported: (taskId: string, opts?: TaskWriteOptions) => void;
|
|
55
|
-
assertExpectedRevision: (taskId: string, expectedRevision: number | undefined, currentRevision: number) => void;
|
|
56
|
-
cacheTask: (task: TaskData, dirty: boolean) => Promise<void>;
|
|
57
|
-
};
|
|
58
|
-
export declare function createRedmineReportContext(host: RedmineBackendRuntimeHost): {
|
|
59
|
-
projectId: string;
|
|
60
|
-
customFields: Record<string, unknown>;
|
|
61
|
-
requestJson: (method: string, reqPath: string, payload?: Record<string, unknown>, params?: Record<string, unknown>) => Promise<Record<string, unknown>>;
|
|
62
|
-
};
|
|
63
|
-
export declare function createRedmineSyncContext(host: RedmineBackendRuntimeHost): {
|
|
64
|
-
cache: LocalBackend | null;
|
|
65
|
-
customFields: Record<string, unknown>;
|
|
66
|
-
ownerAgent: string;
|
|
67
|
-
projectId: string;
|
|
68
|
-
batchSize: number;
|
|
69
|
-
batchPauseMs: number;
|
|
70
|
-
statusMap: Record<string, unknown>;
|
|
71
|
-
issueCache: Map<string, Record<string, unknown>>;
|
|
72
|
-
inferredStatusByTaskStatus: Map<string, number> | null;
|
|
73
|
-
setInferredStatusByTaskStatus: (next: Map<string, number> | null) => void;
|
|
74
|
-
listTasksRemote: () => Promise<TaskData[]>;
|
|
75
|
-
writeTask: (task: TaskData, opts?: TaskWriteOptions) => Promise<void>;
|
|
76
|
-
writeTasks: (tasks: TaskData[], opts?: TaskWriteOptions) => Promise<void>;
|
|
77
|
-
findIssueByTaskId: (taskId: string) => Promise<Record<string, unknown> | null>;
|
|
78
|
-
issueToTask: (issue: Record<string, unknown>, taskIdOverride?: string) => TaskData | null;
|
|
79
|
-
taskToIssuePayload: (task: TaskData, existingIssue?: Record<string, unknown>) => Record<string, unknown>;
|
|
80
|
-
appendCustomField: (fields: Record<string, unknown>[], key: string, value: unknown) => void;
|
|
81
|
-
customFieldValue: (issue: Record<string, unknown>, fieldId: unknown) => string | null;
|
|
82
|
-
maybeParseJson: (value: unknown) => unknown;
|
|
83
|
-
normalizeComments: (value: unknown) => TaskComment[];
|
|
84
|
-
appendCommentNotes: (issueId: string, existingComments: TaskComment[], desiredComments: TaskComment[]) => Promise<void>;
|
|
85
|
-
cacheTask: (task: TaskData, dirty: boolean) => Promise<void>;
|
|
86
|
-
assertExpectedRevisionSupported: (taskId: string, opts?: TaskWriteOptions) => void;
|
|
87
|
-
assertExpectedRevision: (taskId: string, expectedRevision: number | undefined, currentRevision: number) => void;
|
|
88
|
-
ensureDocMetadata: (task: TaskDocMeta) => void;
|
|
89
|
-
diffTasks: (localTask: TaskData, remoteTask: TaskData) => string;
|
|
90
|
-
tasksDiffer: (localTask: TaskData, remoteTask: TaskData) => boolean;
|
|
91
|
-
taskIdFieldId: () => unknown;
|
|
92
|
-
setIssueCustomFieldValue: (issue: Record<string, unknown>, fieldId: unknown, value: unknown) => void;
|
|
93
|
-
requestJson: (method: string, reqPath: string, payload?: Record<string, unknown>, params?: Record<string, unknown>, opts?: {
|
|
94
|
-
attempts?: number;
|
|
95
|
-
backoff?: number;
|
|
96
|
-
}) => Promise<Record<string, unknown>>;
|
|
97
|
-
};
|
|
98
|
-
export declare function ensureRedmineDocMetadata(task: TaskDocMeta): void;
|
|
99
|
-
export declare function cacheRedmineTask(host: RedmineBackendRuntimeHost, task: TaskData, dirty: boolean): Promise<void>;
|
|
100
|
-
export declare function assertRedmineExpectedRevisionSupported(host: RedmineBackendRuntimeHost, taskId: string, opts?: TaskWriteOptions): void;
|
|
101
|
-
export declare function assertRedmineExpectedRevision(taskId: string, expectedRevision: number | undefined, currentRevision: number): void;
|
|
102
|
-
export declare function redmineTaskIdFieldId(host: RedmineBackendRuntimeHost): unknown;
|
|
103
|
-
export declare function setRedmineIssueCustomField(issue: Record<string, unknown>, fieldId: unknown, value: unknown): void;
|
|
104
|
-
export declare function listRedmineRemoteTasks(host: RedmineBackendRuntimeHost): Promise<TaskData[]>;
|
|
105
|
-
export declare function findRedmineIssueByTaskId(host: RedmineBackendRuntimeHost, taskId: string): Promise<Record<string, unknown> | null>;
|
|
106
|
-
export declare function redmineIssueToTask(host: RedmineBackendRuntimeHost, issue: Record<string, unknown>, taskIdOverride?: string): TaskData | null;
|
|
107
|
-
export declare function redmineTaskToIssuePayload(host: RedmineBackendRuntimeHost, task: TaskData, existingIssue?: Record<string, unknown>): Record<string, unknown>;
|
|
108
|
-
export declare function appendRedmineBackendCustomField(host: RedmineBackendRuntimeHost, fields: Record<string, unknown>[], key: string, value: unknown): void;
|
|
109
|
-
export declare function normalizeRedmineBackendComments(value: unknown): TaskComment[];
|
|
110
|
-
export declare function appendRedmineBackendCommentNotes(host: RedmineBackendRuntimeHost, issueId: string, existingComments: TaskComment[], desiredComments: TaskComment[]): Promise<void>;
|
|
111
|
-
export declare function redmineBackendCustomFieldValue(issue: Record<string, unknown>, fieldId: unknown): string | null;
|
|
112
|
-
export declare function maybeParseRedmineBackendJson(value: unknown): unknown;
|
|
113
|
-
export declare function coerceRedmineBackendDocVersion(value: unknown): 2 | 3 | null;
|
|
114
|
-
export declare function requestRedmineBackendJson(host: RedmineBackendRuntimeHost, method: string, reqPath: string, payload?: Record<string, unknown>, params?: Record<string, unknown>, opts?: {
|
|
115
|
-
attempts?: number;
|
|
116
|
-
backoff?: number;
|
|
117
|
-
}): Promise<Record<string, unknown>>;
|
|
118
|
-
export declare const redmineBackendRuntimeMethods: {
|
|
119
|
-
setInferredStatusByTaskStatus(this: RedmineBackendRuntimeHost, next: Map<string, number> | null): void;
|
|
120
|
-
ensureDocMetadata(this: RedmineBackendRuntimeHost, task: TaskDocMeta): void;
|
|
121
|
-
cacheTask(this: RedmineBackendRuntimeHost, task: TaskData, dirty: boolean): Promise<void>;
|
|
122
|
-
assertExpectedRevisionSupported(this: RedmineBackendRuntimeHost, taskId: string, opts?: TaskWriteOptions): void;
|
|
123
|
-
assertExpectedRevision(this: RedmineBackendRuntimeHost, taskId: string, expectedRevision: number | undefined, currentRevision: number): void;
|
|
124
|
-
taskIdFieldId(this: RedmineBackendRuntimeHost): unknown;
|
|
125
|
-
setIssueCustomFieldValue(this: RedmineBackendRuntimeHost, issue: Record<string, unknown>, fieldId: unknown, value: unknown): void;
|
|
126
|
-
listTasksRemote(this: RedmineBackendRuntimeHost): Promise<TaskData[]>;
|
|
127
|
-
findIssueByTaskId(this: RedmineBackendRuntimeHost, taskId: string): Promise<Record<string, unknown> | null>;
|
|
128
|
-
issueToTask(this: RedmineBackendRuntimeHost, issue: Record<string, unknown>, taskIdOverride?: string): TaskData | null;
|
|
129
|
-
taskToIssuePayload(this: RedmineBackendRuntimeHost, task: TaskData, existingIssue?: Record<string, unknown>): Record<string, unknown>;
|
|
130
|
-
appendCustomField(this: RedmineBackendRuntimeHost, fields: Record<string, unknown>[], key: string, value: unknown): void;
|
|
131
|
-
normalizeComments(this: RedmineBackendRuntimeHost, value: unknown): TaskComment[];
|
|
132
|
-
commentsToPairs(this: RedmineBackendRuntimeHost, comments: TaskComment[]): [string, string][];
|
|
133
|
-
formatCommentNote(this: RedmineBackendRuntimeHost, author?: string, body?: string): string;
|
|
134
|
-
appendCommentNotes(this: RedmineBackendRuntimeHost, issueId: string, existingComments: TaskComment[], desiredComments: TaskComment[]): Promise<void>;
|
|
135
|
-
startDateFromTaskId(this: RedmineBackendRuntimeHost, taskId: string): string | null;
|
|
136
|
-
doneRatioForStatus(this: RedmineBackendRuntimeHost, status: string): number | null;
|
|
137
|
-
customFieldValue(this: RedmineBackendRuntimeHost, issue: Record<string, unknown>, fieldId: unknown): string | null;
|
|
138
|
-
maybeParseJson(this: RedmineBackendRuntimeHost, value: unknown): unknown;
|
|
139
|
-
coerceDocVersion(this: RedmineBackendRuntimeHost, value: unknown): 2 | 3 | null;
|
|
140
|
-
diffTasks(this: RedmineBackendRuntimeHost, localTask: TaskData, remoteTask: TaskData): string;
|
|
141
|
-
tasksDiffer(this: RedmineBackendRuntimeHost, localTask: TaskData, remoteTask: TaskData): boolean;
|
|
142
|
-
requestJson(this: RedmineBackendRuntimeHost, method: string, reqPath: string, payload?: Record<string, unknown>, params?: Record<string, unknown>, opts?: {
|
|
143
|
-
attempts?: number;
|
|
144
|
-
backoff?: number;
|
|
145
|
-
}): Promise<Record<string, unknown>>;
|
|
146
|
-
};
|
|
1
|
+
export { createRedmineCacheDocContext, createRedmineReportContext, createRedmineSyncContext, type RedmineBackendRuntimeHost, } from "./runtime-context.js";
|
|
2
|
+
export { redmineBackendRuntimeMethods } from "./runtime-methods.js";
|
|
3
|
+
export { appendRedmineBackendCommentNotes, appendRedmineBackendCustomField, diffRedmineBackendTasks, findRedmineIssueByTaskId, listRedmineRemoteTasks, maybeParseRedmineBackendJson, normalizeRedmineBackendComments, redmineBackendCustomFieldValue, redmineBackendTasksDiffer, redmineIssueToTask, redmineTaskToIssuePayload, requestRedmineBackendJson, } from "./runtime-operations.js";
|
|
4
|
+
export { assertRedmineExpectedRevision, assertRedmineExpectedRevisionSupported, cacheRedmineTask, coerceRedmineBackendDocVersion, ensureRedmineDocMetadata, redmineTaskIdFieldId, setRedmineIssueCustomField, } from "./runtime-state.js";
|
|
147
5
|
//# sourceMappingURL=backend-runtime.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"backend-runtime.d.ts","sourceRoot":"","sources":["../../../../src/backends/task-backend/redmine/backend-runtime.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"backend-runtime.d.ts","sourceRoot":"","sources":["../../../../src/backends/task-backend/redmine/backend-runtime.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,4BAA4B,EAC5B,0BAA0B,EAC1B,wBAAwB,EACxB,KAAK,yBAAyB,GAC/B,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,4BAA4B,EAAE,MAAM,sBAAsB,CAAC;AACpE,OAAO,EACL,gCAAgC,EAChC,+BAA+B,EAC/B,uBAAuB,EACvB,wBAAwB,EACxB,sBAAsB,EACtB,4BAA4B,EAC5B,+BAA+B,EAC/B,8BAA8B,EAC9B,yBAAyB,EACzB,kBAAkB,EAClB,yBAAyB,EACzB,yBAAyB,GAC1B,MAAM,yBAAyB,CAAC;AACjC,OAAO,EACL,6BAA6B,EAC7B,sCAAsC,EACtC,gBAAgB,EAChB,8BAA8B,EAC9B,wBAAwB,EACxB,oBAAoB,EACpB,0BAA0B,GAC3B,MAAM,oBAAoB,CAAC"}
|