@linear/sdk 7.0.0 → 8.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.
@@ -29,6 +29,21 @@ export declare type Scalars = {
29
29
  /** A universally unique identifier as specified by RFC 4122. */
30
30
  UUID: any;
31
31
  };
32
+ /** A bot actor is an actor that is not a user, but an application or integration. */
33
+ export declare type ActorBot = {
34
+ __typename?: "ActorBot";
35
+ /** A url pointing to the avatar representing this bot. */
36
+ avatarUrl?: Maybe<Scalars["String"]>;
37
+ id: Scalars["ID"];
38
+ /** The display name of the bot. */
39
+ name?: Maybe<Scalars["String"]>;
40
+ /** The sub type of the bot. */
41
+ subType?: Maybe<Scalars["String"]>;
42
+ /** The type of bot. */
43
+ type: Scalars["String"];
44
+ /** The display name of the external user on behalf of which the bot acted. */
45
+ userDisplayName?: Maybe<Scalars["String"]>;
46
+ };
32
47
  export declare type AirbyteConfigurationInput = {
33
48
  /** Linear export API key. */
34
49
  apiKey: Scalars["String"];
@@ -117,6 +132,17 @@ export declare type ArchiveResponse = {
117
132
  /** The total number of entities in the archive. */
118
133
  totalCount: Scalars["Float"];
119
134
  };
135
+ export declare type AsksChannelConnectPayload = {
136
+ __typename?: "AsksChannelConnectPayload";
137
+ /** The integration that was created or updated. */
138
+ integration?: Maybe<Integration>;
139
+ /** The identifier of the last sync operation. */
140
+ lastSyncId: Scalars["Float"];
141
+ /** The new Asks Slack channel mapping for the connected channel. */
142
+ mapping: SlackChannelNameMapping;
143
+ /** Whether the operation was successful. */
144
+ success: Scalars["Boolean"];
145
+ };
120
146
  /** Issue attachment (e.g. support ticket, pull request). */
121
147
  export declare type Attachment = Node & {
122
148
  __typename?: "Attachment";
@@ -126,6 +152,8 @@ export declare type Attachment = Node & {
126
152
  createdAt: Scalars["DateTime"];
127
153
  /** The creator of the attachment. */
128
154
  creator?: Maybe<User>;
155
+ /** The non-Linear user who created the attachment. */
156
+ externalUserCreator?: Maybe<ExternalUser>;
129
157
  /** Indicates if attachments for the same source application should be grouped in the Linear UI. */
130
158
  groupBySource: Scalars["Boolean"];
131
159
  /** The unique identifier of the entity. */
@@ -258,6 +286,11 @@ export declare type AttachmentPayload = {
258
286
  /** Whether the operation was successful. */
259
287
  success: Scalars["Boolean"];
260
288
  };
289
+ export declare type AttachmentSourcesPayload = {
290
+ __typename?: "AttachmentSourcesPayload";
291
+ /** A unique list of all source types used in this workspace */
292
+ sources: Scalars["JSONObject"];
293
+ };
261
294
  export declare type AttachmentUpdateInput = {
262
295
  /** An icon url to display with the attachment. Should be of jpg or png format. Maximum of 1MB in size. Dimensions should be 20x20px for optimal display quality. */
263
296
  iconUrl?: Maybe<Scalars["String"]>;
@@ -392,6 +425,8 @@ export declare type Comment = Node & {
392
425
  body: Scalars["String"];
393
426
  /** The comment content as a Prosemirror document. */
394
427
  bodyData: Scalars["String"];
428
+ /** The bot that created the comment */
429
+ botActor?: Maybe<ActorBot>;
395
430
  /** The children of the comment. */
396
431
  children: CommentConnection;
397
432
  /** The time at which the entity was created. */
@@ -408,6 +443,10 @@ export declare type Comment = Node & {
408
443
  parent?: Maybe<Comment>;
409
444
  /** Emoji reaction summary, grouped by emoji type */
410
445
  reactionData: Scalars["JSONObject"];
446
+ /** [ALPHA] The comment that resolved the thread. */
447
+ resolvingComment?: Maybe<Comment>;
448
+ /** [ALPHA] The user that resolved the thread. */
449
+ resolvingUser?: Maybe<User>;
411
450
  /**
412
451
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
413
452
  * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
@@ -658,8 +697,8 @@ export declare type CustomView = Node & {
658
697
  name: Scalars["String"];
659
698
  /** The organization of the custom view. */
660
699
  organization: Organization;
661
- /** [ALPHA] The user who owns the custom view. */
662
- owner?: Maybe<User>;
700
+ /** The user who owns the custom view. */
701
+ owner: User;
663
702
  /** [ALPHA] The filter applied to projects in the custom view. */
664
703
  projectFilterData?: Maybe<Scalars["JSONObject"]>;
665
704
  /** Whether the custom view is shared with everyone in the organization. */
@@ -714,6 +753,8 @@ export declare type CustomViewEdge = {
714
753
  /** A custom view notification subscription. */
715
754
  export declare type CustomViewNotificationSubscription = Entity & Node & NotificationSubscription & {
716
755
  __typename?: "CustomViewNotificationSubscription";
756
+ /** Whether the subscription is active or not */
757
+ active: Scalars["Boolean"];
717
758
  /** The time at which the entity was archived. Null if the entity has not been archived. */
718
759
  archivedAt?: Maybe<Scalars["DateTime"]>;
719
760
  /** The type of view to which the notification subscription context is associated with. */
@@ -933,6 +974,8 @@ export declare type CycleFilter = {
933
974
  /** A cycle notification subscription. */
934
975
  export declare type CycleNotificationSubscription = Entity & Node & NotificationSubscription & {
935
976
  __typename?: "CycleNotificationSubscription";
977
+ /** Whether the subscription is active or not */
978
+ active: Scalars["Boolean"];
936
979
  /** The time at which the entity was archived. Null if the entity has not been archived. */
937
980
  archivedAt?: Maybe<Scalars["DateTime"]>;
938
981
  /** The type of view to which the notification subscription context is associated with. */
@@ -1079,12 +1122,16 @@ export declare type DocumentContent = Node & {
1079
1122
  content?: Maybe<Scalars["String"]>;
1080
1123
  /** The document content as JSON. */
1081
1124
  contentData?: Maybe<Scalars["JSONObject"]>;
1125
+ /** The document content state as a base64 encoded string. */
1126
+ contentState?: Maybe<Scalars["JSONObject"]>;
1082
1127
  /** The time at which the entity was created. */
1083
1128
  createdAt: Scalars["DateTime"];
1084
1129
  /** The unique identifier of the entity. */
1085
1130
  id: Scalars["ID"];
1086
1131
  /** The issue that the document is associated with. */
1087
1132
  issue?: Maybe<Issue>;
1133
+ /** The project that the document is associated with. */
1134
+ project?: Maybe<Project>;
1088
1135
  /**
1089
1136
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1090
1137
  * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
@@ -1092,6 +1139,15 @@ export declare type DocumentContent = Node & {
1092
1139
  */
1093
1140
  updatedAt: Scalars["DateTime"];
1094
1141
  };
1142
+ /** Document content filtering options. */
1143
+ export declare type DocumentContentFilter = {
1144
+ /** Comparator for the created at date. */
1145
+ createdAt?: Maybe<DateComparator>;
1146
+ /** Comparator for the identifier. */
1147
+ id?: Maybe<IdComparator>;
1148
+ /** Comparator for the updated at date. */
1149
+ updatedAt?: Maybe<DateComparator>;
1150
+ };
1095
1151
  export declare type DocumentCreateInput = {
1096
1152
  /** The color of the icon. */
1097
1153
  color?: Maybe<Scalars["String"]>;
@@ -1551,12 +1607,10 @@ export declare type FirstResponderSchedule = Node & {
1551
1607
  createdAt: Scalars["DateTime"];
1552
1608
  /** The unique identifier of the entity. */
1553
1609
  id: Scalars["ID"];
1554
- /** The integration used for scheduling. */
1610
+ /** The integration used for time scheduling. */
1555
1611
  integration: Integration;
1556
- /** The id of the integration schedule used for scheduling. */
1557
- integrationScheduleId?: Maybe<Scalars["String"]>;
1558
- /** The current schedule and available schedules. */
1559
- scheduleData: Scalars["JSONObject"];
1612
+ /** The schedule information. */
1613
+ scheduleData?: Maybe<Scalars["JSONObject"]>;
1560
1614
  /** The team to which the schedule belongs to. */
1561
1615
  team: Team;
1562
1616
  /**
@@ -1629,12 +1683,16 @@ export declare type GitHubSettings = {
1629
1683
  orgAvatarUrl: Scalars["String"];
1630
1684
  /** The GitHub organization's name */
1631
1685
  orgLogin: Scalars["String"];
1686
+ /** The names of the repositories connected for the GitHub integration */
1687
+ repositories?: Maybe<Array<Scalars["String"]>>;
1632
1688
  };
1633
1689
  export declare type GitHubSettingsInput = {
1634
1690
  /** The avatar URL for the GitHub organization */
1635
1691
  orgAvatarUrl: Scalars["String"];
1636
1692
  /** The GitHub organization's name */
1637
1693
  orgLogin: Scalars["String"];
1694
+ /** The names of the repositories connected for the GitHub integration */
1695
+ repositories?: Maybe<Array<Scalars["String"]>>;
1638
1696
  };
1639
1697
  /** GitHub OAuth token, plus information about the organizations the user is a member of. */
1640
1698
  export declare type GithubOAuthTokenPayload = {
@@ -1683,6 +1741,8 @@ export declare type GoogleSheetsSettingsInput = {
1683
1741
  export declare type GoogleUserAccountAuthInput = {
1684
1742
  /** Code returned from Google's OAuth flow. */
1685
1743
  code: Scalars["String"];
1744
+ /** An optional invite link for an organization. */
1745
+ inviteLink?: Maybe<Scalars["String"]>;
1686
1746
  /** The URI to redirect the user to. */
1687
1747
  redirectUri?: Maybe<Scalars["String"]>;
1688
1748
  /** Signup code. */
@@ -1779,6 +1839,7 @@ export declare type IntegrationSettings = {
1779
1839
  notion?: Maybe<NotionSettings>;
1780
1840
  pagerDuty?: Maybe<PagerDutySettings>;
1781
1841
  sentry?: Maybe<SentrySettings>;
1842
+ slackAsks?: Maybe<SlackAsksSettings>;
1782
1843
  slackOrgProjectUpdatesPost?: Maybe<SlackPostSettings>;
1783
1844
  slackPost?: Maybe<SlackPostSettings>;
1784
1845
  slackProjectPost?: Maybe<SlackPostSettings>;
@@ -1793,6 +1854,7 @@ export declare type IntegrationSettingsInput = {
1793
1854
  notion?: Maybe<NotionSettingsInput>;
1794
1855
  pagerDuty?: Maybe<PagerDutyInput>;
1795
1856
  sentry?: Maybe<SentrySettingsInput>;
1857
+ slackAsks?: Maybe<SlackAsksSettingsInput>;
1796
1858
  slackOrgProjectUpdatesPost?: Maybe<SlackPostSettingsInput>;
1797
1859
  slackPost?: Maybe<SlackPostSettingsInput>;
1798
1860
  slackProjectPost?: Maybe<SlackPostSettingsInput>;
@@ -1805,6 +1867,8 @@ export declare type IntegrationTemplate = Node & {
1805
1867
  archivedAt?: Maybe<Scalars["DateTime"]>;
1806
1868
  /** The time at which the entity was created. */
1807
1869
  createdAt: Scalars["DateTime"];
1870
+ /** ID of the foreign entity in the external integration this template is for, e.g., Slack channel ID. */
1871
+ foreignEntityId?: Maybe<Scalars["String"]>;
1808
1872
  /** The unique identifier of the entity. */
1809
1873
  id: Scalars["ID"];
1810
1874
  /** The integration that the template is associated with. */
@@ -1825,6 +1889,8 @@ export declare type IntegrationTemplateConnection = {
1825
1889
  pageInfo: PageInfo;
1826
1890
  };
1827
1891
  export declare type IntegrationTemplateCreateInput = {
1892
+ /** The foreign identifier in the other service. */
1893
+ foreignEntityId?: Maybe<Scalars["String"]>;
1828
1894
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
1829
1895
  id?: Maybe<Scalars["String"]>;
1830
1896
  /** The identifier of the integration. */
@@ -2310,6 +2376,8 @@ export declare type IssueCreateInput = {
2310
2376
  labelIds?: Maybe<Array<Scalars["String"]>>;
2311
2377
  /** The identifier of the parent issue. */
2312
2378
  parentId?: Maybe<Scalars["String"]>;
2379
+ /** Whether the passed sort order should be preserved */
2380
+ preserveSortOrderOnCreate?: Maybe<Scalars["Boolean"]>;
2313
2381
  /** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
2314
2382
  priority?: Maybe<Scalars["Int"]>;
2315
2383
  /** The project associated with the issue. */
@@ -2498,6 +2566,8 @@ export declare type IssueHistory = Node & {
2498
2566
  autoArchived?: Maybe<Scalars["Boolean"]>;
2499
2567
  /** Whether the issue was auto-closed. */
2500
2568
  autoClosed?: Maybe<Scalars["Boolean"]>;
2569
+ /** The bot that performed the action */
2570
+ botActor?: Maybe<ActorBot>;
2501
2571
  /** [Internal] Serialized JSON representing changes for certain non-relational properties. */
2502
2572
  changes?: Maybe<Scalars["JSONObject"]>;
2503
2573
  /** The time at which the entity was created. */
@@ -2690,6 +2760,8 @@ export declare type IssueLabel = Node & {
2690
2760
  description?: Maybe<Scalars["String"]>;
2691
2761
  /** The unique identifier of the entity. */
2692
2762
  id: Scalars["ID"];
2763
+ /** Whether this label is considered to be a group. */
2764
+ isGroup: Scalars["Boolean"];
2693
2765
  /** Issues associated with the label. */
2694
2766
  issues: IssueConnection;
2695
2767
  /** The label's name. */
@@ -2827,6 +2899,8 @@ export declare type IssueNotification = Entity & Node & Notification & {
2827
2899
  actor?: Maybe<User>;
2828
2900
  /** The time at which the entity was archived. Null if the entity has not been archived. */
2829
2901
  archivedAt?: Maybe<Scalars["DateTime"]>;
2902
+ /** The bot that caused the notification. */
2903
+ botActor?: Maybe<ActorBot>;
2830
2904
  /** The comment related to the notification. */
2831
2905
  comment?: Maybe<Comment>;
2832
2906
  /** The time at which the entity was created. */
@@ -3203,7 +3277,7 @@ export declare type IssueUpdateInput = {
3203
3277
  teamId?: Maybe<Scalars["String"]>;
3204
3278
  /** The issue title. */
3205
3279
  title?: Maybe<Scalars["String"]>;
3206
- /** Wether the issue has been trashed. */
3280
+ /** Whether the issue has been trashed. */
3207
3281
  trashed?: Maybe<Scalars["Boolean"]>;
3208
3282
  };
3209
3283
  export declare type JiraConfigurationInput = {
@@ -3263,12 +3337,16 @@ export declare type JiraSettingsInput = {
3263
3337
  projects: Array<JiraProjectDataInput>;
3264
3338
  };
3265
3339
  export declare type JoinOrganizationInput = {
3340
+ /** An optional invite link for an organization. */
3341
+ inviteLink?: Maybe<Scalars["String"]>;
3266
3342
  /** The identifier of the organization. */
3267
3343
  organizationId: Scalars["String"];
3268
3344
  };
3269
3345
  /** A label notification subscription. */
3270
3346
  export declare type LabelNotificationSubscription = Entity & Node & NotificationSubscription & {
3271
3347
  __typename?: "LabelNotificationSubscription";
3348
+ /** Whether the subscription is active or not */
3349
+ active: Scalars["Boolean"];
3272
3350
  /** The time at which the entity was archived. Null if the entity has not been archived. */
3273
3351
  archivedAt?: Maybe<Scalars["DateTime"]>;
3274
3352
  /** The type of view to which the notification subscription context is associated with. */
@@ -3346,6 +3424,10 @@ export declare type Mutation = {
3346
3424
  commentCreate: CommentPayload;
3347
3425
  /** Deletes a comment. */
3348
3426
  commentDelete: DeletePayload;
3427
+ /** [ALPHA] Resolves a comment. */
3428
+ commentResolve: CommentPayload;
3429
+ /** [ALPHA] Unresolves a comment. */
3430
+ commentUnresolve: CommentPayload;
3349
3431
  /** Updates a comment. */
3350
3432
  commentUpdate: CommentPayload;
3351
3433
  /** Saves user message. */
@@ -3400,6 +3482,8 @@ export declare type Mutation = {
3400
3482
  imageUploadFromUrl: ImageUploadFromUrlPayload;
3401
3483
  /** XHR request payload to upload a file for import, directly to Linear's cloud storage. */
3402
3484
  importFileUpload: UploadPayload;
3485
+ /** Connect a Slack channel to Asks. */
3486
+ integrationAsksConnectChannel: AsksChannelConnectPayload;
3403
3487
  /** Deletes an integration. */
3404
3488
  integrationDelete: DeletePayload;
3405
3489
  /** Integrates the organization with Discord. */
@@ -3431,7 +3515,7 @@ export declare type Mutation = {
3431
3515
  */
3432
3516
  integrationLoom: IntegrationPayload;
3433
3517
  /** [INTERNAL] Integrates the organization with PagerDuty. */
3434
- integrationPageDutyConnect: IntegrationPayload;
3518
+ integrationPagerDutyConnect: IntegrationPayload;
3435
3519
  /** Requests a currently unavailable integration. */
3436
3520
  integrationRequest: IntegrationRequestPayload;
3437
3521
  /** Integrates the organization with Sentry. */
@@ -3528,7 +3612,10 @@ export declare type Mutation = {
3528
3612
  notificationSnoozeAll: NotificationBatchActionPayload;
3529
3613
  /** Creates a new notification subscription for a cycle, custom view, label, project or team. */
3530
3614
  notificationSubscriptionCreate: NotificationSubscriptionPayload;
3531
- /** Deletes a notification subscription reference. */
3615
+ /**
3616
+ * Deletes a notification subscription reference.
3617
+ * @deprecated Update `notificationSubscription.active` to `false` instead.
3618
+ */
3532
3619
  notificationSubscriptionDelete: DeletePayload;
3533
3620
  /** Updates a notification subscription. */
3534
3621
  notificationSubscriptionUpdate: NotificationSubscriptionPayload;
@@ -3569,8 +3656,8 @@ export declare type Mutation = {
3569
3656
  projectArchive: ProjectArchivePayload;
3570
3657
  /** Creates a new project. */
3571
3658
  projectCreate: ProjectPayload;
3572
- /** Deletes a project. All issues will be disassociated from the deleted project. */
3573
- projectDelete: DeletePayload;
3659
+ /** Deletes (trashes) a project. */
3660
+ projectDelete: ProjectArchivePayload;
3574
3661
  /** Creates a new project link. */
3575
3662
  projectLinkCreate: ProjectLinkPayload;
3576
3663
  /** Deletes a project link. */
@@ -3720,16 +3807,22 @@ export declare type MutationAttachmentDeleteArgs = {
3720
3807
  };
3721
3808
  export declare type MutationAttachmentLinkDiscordArgs = {
3722
3809
  channelId: Scalars["String"];
3810
+ createAsUser?: Maybe<Scalars["String"]>;
3811
+ displayIconUrl?: Maybe<Scalars["String"]>;
3723
3812
  issueId: Scalars["String"];
3724
3813
  messageId: Scalars["String"];
3725
3814
  url: Scalars["String"];
3726
3815
  };
3727
3816
  export declare type MutationAttachmentLinkFrontArgs = {
3728
3817
  conversationId: Scalars["String"];
3818
+ createAsUser?: Maybe<Scalars["String"]>;
3819
+ displayIconUrl?: Maybe<Scalars["String"]>;
3729
3820
  issueId: Scalars["String"];
3730
3821
  };
3731
3822
  export declare type MutationAttachmentLinkIntercomArgs = {
3732
3823
  conversationId: Scalars["String"];
3824
+ createAsUser?: Maybe<Scalars["String"]>;
3825
+ displayIconUrl?: Maybe<Scalars["String"]>;
3733
3826
  issueId: Scalars["String"];
3734
3827
  };
3735
3828
  export declare type MutationAttachmentLinkJiraIssueArgs = {
@@ -3738,6 +3831,8 @@ export declare type MutationAttachmentLinkJiraIssueArgs = {
3738
3831
  };
3739
3832
  export declare type MutationAttachmentLinkSlackArgs = {
3740
3833
  channel: Scalars["String"];
3834
+ createAsUser?: Maybe<Scalars["String"]>;
3835
+ displayIconUrl?: Maybe<Scalars["String"]>;
3741
3836
  id?: Maybe<Scalars["String"]>;
3742
3837
  issueId: Scalars["String"];
3743
3838
  latest: Scalars["String"];
@@ -3746,12 +3841,16 @@ export declare type MutationAttachmentLinkSlackArgs = {
3746
3841
  url: Scalars["String"];
3747
3842
  };
3748
3843
  export declare type MutationAttachmentLinkUrlArgs = {
3844
+ createAsUser?: Maybe<Scalars["String"]>;
3845
+ displayIconUrl?: Maybe<Scalars["String"]>;
3749
3846
  id?: Maybe<Scalars["String"]>;
3750
3847
  issueId: Scalars["String"];
3751
3848
  title?: Maybe<Scalars["String"]>;
3752
3849
  url: Scalars["String"];
3753
3850
  };
3754
3851
  export declare type MutationAttachmentLinkZendeskArgs = {
3852
+ createAsUser?: Maybe<Scalars["String"]>;
3853
+ displayIconUrl?: Maybe<Scalars["String"]>;
3755
3854
  issueId: Scalars["String"];
3756
3855
  ticketId: Scalars["String"];
3757
3856
  };
@@ -3768,6 +3867,13 @@ export declare type MutationCommentCreateArgs = {
3768
3867
  export declare type MutationCommentDeleteArgs = {
3769
3868
  id: Scalars["String"];
3770
3869
  };
3870
+ export declare type MutationCommentResolveArgs = {
3871
+ id: Scalars["String"];
3872
+ resolvingCommentId?: Maybe<Scalars["String"]>;
3873
+ };
3874
+ export declare type MutationCommentUnresolveArgs = {
3875
+ id: Scalars["String"];
3876
+ };
3771
3877
  export declare type MutationCommentUpdateArgs = {
3772
3878
  id: Scalars["String"];
3773
3879
  input: CommentUpdateInput;
@@ -3862,6 +3968,10 @@ export declare type MutationImportFileUploadArgs = {
3862
3968
  metaData?: Maybe<Scalars["JSON"]>;
3863
3969
  size: Scalars["Int"];
3864
3970
  };
3971
+ export declare type MutationIntegrationAsksConnectChannelArgs = {
3972
+ code: Scalars["String"];
3973
+ redirectUri: Scalars["String"];
3974
+ };
3865
3975
  export declare type MutationIntegrationDeleteArgs = {
3866
3976
  id: Scalars["String"];
3867
3977
  };
@@ -3895,8 +4005,9 @@ export declare type MutationIntegrationIntercomArgs = {
3895
4005
  export declare type MutationIntegrationIntercomSettingsUpdateArgs = {
3896
4006
  input: IntercomSettingsInput;
3897
4007
  };
3898
- export declare type MutationIntegrationPageDutyConnectArgs = {
3899
- apiToken: Scalars["String"];
4008
+ export declare type MutationIntegrationPagerDutyConnectArgs = {
4009
+ code: Scalars["String"];
4010
+ redirectUri: Scalars["String"];
3900
4011
  };
3901
4012
  export declare type MutationIntegrationRequestArgs = {
3902
4013
  input: IntegrationRequestInput;
@@ -4158,6 +4269,7 @@ export declare type MutationOrganizationUpdateArgs = {
4158
4269
  };
4159
4270
  export declare type MutationProjectArchiveArgs = {
4160
4271
  id: Scalars["String"];
4272
+ trash?: Maybe<Scalars["Boolean"]>;
4161
4273
  };
4162
4274
  export declare type MutationProjectCreateArgs = {
4163
4275
  input: ProjectCreateInput;
@@ -4384,6 +4496,8 @@ export declare type Notification = {
4384
4496
  actor?: Maybe<User>;
4385
4497
  /** The time at which the entity was archived. Null if the entity has not been archived. */
4386
4498
  archivedAt?: Maybe<Scalars["DateTime"]>;
4499
+ /** The bot that caused the notification. */
4500
+ botActor?: Maybe<ActorBot>;
4387
4501
  /** The time at which the entity was created. */
4388
4502
  createdAt: Scalars["DateTime"];
4389
4503
  /**
@@ -4465,6 +4579,8 @@ export declare type NotificationPayload = {
4465
4579
  };
4466
4580
  /** Notification subscriptions for models. */
4467
4581
  export declare type NotificationSubscription = {
4582
+ /** Whether the subscription is active or not */
4583
+ active: Scalars["Boolean"];
4468
4584
  /** The time at which the entity was archived. Null if the entity has not been archived. */
4469
4585
  archivedAt?: Maybe<Scalars["DateTime"]>;
4470
4586
  /** The type of view to which the notification subscription context is associated with. */
@@ -4503,6 +4619,8 @@ export declare type NotificationSubscriptionConnection = {
4503
4619
  pageInfo: PageInfo;
4504
4620
  };
4505
4621
  export declare type NotificationSubscriptionCreateInput = {
4622
+ /** Whether the subscription is active. */
4623
+ active?: Maybe<Scalars["Boolean"]>;
4506
4624
  /** The type of view to which the notification subscription context is associated with. */
4507
4625
  contextViewType?: Maybe<ContextViewType>;
4508
4626
  /** The identifier of the custom view to subscribe to. */
@@ -4540,6 +4658,8 @@ export declare type NotificationSubscriptionPayload = {
4540
4658
  success: Scalars["Boolean"];
4541
4659
  };
4542
4660
  export declare type NotificationSubscriptionUpdateInput = {
4661
+ /** Whether the subscription is active. */
4662
+ active?: Maybe<Scalars["Boolean"]>;
4543
4663
  /** The types of notifications of the subscription. */
4544
4664
  notificationSubscriptionTypes?: Maybe<Array<Scalars["String"]>>;
4545
4665
  };
@@ -4625,6 +4745,15 @@ export declare type NullableDateComparator = {
4625
4745
  /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
4626
4746
  null?: Maybe<Scalars["Boolean"]>;
4627
4747
  };
4748
+ /** Document content filtering options. */
4749
+ export declare type NullableDocumentContentFilter = {
4750
+ /** Comparator for the created at date. */
4751
+ createdAt?: Maybe<DateComparator>;
4752
+ /** Comparator for the identifier. */
4753
+ id?: Maybe<IdComparator>;
4754
+ /** Comparator for the updated at date. */
4755
+ updatedAt?: Maybe<DateComparator>;
4756
+ };
4628
4757
  /** Issue filtering options. */
4629
4758
  export declare type NullableIssueFilter = {
4630
4759
  /** Compound filters, all of which need to be matched by the issue. */
@@ -5008,6 +5137,8 @@ export declare type OauthClientApprovalNotification = Entity & Node & Notificati
5008
5137
  actor?: Maybe<User>;
5009
5138
  /** The time at which the entity was archived. Null if the entity has not been archived. */
5010
5139
  archivedAt?: Maybe<Scalars["DateTime"]>;
5140
+ /** The bot that caused the notification. */
5141
+ botActor?: Maybe<ActorBot>;
5011
5142
  /** The time at which the entity was created. */
5012
5143
  createdAt: Scalars["DateTime"];
5013
5144
  /**
@@ -5099,8 +5230,12 @@ export declare type Organization = Node & {
5099
5230
  roadmapEnabled: Scalars["Boolean"];
5100
5231
  /** Whether SAML authentication is enabled for organization. */
5101
5232
  samlEnabled: Scalars["Boolean"];
5233
+ /** [INTERNAL] SAML settings */
5234
+ samlSettings: Scalars["JSONObject"];
5102
5235
  /** Whether SCIM provisioning is enabled for organization. */
5103
5236
  scimEnabled: Scalars["Boolean"];
5237
+ /** Which day count to use for SLA calculations */
5238
+ slaDayCount: SlaDayCountType;
5104
5239
  /** The organization's subscription to a paid plan. */
5105
5240
  subscription?: Maybe<PaidSubscription>;
5106
5241
  /** Teams associated with the organization. */
@@ -5284,6 +5419,8 @@ export declare type OrganizationInvite = Node & {
5284
5419
  invitee?: Maybe<User>;
5285
5420
  /** The user who created the invitation. */
5286
5421
  inviter: User;
5422
+ /** Extra metadata associated with the organization invite. */
5423
+ metadata: Scalars["JSONObject"];
5287
5424
  /** The organization that the invite is associated with. */
5288
5425
  organization: Organization;
5289
5426
  /** The user role that the invitee will receive upon accepting the invite. */
@@ -5308,6 +5445,8 @@ export declare type OrganizationInviteCreateInput = {
5308
5445
  id?: Maybe<Scalars["String"]>;
5309
5446
  /** The message to send to the invitee. */
5310
5447
  message?: Maybe<Scalars["String"]>;
5448
+ /** [INTERNAL] Optional metadata about the invite */
5449
+ metadata?: Maybe<Scalars["JSONObject"]>;
5311
5450
  /** What user role the invite should grant. */
5312
5451
  role?: Maybe<UserRoleType>;
5313
5452
  /** The teams that the user has been invited to. */
@@ -5467,6 +5606,10 @@ export declare type Project = Node & {
5467
5606
  completedIssueCountHistory: Array<Scalars["Float"]>;
5468
5607
  /** The number of completed estimation points after each week. */
5469
5608
  completedScopeHistory: Array<Scalars["Float"]>;
5609
+ /** The project's content in markdown format. */
5610
+ content?: Maybe<Scalars["String"]>;
5611
+ /** [Internal] The project's content as a Prosemirror document. */
5612
+ contentData?: Maybe<Scalars["JSON"]>;
5470
5613
  /** The project was created based on this issue. */
5471
5614
  convertedFromIssue?: Maybe<Issue>;
5472
5615
  /** The time at which the entity was created. */
@@ -5529,6 +5672,8 @@ export declare type Project = Node & {
5529
5672
  targetDate?: Maybe<Scalars["TimelessDate"]>;
5530
5673
  /** Teams associated with this project. */
5531
5674
  teams: TeamConnection;
5675
+ /** A flag that indicates whether the project is in the trash bin. */
5676
+ trashed?: Maybe<Scalars["Boolean"]>;
5532
5677
  /**
5533
5678
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
5534
5679
  * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
@@ -5941,6 +6086,8 @@ export declare type ProjectNotification = Entity & Node & Notification & {
5941
6086
  actor?: Maybe<User>;
5942
6087
  /** The time at which the entity was archived. Null if the entity has not been archived. */
5943
6088
  archivedAt?: Maybe<Scalars["DateTime"]>;
6089
+ /** The bot that caused the notification. */
6090
+ botActor?: Maybe<ActorBot>;
5944
6091
  /** The time at which the entity was created. */
5945
6092
  createdAt: Scalars["DateTime"];
5946
6093
  /**
@@ -5976,6 +6123,8 @@ export declare type ProjectNotification = Entity & Node & Notification & {
5976
6123
  /** A project notification subscription. */
5977
6124
  export declare type ProjectNotificationSubscription = Entity & Node & NotificationSubscription & {
5978
6125
  __typename?: "ProjectNotificationSubscription";
6126
+ /** Whether the subscription is active or not */
6127
+ active: Scalars["Boolean"];
5979
6128
  /** The time at which the entity was archived. Null if the entity has not been archived. */
5980
6129
  archivedAt?: Maybe<Scalars["DateTime"]>;
5981
6130
  /** The type of view to which the notification subscription context is associated with. */
@@ -6044,6 +6193,10 @@ export declare type ProjectSearchResult = Node & {
6044
6193
  completedIssueCountHistory: Array<Scalars["Float"]>;
6045
6194
  /** The number of completed estimation points after each week. */
6046
6195
  completedScopeHistory: Array<Scalars["Float"]>;
6196
+ /** The project's content in markdown format. */
6197
+ content?: Maybe<Scalars["String"]>;
6198
+ /** [Internal] The project's content as a Prosemirror document. */
6199
+ contentData?: Maybe<Scalars["JSON"]>;
6047
6200
  /** The project was created based on this issue. */
6048
6201
  convertedFromIssue?: Maybe<Issue>;
6049
6202
  /** The time at which the entity was created. */
@@ -6108,6 +6261,8 @@ export declare type ProjectSearchResult = Node & {
6108
6261
  targetDate?: Maybe<Scalars["TimelessDate"]>;
6109
6262
  /** Teams associated with this project. */
6110
6263
  teams: TeamConnection;
6264
+ /** A flag that indicates whether the project is in the trash bin. */
6265
+ trashed?: Maybe<Scalars["Boolean"]>;
6111
6266
  /**
6112
6267
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
6113
6268
  * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
@@ -6198,6 +6353,8 @@ export declare type ProjectUpdate = Node & {
6198
6353
  body: Scalars["String"];
6199
6354
  /** The time at which the entity was created. */
6200
6355
  createdAt: Scalars["DateTime"];
6356
+ /** The diff between the current update and the previous one. */
6357
+ diff?: Maybe<Scalars["JSON"]>;
6201
6358
  /** The time the project update was edited. */
6202
6359
  editedAt?: Maybe<Scalars["DateTime"]>;
6203
6360
  /** The health of the project at the time of the update. */
@@ -6349,6 +6506,7 @@ export declare type ProjectUpdatePayload = {
6349
6506
  };
6350
6507
  /** The frequency at which to send project update reminders. */
6351
6508
  export declare enum ProjectUpdateReminderFrequency {
6509
+ Month = "month",
6352
6510
  Never = "never",
6353
6511
  TwoWeeks = "twoWeeks",
6354
6512
  Week = "week"
@@ -6425,6 +6583,8 @@ export declare type PushSubscriptionTestPayload = {
6425
6583
  /** The different push subscription types */
6426
6584
  export declare enum PushSubscriptionType {
6427
6585
  Apple = "apple",
6586
+ AppleDevelopment = "appleDevelopment",
6587
+ Firebase = "firebase",
6428
6588
  Web = "web"
6429
6589
  }
6430
6590
  export declare type Query = {
@@ -6453,6 +6613,8 @@ export declare type Query = {
6453
6613
  * @deprecated Will be removed in near future, please use `attachmentsForURL` to get attachments and their issues instead.
6454
6614
  */
6455
6615
  attachmentIssue: Issue;
6616
+ /** [Internal] Get a list of all unique attachment sources in the workspace */
6617
+ attachmentSources: AttachmentSourcesPayload;
6456
6618
  /**
6457
6619
  * All issue attachments.
6458
6620
  *
@@ -6679,6 +6841,9 @@ export declare type QueryAttachmentArgs = {
6679
6841
  export declare type QueryAttachmentIssueArgs = {
6680
6842
  id: Scalars["String"];
6681
6843
  };
6844
+ export declare type QueryAttachmentSourcesArgs = {
6845
+ teamId?: Maybe<Scalars["String"]>;
6846
+ };
6682
6847
  export declare type QueryAttachmentsArgs = {
6683
6848
  after?: Maybe<Scalars["String"]>;
6684
6849
  before?: Maybe<Scalars["String"]>;
@@ -7007,6 +7172,7 @@ export declare type QuerySearchDocumentsArgs = {
7007
7172
  includeArchived?: Maybe<Scalars["Boolean"]>;
7008
7173
  last?: Maybe<Scalars["Int"]>;
7009
7174
  orderBy?: Maybe<PaginationOrderBy>;
7175
+ teamId?: Maybe<Scalars["String"]>;
7010
7176
  term: Scalars["String"];
7011
7177
  };
7012
7178
  export declare type QuerySearchIssuesArgs = {
@@ -7017,6 +7183,7 @@ export declare type QuerySearchIssuesArgs = {
7017
7183
  includeArchived?: Maybe<Scalars["Boolean"]>;
7018
7184
  last?: Maybe<Scalars["Int"]>;
7019
7185
  orderBy?: Maybe<PaginationOrderBy>;
7186
+ teamId?: Maybe<Scalars["String"]>;
7020
7187
  term: Scalars["String"];
7021
7188
  };
7022
7189
  export declare type QuerySearchProjectsArgs = {
@@ -7026,6 +7193,7 @@ export declare type QuerySearchProjectsArgs = {
7026
7193
  includeArchived?: Maybe<Scalars["Boolean"]>;
7027
7194
  last?: Maybe<Scalars["Int"]>;
7028
7195
  orderBy?: Maybe<PaginationOrderBy>;
7196
+ teamId?: Maybe<Scalars["String"]>;
7029
7197
  term: Scalars["String"];
7030
7198
  };
7031
7199
  export declare type QuerySsoUrlFromEmailArgs = {
@@ -7391,6 +7559,11 @@ export declare type RoadmapUpdateInput = {
7391
7559
  /** The sort order of the roadmap within the organization. */
7392
7560
  sortOrder?: Maybe<Scalars["Float"]>;
7393
7561
  };
7562
+ /** Which day count to use for SLA calculations */
7563
+ export declare enum SlaDayCountType {
7564
+ All = "all",
7565
+ OnlyBusinessDays = "onlyBusinessDays"
7566
+ }
7394
7567
  export declare type SamlConfiguration = {
7395
7568
  __typename?: "SamlConfiguration";
7396
7569
  /** The issuer's custom entity ID. */
@@ -7459,6 +7632,34 @@ export declare type SlaStatusComparator = {
7459
7632
  /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
7460
7633
  null?: Maybe<Scalars["Boolean"]>;
7461
7634
  };
7635
+ /** Slack Asks specific settings. */
7636
+ export declare type SlackAsksSettings = {
7637
+ __typename?: "SlackAsksSettings";
7638
+ /** The mapping of Slack channel ID => Slack channel name for connected channels. */
7639
+ slackChannelMapping?: Maybe<Array<SlackChannelNameMapping>>;
7640
+ };
7641
+ export declare type SlackAsksSettingsInput = {
7642
+ /** The mapping of Slack channel ID => Slack channel name for connected channels. */
7643
+ slackChannelMapping?: Maybe<Array<SlackChannelNameMappingInput>>;
7644
+ };
7645
+ /** Tuple for mapping Slack channel IDs to names */
7646
+ export declare type SlackChannelNameMapping = {
7647
+ __typename?: "SlackChannelNameMapping";
7648
+ /** The Slack channel ID. */
7649
+ id: Scalars["String"];
7650
+ /** Whether or not the Slack channel is private */
7651
+ isPrivate?: Maybe<Scalars["Boolean"]>;
7652
+ /** The Slack channel name. */
7653
+ name: Scalars["String"];
7654
+ };
7655
+ export declare type SlackChannelNameMappingInput = {
7656
+ /** The Slack channel ID. */
7657
+ id: Scalars["String"];
7658
+ /** Whether or not the Slack channel is private */
7659
+ isPrivate?: Maybe<Scalars["Boolean"]>;
7660
+ /** The Slack channel name. */
7661
+ name: Scalars["String"];
7662
+ };
7462
7663
  /** Slack notification specific settings. */
7463
7664
  export declare type SlackPostSettings = {
7464
7665
  __typename?: "SlackPostSettings";
@@ -7665,6 +7866,8 @@ export declare type Team = Node & {
7665
7866
  memberships: TeamMembershipConnection;
7666
7867
  /** The workflow state into which issues are moved when a PR has been merged. */
7667
7868
  mergeWorkflowState?: Maybe<WorkflowState>;
7869
+ /** The workflow state into which issues are moved when a PR is ready to be merged. */
7870
+ mergeableWorkflowState?: Maybe<WorkflowState>;
7668
7871
  /** The team's name. */
7669
7872
  name: Scalars["String"];
7670
7873
  /** The organization that the team is associated with. */
@@ -7982,6 +8185,8 @@ export declare type TeamMembershipUpdateInput = {
7982
8185
  /** A team notification subscription. */
7983
8186
  export declare type TeamNotificationSubscription = Entity & Node & NotificationSubscription & {
7984
8187
  __typename?: "TeamNotificationSubscription";
8188
+ /** Whether the subscription is active or not */
8189
+ active: Scalars["Boolean"];
7985
8190
  /** The time at which the entity was archived. Null if the entity has not been archived. */
7986
8191
  archivedAt?: Maybe<Scalars["DateTime"]>;
7987
8192
  /** The type of view to which the notification subscription context is associated with. */
@@ -8081,6 +8286,8 @@ export declare type TeamUpdateInput = {
8081
8286
  markedAsDuplicateWorkflowStateId?: Maybe<Scalars["String"]>;
8082
8287
  /** The workflow state into which issues are moved when a PR has been merged. */
8083
8288
  mergeWorkflowStateId?: Maybe<Scalars["String"]>;
8289
+ /** The workflow state into which issues are moved when a PR is ready to be merged. */
8290
+ mergeableWorkflowStateId?: Maybe<Scalars["String"]>;
8084
8291
  /** The name of the team. */
8085
8292
  name?: Maybe<Scalars["String"]>;
8086
8293
  /** Whether the team is private or not. */
@@ -8203,6 +8410,8 @@ export declare type TimelessDateComparator = {
8203
8410
  export declare type TokenUserAccountAuthInput = {
8204
8411
  /** The email which to login via the magic login code. */
8205
8412
  email: Scalars["String"];
8413
+ /** An optional invite link for an organization. */
8414
+ inviteLink?: Maybe<Scalars["String"]>;
8206
8415
  /** The identifiers of the teams to auto-join. */
8207
8416
  teamIdsToJoin?: Maybe<Array<Scalars["String"]>>;
8208
8417
  /** The timezone of the user's browser. */
@@ -8237,6 +8446,8 @@ export declare type UpdateOrganizationInput = {
8237
8446
  reducedPersonalInformation?: Maybe<Scalars["Boolean"]>;
8238
8447
  /** Whether the organization is using roadmap. */
8239
8448
  roadmapEnabled?: Maybe<Scalars["Boolean"]>;
8449
+ /** Which day count to use for SLA calculation. */
8450
+ slaDayCount?: Maybe<SlaDayCountType>;
8240
8451
  /** Internal. Whether SLAs have been enabled for the organization. */
8241
8452
  slaEnabled?: Maybe<Scalars["Boolean"]>;
8242
8453
  /** The URL key of the organization. */
@@ -8591,6 +8802,11 @@ export declare enum UserFlagType {
8591
8802
  TeamsPageIntroductionDismissed = "teamsPageIntroductionDismissed",
8592
8803
  ThreadedCommentsNudgeIsSeen = "threadedCommentsNudgeIsSeen",
8593
8804
  TriageWelcomeDismissed = "triageWelcomeDismissed",
8805
+ TryCyclesDismissed = "tryCyclesDismissed",
8806
+ TryGithubDismissed = "tryGithubDismissed",
8807
+ TryInvitePeopleDismissed = "tryInvitePeopleDismissed",
8808
+ TryRoadmapsDismissed = "tryRoadmapsDismissed",
8809
+ TryTriageDismissed = "tryTriageDismissed",
8594
8810
  UpdatedSlackThreadSyncIntegration = "updatedSlackThreadSyncIntegration"
8595
8811
  }
8596
8812
  /** Operations that can be applied to UserFlagType */
@@ -8603,6 +8819,8 @@ export declare enum UserFlagUpdateOperation {
8603
8819
  /** A user notification subscription. */
8604
8820
  export declare type UserNotificationSubscription = Entity & Node & NotificationSubscription & {
8605
8821
  __typename?: "UserNotificationSubscription";
8822
+ /** Whether the subscription is active or not */
8823
+ active: Scalars["Boolean"];
8606
8824
  /** The time at which the entity was archived. Null if the entity has not been archived. */
8607
8825
  archivedAt?: Maybe<Scalars["DateTime"]>;
8608
8826
  /** The type of view to which the notification subscription context is associated with. */
@@ -9235,9 +9453,15 @@ declare type Entity_UserNotificationSubscription_Fragment = {
9235
9453
  __typename: "UserNotificationSubscription";
9236
9454
  } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
9237
9455
  export declare type EntityFragment = Entity_CustomViewNotificationSubscription_Fragment | Entity_CycleNotificationSubscription_Fragment | Entity_IssueNotification_Fragment | Entity_LabelNotificationSubscription_Fragment | Entity_OauthClientApprovalNotification_Fragment | Entity_ProjectNotification_Fragment | Entity_ProjectNotificationSubscription_Fragment | Entity_TeamNotificationSubscription_Fragment | Entity_UserNotificationSubscription_Fragment;
9456
+ export declare type ActorBotFragment = {
9457
+ __typename: "ActorBot";
9458
+ } & Pick<ActorBot, "avatarUrl" | "name" | "userDisplayName" | "subType" | "type" | "id">;
9238
9459
  export declare type CommentFragment = {
9239
9460
  __typename: "Comment";
9240
9461
  } & Pick<Comment, "url" | "reactionData" | "bodyData" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id"> & {
9462
+ botActor?: Maybe<{
9463
+ __typename?: "ActorBot";
9464
+ } & ActorBotFragment>;
9241
9465
  issue: {
9242
9466
  __typename?: "Issue";
9243
9467
  } & Pick<Issue, "id">;
@@ -9264,7 +9488,7 @@ export declare type EmojiFragment = {
9264
9488
  };
9265
9489
  export declare type CustomViewNotificationSubscriptionFragment = {
9266
9490
  __typename: "CustomViewNotificationSubscription";
9267
- } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9491
+ } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9268
9492
  cycle?: Maybe<{
9269
9493
  __typename?: "Cycle";
9270
9494
  } & Pick<Cycle, "id">>;
@@ -9296,10 +9520,13 @@ export declare type CustomViewFragment = {
9296
9520
  creator: {
9297
9521
  __typename?: "User";
9298
9522
  } & Pick<User, "id">;
9523
+ owner: {
9524
+ __typename?: "User";
9525
+ } & Pick<User, "id">;
9299
9526
  };
9300
9527
  export declare type CycleNotificationSubscriptionFragment = {
9301
9528
  __typename: "CycleNotificationSubscription";
9302
- } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9529
+ } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9303
9530
  customView?: Maybe<{
9304
9531
  __typename?: "CustomView";
9305
9532
  } & Pick<CustomView, "id">>;
@@ -9324,10 +9551,13 @@ export declare type CycleNotificationSubscriptionFragment = {
9324
9551
  };
9325
9552
  export declare type DocumentContentFragment = {
9326
9553
  __typename: "DocumentContent";
9327
- } & Pick<DocumentContent, "contentData" | "content" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
9554
+ } & Pick<DocumentContent, "contentData" | "content" | "contentState" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
9328
9555
  issue?: Maybe<{
9329
9556
  __typename?: "Issue";
9330
9557
  } & Pick<Issue, "id">>;
9558
+ project?: Maybe<{
9559
+ __typename?: "Project";
9560
+ } & Pick<Project, "id">>;
9331
9561
  };
9332
9562
  export declare type DocumentFragment = {
9333
9563
  __typename: "Document";
@@ -9425,7 +9655,7 @@ export declare type DeletePayloadFragment = {
9425
9655
  } & Pick<DeletePayload, "entityId" | "lastSyncId" | "success">;
9426
9656
  export declare type LabelNotificationSubscriptionFragment = {
9427
9657
  __typename: "LabelNotificationSubscription";
9428
- } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9658
+ } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9429
9659
  customView?: Maybe<{
9430
9660
  __typename?: "CustomView";
9431
9661
  } & Pick<CustomView, "id">>;
@@ -9458,6 +9688,9 @@ export declare type ProjectMilestoneFragment = {
9458
9688
  declare type Notification_IssueNotification_Fragment = {
9459
9689
  __typename: "IssueNotification";
9460
9690
  } & Pick<IssueNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
9691
+ botActor?: Maybe<{
9692
+ __typename?: "ActorBot";
9693
+ } & ActorBotFragment>;
9461
9694
  actor?: Maybe<{
9462
9695
  __typename?: "User";
9463
9696
  } & Pick<User, "id">>;
@@ -9468,6 +9701,9 @@ declare type Notification_IssueNotification_Fragment = {
9468
9701
  declare type Notification_OauthClientApprovalNotification_Fragment = {
9469
9702
  __typename: "OauthClientApprovalNotification";
9470
9703
  } & Pick<OauthClientApprovalNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
9704
+ botActor?: Maybe<{
9705
+ __typename?: "ActorBot";
9706
+ } & ActorBotFragment>;
9471
9707
  actor?: Maybe<{
9472
9708
  __typename?: "User";
9473
9709
  } & Pick<User, "id">>;
@@ -9478,6 +9714,9 @@ declare type Notification_OauthClientApprovalNotification_Fragment = {
9478
9714
  declare type Notification_ProjectNotification_Fragment = {
9479
9715
  __typename: "ProjectNotification";
9480
9716
  } & Pick<ProjectNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
9717
+ botActor?: Maybe<{
9718
+ __typename?: "ActorBot";
9719
+ } & ActorBotFragment>;
9481
9720
  actor?: Maybe<{
9482
9721
  __typename?: "User";
9483
9722
  } & Pick<User, "id">>;
@@ -9488,7 +9727,7 @@ declare type Notification_ProjectNotification_Fragment = {
9488
9727
  export declare type NotificationFragment = Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
9489
9728
  export declare type ProjectNotificationSubscriptionFragment = {
9490
9729
  __typename: "ProjectNotificationSubscription";
9491
- } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9730
+ } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9492
9731
  customView?: Maybe<{
9493
9732
  __typename?: "CustomView";
9494
9733
  } & Pick<CustomView, "id">>;
@@ -9514,6 +9753,9 @@ export declare type ProjectNotificationSubscriptionFragment = {
9514
9753
  export declare type ProjectNotificationFragment = {
9515
9754
  __typename: "ProjectNotification";
9516
9755
  } & Pick<ProjectNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
9756
+ botActor?: Maybe<{
9757
+ __typename?: "ActorBot";
9758
+ } & ActorBotFragment>;
9517
9759
  project: {
9518
9760
  __typename?: "Project";
9519
9761
  } & Pick<Project, "id">;
@@ -9529,7 +9771,7 @@ export declare type ProjectNotificationFragment = {
9529
9771
  };
9530
9772
  export declare type ProjectFragment = {
9531
9773
  __typename: "Project";
9532
- } & Pick<Project, "url" | "targetDate" | "startDate" | "icon" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "progress" | "scope" | "color" | "description" | "name" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "autoArchivedAt" | "canceledAt" | "completedAt" | "startedAt" | "projectUpdateRemindersPausedUntilAt" | "scopeHistory" | "issueCountHistory" | "state" | "id" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses"> & {
9774
+ } & Pick<Project, "trashed" | "url" | "targetDate" | "startDate" | "icon" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "progress" | "scope" | "color" | "content" | "description" | "name" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "autoArchivedAt" | "canceledAt" | "completedAt" | "startedAt" | "projectUpdateRemindersPausedUntilAt" | "scopeHistory" | "issueCountHistory" | "state" | "id" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses"> & {
9533
9775
  integrationsSettings?: Maybe<{
9534
9776
  __typename?: "IntegrationsSettings";
9535
9777
  } & Pick<IntegrationsSettings, "id">>;
@@ -9556,6 +9798,9 @@ export declare type IssueHistoryFragment = {
9556
9798
  relationChanges?: Maybe<Array<{
9557
9799
  __typename?: "IssueRelationHistoryPayload";
9558
9800
  } & IssueRelationHistoryPayloadFragment>>;
9801
+ botActor?: Maybe<{
9802
+ __typename?: "ActorBot";
9803
+ } & ActorBotFragment>;
9559
9804
  issueImport?: Maybe<{
9560
9805
  __typename?: "IssueImport";
9561
9806
  } & IssueImportFragment>;
@@ -9630,7 +9875,7 @@ export declare type RoadmapFragment = {
9630
9875
  };
9631
9876
  export declare type FirstResponderScheduleFragment = {
9632
9877
  __typename: "FirstResponderSchedule";
9633
- } & Pick<FirstResponderSchedule, "scheduleData" | "integrationScheduleId" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
9878
+ } & Pick<FirstResponderSchedule, "updatedAt" | "scheduleData" | "archivedAt" | "createdAt" | "id"> & {
9634
9879
  integration: {
9635
9880
  __typename?: "Integration";
9636
9881
  } & Pick<Integration, "id">;
@@ -9654,7 +9899,7 @@ export declare type WorkflowStateFragment = {
9654
9899
  };
9655
9900
  export declare type TeamNotificationSubscriptionFragment = {
9656
9901
  __typename: "TeamNotificationSubscription";
9657
- } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9902
+ } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9658
9903
  customView?: Maybe<{
9659
9904
  __typename?: "CustomView";
9660
9905
  } & Pick<CustomView, "id">>;
@@ -9692,7 +9937,7 @@ export declare type TemplateFragment = {
9692
9937
  };
9693
9938
  export declare type ProjectUpdateFragment = {
9694
9939
  __typename: "ProjectUpdate";
9695
- } & Pick<ProjectUpdate, "url" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body"> & {
9940
+ } & Pick<ProjectUpdate, "url" | "diff" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body"> & {
9696
9941
  project: {
9697
9942
  __typename?: "Project";
9698
9943
  } & Pick<Project, "id">;
@@ -9709,7 +9954,7 @@ export declare type UserAccountFragment = {
9709
9954
  };
9710
9955
  export declare type UserNotificationSubscriptionFragment = {
9711
9956
  __typename: "UserNotificationSubscription";
9712
- } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9957
+ } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9713
9958
  customView?: Maybe<{
9714
9959
  __typename?: "CustomView";
9715
9960
  } & Pick<CustomView, "id">>;
@@ -9776,7 +10021,7 @@ export declare type IntegrationFragment = {
9776
10021
  };
9777
10022
  export declare type OrganizationInviteFragment = {
9778
10023
  __typename: "OrganizationInvite";
9779
- } & Pick<OrganizationInvite, "external" | "email" | "updatedAt" | "archivedAt" | "createdAt" | "acceptedAt" | "expiresAt" | "id"> & {
10024
+ } & Pick<OrganizationInvite, "metadata" | "external" | "email" | "updatedAt" | "archivedAt" | "createdAt" | "acceptedAt" | "expiresAt" | "id"> & {
9780
10025
  inviter: {
9781
10026
  __typename?: "User";
9782
10027
  } & Pick<User, "id">;
@@ -9787,6 +10032,9 @@ export declare type OrganizationInviteFragment = {
9787
10032
  export declare type IssueNotificationFragment = {
9788
10033
  __typename: "IssueNotification";
9789
10034
  } & Pick<IssueNotification, "reactionEmoji" | "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
10035
+ botActor?: Maybe<{
10036
+ __typename?: "ActorBot";
10037
+ } & ActorBotFragment>;
9790
10038
  comment?: Maybe<{
9791
10039
  __typename?: "Comment";
9792
10040
  } & Pick<Comment, "id">>;
@@ -9843,6 +10091,9 @@ export declare type OauthClientApprovalNotificationFragment = {
9843
10091
  oauthClientApproval: {
9844
10092
  __typename?: "OauthClientApproval";
9845
10093
  } & OauthClientApprovalFragment;
10094
+ botActor?: Maybe<{
10095
+ __typename?: "ActorBot";
10096
+ } & ActorBotFragment>;
9846
10097
  actor?: Maybe<{
9847
10098
  __typename?: "User";
9848
10099
  } & Pick<User, "id">>;
@@ -9884,6 +10135,9 @@ export declare type TeamFragment = {
9884
10135
  startWorkflowState?: Maybe<{
9885
10136
  __typename?: "WorkflowState";
9886
10137
  } & Pick<WorkflowState, "id">>;
10138
+ mergeableWorkflowState?: Maybe<{
10139
+ __typename?: "WorkflowState";
10140
+ } & Pick<WorkflowState, "id">>;
9887
10141
  reviewWorkflowState?: Maybe<{
9888
10142
  __typename?: "WorkflowState";
9889
10143
  } & Pick<WorkflowState, "id">>;
@@ -9981,7 +10235,7 @@ export declare type RoadmapToProjectFragment = {
9981
10235
  };
9982
10236
  export declare type IntegrationTemplateFragment = {
9983
10237
  __typename: "IntegrationTemplate";
9984
- } & Pick<IntegrationTemplate, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10238
+ } & Pick<IntegrationTemplate, "foreignEntityId" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
9985
10239
  integration: {
9986
10240
  __typename?: "Integration";
9987
10241
  } & Pick<Integration, "id">;
@@ -9991,7 +10245,7 @@ export declare type IntegrationTemplateFragment = {
9991
10245
  };
9992
10246
  export declare type IssueLabelFragment = {
9993
10247
  __typename: "IssueLabel";
9994
- } & Pick<IssueLabel, "color" | "description" | "name" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10248
+ } & Pick<IssueLabel, "color" | "description" | "name" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "isGroup"> & {
9995
10249
  parent?: Maybe<{
9996
10250
  __typename?: "IssueLabel";
9997
10251
  } & Pick<IssueLabel, "id">>;
@@ -10007,10 +10261,10 @@ export declare type JiraProjectDataFragment = {
10007
10261
  } & Pick<JiraProjectData, "id" | "key" | "name">;
10008
10262
  export declare type GitHubSettingsFragment = {
10009
10263
  __typename: "GitHubSettings";
10010
- } & Pick<GitHubSettings, "orgLogin" | "orgAvatarUrl">;
10264
+ } & Pick<GitHubSettings, "orgLogin" | "orgAvatarUrl" | "repositories">;
10011
10265
  declare type NotificationSubscription_CustomViewNotificationSubscription_Fragment = {
10012
10266
  __typename: "CustomViewNotificationSubscription";
10013
- } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10267
+ } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10014
10268
  customView: {
10015
10269
  __typename?: "CustomView";
10016
10270
  } & Pick<CustomView, "id">;
@@ -10035,7 +10289,7 @@ declare type NotificationSubscription_CustomViewNotificationSubscription_Fragmen
10035
10289
  };
10036
10290
  declare type NotificationSubscription_CycleNotificationSubscription_Fragment = {
10037
10291
  __typename: "CycleNotificationSubscription";
10038
- } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10292
+ } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10039
10293
  customView?: Maybe<{
10040
10294
  __typename?: "CustomView";
10041
10295
  } & Pick<CustomView, "id">>;
@@ -10060,7 +10314,7 @@ declare type NotificationSubscription_CycleNotificationSubscription_Fragment = {
10060
10314
  };
10061
10315
  declare type NotificationSubscription_LabelNotificationSubscription_Fragment = {
10062
10316
  __typename: "LabelNotificationSubscription";
10063
- } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10317
+ } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10064
10318
  customView?: Maybe<{
10065
10319
  __typename?: "CustomView";
10066
10320
  } & Pick<CustomView, "id">>;
@@ -10085,7 +10339,7 @@ declare type NotificationSubscription_LabelNotificationSubscription_Fragment = {
10085
10339
  };
10086
10340
  declare type NotificationSubscription_ProjectNotificationSubscription_Fragment = {
10087
10341
  __typename: "ProjectNotificationSubscription";
10088
- } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10342
+ } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10089
10343
  customView?: Maybe<{
10090
10344
  __typename?: "CustomView";
10091
10345
  } & Pick<CustomView, "id">>;
@@ -10110,7 +10364,7 @@ declare type NotificationSubscription_ProjectNotificationSubscription_Fragment =
10110
10364
  };
10111
10365
  declare type NotificationSubscription_TeamNotificationSubscription_Fragment = {
10112
10366
  __typename: "TeamNotificationSubscription";
10113
- } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10367
+ } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10114
10368
  customView?: Maybe<{
10115
10369
  __typename?: "CustomView";
10116
10370
  } & Pick<CustomView, "id">>;
@@ -10135,7 +10389,7 @@ declare type NotificationSubscription_TeamNotificationSubscription_Fragment = {
10135
10389
  };
10136
10390
  declare type NotificationSubscription_UserNotificationSubscription_Fragment = {
10137
10391
  __typename: "UserNotificationSubscription";
10138
- } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10392
+ } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10139
10393
  customView?: Maybe<{
10140
10394
  __typename?: "CustomView";
10141
10395
  } & Pick<CustomView, "id">>;
@@ -10208,6 +10462,13 @@ export declare type OauthClientApprovalFragment = {
10208
10462
  export declare type SentrySettingsFragment = {
10209
10463
  __typename: "SentrySettings";
10210
10464
  } & Pick<SentrySettings, "organizationSlug">;
10465
+ export declare type SlackAsksSettingsFragment = {
10466
+ __typename: "SlackAsksSettings";
10467
+ } & {
10468
+ slackChannelMapping?: Maybe<Array<{
10469
+ __typename?: "SlackChannelNameMapping";
10470
+ } & SlackChannelNameMappingFragment>>;
10471
+ };
10211
10472
  export declare type SlackPostSettingsFragment = {
10212
10473
  __typename: "SlackPostSettings";
10213
10474
  } & Pick<SlackPostSettings, "channel" | "channelId" | "configurationUrl">;
@@ -10248,6 +10509,9 @@ export declare type IntegrationSettingsFragment = {
10248
10509
  sentry?: Maybe<{
10249
10510
  __typename?: "SentrySettings";
10250
10511
  } & SentrySettingsFragment>;
10512
+ slackAsks?: Maybe<{
10513
+ __typename?: "SlackAsksSettings";
10514
+ } & SlackAsksSettingsFragment>;
10251
10515
  slackOrgProjectUpdatesPost?: Maybe<{
10252
10516
  __typename?: "SlackPostSettings";
10253
10517
  } & SlackPostSettingsFragment>;
@@ -10284,6 +10548,9 @@ export declare type JiraLinearMappingFragment = {
10284
10548
  export declare type PagerDutyScheduleMappingFragment = {
10285
10549
  __typename: "PagerDutyScheduleMapping";
10286
10550
  } & Pick<PagerDutyScheduleMapping, "scheduleId" | "scheduleName">;
10551
+ export declare type SlackChannelNameMappingFragment = {
10552
+ __typename: "SlackChannelNameMapping";
10553
+ } & Pick<SlackChannelNameMapping, "id" | "name" | "isPrivate">;
10287
10554
  export declare type FavoriteFragment = {
10288
10555
  __typename: "Favorite";
10289
10556
  } & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
@@ -10354,6 +10621,16 @@ export declare type ApiKeyPayloadFragment = {
10354
10621
  __typename?: "ApiKey";
10355
10622
  } & ApiKeyFragment;
10356
10623
  };
10624
+ export declare type AsksChannelConnectPayloadFragment = {
10625
+ __typename: "AsksChannelConnectPayload";
10626
+ } & Pick<AsksChannelConnectPayload, "lastSyncId" | "success"> & {
10627
+ integration?: Maybe<{
10628
+ __typename?: "Integration";
10629
+ } & Pick<Integration, "id">>;
10630
+ mapping: {
10631
+ __typename?: "SlackChannelNameMapping";
10632
+ } & SlackChannelNameMappingFragment;
10633
+ };
10357
10634
  export declare type AttachmentConnectionFragment = {
10358
10635
  __typename: "AttachmentConnection";
10359
10636
  } & {
@@ -10371,6 +10648,9 @@ export declare type AttachmentPayloadFragment = {
10371
10648
  __typename?: "Attachment";
10372
10649
  } & Pick<Attachment, "id">;
10373
10650
  };
10651
+ export declare type AttachmentSourcesPayloadFragment = {
10652
+ __typename: "AttachmentSourcesPayload";
10653
+ } & Pick<AttachmentSourcesPayload, "sources">;
10374
10654
  export declare type AuditEntryConnectionFragment = {
10375
10655
  __typename: "AuditEntryConnection";
10376
10656
  } & {
@@ -11174,7 +11454,7 @@ export declare type ProjectSearchPayloadFragment = {
11174
11454
  };
11175
11455
  export declare type ProjectSearchResultFragment = {
11176
11456
  __typename: "ProjectSearchResult";
11177
- } & Pick<ProjectSearchResult, "metadata" | "url" | "targetDate" | "startDate" | "icon" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "progress" | "scope" | "color" | "description" | "name" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "autoArchivedAt" | "canceledAt" | "completedAt" | "startedAt" | "projectUpdateRemindersPausedUntilAt" | "scopeHistory" | "issueCountHistory" | "state" | "id" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses"> & {
11457
+ } & Pick<ProjectSearchResult, "trashed" | "metadata" | "url" | "targetDate" | "startDate" | "icon" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "progress" | "scope" | "color" | "content" | "description" | "name" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "autoArchivedAt" | "canceledAt" | "completedAt" | "startedAt" | "projectUpdateRemindersPausedUntilAt" | "scopeHistory" | "issueCountHistory" | "state" | "id" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses"> & {
11178
11458
  integrationsSettings?: Maybe<{
11179
11459
  __typename?: "IntegrationsSettings";
11180
11460
  } & Pick<IntegrationsSettings, "id">>;
@@ -11573,6 +11853,8 @@ export declare type DeleteAttachmentMutation = {
11573
11853
  };
11574
11854
  export declare type AttachmentLinkDiscordMutationVariables = Exact<{
11575
11855
  channelId: Scalars["String"];
11856
+ createAsUser?: Maybe<Scalars["String"]>;
11857
+ displayIconUrl?: Maybe<Scalars["String"]>;
11576
11858
  issueId: Scalars["String"];
11577
11859
  messageId: Scalars["String"];
11578
11860
  url: Scalars["String"];
@@ -11586,6 +11868,8 @@ export declare type AttachmentLinkDiscordMutation = {
11586
11868
  };
11587
11869
  export declare type AttachmentLinkFrontMutationVariables = Exact<{
11588
11870
  conversationId: Scalars["String"];
11871
+ createAsUser?: Maybe<Scalars["String"]>;
11872
+ displayIconUrl?: Maybe<Scalars["String"]>;
11589
11873
  issueId: Scalars["String"];
11590
11874
  }>;
11591
11875
  export declare type AttachmentLinkFrontMutation = {
@@ -11597,6 +11881,8 @@ export declare type AttachmentLinkFrontMutation = {
11597
11881
  };
11598
11882
  export declare type AttachmentLinkIntercomMutationVariables = Exact<{
11599
11883
  conversationId: Scalars["String"];
11884
+ createAsUser?: Maybe<Scalars["String"]>;
11885
+ displayIconUrl?: Maybe<Scalars["String"]>;
11600
11886
  issueId: Scalars["String"];
11601
11887
  }>;
11602
11888
  export declare type AttachmentLinkIntercomMutation = {
@@ -11619,6 +11905,8 @@ export declare type AttachmentLinkJiraIssueMutation = {
11619
11905
  };
11620
11906
  export declare type AttachmentLinkSlackMutationVariables = Exact<{
11621
11907
  channel: Scalars["String"];
11908
+ createAsUser?: Maybe<Scalars["String"]>;
11909
+ displayIconUrl?: Maybe<Scalars["String"]>;
11622
11910
  id?: Maybe<Scalars["String"]>;
11623
11911
  issueId: Scalars["String"];
11624
11912
  latest: Scalars["String"];
@@ -11634,6 +11922,8 @@ export declare type AttachmentLinkSlackMutation = {
11634
11922
  } & AttachmentPayloadFragment;
11635
11923
  };
11636
11924
  export declare type AttachmentLinkUrlMutationVariables = Exact<{
11925
+ createAsUser?: Maybe<Scalars["String"]>;
11926
+ displayIconUrl?: Maybe<Scalars["String"]>;
11637
11927
  id?: Maybe<Scalars["String"]>;
11638
11928
  issueId: Scalars["String"];
11639
11929
  title?: Maybe<Scalars["String"]>;
@@ -11647,6 +11937,8 @@ export declare type AttachmentLinkUrlMutation = {
11647
11937
  } & AttachmentPayloadFragment;
11648
11938
  };
11649
11939
  export declare type AttachmentLinkZendeskMutationVariables = Exact<{
11940
+ createAsUser?: Maybe<Scalars["String"]>;
11941
+ displayIconUrl?: Maybe<Scalars["String"]>;
11650
11942
  issueId: Scalars["String"];
11651
11943
  ticketId: Scalars["String"];
11652
11944
  }>;
@@ -11961,6 +12253,17 @@ export declare type ImportFileUploadMutation = {
11961
12253
  __typename?: "UploadPayload";
11962
12254
  } & UploadPayloadFragment;
11963
12255
  };
12256
+ export declare type IntegrationAsksConnectChannelMutationVariables = Exact<{
12257
+ code: Scalars["String"];
12258
+ redirectUri: Scalars["String"];
12259
+ }>;
12260
+ export declare type IntegrationAsksConnectChannelMutation = {
12261
+ __typename?: "Mutation";
12262
+ } & {
12263
+ integrationAsksConnectChannel: {
12264
+ __typename?: "AsksChannelConnectPayload";
12265
+ } & AsksChannelConnectPayloadFragment;
12266
+ };
11964
12267
  export declare type DeleteIntegrationMutationVariables = Exact<{
11965
12268
  id: Scalars["String"];
11966
12269
  }>;
@@ -12751,6 +13054,7 @@ export declare type UpdateOrganizationMutation = {
12751
13054
  };
12752
13055
  export declare type ArchiveProjectMutationVariables = Exact<{
12753
13056
  id: Scalars["String"];
13057
+ trash?: Maybe<Scalars["Boolean"]>;
12754
13058
  }>;
12755
13059
  export declare type ArchiveProjectMutation = {
12756
13060
  __typename?: "Mutation";
@@ -12776,8 +13080,8 @@ export declare type DeleteProjectMutation = {
12776
13080
  __typename?: "Mutation";
12777
13081
  } & {
12778
13082
  projectDelete: {
12779
- __typename?: "DeletePayload";
12780
- } & DeletePayloadFragment;
13083
+ __typename?: "ProjectArchivePayload";
13084
+ } & ProjectArchivePayloadFragment;
12781
13085
  };
12782
13086
  export declare type CreateProjectLinkMutationVariables = Exact<{
12783
13087
  input: ProjectLinkCreateInput;
@@ -13780,6 +14084,20 @@ export declare type CommentQuery = {
13780
14084
  __typename?: "Comment";
13781
14085
  } & CommentFragment;
13782
14086
  };
14087
+ export declare type Comment_BotActorQueryVariables = Exact<{
14088
+ id: Scalars["String"];
14089
+ }>;
14090
+ export declare type Comment_BotActorQuery = {
14091
+ __typename?: "Query";
14092
+ } & {
14093
+ comment: {
14094
+ __typename?: "Comment";
14095
+ } & {
14096
+ botActor?: Maybe<{
14097
+ __typename?: "ActorBot";
14098
+ } & ActorBotFragment>;
14099
+ };
14100
+ };
13783
14101
  export declare type Comment_ChildrenQueryVariables = Exact<{
13784
14102
  id: Scalars["String"];
13785
14103
  after?: Maybe<Scalars["String"]>;
@@ -15224,6 +15542,7 @@ export declare type SearchDocumentsQueryVariables = Exact<{
15224
15542
  includeArchived?: Maybe<Scalars["Boolean"]>;
15225
15543
  last?: Maybe<Scalars["Int"]>;
15226
15544
  orderBy?: Maybe<PaginationOrderBy>;
15545
+ teamId?: Maybe<Scalars["String"]>;
15227
15546
  term: Scalars["String"];
15228
15547
  }>;
15229
15548
  export declare type SearchDocumentsQuery = {
@@ -15240,6 +15559,7 @@ export declare type SearchDocuments_ArchivePayloadQueryVariables = Exact<{
15240
15559
  includeArchived?: Maybe<Scalars["Boolean"]>;
15241
15560
  last?: Maybe<Scalars["Int"]>;
15242
15561
  orderBy?: Maybe<PaginationOrderBy>;
15562
+ teamId?: Maybe<Scalars["String"]>;
15243
15563
  term: Scalars["String"];
15244
15564
  }>;
15245
15565
  export declare type SearchDocuments_ArchivePayloadQuery = {
@@ -15261,6 +15581,7 @@ export declare type SearchIssuesQueryVariables = Exact<{
15261
15581
  includeArchived?: Maybe<Scalars["Boolean"]>;
15262
15582
  last?: Maybe<Scalars["Int"]>;
15263
15583
  orderBy?: Maybe<PaginationOrderBy>;
15584
+ teamId?: Maybe<Scalars["String"]>;
15264
15585
  term: Scalars["String"];
15265
15586
  }>;
15266
15587
  export declare type SearchIssuesQuery = {
@@ -15278,6 +15599,7 @@ export declare type SearchIssues_ArchivePayloadQueryVariables = Exact<{
15278
15599
  includeArchived?: Maybe<Scalars["Boolean"]>;
15279
15600
  last?: Maybe<Scalars["Int"]>;
15280
15601
  orderBy?: Maybe<PaginationOrderBy>;
15602
+ teamId?: Maybe<Scalars["String"]>;
15281
15603
  term: Scalars["String"];
15282
15604
  }>;
15283
15605
  export declare type SearchIssues_ArchivePayloadQuery = {
@@ -15298,6 +15620,7 @@ export declare type SearchProjectsQueryVariables = Exact<{
15298
15620
  includeArchived?: Maybe<Scalars["Boolean"]>;
15299
15621
  last?: Maybe<Scalars["Int"]>;
15300
15622
  orderBy?: Maybe<PaginationOrderBy>;
15623
+ teamId?: Maybe<Scalars["String"]>;
15301
15624
  term: Scalars["String"];
15302
15625
  }>;
15303
15626
  export declare type SearchProjectsQuery = {
@@ -15314,6 +15637,7 @@ export declare type SearchProjects_ArchivePayloadQueryVariables = Exact<{
15314
15637
  includeArchived?: Maybe<Scalars["Boolean"]>;
15315
15638
  last?: Maybe<Scalars["Int"]>;
15316
15639
  orderBy?: Maybe<PaginationOrderBy>;
15640
+ teamId?: Maybe<Scalars["String"]>;
15317
15641
  term: Scalars["String"];
15318
15642
  }>;
15319
15643
  export declare type SearchProjects_ArchivePayloadQuery = {
@@ -15895,6 +16219,7 @@ export declare const AttachmentArchivePayloadFragmentDoc: DocumentNode<Attachmen
15895
16219
  export declare const CycleArchivePayloadFragmentDoc: DocumentNode<CycleArchivePayloadFragment, unknown>;
15896
16220
  export declare const DeletePayloadFragmentDoc: DocumentNode<DeletePayloadFragment, unknown>;
15897
16221
  export declare const IssueArchivePayloadFragmentDoc: DocumentNode<IssueArchivePayloadFragment, unknown>;
16222
+ export declare const ActorBotFragmentDoc: DocumentNode<ActorBotFragment, unknown>;
15898
16223
  export declare const IssueNotificationFragmentDoc: DocumentNode<IssueNotificationFragment, unknown>;
15899
16224
  export declare const OauthClientApprovalFragmentDoc: DocumentNode<OauthClientApprovalFragment, unknown>;
15900
16225
  export declare const OauthClientApprovalNotificationFragmentDoc: DocumentNode<OauthClientApprovalNotificationFragment, unknown>;
@@ -15930,6 +16255,8 @@ export declare const NotionSettingsFragmentDoc: DocumentNode<NotionSettingsFragm
15930
16255
  export declare const PagerDutyScheduleMappingFragmentDoc: DocumentNode<PagerDutyScheduleMappingFragment, unknown>;
15931
16256
  export declare const PagerDutySettingsFragmentDoc: DocumentNode<PagerDutySettingsFragment, unknown>;
15932
16257
  export declare const SentrySettingsFragmentDoc: DocumentNode<SentrySettingsFragment, unknown>;
16258
+ export declare const SlackChannelNameMappingFragmentDoc: DocumentNode<SlackChannelNameMappingFragment, unknown>;
16259
+ export declare const SlackAsksSettingsFragmentDoc: DocumentNode<SlackAsksSettingsFragment, unknown>;
15933
16260
  export declare const SlackPostSettingsFragmentDoc: DocumentNode<SlackPostSettingsFragment, unknown>;
15934
16261
  export declare const ZendeskSettingsFragmentDoc: DocumentNode<ZendeskSettingsFragment, unknown>;
15935
16262
  export declare const IntegrationSettingsFragmentDoc: DocumentNode<IntegrationSettingsFragment, unknown>;
@@ -15939,9 +16266,11 @@ export declare const ApiKeyFragmentDoc: DocumentNode<ApiKeyFragment, unknown>;
15939
16266
  export declare const PageInfoFragmentDoc: DocumentNode<PageInfoFragment, unknown>;
15940
16267
  export declare const ApiKeyConnectionFragmentDoc: DocumentNode<ApiKeyConnectionFragment, unknown>;
15941
16268
  export declare const ApiKeyPayloadFragmentDoc: DocumentNode<ApiKeyPayloadFragment, unknown>;
16269
+ export declare const AsksChannelConnectPayloadFragmentDoc: DocumentNode<AsksChannelConnectPayloadFragment, unknown>;
15942
16270
  export declare const AttachmentFragmentDoc: DocumentNode<AttachmentFragment, unknown>;
15943
16271
  export declare const AttachmentConnectionFragmentDoc: DocumentNode<AttachmentConnectionFragment, unknown>;
15944
16272
  export declare const AttachmentPayloadFragmentDoc: DocumentNode<AttachmentPayloadFragment, unknown>;
16273
+ export declare const AttachmentSourcesPayloadFragmentDoc: DocumentNode<AttachmentSourcesPayloadFragment, unknown>;
15945
16274
  export declare const AuditEntryFragmentDoc: DocumentNode<AuditEntryFragment, unknown>;
15946
16275
  export declare const AuditEntryConnectionFragmentDoc: DocumentNode<AuditEntryConnectionFragment, unknown>;
15947
16276
  export declare const AuditEntryTypeFragmentDoc: DocumentNode<AuditEntryTypeFragment, unknown>;
@@ -16125,16 +16454,22 @@ export declare const DeleteAttachmentDocument: DocumentNode<DeleteAttachmentMuta
16125
16454
  }>>;
16126
16455
  export declare const AttachmentLinkDiscordDocument: DocumentNode<AttachmentLinkDiscordMutation, Exact<{
16127
16456
  channelId: Scalars["String"];
16457
+ createAsUser?: Maybe<string> | undefined;
16458
+ displayIconUrl?: Maybe<string> | undefined;
16128
16459
  issueId: Scalars["String"];
16129
16460
  messageId: Scalars["String"];
16130
16461
  url: Scalars["String"];
16131
16462
  }>>;
16132
16463
  export declare const AttachmentLinkFrontDocument: DocumentNode<AttachmentLinkFrontMutation, Exact<{
16133
16464
  conversationId: Scalars["String"];
16465
+ createAsUser?: Maybe<string> | undefined;
16466
+ displayIconUrl?: Maybe<string> | undefined;
16134
16467
  issueId: Scalars["String"];
16135
16468
  }>>;
16136
16469
  export declare const AttachmentLinkIntercomDocument: DocumentNode<AttachmentLinkIntercomMutation, Exact<{
16137
16470
  conversationId: Scalars["String"];
16471
+ createAsUser?: Maybe<string> | undefined;
16472
+ displayIconUrl?: Maybe<string> | undefined;
16138
16473
  issueId: Scalars["String"];
16139
16474
  }>>;
16140
16475
  export declare const AttachmentLinkJiraIssueDocument: DocumentNode<AttachmentLinkJiraIssueMutation, Exact<{
@@ -16143,6 +16478,8 @@ export declare const AttachmentLinkJiraIssueDocument: DocumentNode<AttachmentLin
16143
16478
  }>>;
16144
16479
  export declare const AttachmentLinkSlackDocument: DocumentNode<AttachmentLinkSlackMutation, Exact<{
16145
16480
  channel: Scalars["String"];
16481
+ createAsUser?: Maybe<string> | undefined;
16482
+ displayIconUrl?: Maybe<string> | undefined;
16146
16483
  id?: Maybe<string> | undefined;
16147
16484
  issueId: Scalars["String"];
16148
16485
  latest: Scalars["String"];
@@ -16151,12 +16488,16 @@ export declare const AttachmentLinkSlackDocument: DocumentNode<AttachmentLinkSla
16151
16488
  url: Scalars["String"];
16152
16489
  }>>;
16153
16490
  export declare const AttachmentLinkUrlDocument: DocumentNode<AttachmentLinkUrlMutation, Exact<{
16491
+ createAsUser?: Maybe<string> | undefined;
16492
+ displayIconUrl?: Maybe<string> | undefined;
16154
16493
  id?: Maybe<string> | undefined;
16155
16494
  issueId: Scalars["String"];
16156
16495
  title?: Maybe<string> | undefined;
16157
16496
  url: Scalars["String"];
16158
16497
  }>>;
16159
16498
  export declare const AttachmentLinkZendeskDocument: DocumentNode<AttachmentLinkZendeskMutation, Exact<{
16499
+ createAsUser?: Maybe<string> | undefined;
16500
+ displayIconUrl?: Maybe<string> | undefined;
16160
16501
  issueId: Scalars["String"];
16161
16502
  ticketId: Scalars["String"];
16162
16503
  }>>;
@@ -16261,6 +16602,10 @@ export declare const ImportFileUploadDocument: DocumentNode<ImportFileUploadMuta
16261
16602
  metaData?: Maybe<Record<string, unknown>> | undefined;
16262
16603
  size: Scalars["Int"];
16263
16604
  }>>;
16605
+ export declare const IntegrationAsksConnectChannelDocument: DocumentNode<IntegrationAsksConnectChannelMutation, Exact<{
16606
+ code: Scalars["String"];
16607
+ redirectUri: Scalars["String"];
16608
+ }>>;
16264
16609
  export declare const DeleteIntegrationDocument: DocumentNode<DeleteIntegrationMutation, Exact<{
16265
16610
  id: Scalars["String"];
16266
16611
  }>>;
@@ -16554,6 +16899,7 @@ export declare const UpdateOrganizationDocument: DocumentNode<UpdateOrganization
16554
16899
  }>>;
16555
16900
  export declare const ArchiveProjectDocument: DocumentNode<ArchiveProjectMutation, Exact<{
16556
16901
  id: Scalars["String"];
16902
+ trash?: Maybe<boolean> | undefined;
16557
16903
  }>>;
16558
16904
  export declare const CreateProjectDocument: DocumentNode<CreateProjectMutation, Exact<{
16559
16905
  input: ProjectCreateInput;
@@ -16928,6 +17274,9 @@ export declare const AvailableUsersDocument: DocumentNode<AvailableUsersQuery, E
16928
17274
  export declare const CommentDocument: DocumentNode<CommentQuery, Exact<{
16929
17275
  id: Scalars["String"];
16930
17276
  }>>;
17277
+ export declare const Comment_BotActorDocument: DocumentNode<Comment_BotActorQuery, Exact<{
17278
+ id: Scalars["String"];
17279
+ }>>;
16931
17280
  export declare const Comment_ChildrenDocument: DocumentNode<Comment_ChildrenQuery, Exact<{
16932
17281
  id: Scalars["String"];
16933
17282
  after?: Maybe<string> | undefined;
@@ -17562,6 +17911,7 @@ export declare const SearchDocumentsDocument: DocumentNode<SearchDocumentsQuery,
17562
17911
  includeArchived?: Maybe<boolean> | undefined;
17563
17912
  last?: Maybe<number> | undefined;
17564
17913
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17914
+ teamId?: Maybe<string> | undefined;
17565
17915
  term: Scalars["String"];
17566
17916
  }>>;
17567
17917
  export declare const SearchDocuments_ArchivePayloadDocument: DocumentNode<SearchDocuments_ArchivePayloadQuery, Exact<{
@@ -17571,6 +17921,7 @@ export declare const SearchDocuments_ArchivePayloadDocument: DocumentNode<Search
17571
17921
  includeArchived?: Maybe<boolean> | undefined;
17572
17922
  last?: Maybe<number> | undefined;
17573
17923
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17924
+ teamId?: Maybe<string> | undefined;
17574
17925
  term: Scalars["String"];
17575
17926
  }>>;
17576
17927
  export declare const SearchIssuesDocument: DocumentNode<SearchIssuesQuery, Exact<{
@@ -17581,6 +17932,7 @@ export declare const SearchIssuesDocument: DocumentNode<SearchIssuesQuery, Exact
17581
17932
  includeArchived?: Maybe<boolean> | undefined;
17582
17933
  last?: Maybe<number> | undefined;
17583
17934
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17935
+ teamId?: Maybe<string> | undefined;
17584
17936
  term: Scalars["String"];
17585
17937
  }>>;
17586
17938
  export declare const SearchIssues_ArchivePayloadDocument: DocumentNode<SearchIssues_ArchivePayloadQuery, Exact<{
@@ -17591,6 +17943,7 @@ export declare const SearchIssues_ArchivePayloadDocument: DocumentNode<SearchIss
17591
17943
  includeArchived?: Maybe<boolean> | undefined;
17592
17944
  last?: Maybe<number> | undefined;
17593
17945
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17946
+ teamId?: Maybe<string> | undefined;
17594
17947
  term: Scalars["String"];
17595
17948
  }>>;
17596
17949
  export declare const SearchProjectsDocument: DocumentNode<SearchProjectsQuery, Exact<{
@@ -17600,6 +17953,7 @@ export declare const SearchProjectsDocument: DocumentNode<SearchProjectsQuery, E
17600
17953
  includeArchived?: Maybe<boolean> | undefined;
17601
17954
  last?: Maybe<number> | undefined;
17602
17955
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17956
+ teamId?: Maybe<string> | undefined;
17603
17957
  term: Scalars["String"];
17604
17958
  }>>;
17605
17959
  export declare const SearchProjects_ArchivePayloadDocument: DocumentNode<SearchProjects_ArchivePayloadQuery, Exact<{
@@ -17609,6 +17963,7 @@ export declare const SearchProjects_ArchivePayloadDocument: DocumentNode<SearchP
17609
17963
  includeArchived?: Maybe<boolean> | undefined;
17610
17964
  last?: Maybe<number> | undefined;
17611
17965
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17966
+ teamId?: Maybe<string> | undefined;
17612
17967
  term: Scalars["String"];
17613
17968
  }>>;
17614
17969
  export declare const SsoUrlFromEmailDocument: DocumentNode<SsoUrlFromEmailQuery, Exact<{