lalph 0.1.56 → 0.1.57
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 +3 -2
- package/package.json +1 -1
- package/src/Linear.ts +3 -2
package/dist/cli.mjs
CHANGED
|
@@ -134788,7 +134788,8 @@ const LinearIssueSource = effect(IssueSource, gen(function* () {
|
|
|
134788
134788
|
case "done": return doneState.id;
|
|
134789
134789
|
}
|
|
134790
134790
|
};
|
|
134791
|
-
const issues = linear.stream(() =>
|
|
134791
|
+
const issues = linear.stream((c) => c.issues({ filter: {
|
|
134792
|
+
project: { id: { eq: project.id } },
|
|
134792
134793
|
assignee: { isMe: { eq: true } },
|
|
134793
134794
|
labels: { id: labelId.pipe(map$11((eq) => ({ eq })), getOrNull) },
|
|
134794
134795
|
state: { type: { in: [
|
|
@@ -141931,7 +141932,7 @@ const commandAgent = make$27("agent").pipe(withDescription("Select the CLI agent
|
|
|
141931
141932
|
|
|
141932
141933
|
//#endregion
|
|
141933
141934
|
//#region package.json
|
|
141934
|
-
var version = "0.1.
|
|
141935
|
+
var version = "0.1.57";
|
|
141935
141936
|
|
|
141936
141937
|
//#endregion
|
|
141937
141938
|
//#region src/cli.ts
|
package/package.json
CHANGED
package/src/Linear.ts
CHANGED
|
@@ -189,9 +189,10 @@ export const LinearIssueSource = Layer.effect(
|
|
|
189
189
|
}
|
|
190
190
|
|
|
191
191
|
const issues = linear
|
|
192
|
-
.stream(() =>
|
|
193
|
-
|
|
192
|
+
.stream((c) =>
|
|
193
|
+
c.issues({
|
|
194
194
|
filter: {
|
|
195
|
+
project: { id: { eq: project.id } },
|
|
195
196
|
assignee: { isMe: { eq: true } },
|
|
196
197
|
labels: {
|
|
197
198
|
id: labelId.pipe(
|