lalph 0.3.127 → 0.3.128
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/cli.mjs +2 -2
- package/package.json +1 -1
- package/src/domain/GithubComment.ts +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -240973,7 +240973,7 @@ var ReviewComment = class extends Class$2("ReviewComment")({
|
|
|
240973
240973
|
author: Author,
|
|
240974
240974
|
body: String$1,
|
|
240975
240975
|
path: String$1,
|
|
240976
|
-
originalLine: Number$1,
|
|
240976
|
+
originalLine: NullOr(Number$1),
|
|
240977
240977
|
diffHunk: String$1,
|
|
240978
240978
|
createdAt: String$1
|
|
240979
240979
|
}) {};
|
|
@@ -243742,7 +243742,7 @@ const commandEdit = make$60("edit").pipe(withDescription("Open the selected proj
|
|
|
243742
243742
|
const commandSource = make$60("source").pipe(withDescription("Select the issue source to use (e.g. GitHub Issues or Linear). This applies to all projects."), withHandler(() => selectIssueSource), provide(Settings.layer));
|
|
243743
243743
|
//#endregion
|
|
243744
243744
|
//#region package.json
|
|
243745
|
-
var version = "0.3.
|
|
243745
|
+
var version = "0.3.128";
|
|
243746
243746
|
//#endregion
|
|
243747
243747
|
//#region src/Tracing.ts
|
|
243748
243748
|
const TracingLayer = unwrap$3(gen(function* () {
|
package/package.json
CHANGED