@linear/sdk 2.6.0 → 3.0.0
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/CHANGELOG.md +104 -0
- package/dist/_generated_documents.d.ts +277 -21
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +129 -5
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.js +650 -15
- 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 +645 -16
- 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 +651 -16
- 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/CHANGELOG.md
CHANGED
@@ -1,5 +1,109 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 3.0.0
|
4
|
+
|
5
|
+
### Major Changes
|
6
|
+
|
7
|
+
- db79eac: feat(schema): [breaking] Field 'Attachment.sourceType' changed type from 'JSONObject' to 'String' (Attachment.sourceType)
|
8
|
+
|
9
|
+
feat(schema): [breaking] Field 'Reaction.user' changed type from 'User!' to 'User' (Reaction.user)
|
10
|
+
|
11
|
+
feat(schema): [dangerous] Input field 'projectFilterData' was added to input object type 'CustomViewCreateInput' (CustomViewCreateInput.projectFilterData)
|
12
|
+
|
13
|
+
feat(schema): [dangerous] Input field 'projectFilterData' was added to input object type 'CustomViewUpdateInput' (CustomViewUpdateInput.projectFilterData)
|
14
|
+
|
15
|
+
feat(schema): [dangerous] Input field 'triagedAt' was added to input object type 'IssueCollectionFilter' (IssueCollectionFilter.triagedAt)
|
16
|
+
|
17
|
+
feat(schema): [dangerous] Input field 'triagedAt' was added to input object type 'IssueFilter' (IssueFilter.triagedAt)
|
18
|
+
|
19
|
+
feat(schema): [dangerous] Input field 'triagedAt' was added to input object type 'NullableIssueFilter' (NullableIssueFilter.triagedAt)
|
20
|
+
|
21
|
+
feat(schema): [dangerous] Input field 'color' was added to input object type 'RoadmapCreateInput' (RoadmapCreateInput.color)
|
22
|
+
|
23
|
+
feat(schema): [dangerous] Input field 'color' was added to input object type 'RoadmapUpdateInput' (RoadmapUpdateInput.color)
|
24
|
+
|
25
|
+
feat(schema): [dangerous] Enum value 'insightsHelpDismissed' was added to enum 'UserFlagType' (UserFlagType.insightsHelpDismissed)
|
26
|
+
|
27
|
+
feat(schema): [dangerous] Enum value 'milestoneOnboardingIsSeenAndDismissed' was added to enum 'UserFlagType' (UserFlagType.milestoneOnboardingIsSeenAndDismissed)
|
28
|
+
|
29
|
+
feat(schema): [non_breaking] Type 'CustomViewSuggestionPayload' was added (CustomViewSuggestionPayload)
|
30
|
+
|
31
|
+
feat(schema): [non_breaking] Type 'ExternalUser' was added (ExternalUser)
|
32
|
+
|
33
|
+
feat(schema): [non_breaking] Type 'ExternalUserConnection' was added (ExternalUserConnection)
|
34
|
+
|
35
|
+
feat(schema): [non_breaking] Type 'ExternalUserEdge' was added (ExternalUserEdge)
|
36
|
+
|
37
|
+
feat(schema): [non_breaking] Field 'externalUser' was added to object type 'Comment' (Comment.externalUser)
|
38
|
+
|
39
|
+
feat(schema): [non_breaking] Field 'projectFilterData' was added to object type 'CustomView' (CustomView.projectFilterData)
|
40
|
+
|
41
|
+
feat(schema): [non_breaking] Field 'externalUserCreator' was added to object type 'Issue' (Issue.externalUserCreator)
|
42
|
+
|
43
|
+
feat(schema): [non_breaking] Field 'Issue.priority' description changed from 'The priority of the issue.' to 'The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low.' (Issue.priority)
|
44
|
+
|
45
|
+
feat(schema): [non_breaking] Field 'Issue.projectMilestone' description changed from '[ALPHA] The projectMilestone that the issue is associated with.' to 'The projectMilestone that the issue is associated with.' (Issue.projectMilestone)
|
46
|
+
|
47
|
+
feat(schema): [non_breaking] Input field 'IssueCollectionFilter.projectMilestone' description changed from '[ALPHA] Filters that the issues project milestone must satisfy.' to 'Filters that the issues project milestone must satisfy.' (IssueCollectionFilter.projectMilestone)
|
48
|
+
|
49
|
+
feat(schema): [non_breaking] Input field 'IssueCreateInput.priority' description changed from 'The priority of the issue.' to 'The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low.' (IssueCreateInput.priority)
|
50
|
+
|
51
|
+
feat(schema): [non_breaking] Input field 'IssueCreateInput.projectMilestoneId' description changed from '[ALPHA] The project milestone associated with the issue.' to 'The project milestone associated with the issue.' (IssueCreateInput.projectMilestoneId)
|
52
|
+
|
53
|
+
feat(schema): [non_breaking] Field 'projectMilestoneId' was added to object type 'IssueDraft' (IssueDraft.projectMilestoneId)
|
54
|
+
|
55
|
+
feat(schema): [non_breaking] Input field 'IssueFilter.projectMilestone' description changed from '[ALPHA] Filters that the issues project milestone must satisfy.' to 'Filters that the issues project milestone must satisfy.' (IssueFilter.projectMilestone)
|
56
|
+
|
57
|
+
feat(schema): [non_breaking] Input field 'IssueUpdateInput.priority' description changed from 'The priority of the issue.' to 'The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low.' (IssueUpdateInput.priority)
|
58
|
+
|
59
|
+
feat(schema): [non_breaking] Input field 'IssueUpdateInput.projectMilestoneId' description changed from '[ALPHA] The project milestone associated with the issue.' to 'The project milestone associated with the issue.' (IssueUpdateInput.projectMilestoneId)
|
60
|
+
|
61
|
+
feat(schema): [non_breaking] Input field 'NullableIssueFilter.projectMilestone' description changed from '[ALPHA] Filters that the issues project milestone must satisfy.' to 'Filters that the issues project milestone must satisfy.' (NullableIssueFilter.projectMilestone)
|
62
|
+
|
63
|
+
feat(schema): [non_breaking] Description '[ALPHA] Project milestone filtering options.' on type 'NullableProjectMilestoneFilter' has changed to 'Project milestone filtering options.' (NullableProjectMilestoneFilter)
|
64
|
+
|
65
|
+
feat(schema): [non_breaking] Field 'Project.projectMilestones' description changed from '[ALPHA] Milestones associated with the project.' to 'Milestones associated with the project.' (Project.projectMilestones)
|
66
|
+
|
67
|
+
feat(schema): [non_breaking] Field 'customViewSuggestion' was added to object type 'Query' (Query.customViewSuggestion)
|
68
|
+
|
69
|
+
feat(schema): [non_breaking] Field 'externalUser' was added to object type 'Query' (Query.externalUser)
|
70
|
+
|
71
|
+
feat(schema): [non_breaking] Field 'externalUsers' was added to object type 'Query' (Query.externalUsers)
|
72
|
+
|
73
|
+
feat(schema): [non_breaking] Field 'color' was added to object type 'Roadmap' (Roadmap.color)
|
74
|
+
|
75
|
+
feat(schema): [non_breaking] Field 'User.calendarHash' description changed from 'Hash for the user to be used in calendar URLs.' to '[DEPRECATED] Hash for the user to be used in calendar URLs.' (User.calendarHash)
|
76
|
+
|
77
|
+
feat(schema): [non_breaking] Field 'calendarHash' was added to object type 'UserSettings' (UserSettings.calendarHash)
|
78
|
+
|
79
|
+
### Minor Changes
|
80
|
+
|
81
|
+
- 38e9a81: feat(schema): [dangerous] Enum value 'desktopTabsOnboardingDismissed' was added to enum 'UserFlagType' (UserFlagType.desktopTabsOnboardingDismissed)
|
82
|
+
- a61a9f9: feat(schema): [dangerous] Input field 'sortOrder' was added to input object type 'RoadmapCreateInput' (RoadmapCreateInput.sortOrder)
|
83
|
+
|
84
|
+
feat(schema): [dangerous] Input field 'sortOrder' was added to input object type 'RoadmapUpdateInput' (RoadmapUpdateInput.sortOrder)
|
85
|
+
|
86
|
+
feat(schema): [dangerous] Enum value 'Failed' was added to enum 'SlaStatus' (SlaStatus.Failed)
|
87
|
+
|
88
|
+
feat(schema): [dangerous] Enum value 'roadmaps' was added to enum 'ViewType' (ViewType.roadmaps)
|
89
|
+
|
90
|
+
feat(schema): [non_breaking] Type 'OrganizationStartPlusTrialPayload' was added (OrganizationStartPlusTrialPayload)
|
91
|
+
|
92
|
+
feat(schema): [non_breaking] Field 'organizationStartPlusTrial' was added to object type 'Mutation' (Mutation.organizationStartPlusTrial)
|
93
|
+
|
94
|
+
feat(schema): [non_breaking] Field 'roadmapArchive' was added to object type 'Mutation' (Mutation.roadmapArchive)
|
95
|
+
|
96
|
+
feat(schema): [non_breaking] Field 'roadmapUnarchive' was added to object type 'Mutation' (Mutation.roadmapUnarchive)
|
97
|
+
|
98
|
+
feat(schema): [non_breaking] Field 'Project.sortOrder' description changed from 'The sort order for the project within the organizion.' to 'The sort order for the project within the organization.' (Project.sortOrder)
|
99
|
+
|
100
|
+
feat(schema): [non_breaking] Field 'sortOrder' was added to object type 'Roadmap' (Roadmap.sortOrder)
|
101
|
+
|
102
|
+
### Patch Changes
|
103
|
+
|
104
|
+
- 3da83aa: chore(deps): update dependency patch versions
|
105
|
+
- cc8b57b: Follow semver for API changes
|
106
|
+
|
3
107
|
## 2.6.0
|
4
108
|
|
5
109
|
### Minor Changes
|