lalph 0.1.95 → 0.1.96
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 +5 -3
- package/package.json +1 -1
- package/src/Linear.ts +4 -2
package/dist/cli.mjs
CHANGED
|
@@ -138027,7 +138027,8 @@ const allIssuesNoLabelQuery = `query allIssues($projectId: ID!) {
|
|
|
138027
138027
|
project: { id: { eq: $projectId } }
|
|
138028
138028
|
assignee: { isMe: { eq: true } }
|
|
138029
138029
|
state: { type: { in: ["unstarted", "started", "completed"] } }
|
|
138030
|
-
}
|
|
138030
|
+
},
|
|
138031
|
+
sort: { createdAt: { order: Ascending } }
|
|
138031
138032
|
) {
|
|
138032
138033
|
nodes {
|
|
138033
138034
|
${issueQueryFields}
|
|
@@ -138043,7 +138044,8 @@ const allIssuesQuery = `query allIssues($projectId: ID!, $labelId: ID!) {
|
|
|
138043
138044
|
assignee: { isMe: { eq: true } }
|
|
138044
138045
|
labels: { id: { eq: $labelId } }
|
|
138045
138046
|
state: { type: { in: ["unstarted", "started", "completed"] } }
|
|
138046
|
-
}
|
|
138047
|
+
},
|
|
138048
|
+
sort: { createdAt: { order: Ascending } }
|
|
138047
138049
|
) {
|
|
138048
138050
|
nodes {
|
|
138049
138051
|
${issueQueryFields}
|
|
@@ -145453,7 +145455,7 @@ const commandSource = make$28("source").pipe(withDescription("Select the issue s
|
|
|
145453
145455
|
|
|
145454
145456
|
//#endregion
|
|
145455
145457
|
//#region package.json
|
|
145456
|
-
var version = "0.1.
|
|
145458
|
+
var version = "0.1.96";
|
|
145457
145459
|
|
|
145458
145460
|
//#endregion
|
|
145459
145461
|
//#region src/Tracing.ts
|
package/package.json
CHANGED
package/src/Linear.ts
CHANGED
|
@@ -560,7 +560,8 @@ const allIssuesNoLabelQuery = `query allIssues($projectId: ID!) {
|
|
|
560
560
|
project: { id: { eq: $projectId } }
|
|
561
561
|
assignee: { isMe: { eq: true } }
|
|
562
562
|
state: { type: { in: ["unstarted", "started", "completed"] } }
|
|
563
|
-
}
|
|
563
|
+
},
|
|
564
|
+
sort: { createdAt: { order: Ascending } }
|
|
564
565
|
) {
|
|
565
566
|
nodes {
|
|
566
567
|
${issueQueryFields}
|
|
@@ -576,7 +577,8 @@ const allIssuesQuery = `query allIssues($projectId: ID!, $labelId: ID!) {
|
|
|
576
577
|
assignee: { isMe: { eq: true } }
|
|
577
578
|
labels: { id: { eq: $labelId } }
|
|
578
579
|
state: { type: { in: ["unstarted", "started", "completed"] } }
|
|
579
|
-
}
|
|
580
|
+
},
|
|
581
|
+
sort: { createdAt: { order: Ascending } }
|
|
580
582
|
) {
|
|
581
583
|
nodes {
|
|
582
584
|
${issueQueryFields}
|