@linear/sdk 4.0.0 → 6.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 +93 -0
- package/dist/_generated_documents.d.ts +215 -37
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +101 -29
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.js +304 -86
- 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 +300 -85
- 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 +305 -87
- 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,98 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 6.0.0
|
4
|
+
|
5
|
+
### Major Changes
|
6
|
+
|
7
|
+
- e76fab7: feat(schema): [breaking] Input field 'ownerId' was removed from input object type 'CustomViewCreateInput' (CustomViewCreateInput.ownerId)
|
8
|
+
|
9
|
+
feat(schema): [breaking] Input field 'ownerId' was removed from input object type 'CustomViewUpdateInput' (CustomViewUpdateInput.ownerId)
|
10
|
+
|
11
|
+
feat(schema): [dangerous] Input field 'companyIds' was added to input object type 'IssueUpdateInput' (IssueUpdateInput.companyIds)
|
12
|
+
|
13
|
+
feat(schema): [dangerous] Input field 'health' was added to input object type 'NullableProjectFilter' (NullableProjectFilter.health)
|
14
|
+
|
15
|
+
feat(schema): [dangerous] Input field 'health' was added to input object type 'ProjectCollectionFilter' (ProjectCollectionFilter.health)
|
16
|
+
|
17
|
+
feat(schema): [dangerous] Input field 'health' was added to input object type 'ProjectFilter' (ProjectFilter.health)
|
18
|
+
|
19
|
+
feat(schema): [dangerous] Argument 'modelName: String' added to field 'Query.customViewDetailsSuggestion' (Query.customViewDetailsSuggestion.modelName)
|
20
|
+
|
21
|
+
feat(schema): [non_breaking] Type 'Company' was added (Company)
|
22
|
+
|
23
|
+
feat(schema): [non_breaking] Type 'CompanyConnection' was added (CompanyConnection)
|
24
|
+
|
25
|
+
feat(schema): [non_breaking] Type 'CompanyEdge' was added (CompanyEdge)
|
26
|
+
|
27
|
+
feat(schema): [non_breaking] Field 'CustomView.owner' description changed from 'The user who owns the custom view.' to '[Deprecated] The user who owns the custom view.' (CustomView.owner)
|
28
|
+
|
29
|
+
feat(schema): [non_breaking] Field 'IssueHistory.archived' description changed from 'Whether the issue was archived or un-archived.' to 'Whether the issue is archived at the time of this history entry.' (IssueHistory.archived)
|
30
|
+
|
31
|
+
feat(schema): [non_breaking] Field 'integrationUpdateSlack' was added to object type 'Mutation' (Mutation.integrationUpdateSlack)
|
32
|
+
|
33
|
+
### Patch Changes
|
34
|
+
|
35
|
+
- 8806bf1: chore(deps): update dependency patch versions
|
36
|
+
|
37
|
+
## 5.0.0
|
38
|
+
|
39
|
+
### Major Changes
|
40
|
+
|
41
|
+
- fa27be6: feat(schema): [breaking] Field 'ExternalUser.email' changed type from 'String!' to 'String' (ExternalUser.email)
|
42
|
+
|
43
|
+
feat(schema): [breaking] 'OrganizationInviteDetailsPayload' kind changed from 'ObjectTypeDefinition' to 'UnionTypeDefinition' (OrganizationInviteDetailsPayload)
|
44
|
+
|
45
|
+
feat(schema): [dangerous] Input field 'completedProjectMilestones' was added to input object type 'NullableProjectFilter' (NullableProjectFilter.completedProjectMilestones)
|
46
|
+
|
47
|
+
feat(schema): [dangerous] Input field 'nextProjectMilestone' was added to input object type 'NullableProjectFilter' (NullableProjectFilter.nextProjectMilestone)
|
48
|
+
|
49
|
+
feat(schema): [dangerous] Input field 'projectMilestones' was added to input object type 'NullableProjectFilter' (NullableProjectFilter.projectMilestones)
|
50
|
+
|
51
|
+
feat(schema): [dangerous] Input field 'name' was added to input object type 'NullableProjectMilestoneFilter' (NullableProjectMilestoneFilter.name)
|
52
|
+
|
53
|
+
feat(schema): [dangerous] Input field 'targetDate' was added to input object type 'NullableProjectMilestoneFilter' (NullableProjectMilestoneFilter.targetDate)
|
54
|
+
|
55
|
+
feat(schema): [dangerous] Input field 'completedProjectMilestones' was added to input object type 'ProjectCollectionFilter' (ProjectCollectionFilter.completedProjectMilestones)
|
56
|
+
|
57
|
+
feat(schema): [dangerous] Input field 'nextProjectMilestone' was added to input object type 'ProjectCollectionFilter' (ProjectCollectionFilter.nextProjectMilestone)
|
58
|
+
|
59
|
+
feat(schema): [dangerous] Input field 'projectMilestones' was added to input object type 'ProjectCollectionFilter' (ProjectCollectionFilter.projectMilestones)
|
60
|
+
|
61
|
+
feat(schema): [dangerous] Input field 'completedProjectMilestones' was added to input object type 'ProjectFilter' (ProjectFilter.completedProjectMilestones)
|
62
|
+
|
63
|
+
feat(schema): [dangerous] Input field 'nextProjectMilestone' was added to input object type 'ProjectFilter' (ProjectFilter.nextProjectMilestone)
|
64
|
+
|
65
|
+
feat(schema): [dangerous] Input field 'projectMilestones' was added to input object type 'ProjectFilter' (ProjectFilter.projectMilestones)
|
66
|
+
|
67
|
+
feat(schema): [dangerous] Argument 'filter: ProjectMilestoneFilter' added to field 'Query.ProjectMilestones' (Query.ProjectMilestones.filter)
|
68
|
+
|
69
|
+
feat(schema): [non_breaking] Type 'OrganizationAcceptedOrExpiredInviteDetailsPayload' was added (OrganizationAcceptedOrExpiredInviteDetailsPayload)
|
70
|
+
|
71
|
+
feat(schema): [non_breaking] Type 'OrganizationInviteFullDetailsPayload' was added (OrganizationInviteFullDetailsPayload)
|
72
|
+
|
73
|
+
feat(schema): [non_breaking] Type 'OrganizationInviteStatus' was added (OrganizationInviteStatus)
|
74
|
+
|
75
|
+
feat(schema): [non_breaking] Type 'ProjectMilestoneCollectionFilter' was added (ProjectMilestoneCollectionFilter)
|
76
|
+
|
77
|
+
feat(schema): [non_breaking] Type 'ProjectMilestoneFilter' was added (ProjectMilestoneFilter)
|
78
|
+
|
79
|
+
feat(schema): [non_breaking] Field 'userJiraConnect' was added to object type 'Mutation' (Mutation.userJiraConnect)
|
80
|
+
|
81
|
+
feat(schema): [non_breaking] Field 'infoSnapshot' was added to object type 'ProjectUpdate' (ProjectUpdate.infoSnapshot)
|
82
|
+
|
83
|
+
feat(schema): [non_breaking] Field 'Team.issueEstimationType' description changed from 'The issue estimation type to use.' to 'The issue estimation type to use. Must be one of "notUsed", "exponential", "fibonacci", "linear", "tShirt".' (Team.issueEstimationType)
|
84
|
+
|
85
|
+
feat(schema): [non_breaking] Input field 'TeamCreateInput.issueEstimationType' description changed from 'The issue estimation type to use.' to 'The issue estimation type to use. Must be one of "notUsed", "exponential", "fibonacci", "linear", "tShirt".' (TeamCreateInput.issueEstimationType)
|
86
|
+
|
87
|
+
feat(schema): [non_breaking] Input field 'TeamUpdateInput.issueEstimationType' description changed from 'The issue estimation type to use.' to 'The issue estimation type to use. Must be one of "notUsed", "exponential", "fibonacci", "linear", "tShirt".' (TeamUpdateInput.issueEstimationType)
|
88
|
+
|
89
|
+
feat(schema): [non_breaking] Field 'showFullUserNames' was added to object type 'UserSettings' (UserSettings.showFullUserNames)
|
90
|
+
|
91
|
+
### Patch Changes
|
92
|
+
|
93
|
+
- e485d5f: chore(deps): update dependency patch versions
|
94
|
+
- 8ffdc08: fix: add retry mechanism for mock server in test startup sequence
|
95
|
+
|
3
96
|
## 4.0.0
|
4
97
|
|
5
98
|
### Major Changes
|