@linear/sdk 16.0.0 → 17.0.1
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/_generated_documents.d.ts +36 -19
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +14 -2
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.js +26 -1
- package/dist/index-cjs.js.map +1 -1
- package/dist/index-cjs.min.js +1 -1
- package/dist/index-cjs.min.js.br +0 -0
- package/dist/index-cjs.min.js.gz +0 -0
- package/dist/index-cjs.min.js.map +1 -1
- package/dist/index-es.js +26 -1
- package/dist/index-es.js.map +1 -1
- package/dist/index-es.min.js +1 -1
- package/dist/index-es.min.js.br +0 -0
- package/dist/index-es.min.js.gz +0 -0
- package/dist/index-es.min.js.map +1 -1
- package/dist/index-umd.js +27 -2
- package/dist/index-umd.js.map +1 -1
- package/dist/index-umd.min.js +1 -1
- package/dist/index-umd.min.js.br +0 -0
- package/dist/index-umd.min.js.gz +0 -0
- package/dist/index-umd.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index-cjs.js
CHANGED
@@ -86091,6 +86091,11 @@ const UserSettingsFragmentDoc = {
|
|
86091
86091
|
selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }],
|
86092
86092
|
},
|
86093
86093
|
},
|
86094
|
+
{ kind: "Field", name: { kind: "Name", value: "subscribedToDPA" } },
|
86095
|
+
{ kind: "Field", name: { kind: "Name", value: "subscribedToChangelog" } },
|
86096
|
+
{ kind: "Field", name: { kind: "Name", value: "subscribedToInviteAccepted" } },
|
86097
|
+
{ kind: "Field", name: { kind: "Name", value: "subscribedToPrivacyLegalUpdates" } },
|
86098
|
+
{ kind: "Field", name: { kind: "Name", value: "subscribedToUnreadNotificationsReminder" } },
|
86094
86099
|
{ kind: "Field", name: { kind: "Name", value: "showFullUserNames" } },
|
86095
86100
|
],
|
86096
86101
|
},
|
@@ -91576,6 +91581,7 @@ const TeamFragmentDoc = {
|
|
91576
91581
|
{ kind: "Field", name: { kind: "Name", value: "slackNewIssue" } },
|
91577
91582
|
{ kind: "Field", name: { kind: "Name", value: "slackIssueStatuses" } },
|
91578
91583
|
{ kind: "Field", name: { kind: "Name", value: "triageEnabled" } },
|
91584
|
+
{ kind: "Field", name: { kind: "Name", value: "issueSortOrderDefaultToBottom" } },
|
91579
91585
|
],
|
91580
91586
|
},
|
91581
91587
|
},
|
@@ -95039,6 +95045,14 @@ const CustomView_IssuesDocument = {
|
|
95039
95045
|
variable: { kind: "Variable", name: { kind: "Name", value: "orderBy" } },
|
95040
95046
|
type: { kind: "NamedType", name: { kind: "Name", value: "PaginationOrderBy" } },
|
95041
95047
|
},
|
95048
|
+
{
|
95049
|
+
kind: "VariableDefinition",
|
95050
|
+
variable: { kind: "Variable", name: { kind: "Name", value: "sort" } },
|
95051
|
+
type: {
|
95052
|
+
kind: "ListType",
|
95053
|
+
type: { kind: "NonNullType", type: { kind: "NamedType", name: { kind: "Name", value: "IssueSortInput" } } },
|
95054
|
+
},
|
95055
|
+
},
|
95042
95056
|
],
|
95043
95057
|
selectionSet: {
|
95044
95058
|
kind: "SelectionSet",
|
@@ -95095,6 +95109,11 @@ const CustomView_IssuesDocument = {
|
|
95095
95109
|
name: { kind: "Name", value: "orderBy" },
|
95096
95110
|
value: { kind: "Variable", name: { kind: "Name", value: "orderBy" } },
|
95097
95111
|
},
|
95112
|
+
{
|
95113
|
+
kind: "Argument",
|
95114
|
+
name: { kind: "Name", value: "sort" },
|
95115
|
+
value: { kind: "Variable", name: { kind: "Name", value: "sort" } },
|
95116
|
+
},
|
95098
95117
|
],
|
95099
95118
|
selectionSet: {
|
95100
95119
|
kind: "SelectionSet",
|
@@ -122740,6 +122759,7 @@ class Team extends Request {
|
|
122740
122759
|
this.issueEstimationExtended = data.issueEstimationExtended;
|
122741
122760
|
this.issueEstimationType = data.issueEstimationType;
|
122742
122761
|
this.issueOrderingNoPriorityFirst = data.issueOrderingNoPriorityFirst;
|
122762
|
+
this.issueSortOrderDefaultToBottom = data.issueSortOrderDefaultToBottom;
|
122743
122763
|
this.key = data.key;
|
122744
122764
|
this.name = data.name;
|
122745
122765
|
this.private = data.private;
|
@@ -123612,6 +123632,11 @@ class UserSettings extends Request {
|
|
123612
123632
|
this.id = data.id;
|
123613
123633
|
this.notificationPreferences = data.notificationPreferences;
|
123614
123634
|
this.showFullUserNames = data.showFullUserNames;
|
123635
|
+
this.subscribedToChangelog = data.subscribedToChangelog;
|
123636
|
+
this.subscribedToDPA = data.subscribedToDPA;
|
123637
|
+
this.subscribedToInviteAccepted = data.subscribedToInviteAccepted;
|
123638
|
+
this.subscribedToPrivacyLegalUpdates = data.subscribedToPrivacyLegalUpdates;
|
123639
|
+
this.subscribedToUnreadNotificationsReminder = data.subscribedToUnreadNotificationsReminder;
|
123615
123640
|
this.unsubscribedFrom = data.unsubscribedFrom;
|
123616
123641
|
this.updatedAt = (_d = parseDate(data.updatedAt)) !== null && _d !== void 0 ? _d : new Date();
|
123617
123642
|
this._user = data.user;
|
@@ -134493,7 +134518,7 @@ class LinearSdk extends Request {
|
|
134493
134518
|
return new AttachmentLinkZendeskMutation(this._request).fetch(issueId, ticketId, variables);
|
134494
134519
|
}
|
134495
134520
|
/**
|
134496
|
-
* Unsyncs an existing synced Slack attachment.
|
134521
|
+
* [DEPRECATED] Unsyncs an existing synced Slack attachment.
|
134497
134522
|
*
|
134498
134523
|
* @param id - required id to pass to attachmentUnsyncSlack
|
134499
134524
|
* @returns AttachmentPayload
|