@linear/sdk 16.0.0 → 18.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/dist/_generated_documents.d.ts +109 -57
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +41 -24
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.js +99 -76
- 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 +99 -76
- 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 +100 -77
- 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
@@ -573,7 +573,7 @@ export declare type AuthUser = {
|
|
573
573
|
name: Scalars["String"];
|
574
574
|
/** Organization the user belongs to. */
|
575
575
|
organization: AuthOrganization;
|
576
|
-
/** User account
|
576
|
+
/** User account ID the user belongs to. */
|
577
577
|
userAccountId: Scalars["String"];
|
578
578
|
};
|
579
579
|
/** User authentication session. */
|
@@ -1047,6 +1047,7 @@ export declare type CustomViewIssuesArgs = {
|
|
1047
1047
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
1048
1048
|
last?: Maybe<Scalars["Int"]>;
|
1049
1049
|
orderBy?: Maybe<PaginationOrderBy>;
|
1050
|
+
sort?: Maybe<Array<IssueSortInput>>;
|
1050
1051
|
};
|
1051
1052
|
export declare type CustomViewConnection = {
|
1052
1053
|
__typename?: "CustomViewConnection";
|
@@ -1293,6 +1294,8 @@ export declare type CycleFilter = {
|
|
1293
1294
|
isActive?: Maybe<BooleanComparator>;
|
1294
1295
|
/** Comparator for the filtering future cycles. */
|
1295
1296
|
isFuture?: Maybe<BooleanComparator>;
|
1297
|
+
/** Comparator for filtering for whether the cycle is currently in cooldown. */
|
1298
|
+
isInCooldown?: Maybe<BooleanComparator>;
|
1296
1299
|
/** Comparator for the filtering next cycle. */
|
1297
1300
|
isNext?: Maybe<BooleanComparator>;
|
1298
1301
|
/** Comparator for the filtering past cycles. */
|
@@ -1801,15 +1804,6 @@ export declare type EmailIntakeAddressUpdateInput = {
|
|
1801
1804
|
/** Whether the email address is currently enabled. If set to false, the email address will be disabled and no longer accept incoming emails. */
|
1802
1805
|
enabled: Scalars["Boolean"];
|
1803
1806
|
};
|
1804
|
-
export declare type EmailSubscribeInput = {
|
1805
|
-
/** [INTERNAL] Email to subscribe. */
|
1806
|
-
email: Scalars["String"];
|
1807
|
-
};
|
1808
|
-
export declare type EmailSubscribePayload = {
|
1809
|
-
__typename?: "EmailSubscribePayload";
|
1810
|
-
/** [INTERNAL] Whether the operation was successful. */
|
1811
|
-
success: Scalars["Boolean"];
|
1812
|
-
};
|
1813
1807
|
export declare type EmailUnsubscribeInput = {
|
1814
1808
|
/** The user's email validation token. */
|
1815
1809
|
token: Scalars["String"];
|
@@ -3102,6 +3096,8 @@ export declare type Issue = Node & {
|
|
3102
3096
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
3103
3097
|
/** The order of the item in relation to other items in the organization. */
|
3104
3098
|
sortOrder: Scalars["Float"];
|
3099
|
+
/** The comment that this issue was created from. */
|
3100
|
+
sourceComment?: Maybe<Comment>;
|
3105
3101
|
/** The time at which the issue was moved into started state. */
|
3106
3102
|
startedAt?: Maybe<Scalars["DateTime"]>;
|
3107
3103
|
/** The time at which the issue entered triage. */
|
@@ -3364,6 +3360,8 @@ export declare type IssueCreateInput = {
|
|
3364
3360
|
slaBreachesAt?: Maybe<Scalars["DateTime"]>;
|
3365
3361
|
/** The position of the issue related to other issues. */
|
3366
3362
|
sortOrder?: Maybe<Scalars["Float"]>;
|
3363
|
+
/** The comment the issue is created from. */
|
3364
|
+
sourceCommentId?: Maybe<Scalars["String"]>;
|
3367
3365
|
/** The team state of the issue. */
|
3368
3366
|
stateId?: Maybe<Scalars["String"]>;
|
3369
3367
|
/** The position of the issue in parent's sub-issue list. */
|
@@ -4118,6 +4116,8 @@ export declare type IssueSearchResult = Node & {
|
|
4118
4116
|
snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
|
4119
4117
|
/** The order of the item in relation to other items in the organization. */
|
4120
4118
|
sortOrder: Scalars["Float"];
|
4119
|
+
/** The comment that this issue was created from. */
|
4120
|
+
sourceComment?: Maybe<Comment>;
|
4121
4121
|
/** The time at which the issue was moved into started state. */
|
4122
4122
|
startedAt?: Maybe<Scalars["DateTime"]>;
|
4123
4123
|
/** The time at which the issue entered triage. */
|
@@ -4505,8 +4505,6 @@ export declare type Mutation = {
|
|
4505
4505
|
attachmentLinkURL: AttachmentPayload;
|
4506
4506
|
/** Link an existing Zendesk ticket to an issue. */
|
4507
4507
|
attachmentLinkZendesk: AttachmentPayload;
|
4508
|
-
/** Unsyncs an existing synced Slack attachment. */
|
4509
|
-
attachmentUnsyncSlack: AttachmentPayload;
|
4510
4508
|
/** Updates an existing issue attachment. */
|
4511
4509
|
attachmentUpdate: AttachmentPayload;
|
4512
4510
|
/** Creates a new comment. */
|
@@ -4557,8 +4555,6 @@ export declare type Mutation = {
|
|
4557
4555
|
emailIntakeAddressRotate: EmailIntakeAddressPayload;
|
4558
4556
|
/** Updates an existing email intake address. */
|
4559
4557
|
emailIntakeAddressUpdate: EmailIntakeAddressPayload;
|
4560
|
-
/** [INTERNAL] Subscribes the email to the newsletter. */
|
4561
|
-
emailSubscribe: EmailSubscribePayload;
|
4562
4558
|
/** Authenticates a user account via email and authentication token. */
|
4563
4559
|
emailTokenUserAccountAuth: AuthResolverResponse;
|
4564
4560
|
/** Unsubscribes the user from one type of emails. */
|
@@ -5062,9 +5058,6 @@ export declare type MutationAttachmentLinkZendeskArgs = {
|
|
5062
5058
|
ticketId: Scalars["String"];
|
5063
5059
|
title?: Maybe<Scalars["String"]>;
|
5064
5060
|
};
|
5065
|
-
export declare type MutationAttachmentUnsyncSlackArgs = {
|
5066
|
-
id: Scalars["String"];
|
5067
|
-
};
|
5068
5061
|
export declare type MutationAttachmentUpdateArgs = {
|
5069
5062
|
id: Scalars["String"];
|
5070
5063
|
input: AttachmentUpdateInput;
|
@@ -5149,9 +5142,6 @@ export declare type MutationEmailIntakeAddressUpdateArgs = {
|
|
5149
5142
|
id: Scalars["String"];
|
5150
5143
|
input: EmailIntakeAddressUpdateInput;
|
5151
5144
|
};
|
5152
|
-
export declare type MutationEmailSubscribeArgs = {
|
5153
|
-
input: EmailSubscribeInput;
|
5154
|
-
};
|
5155
5145
|
export declare type MutationEmailTokenUserAccountAuthArgs = {
|
5156
5146
|
input: TokenUserAccountAuthInput;
|
5157
5147
|
};
|
@@ -6035,6 +6025,8 @@ export declare type NullableCycleFilter = {
|
|
6035
6025
|
isActive?: Maybe<BooleanComparator>;
|
6036
6026
|
/** Comparator for the filtering future cycles. */
|
6037
6027
|
isFuture?: Maybe<BooleanComparator>;
|
6028
|
+
/** Comparator for filtering for whether the cycle is currently in cooldown. */
|
6029
|
+
isInCooldown?: Maybe<BooleanComparator>;
|
6038
6030
|
/** Comparator for the filtering next cycle. */
|
6039
6031
|
isNext?: Maybe<BooleanComparator>;
|
6040
6032
|
/** Comparator for the filtering past cycles. */
|
@@ -6257,8 +6249,6 @@ export declare type NullableProjectFilter = {
|
|
6257
6249
|
null?: Maybe<Scalars["Boolean"]>;
|
6258
6250
|
/** Compound filters, one of which need to be matched by the project. */
|
6259
6251
|
or?: Maybe<Array<NullableProjectFilter>>;
|
6260
|
-
/** [Internal] Comparator for the date when the project was last paused. */
|
6261
|
-
pausedAt?: Maybe<NullableDateComparator>;
|
6262
6252
|
/** Filters that the project's milestones must satisfy. */
|
6263
6253
|
projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
|
6264
6254
|
/** Filters that the projects roadmaps must satisfy. */
|
@@ -7104,8 +7094,6 @@ export declare type Project = Node & {
|
|
7104
7094
|
members: UserConnection;
|
7105
7095
|
/** The project's name. */
|
7106
7096
|
name: Scalars["String"];
|
7107
|
-
/** [INTERNAL] The latest time at which the project was paused. */
|
7108
|
-
pausedAt?: Maybe<Scalars["DateTime"]>;
|
7109
7097
|
/** The overall progress of the project. This is the (completed estimate points + 0.25 * in progress estimate points) / total estimate points. */
|
7110
7098
|
progress: Scalars["Float"];
|
7111
7099
|
/** Milestones associated with the project. */
|
@@ -7272,8 +7260,6 @@ export declare type ProjectCollectionFilter = {
|
|
7272
7260
|
nextProjectMilestone?: Maybe<ProjectMilestoneFilter>;
|
7273
7261
|
/** Compound filters, one of which need to be matched by the project. */
|
7274
7262
|
or?: Maybe<Array<ProjectCollectionFilter>>;
|
7275
|
-
/** [Internal] Comparator for the date when the project was last paused. */
|
7276
|
-
pausedAt?: Maybe<NullableDateComparator>;
|
7277
7263
|
/** Filters that the project's milestones must satisfy. */
|
7278
7264
|
projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
|
7279
7265
|
/** Filters that the projects roadmaps must satisfy. */
|
@@ -7377,8 +7363,6 @@ export declare type ProjectFilter = {
|
|
7377
7363
|
nextProjectMilestone?: Maybe<ProjectMilestoneFilter>;
|
7378
7364
|
/** Compound filters, one of which need to be matched by the project. */
|
7379
7365
|
or?: Maybe<Array<ProjectFilter>>;
|
7380
|
-
/** [Internal] Comparator for the date when the project was last paused. */
|
7381
|
-
pausedAt?: Maybe<NullableDateComparator>;
|
7382
7366
|
/** Filters that the project's milestones must satisfy. */
|
7383
7367
|
projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
|
7384
7368
|
/** Filters that the projects roadmaps must satisfy. */
|
@@ -7756,8 +7740,6 @@ export declare type ProjectSearchResult = Node & {
|
|
7756
7740
|
metadata: Scalars["JSONObject"];
|
7757
7741
|
/** The project's name. */
|
7758
7742
|
name: Scalars["String"];
|
7759
|
-
/** [INTERNAL] The latest time at which the project was paused. */
|
7760
|
-
pausedAt?: Maybe<Scalars["DateTime"]>;
|
7761
7743
|
/** The overall progress of the project. This is the (completed estimate points + 0.25 * in progress estimate points) / total estimate points. */
|
7762
7744
|
progress: Scalars["Float"];
|
7763
7745
|
/** Milestones associated with the project. */
|
@@ -8074,8 +8056,6 @@ export declare type ProjectUpdateInput = {
|
|
8074
8056
|
memberIds?: Maybe<Array<Scalars["String"]>>;
|
8075
8057
|
/** The name of the project. */
|
8076
8058
|
name?: Maybe<Scalars["String"]>;
|
8077
|
-
/** [INTERNAL] The date when the project was paused. */
|
8078
|
-
pausedAt?: Maybe<Scalars["DateTime"]>;
|
8079
8059
|
/** The time until which project update reminders are paused. */
|
8080
8060
|
projectUpdateRemindersPausedUntilAt?: Maybe<Scalars["DateTime"]>;
|
8081
8061
|
/** Whether to send new issue comment notifications to Slack. */
|
@@ -9339,6 +9319,20 @@ export declare type SentrySettingsInput = {
|
|
9339
9319
|
/** The slug of the Sentry organization being connected. */
|
9340
9320
|
organizationSlug: Scalars["String"];
|
9341
9321
|
};
|
9322
|
+
/** Shared Slack integration settings. */
|
9323
|
+
export declare type SharedSlackSettings = {
|
9324
|
+
__typename?: "SharedSlackSettings";
|
9325
|
+
/** Slack workspace id */
|
9326
|
+
teamId?: Maybe<Scalars["String"]>;
|
9327
|
+
/** Slack workspace name */
|
9328
|
+
teamName?: Maybe<Scalars["String"]>;
|
9329
|
+
};
|
9330
|
+
export declare type SharedSlackSettingsInput = {
|
9331
|
+
/** Slack workspace id */
|
9332
|
+
teamId?: Maybe<Scalars["String"]>;
|
9333
|
+
/** Slack workspace name */
|
9334
|
+
teamName?: Maybe<Scalars["String"]>;
|
9335
|
+
};
|
9342
9336
|
export declare enum SlaStatus {
|
9343
9337
|
Breached = "Breached",
|
9344
9338
|
Completed = "Completed",
|
@@ -9375,12 +9369,20 @@ export declare type SlackAsksSettings = {
|
|
9375
9369
|
canAdministrate: UserRoleType;
|
9376
9370
|
/** The mapping of Slack channel ID => Slack channel name for connected channels. */
|
9377
9371
|
slackChannelMapping?: Maybe<Array<SlackChannelNameMapping>>;
|
9372
|
+
/** Slack workspace id */
|
9373
|
+
teamId?: Maybe<Scalars["String"]>;
|
9374
|
+
/** Slack workspace name */
|
9375
|
+
teamName?: Maybe<Scalars["String"]>;
|
9378
9376
|
};
|
9379
9377
|
export declare type SlackAsksSettingsInput = {
|
9380
9378
|
/** The user role type that is allowed to manage Asks settings. */
|
9381
9379
|
canAdministrate: UserRoleType;
|
9382
9380
|
/** The mapping of Slack channel ID => Slack channel name for connected channels. */
|
9383
9381
|
slackChannelMapping?: Maybe<Array<SlackChannelNameMappingInput>>;
|
9382
|
+
/** Slack workspace id */
|
9383
|
+
teamId?: Maybe<Scalars["String"]>;
|
9384
|
+
/** Slack workspace name */
|
9385
|
+
teamName?: Maybe<Scalars["String"]>;
|
9384
9386
|
};
|
9385
9387
|
/** Tuple for mapping Slack channel IDs to names. */
|
9386
9388
|
export declare type SlackAsksTeamSettings = {
|
@@ -9482,10 +9484,18 @@ export declare type SlackSettings = {
|
|
9482
9484
|
__typename?: "SlackSettings";
|
9483
9485
|
/** Whether Linear should automatically respond with issue unfurls when an issue identifier is mentioned in a Slack message. */
|
9484
9486
|
linkOnIssueIdMention: Scalars["Boolean"];
|
9487
|
+
/** Slack workspace id */
|
9488
|
+
teamId?: Maybe<Scalars["String"]>;
|
9489
|
+
/** Slack workspace name */
|
9490
|
+
teamName?: Maybe<Scalars["String"]>;
|
9485
9491
|
};
|
9486
9492
|
export declare type SlackSettingsInput = {
|
9487
9493
|
/** Whether Linear should automatically respond with issue unfurls when an issue identifier is mentioned in a Slack message. */
|
9488
9494
|
linkOnIssueIdMention: Scalars["Boolean"];
|
9495
|
+
/** Slack workspace id */
|
9496
|
+
teamId?: Maybe<Scalars["String"]>;
|
9497
|
+
/** Slack workspace name */
|
9498
|
+
teamName?: Maybe<Scalars["String"]>;
|
9489
9499
|
};
|
9490
9500
|
/** Comparator for issue source type. */
|
9491
9501
|
export declare type SourceMetadataComparator = {
|
@@ -9650,7 +9660,10 @@ export declare type Team = Node & {
|
|
9650
9660
|
defaultTemplateForNonMembersId?: Maybe<Scalars["String"]>;
|
9651
9661
|
/** The team's description. */
|
9652
9662
|
description?: Maybe<Scalars["String"]>;
|
9653
|
-
/**
|
9663
|
+
/**
|
9664
|
+
* The workflow state into which issues are moved when a PR has been opened as draft.
|
9665
|
+
* @deprecated Use team.gitAutomationStates instead.
|
9666
|
+
*/
|
9654
9667
|
draftWorkflowState?: Maybe<WorkflowState>;
|
9655
9668
|
/** The Git automation states for the team. */
|
9656
9669
|
gitAutomationStates: GitAutomationStateConnection;
|
@@ -9674,6 +9687,11 @@ export declare type Team = Node & {
|
|
9674
9687
|
issueEstimationType: Scalars["String"];
|
9675
9688
|
/** Whether issues without priority should be sorted first. */
|
9676
9689
|
issueOrderingNoPriorityFirst: Scalars["Boolean"];
|
9690
|
+
/**
|
9691
|
+
* [DEPRECATED] Whether to move issues to bottom of the column when changing state.
|
9692
|
+
* @deprecated Use setIssueSortOrderOnStateChange instead.
|
9693
|
+
*/
|
9694
|
+
issueSortOrderDefaultToBottom: Scalars["Boolean"];
|
9677
9695
|
/** Issues associated with the team. */
|
9678
9696
|
issues: IssueConnection;
|
9679
9697
|
/** [INTERNAL] Whether new users should join this team by default. */
|
@@ -9688,9 +9706,15 @@ export declare type Team = Node & {
|
|
9688
9706
|
members: UserConnection;
|
9689
9707
|
/** Memberships associated with the team. For easier access of the same data, use `members` query. */
|
9690
9708
|
memberships: TeamMembershipConnection;
|
9691
|
-
/**
|
9709
|
+
/**
|
9710
|
+
* The workflow state into which issues are moved when a PR has been merged.
|
9711
|
+
* @deprecated Use team.gitAutomationStates instead.
|
9712
|
+
*/
|
9692
9713
|
mergeWorkflowState?: Maybe<WorkflowState>;
|
9693
|
-
/**
|
9714
|
+
/**
|
9715
|
+
* The workflow state into which issues are moved when a PR is ready to be merged.
|
9716
|
+
* @deprecated Use team.gitAutomationStates instead.
|
9717
|
+
*/
|
9694
9718
|
mergeableWorkflowState?: Maybe<WorkflowState>;
|
9695
9719
|
/** The team's name. */
|
9696
9720
|
name: Scalars["String"];
|
@@ -9702,7 +9726,10 @@ export declare type Team = Node & {
|
|
9702
9726
|
projects: ProjectConnection;
|
9703
9727
|
/** Whether an issue needs to have a priority set before leaving triage. */
|
9704
9728
|
requirePriorityToLeaveTriage: Scalars["Boolean"];
|
9705
|
-
/**
|
9729
|
+
/**
|
9730
|
+
* The workflow state into which issues are moved when a review has been requested for the PR.
|
9731
|
+
* @deprecated Use team.gitAutomationStates instead.
|
9732
|
+
*/
|
9706
9733
|
reviewWorkflowState?: Maybe<WorkflowState>;
|
9707
9734
|
/** Where to move issues when changing state. */
|
9708
9735
|
setIssueSortOrderOnStateChange: Scalars["String"];
|
@@ -9712,7 +9739,10 @@ export declare type Team = Node & {
|
|
9712
9739
|
slackIssueStatuses: Scalars["Boolean"];
|
9713
9740
|
/** Whether to send new issue notifications to Slack. */
|
9714
9741
|
slackNewIssue: Scalars["Boolean"];
|
9715
|
-
/**
|
9742
|
+
/**
|
9743
|
+
* The workflow state into which issues are moved when a PR has been opened.
|
9744
|
+
* @deprecated Use team.gitAutomationStates instead.
|
9745
|
+
*/
|
9716
9746
|
startWorkflowState?: Maybe<WorkflowState>;
|
9717
9747
|
/** The states that define the workflow associated with the team. */
|
9718
9748
|
states: WorkflowStateConnection;
|
@@ -10330,7 +10360,7 @@ export declare type TimeScheduleEntry = {
|
|
10330
10360
|
endsAt: Scalars["DateTime"];
|
10331
10361
|
/** The start date of the schedule in ISO 8601 date-time format. */
|
10332
10362
|
startsAt: Scalars["DateTime"];
|
10333
|
-
/** The email
|
10363
|
+
/** The email, name or reference to the user on schedule. This is used in case the external user could not be mapped to a Linear user id. */
|
10334
10364
|
userEmail?: Maybe<Scalars["String"]>;
|
10335
10365
|
/** The Linear user id of the user on schedule. If the user cannot be mapped to a Linear user then `userEmail` can be used as a reference. */
|
10336
10366
|
userId?: Maybe<Scalars["String"]>;
|
@@ -10340,7 +10370,7 @@ export declare type TimeScheduleEntryInput = {
|
|
10340
10370
|
endsAt: Scalars["DateTime"];
|
10341
10371
|
/** The start date of the schedule in ISO 8601 date-time format. */
|
10342
10372
|
startsAt: Scalars["DateTime"];
|
10343
|
-
/** The email
|
10373
|
+
/** The email, name or reference to the user on schedule. This is used in case the external user could not be mapped to a Linear user id. */
|
10344
10374
|
userEmail?: Maybe<Scalars["String"]>;
|
10345
10375
|
/** The Linear user id of the user on schedule. If the user cannot be mapped to a Linear user then `userEmail` can be used as a reference. */
|
10346
10376
|
userId?: Maybe<Scalars["String"]>;
|
@@ -10895,7 +10925,20 @@ export declare type UserSettings = Node & {
|
|
10895
10925
|
notificationPreferences: Scalars["JSONObject"];
|
10896
10926
|
/** Whether to show full user names instead of display names. */
|
10897
10927
|
showFullUserNames: Scalars["Boolean"];
|
10898
|
-
/**
|
10928
|
+
/** Whether this user is subscribed to changelog email or not. */
|
10929
|
+
subscribedToChangelog: Scalars["Boolean"];
|
10930
|
+
/** Whether this user is subscribed to DPA emails or not. */
|
10931
|
+
subscribedToDPA: Scalars["Boolean"];
|
10932
|
+
/** Whether this user is subscribed to invite accepted emails or not. */
|
10933
|
+
subscribedToInviteAccepted: Scalars["Boolean"];
|
10934
|
+
/** Whether this user is subscribed to privacy and legal update emails or not. */
|
10935
|
+
subscribedToPrivacyLegalUpdates: Scalars["Boolean"];
|
10936
|
+
/** Whether this user is subscribed to unread notifications reminder emails or not. */
|
10937
|
+
subscribedToUnreadNotificationsReminder: Scalars["Boolean"];
|
10938
|
+
/**
|
10939
|
+
* The email types the user has unsubscribed from.
|
10940
|
+
* @deprecated Use individual subscription fields instead.
|
10941
|
+
*/
|
10899
10942
|
unsubscribedFrom: Array<Scalars["String"]>;
|
10900
10943
|
/**
|
10901
10944
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
@@ -10938,6 +10981,16 @@ export declare type UserSettingsUpdateInput = {
|
|
10938
10981
|
notificationPreferences?: Maybe<Scalars["JSONObject"]>;
|
10939
10982
|
/** The user's settings. */
|
10940
10983
|
settings?: Maybe<Scalars["JSONObject"]>;
|
10984
|
+
/** Whether this user is subscribed to changelog email or not. */
|
10985
|
+
subscribedToChangelog?: Maybe<Scalars["Boolean"]>;
|
10986
|
+
/** Whether this user is subscribed to DPA emails or not. */
|
10987
|
+
subscribedToDPA?: Maybe<Scalars["Boolean"]>;
|
10988
|
+
/** Whether this user is subscribed to invite accepted emails or not. */
|
10989
|
+
subscribedToInviteAccepted?: Maybe<Scalars["Boolean"]>;
|
10990
|
+
/** Whether this user is subscribed to privacy and legal update emails or not. */
|
10991
|
+
subscribedToPrivacyLegalUpdates?: Maybe<Scalars["Boolean"]>;
|
10992
|
+
/** Whether this user is subscribed to email notifications reminder or not. */
|
10993
|
+
subscribedToUnreadNotificationsReminder?: Maybe<Scalars["Boolean"]>;
|
10941
10994
|
/** The types of emails the user has unsubscribed from. */
|
10942
10995
|
unsubscribedFrom?: Maybe<Array<Scalars["String"]>>;
|
10943
10996
|
/** [Internal] The user's usage warning history. */
|
@@ -12259,6 +12312,9 @@ export declare type IssueFragment = {
|
|
12259
12312
|
botActor?: Maybe<{
|
12260
12313
|
__typename?: "ActorBot";
|
12261
12314
|
} & ActorBotFragment>;
|
12315
|
+
sourceComment?: Maybe<{
|
12316
|
+
__typename?: "Comment";
|
12317
|
+
} & Pick<Comment, "id">>;
|
12262
12318
|
cycle?: Maybe<{
|
12263
12319
|
__typename?: "Cycle";
|
12264
12320
|
} & Pick<Cycle, "id">>;
|
@@ -12327,7 +12383,7 @@ export declare type AuthOrganizationFragment = {
|
|
12327
12383
|
} & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
|
12328
12384
|
export declare type TeamFragment = {
|
12329
12385
|
__typename: "Team";
|
12330
|
-
} & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "issueOrderingNoPriorityFirst" | "private" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled"> & {
|
12386
|
+
} & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "issueOrderingNoPriorityFirst" | "private" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueSortOrderDefaultToBottom"> & {
|
12331
12387
|
integrationsSettings?: Maybe<{
|
12332
12388
|
__typename?: "IntegrationsSettings";
|
12333
12389
|
} & Pick<IntegrationsSettings, "id">>;
|
@@ -12718,10 +12774,13 @@ export declare type SentrySettingsFragment = {
|
|
12718
12774
|
} & Pick<SentrySettings, "organizationSlug">;
|
12719
12775
|
export declare type SlackSettingsFragment = {
|
12720
12776
|
__typename: "SlackSettings";
|
12721
|
-
} & Pick<SlackSettings, "linkOnIssueIdMention">;
|
12777
|
+
} & Pick<SlackSettings, "teamId" | "teamName" | "linkOnIssueIdMention">;
|
12778
|
+
export declare type SharedSlackSettingsFragment = {
|
12779
|
+
__typename: "SharedSlackSettings";
|
12780
|
+
} & Pick<SharedSlackSettings, "teamId" | "teamName">;
|
12722
12781
|
export declare type SlackAsksSettingsFragment = {
|
12723
12782
|
__typename: "SlackAsksSettings";
|
12724
|
-
} & {
|
12783
|
+
} & Pick<SlackAsksSettings, "teamId" | "teamName"> & {
|
12725
12784
|
slackChannelMapping?: Maybe<Array<{
|
12726
12785
|
__typename?: "SlackChannelNameMapping";
|
12727
12786
|
} & SlackChannelNameMappingFragment>>;
|
@@ -12806,7 +12865,7 @@ export declare type PaidSubscriptionFragment = {
|
|
12806
12865
|
};
|
12807
12866
|
export declare type UserSettingsFragment = {
|
12808
12867
|
__typename: "UserSettings";
|
12809
|
-
} & Pick<UserSettings, "calendarHash" | "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id" | "showFullUserNames"> & {
|
12868
|
+
} & Pick<UserSettings, "calendarHash" | "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id" | "subscribedToDPA" | "subscribedToChangelog" | "subscribedToInviteAccepted" | "subscribedToPrivacyLegalUpdates" | "subscribedToUnreadNotificationsReminder" | "showFullUserNames"> & {
|
12810
12869
|
user: {
|
12811
12870
|
__typename?: "User";
|
12812
12871
|
} & Pick<User, "id">;
|
@@ -13391,6 +13450,9 @@ export declare type IssueSearchResultFragment = {
|
|
13391
13450
|
botActor?: Maybe<{
|
13392
13451
|
__typename?: "ActorBot";
|
13393
13452
|
} & ActorBotFragment>;
|
13453
|
+
sourceComment?: Maybe<{
|
13454
|
+
__typename?: "Comment";
|
13455
|
+
} & Pick<Comment, "id">>;
|
13394
13456
|
cycle?: Maybe<{
|
13395
13457
|
__typename?: "Cycle";
|
13396
13458
|
} & Pick<Cycle, "id">>;
|
@@ -14674,6 +14736,7 @@ export declare type CustomView_IssuesQueryVariables = Exact<{
|
|
14674
14736
|
includeArchived?: Maybe<Scalars["Boolean"]>;
|
14675
14737
|
last?: Maybe<Scalars["Int"]>;
|
14676
14738
|
orderBy?: Maybe<PaginationOrderBy>;
|
14739
|
+
sort?: Maybe<Array<IssueSortInput> | IssueSortInput>;
|
14677
14740
|
}>;
|
14678
14741
|
export declare type CustomView_IssuesQuery = {
|
14679
14742
|
__typename?: "Query";
|
@@ -17088,16 +17151,6 @@ export declare type AttachmentLinkZendeskMutation = {
|
|
17088
17151
|
__typename?: "AttachmentPayload";
|
17089
17152
|
} & AttachmentPayloadFragment;
|
17090
17153
|
};
|
17091
|
-
export declare type AttachmentUnsyncSlackMutationVariables = Exact<{
|
17092
|
-
id: Scalars["String"];
|
17093
|
-
}>;
|
17094
|
-
export declare type AttachmentUnsyncSlackMutation = {
|
17095
|
-
__typename?: "Mutation";
|
17096
|
-
} & {
|
17097
|
-
attachmentUnsyncSlack: {
|
17098
|
-
__typename?: "AttachmentPayload";
|
17099
|
-
} & AttachmentPayloadFragment;
|
17100
|
-
};
|
17101
17154
|
export declare type UpdateAttachmentMutationVariables = Exact<{
|
17102
17155
|
id: Scalars["String"];
|
17103
17156
|
input: AttachmentUpdateInput;
|
@@ -19150,6 +19203,7 @@ export declare const GithubOrgFragmentDoc: DocumentNode<GithubOrgFragment, unkno
|
|
19150
19203
|
export declare const GithubOAuthTokenPayloadFragmentDoc: DocumentNode<GithubOAuthTokenPayloadFragment, unknown>;
|
19151
19204
|
export declare const UserAuthorizedApplicationFragmentDoc: DocumentNode<UserAuthorizedApplicationFragment, unknown>;
|
19152
19205
|
export declare const ApplicationFragmentDoc: DocumentNode<ApplicationFragment, unknown>;
|
19206
|
+
export declare const SharedSlackSettingsFragmentDoc: DocumentNode<SharedSlackSettingsFragment, unknown>;
|
19153
19207
|
export declare const FrontSettingsFragmentDoc: DocumentNode<FrontSettingsFragment, unknown>;
|
19154
19208
|
export declare const TeamRepoMappingFragmentDoc: DocumentNode<TeamRepoMappingFragment, unknown>;
|
19155
19209
|
export declare const GitHubRepoFragmentDoc: DocumentNode<GitHubRepoFragment, unknown>;
|
@@ -19570,6 +19624,7 @@ export declare const CustomView_IssuesDocument: DocumentNode<CustomView_IssuesQu
|
|
19570
19624
|
includeArchived?: Maybe<boolean> | undefined;
|
19571
19625
|
last?: Maybe<number> | undefined;
|
19572
19626
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
19627
|
+
sort?: Maybe<IssueSortInput | IssueSortInput[]> | undefined;
|
19573
19628
|
}>>;
|
19574
19629
|
export declare const CustomViewHasSubscribersDocument: DocumentNode<CustomViewHasSubscribersQuery, Exact<{
|
19575
19630
|
id: Scalars["String"];
|
@@ -20655,9 +20710,6 @@ export declare const AttachmentLinkZendeskDocument: DocumentNode<AttachmentLinkZ
|
|
20655
20710
|
ticketId: Scalars["String"];
|
20656
20711
|
title?: Maybe<string> | undefined;
|
20657
20712
|
}>>;
|
20658
|
-
export declare const AttachmentUnsyncSlackDocument: DocumentNode<AttachmentUnsyncSlackMutation, Exact<{
|
20659
|
-
id: Scalars["String"];
|
20660
|
-
}>>;
|
20661
20713
|
export declare const UpdateAttachmentDocument: DocumentNode<UpdateAttachmentMutation, Exact<{
|
20662
20714
|
id: Scalars["String"];
|
20663
20715
|
input: AttachmentUpdateInput;
|