@linear/sdk 7.0.1 → 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. */
@@ -397,6 +425,8 @@ export declare type Comment = Node & {
397
425
  body: Scalars["String"];
398
426
  /** The comment content as a Prosemirror document. */
399
427
  bodyData: Scalars["String"];
428
+ /** The bot that created the comment */
429
+ botActor?: Maybe<ActorBot>;
400
430
  /** The children of the comment. */
401
431
  children: CommentConnection;
402
432
  /** The time at which the entity was created. */
@@ -413,6 +443,10 @@ export declare type Comment = Node & {
413
443
  parent?: Maybe<Comment>;
414
444
  /** Emoji reaction summary, grouped by emoji type */
415
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>;
416
450
  /**
417
451
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
418
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
@@ -663,8 +697,8 @@ export declare type CustomView = Node & {
663
697
  name: Scalars["String"];
664
698
  /** The organization of the custom view. */
665
699
  organization: Organization;
666
- /** [ALPHA] The user who owns the custom view. */
667
- owner?: Maybe<User>;
700
+ /** The user who owns the custom view. */
701
+ owner: User;
668
702
  /** [ALPHA] The filter applied to projects in the custom view. */
669
703
  projectFilterData?: Maybe<Scalars["JSONObject"]>;
670
704
  /** Whether the custom view is shared with everyone in the organization. */
@@ -719,6 +753,8 @@ export declare type CustomViewEdge = {
719
753
  /** A custom view notification subscription. */
720
754
  export declare type CustomViewNotificationSubscription = Entity & Node & NotificationSubscription & {
721
755
  __typename?: "CustomViewNotificationSubscription";
756
+ /** Whether the subscription is active or not */
757
+ active: Scalars["Boolean"];
722
758
  /** The time at which the entity was archived. Null if the entity has not been archived. */
723
759
  archivedAt?: Maybe<Scalars["DateTime"]>;
724
760
  /** The type of view to which the notification subscription context is associated with. */
@@ -938,6 +974,8 @@ export declare type CycleFilter = {
938
974
  /** A cycle notification subscription. */
939
975
  export declare type CycleNotificationSubscription = Entity & Node & NotificationSubscription & {
940
976
  __typename?: "CycleNotificationSubscription";
977
+ /** Whether the subscription is active or not */
978
+ active: Scalars["Boolean"];
941
979
  /** The time at which the entity was archived. Null if the entity has not been archived. */
942
980
  archivedAt?: Maybe<Scalars["DateTime"]>;
943
981
  /** The type of view to which the notification subscription context is associated with. */
@@ -1084,12 +1122,16 @@ export declare type DocumentContent = Node & {
1084
1122
  content?: Maybe<Scalars["String"]>;
1085
1123
  /** The document content as JSON. */
1086
1124
  contentData?: Maybe<Scalars["JSONObject"]>;
1125
+ /** The document content state as a base64 encoded string. */
1126
+ contentState?: Maybe<Scalars["JSONObject"]>;
1087
1127
  /** The time at which the entity was created. */
1088
1128
  createdAt: Scalars["DateTime"];
1089
1129
  /** The unique identifier of the entity. */
1090
1130
  id: Scalars["ID"];
1091
1131
  /** The issue that the document is associated with. */
1092
1132
  issue?: Maybe<Issue>;
1133
+ /** The project that the document is associated with. */
1134
+ project?: Maybe<Project>;
1093
1135
  /**
1094
1136
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1095
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
@@ -1097,6 +1139,15 @@ export declare type DocumentContent = Node & {
1097
1139
  */
1098
1140
  updatedAt: Scalars["DateTime"];
1099
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
+ };
1100
1151
  export declare type DocumentCreateInput = {
1101
1152
  /** The color of the icon. */
1102
1153
  color?: Maybe<Scalars["String"]>;
@@ -1556,12 +1607,10 @@ export declare type FirstResponderSchedule = Node & {
1556
1607
  createdAt: Scalars["DateTime"];
1557
1608
  /** The unique identifier of the entity. */
1558
1609
  id: Scalars["ID"];
1559
- /** The integration used for scheduling. */
1610
+ /** The integration used for time scheduling. */
1560
1611
  integration: Integration;
1561
- /** The id of the integration schedule used for scheduling. */
1562
- integrationScheduleId?: Maybe<Scalars["String"]>;
1563
- /** The current schedule and available schedules. */
1564
- scheduleData: Scalars["JSONObject"];
1612
+ /** The schedule information. */
1613
+ scheduleData?: Maybe<Scalars["JSONObject"]>;
1565
1614
  /** The team to which the schedule belongs to. */
1566
1615
  team: Team;
1567
1616
  /**
@@ -1634,12 +1683,16 @@ export declare type GitHubSettings = {
1634
1683
  orgAvatarUrl: Scalars["String"];
1635
1684
  /** The GitHub organization's name */
1636
1685
  orgLogin: Scalars["String"];
1686
+ /** The names of the repositories connected for the GitHub integration */
1687
+ repositories?: Maybe<Array<Scalars["String"]>>;
1637
1688
  };
1638
1689
  export declare type GitHubSettingsInput = {
1639
1690
  /** The avatar URL for the GitHub organization */
1640
1691
  orgAvatarUrl: Scalars["String"];
1641
1692
  /** The GitHub organization's name */
1642
1693
  orgLogin: Scalars["String"];
1694
+ /** The names of the repositories connected for the GitHub integration */
1695
+ repositories?: Maybe<Array<Scalars["String"]>>;
1643
1696
  };
1644
1697
  /** GitHub OAuth token, plus information about the organizations the user is a member of. */
1645
1698
  export declare type GithubOAuthTokenPayload = {
@@ -1688,6 +1741,8 @@ export declare type GoogleSheetsSettingsInput = {
1688
1741
  export declare type GoogleUserAccountAuthInput = {
1689
1742
  /** Code returned from Google's OAuth flow. */
1690
1743
  code: Scalars["String"];
1744
+ /** An optional invite link for an organization. */
1745
+ inviteLink?: Maybe<Scalars["String"]>;
1691
1746
  /** The URI to redirect the user to. */
1692
1747
  redirectUri?: Maybe<Scalars["String"]>;
1693
1748
  /** Signup code. */
@@ -1784,6 +1839,7 @@ export declare type IntegrationSettings = {
1784
1839
  notion?: Maybe<NotionSettings>;
1785
1840
  pagerDuty?: Maybe<PagerDutySettings>;
1786
1841
  sentry?: Maybe<SentrySettings>;
1842
+ slackAsks?: Maybe<SlackAsksSettings>;
1787
1843
  slackOrgProjectUpdatesPost?: Maybe<SlackPostSettings>;
1788
1844
  slackPost?: Maybe<SlackPostSettings>;
1789
1845
  slackProjectPost?: Maybe<SlackPostSettings>;
@@ -1798,6 +1854,7 @@ export declare type IntegrationSettingsInput = {
1798
1854
  notion?: Maybe<NotionSettingsInput>;
1799
1855
  pagerDuty?: Maybe<PagerDutyInput>;
1800
1856
  sentry?: Maybe<SentrySettingsInput>;
1857
+ slackAsks?: Maybe<SlackAsksSettingsInput>;
1801
1858
  slackOrgProjectUpdatesPost?: Maybe<SlackPostSettingsInput>;
1802
1859
  slackPost?: Maybe<SlackPostSettingsInput>;
1803
1860
  slackProjectPost?: Maybe<SlackPostSettingsInput>;
@@ -1810,6 +1867,8 @@ export declare type IntegrationTemplate = Node & {
1810
1867
  archivedAt?: Maybe<Scalars["DateTime"]>;
1811
1868
  /** The time at which the entity was created. */
1812
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"]>;
1813
1872
  /** The unique identifier of the entity. */
1814
1873
  id: Scalars["ID"];
1815
1874
  /** The integration that the template is associated with. */
@@ -1830,6 +1889,8 @@ export declare type IntegrationTemplateConnection = {
1830
1889
  pageInfo: PageInfo;
1831
1890
  };
1832
1891
  export declare type IntegrationTemplateCreateInput = {
1892
+ /** The foreign identifier in the other service. */
1893
+ foreignEntityId?: Maybe<Scalars["String"]>;
1833
1894
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
1834
1895
  id?: Maybe<Scalars["String"]>;
1835
1896
  /** The identifier of the integration. */
@@ -2315,6 +2376,8 @@ export declare type IssueCreateInput = {
2315
2376
  labelIds?: Maybe<Array<Scalars["String"]>>;
2316
2377
  /** The identifier of the parent issue. */
2317
2378
  parentId?: Maybe<Scalars["String"]>;
2379
+ /** Whether the passed sort order should be preserved */
2380
+ preserveSortOrderOnCreate?: Maybe<Scalars["Boolean"]>;
2318
2381
  /** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
2319
2382
  priority?: Maybe<Scalars["Int"]>;
2320
2383
  /** The project associated with the issue. */
@@ -2503,6 +2566,8 @@ export declare type IssueHistory = Node & {
2503
2566
  autoArchived?: Maybe<Scalars["Boolean"]>;
2504
2567
  /** Whether the issue was auto-closed. */
2505
2568
  autoClosed?: Maybe<Scalars["Boolean"]>;
2569
+ /** The bot that performed the action */
2570
+ botActor?: Maybe<ActorBot>;
2506
2571
  /** [Internal] Serialized JSON representing changes for certain non-relational properties. */
2507
2572
  changes?: Maybe<Scalars["JSONObject"]>;
2508
2573
  /** The time at which the entity was created. */
@@ -2834,6 +2899,8 @@ export declare type IssueNotification = Entity & Node & Notification & {
2834
2899
  actor?: Maybe<User>;
2835
2900
  /** The time at which the entity was archived. Null if the entity has not been archived. */
2836
2901
  archivedAt?: Maybe<Scalars["DateTime"]>;
2902
+ /** The bot that caused the notification. */
2903
+ botActor?: Maybe<ActorBot>;
2837
2904
  /** The comment related to the notification. */
2838
2905
  comment?: Maybe<Comment>;
2839
2906
  /** The time at which the entity was created. */
@@ -3210,7 +3277,7 @@ export declare type IssueUpdateInput = {
3210
3277
  teamId?: Maybe<Scalars["String"]>;
3211
3278
  /** The issue title. */
3212
3279
  title?: Maybe<Scalars["String"]>;
3213
- /** Wether the issue has been trashed. */
3280
+ /** Whether the issue has been trashed. */
3214
3281
  trashed?: Maybe<Scalars["Boolean"]>;
3215
3282
  };
3216
3283
  export declare type JiraConfigurationInput = {
@@ -3270,12 +3337,16 @@ export declare type JiraSettingsInput = {
3270
3337
  projects: Array<JiraProjectDataInput>;
3271
3338
  };
3272
3339
  export declare type JoinOrganizationInput = {
3340
+ /** An optional invite link for an organization. */
3341
+ inviteLink?: Maybe<Scalars["String"]>;
3273
3342
  /** The identifier of the organization. */
3274
3343
  organizationId: Scalars["String"];
3275
3344
  };
3276
3345
  /** A label notification subscription. */
3277
3346
  export declare type LabelNotificationSubscription = Entity & Node & NotificationSubscription & {
3278
3347
  __typename?: "LabelNotificationSubscription";
3348
+ /** Whether the subscription is active or not */
3349
+ active: Scalars["Boolean"];
3279
3350
  /** The time at which the entity was archived. Null if the entity has not been archived. */
3280
3351
  archivedAt?: Maybe<Scalars["DateTime"]>;
3281
3352
  /** The type of view to which the notification subscription context is associated with. */
@@ -3353,6 +3424,10 @@ export declare type Mutation = {
3353
3424
  commentCreate: CommentPayload;
3354
3425
  /** Deletes a comment. */
3355
3426
  commentDelete: DeletePayload;
3427
+ /** [ALPHA] Resolves a comment. */
3428
+ commentResolve: CommentPayload;
3429
+ /** [ALPHA] Unresolves a comment. */
3430
+ commentUnresolve: CommentPayload;
3356
3431
  /** Updates a comment. */
3357
3432
  commentUpdate: CommentPayload;
3358
3433
  /** Saves user message. */
@@ -3407,6 +3482,8 @@ export declare type Mutation = {
3407
3482
  imageUploadFromUrl: ImageUploadFromUrlPayload;
3408
3483
  /** XHR request payload to upload a file for import, directly to Linear's cloud storage. */
3409
3484
  importFileUpload: UploadPayload;
3485
+ /** Connect a Slack channel to Asks. */
3486
+ integrationAsksConnectChannel: AsksChannelConnectPayload;
3410
3487
  /** Deletes an integration. */
3411
3488
  integrationDelete: DeletePayload;
3412
3489
  /** Integrates the organization with Discord. */
@@ -3438,7 +3515,7 @@ export declare type Mutation = {
3438
3515
  */
3439
3516
  integrationLoom: IntegrationPayload;
3440
3517
  /** [INTERNAL] Integrates the organization with PagerDuty. */
3441
- integrationPageDutyConnect: IntegrationPayload;
3518
+ integrationPagerDutyConnect: IntegrationPayload;
3442
3519
  /** Requests a currently unavailable integration. */
3443
3520
  integrationRequest: IntegrationRequestPayload;
3444
3521
  /** Integrates the organization with Sentry. */
@@ -3535,7 +3612,10 @@ export declare type Mutation = {
3535
3612
  notificationSnoozeAll: NotificationBatchActionPayload;
3536
3613
  /** Creates a new notification subscription for a cycle, custom view, label, project or team. */
3537
3614
  notificationSubscriptionCreate: NotificationSubscriptionPayload;
3538
- /** Deletes a notification subscription reference. */
3615
+ /**
3616
+ * Deletes a notification subscription reference.
3617
+ * @deprecated Update `notificationSubscription.active` to `false` instead.
3618
+ */
3539
3619
  notificationSubscriptionDelete: DeletePayload;
3540
3620
  /** Updates a notification subscription. */
3541
3621
  notificationSubscriptionUpdate: NotificationSubscriptionPayload;
@@ -3576,8 +3656,8 @@ export declare type Mutation = {
3576
3656
  projectArchive: ProjectArchivePayload;
3577
3657
  /** Creates a new project. */
3578
3658
  projectCreate: ProjectPayload;
3579
- /** Deletes a project. All issues will be disassociated from the deleted project. */
3580
- projectDelete: DeletePayload;
3659
+ /** Deletes (trashes) a project. */
3660
+ projectDelete: ProjectArchivePayload;
3581
3661
  /** Creates a new project link. */
3582
3662
  projectLinkCreate: ProjectLinkPayload;
3583
3663
  /** Deletes a project link. */
@@ -3727,16 +3807,22 @@ export declare type MutationAttachmentDeleteArgs = {
3727
3807
  };
3728
3808
  export declare type MutationAttachmentLinkDiscordArgs = {
3729
3809
  channelId: Scalars["String"];
3810
+ createAsUser?: Maybe<Scalars["String"]>;
3811
+ displayIconUrl?: Maybe<Scalars["String"]>;
3730
3812
  issueId: Scalars["String"];
3731
3813
  messageId: Scalars["String"];
3732
3814
  url: Scalars["String"];
3733
3815
  };
3734
3816
  export declare type MutationAttachmentLinkFrontArgs = {
3735
3817
  conversationId: Scalars["String"];
3818
+ createAsUser?: Maybe<Scalars["String"]>;
3819
+ displayIconUrl?: Maybe<Scalars["String"]>;
3736
3820
  issueId: Scalars["String"];
3737
3821
  };
3738
3822
  export declare type MutationAttachmentLinkIntercomArgs = {
3739
3823
  conversationId: Scalars["String"];
3824
+ createAsUser?: Maybe<Scalars["String"]>;
3825
+ displayIconUrl?: Maybe<Scalars["String"]>;
3740
3826
  issueId: Scalars["String"];
3741
3827
  };
3742
3828
  export declare type MutationAttachmentLinkJiraIssueArgs = {
@@ -3745,6 +3831,8 @@ export declare type MutationAttachmentLinkJiraIssueArgs = {
3745
3831
  };
3746
3832
  export declare type MutationAttachmentLinkSlackArgs = {
3747
3833
  channel: Scalars["String"];
3834
+ createAsUser?: Maybe<Scalars["String"]>;
3835
+ displayIconUrl?: Maybe<Scalars["String"]>;
3748
3836
  id?: Maybe<Scalars["String"]>;
3749
3837
  issueId: Scalars["String"];
3750
3838
  latest: Scalars["String"];
@@ -3753,12 +3841,16 @@ export declare type MutationAttachmentLinkSlackArgs = {
3753
3841
  url: Scalars["String"];
3754
3842
  };
3755
3843
  export declare type MutationAttachmentLinkUrlArgs = {
3844
+ createAsUser?: Maybe<Scalars["String"]>;
3845
+ displayIconUrl?: Maybe<Scalars["String"]>;
3756
3846
  id?: Maybe<Scalars["String"]>;
3757
3847
  issueId: Scalars["String"];
3758
3848
  title?: Maybe<Scalars["String"]>;
3759
3849
  url: Scalars["String"];
3760
3850
  };
3761
3851
  export declare type MutationAttachmentLinkZendeskArgs = {
3852
+ createAsUser?: Maybe<Scalars["String"]>;
3853
+ displayIconUrl?: Maybe<Scalars["String"]>;
3762
3854
  issueId: Scalars["String"];
3763
3855
  ticketId: Scalars["String"];
3764
3856
  };
@@ -3775,6 +3867,13 @@ export declare type MutationCommentCreateArgs = {
3775
3867
  export declare type MutationCommentDeleteArgs = {
3776
3868
  id: Scalars["String"];
3777
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
+ };
3778
3877
  export declare type MutationCommentUpdateArgs = {
3779
3878
  id: Scalars["String"];
3780
3879
  input: CommentUpdateInput;
@@ -3869,6 +3968,10 @@ export declare type MutationImportFileUploadArgs = {
3869
3968
  metaData?: Maybe<Scalars["JSON"]>;
3870
3969
  size: Scalars["Int"];
3871
3970
  };
3971
+ export declare type MutationIntegrationAsksConnectChannelArgs = {
3972
+ code: Scalars["String"];
3973
+ redirectUri: Scalars["String"];
3974
+ };
3872
3975
  export declare type MutationIntegrationDeleteArgs = {
3873
3976
  id: Scalars["String"];
3874
3977
  };
@@ -3902,8 +4005,9 @@ export declare type MutationIntegrationIntercomArgs = {
3902
4005
  export declare type MutationIntegrationIntercomSettingsUpdateArgs = {
3903
4006
  input: IntercomSettingsInput;
3904
4007
  };
3905
- export declare type MutationIntegrationPageDutyConnectArgs = {
3906
- apiToken: Scalars["String"];
4008
+ export declare type MutationIntegrationPagerDutyConnectArgs = {
4009
+ code: Scalars["String"];
4010
+ redirectUri: Scalars["String"];
3907
4011
  };
3908
4012
  export declare type MutationIntegrationRequestArgs = {
3909
4013
  input: IntegrationRequestInput;
@@ -4165,6 +4269,7 @@ export declare type MutationOrganizationUpdateArgs = {
4165
4269
  };
4166
4270
  export declare type MutationProjectArchiveArgs = {
4167
4271
  id: Scalars["String"];
4272
+ trash?: Maybe<Scalars["Boolean"]>;
4168
4273
  };
4169
4274
  export declare type MutationProjectCreateArgs = {
4170
4275
  input: ProjectCreateInput;
@@ -4391,6 +4496,8 @@ export declare type Notification = {
4391
4496
  actor?: Maybe<User>;
4392
4497
  /** The time at which the entity was archived. Null if the entity has not been archived. */
4393
4498
  archivedAt?: Maybe<Scalars["DateTime"]>;
4499
+ /** The bot that caused the notification. */
4500
+ botActor?: Maybe<ActorBot>;
4394
4501
  /** The time at which the entity was created. */
4395
4502
  createdAt: Scalars["DateTime"];
4396
4503
  /**
@@ -4472,6 +4579,8 @@ export declare type NotificationPayload = {
4472
4579
  };
4473
4580
  /** Notification subscriptions for models. */
4474
4581
  export declare type NotificationSubscription = {
4582
+ /** Whether the subscription is active or not */
4583
+ active: Scalars["Boolean"];
4475
4584
  /** The time at which the entity was archived. Null if the entity has not been archived. */
4476
4585
  archivedAt?: Maybe<Scalars["DateTime"]>;
4477
4586
  /** The type of view to which the notification subscription context is associated with. */
@@ -4510,6 +4619,8 @@ export declare type NotificationSubscriptionConnection = {
4510
4619
  pageInfo: PageInfo;
4511
4620
  };
4512
4621
  export declare type NotificationSubscriptionCreateInput = {
4622
+ /** Whether the subscription is active. */
4623
+ active?: Maybe<Scalars["Boolean"]>;
4513
4624
  /** The type of view to which the notification subscription context is associated with. */
4514
4625
  contextViewType?: Maybe<ContextViewType>;
4515
4626
  /** The identifier of the custom view to subscribe to. */
@@ -4547,6 +4658,8 @@ export declare type NotificationSubscriptionPayload = {
4547
4658
  success: Scalars["Boolean"];
4548
4659
  };
4549
4660
  export declare type NotificationSubscriptionUpdateInput = {
4661
+ /** Whether the subscription is active. */
4662
+ active?: Maybe<Scalars["Boolean"]>;
4550
4663
  /** The types of notifications of the subscription. */
4551
4664
  notificationSubscriptionTypes?: Maybe<Array<Scalars["String"]>>;
4552
4665
  };
@@ -4632,6 +4745,15 @@ export declare type NullableDateComparator = {
4632
4745
  /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
4633
4746
  null?: Maybe<Scalars["Boolean"]>;
4634
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
+ };
4635
4757
  /** Issue filtering options. */
4636
4758
  export declare type NullableIssueFilter = {
4637
4759
  /** Compound filters, all of which need to be matched by the issue. */
@@ -5015,6 +5137,8 @@ export declare type OauthClientApprovalNotification = Entity & Node & Notificati
5015
5137
  actor?: Maybe<User>;
5016
5138
  /** The time at which the entity was archived. Null if the entity has not been archived. */
5017
5139
  archivedAt?: Maybe<Scalars["DateTime"]>;
5140
+ /** The bot that caused the notification. */
5141
+ botActor?: Maybe<ActorBot>;
5018
5142
  /** The time at which the entity was created. */
5019
5143
  createdAt: Scalars["DateTime"];
5020
5144
  /**
@@ -5106,8 +5230,12 @@ export declare type Organization = Node & {
5106
5230
  roadmapEnabled: Scalars["Boolean"];
5107
5231
  /** Whether SAML authentication is enabled for organization. */
5108
5232
  samlEnabled: Scalars["Boolean"];
5233
+ /** [INTERNAL] SAML settings */
5234
+ samlSettings: Scalars["JSONObject"];
5109
5235
  /** Whether SCIM provisioning is enabled for organization. */
5110
5236
  scimEnabled: Scalars["Boolean"];
5237
+ /** Which day count to use for SLA calculations */
5238
+ slaDayCount: SlaDayCountType;
5111
5239
  /** The organization's subscription to a paid plan. */
5112
5240
  subscription?: Maybe<PaidSubscription>;
5113
5241
  /** Teams associated with the organization. */
@@ -5291,6 +5419,8 @@ export declare type OrganizationInvite = Node & {
5291
5419
  invitee?: Maybe<User>;
5292
5420
  /** The user who created the invitation. */
5293
5421
  inviter: User;
5422
+ /** Extra metadata associated with the organization invite. */
5423
+ metadata: Scalars["JSONObject"];
5294
5424
  /** The organization that the invite is associated with. */
5295
5425
  organization: Organization;
5296
5426
  /** The user role that the invitee will receive upon accepting the invite. */
@@ -5315,6 +5445,8 @@ export declare type OrganizationInviteCreateInput = {
5315
5445
  id?: Maybe<Scalars["String"]>;
5316
5446
  /** The message to send to the invitee. */
5317
5447
  message?: Maybe<Scalars["String"]>;
5448
+ /** [INTERNAL] Optional metadata about the invite */
5449
+ metadata?: Maybe<Scalars["JSONObject"]>;
5318
5450
  /** What user role the invite should grant. */
5319
5451
  role?: Maybe<UserRoleType>;
5320
5452
  /** The teams that the user has been invited to. */
@@ -5474,6 +5606,10 @@ export declare type Project = Node & {
5474
5606
  completedIssueCountHistory: Array<Scalars["Float"]>;
5475
5607
  /** The number of completed estimation points after each week. */
5476
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"]>;
5477
5613
  /** The project was created based on this issue. */
5478
5614
  convertedFromIssue?: Maybe<Issue>;
5479
5615
  /** The time at which the entity was created. */
@@ -5536,6 +5672,8 @@ export declare type Project = Node & {
5536
5672
  targetDate?: Maybe<Scalars["TimelessDate"]>;
5537
5673
  /** Teams associated with this project. */
5538
5674
  teams: TeamConnection;
5675
+ /** A flag that indicates whether the project is in the trash bin. */
5676
+ trashed?: Maybe<Scalars["Boolean"]>;
5539
5677
  /**
5540
5678
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
5541
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
@@ -5948,6 +6086,8 @@ export declare type ProjectNotification = Entity & Node & Notification & {
5948
6086
  actor?: Maybe<User>;
5949
6087
  /** The time at which the entity was archived. Null if the entity has not been archived. */
5950
6088
  archivedAt?: Maybe<Scalars["DateTime"]>;
6089
+ /** The bot that caused the notification. */
6090
+ botActor?: Maybe<ActorBot>;
5951
6091
  /** The time at which the entity was created. */
5952
6092
  createdAt: Scalars["DateTime"];
5953
6093
  /**
@@ -5983,6 +6123,8 @@ export declare type ProjectNotification = Entity & Node & Notification & {
5983
6123
  /** A project notification subscription. */
5984
6124
  export declare type ProjectNotificationSubscription = Entity & Node & NotificationSubscription & {
5985
6125
  __typename?: "ProjectNotificationSubscription";
6126
+ /** Whether the subscription is active or not */
6127
+ active: Scalars["Boolean"];
5986
6128
  /** The time at which the entity was archived. Null if the entity has not been archived. */
5987
6129
  archivedAt?: Maybe<Scalars["DateTime"]>;
5988
6130
  /** The type of view to which the notification subscription context is associated with. */
@@ -6051,6 +6193,10 @@ export declare type ProjectSearchResult = Node & {
6051
6193
  completedIssueCountHistory: Array<Scalars["Float"]>;
6052
6194
  /** The number of completed estimation points after each week. */
6053
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"]>;
6054
6200
  /** The project was created based on this issue. */
6055
6201
  convertedFromIssue?: Maybe<Issue>;
6056
6202
  /** The time at which the entity was created. */
@@ -6115,6 +6261,8 @@ export declare type ProjectSearchResult = Node & {
6115
6261
  targetDate?: Maybe<Scalars["TimelessDate"]>;
6116
6262
  /** Teams associated with this project. */
6117
6263
  teams: TeamConnection;
6264
+ /** A flag that indicates whether the project is in the trash bin. */
6265
+ trashed?: Maybe<Scalars["Boolean"]>;
6118
6266
  /**
6119
6267
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
6120
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
@@ -6205,6 +6353,8 @@ export declare type ProjectUpdate = Node & {
6205
6353
  body: Scalars["String"];
6206
6354
  /** The time at which the entity was created. */
6207
6355
  createdAt: Scalars["DateTime"];
6356
+ /** The diff between the current update and the previous one. */
6357
+ diff?: Maybe<Scalars["JSON"]>;
6208
6358
  /** The time the project update was edited. */
6209
6359
  editedAt?: Maybe<Scalars["DateTime"]>;
6210
6360
  /** The health of the project at the time of the update. */
@@ -6356,6 +6506,7 @@ export declare type ProjectUpdatePayload = {
6356
6506
  };
6357
6507
  /** The frequency at which to send project update reminders. */
6358
6508
  export declare enum ProjectUpdateReminderFrequency {
6509
+ Month = "month",
6359
6510
  Never = "never",
6360
6511
  TwoWeeks = "twoWeeks",
6361
6512
  Week = "week"
@@ -6432,6 +6583,8 @@ export declare type PushSubscriptionTestPayload = {
6432
6583
  /** The different push subscription types */
6433
6584
  export declare enum PushSubscriptionType {
6434
6585
  Apple = "apple",
6586
+ AppleDevelopment = "appleDevelopment",
6587
+ Firebase = "firebase",
6435
6588
  Web = "web"
6436
6589
  }
6437
6590
  export declare type Query = {
@@ -7019,6 +7172,7 @@ export declare type QuerySearchDocumentsArgs = {
7019
7172
  includeArchived?: Maybe<Scalars["Boolean"]>;
7020
7173
  last?: Maybe<Scalars["Int"]>;
7021
7174
  orderBy?: Maybe<PaginationOrderBy>;
7175
+ teamId?: Maybe<Scalars["String"]>;
7022
7176
  term: Scalars["String"];
7023
7177
  };
7024
7178
  export declare type QuerySearchIssuesArgs = {
@@ -7029,6 +7183,7 @@ export declare type QuerySearchIssuesArgs = {
7029
7183
  includeArchived?: Maybe<Scalars["Boolean"]>;
7030
7184
  last?: Maybe<Scalars["Int"]>;
7031
7185
  orderBy?: Maybe<PaginationOrderBy>;
7186
+ teamId?: Maybe<Scalars["String"]>;
7032
7187
  term: Scalars["String"];
7033
7188
  };
7034
7189
  export declare type QuerySearchProjectsArgs = {
@@ -7038,6 +7193,7 @@ export declare type QuerySearchProjectsArgs = {
7038
7193
  includeArchived?: Maybe<Scalars["Boolean"]>;
7039
7194
  last?: Maybe<Scalars["Int"]>;
7040
7195
  orderBy?: Maybe<PaginationOrderBy>;
7196
+ teamId?: Maybe<Scalars["String"]>;
7041
7197
  term: Scalars["String"];
7042
7198
  };
7043
7199
  export declare type QuerySsoUrlFromEmailArgs = {
@@ -7403,6 +7559,11 @@ export declare type RoadmapUpdateInput = {
7403
7559
  /** The sort order of the roadmap within the organization. */
7404
7560
  sortOrder?: Maybe<Scalars["Float"]>;
7405
7561
  };
7562
+ /** Which day count to use for SLA calculations */
7563
+ export declare enum SlaDayCountType {
7564
+ All = "all",
7565
+ OnlyBusinessDays = "onlyBusinessDays"
7566
+ }
7406
7567
  export declare type SamlConfiguration = {
7407
7568
  __typename?: "SamlConfiguration";
7408
7569
  /** The issuer's custom entity ID. */
@@ -7471,6 +7632,34 @@ export declare type SlaStatusComparator = {
7471
7632
  /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
7472
7633
  null?: Maybe<Scalars["Boolean"]>;
7473
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
+ };
7474
7663
  /** Slack notification specific settings. */
7475
7664
  export declare type SlackPostSettings = {
7476
7665
  __typename?: "SlackPostSettings";
@@ -7677,6 +7866,8 @@ export declare type Team = Node & {
7677
7866
  memberships: TeamMembershipConnection;
7678
7867
  /** The workflow state into which issues are moved when a PR has been merged. */
7679
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>;
7680
7871
  /** The team's name. */
7681
7872
  name: Scalars["String"];
7682
7873
  /** The organization that the team is associated with. */
@@ -7994,6 +8185,8 @@ export declare type TeamMembershipUpdateInput = {
7994
8185
  /** A team notification subscription. */
7995
8186
  export declare type TeamNotificationSubscription = Entity & Node & NotificationSubscription & {
7996
8187
  __typename?: "TeamNotificationSubscription";
8188
+ /** Whether the subscription is active or not */
8189
+ active: Scalars["Boolean"];
7997
8190
  /** The time at which the entity was archived. Null if the entity has not been archived. */
7998
8191
  archivedAt?: Maybe<Scalars["DateTime"]>;
7999
8192
  /** The type of view to which the notification subscription context is associated with. */
@@ -8093,6 +8286,8 @@ export declare type TeamUpdateInput = {
8093
8286
  markedAsDuplicateWorkflowStateId?: Maybe<Scalars["String"]>;
8094
8287
  /** The workflow state into which issues are moved when a PR has been merged. */
8095
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"]>;
8096
8291
  /** The name of the team. */
8097
8292
  name?: Maybe<Scalars["String"]>;
8098
8293
  /** Whether the team is private or not. */
@@ -8215,6 +8410,8 @@ export declare type TimelessDateComparator = {
8215
8410
  export declare type TokenUserAccountAuthInput = {
8216
8411
  /** The email which to login via the magic login code. */
8217
8412
  email: Scalars["String"];
8413
+ /** An optional invite link for an organization. */
8414
+ inviteLink?: Maybe<Scalars["String"]>;
8218
8415
  /** The identifiers of the teams to auto-join. */
8219
8416
  teamIdsToJoin?: Maybe<Array<Scalars["String"]>>;
8220
8417
  /** The timezone of the user's browser. */
@@ -8249,6 +8446,8 @@ export declare type UpdateOrganizationInput = {
8249
8446
  reducedPersonalInformation?: Maybe<Scalars["Boolean"]>;
8250
8447
  /** Whether the organization is using roadmap. */
8251
8448
  roadmapEnabled?: Maybe<Scalars["Boolean"]>;
8449
+ /** Which day count to use for SLA calculation. */
8450
+ slaDayCount?: Maybe<SlaDayCountType>;
8252
8451
  /** Internal. Whether SLAs have been enabled for the organization. */
8253
8452
  slaEnabled?: Maybe<Scalars["Boolean"]>;
8254
8453
  /** The URL key of the organization. */
@@ -8603,6 +8802,11 @@ export declare enum UserFlagType {
8603
8802
  TeamsPageIntroductionDismissed = "teamsPageIntroductionDismissed",
8604
8803
  ThreadedCommentsNudgeIsSeen = "threadedCommentsNudgeIsSeen",
8605
8804
  TriageWelcomeDismissed = "triageWelcomeDismissed",
8805
+ TryCyclesDismissed = "tryCyclesDismissed",
8806
+ TryGithubDismissed = "tryGithubDismissed",
8807
+ TryInvitePeopleDismissed = "tryInvitePeopleDismissed",
8808
+ TryRoadmapsDismissed = "tryRoadmapsDismissed",
8809
+ TryTriageDismissed = "tryTriageDismissed",
8606
8810
  UpdatedSlackThreadSyncIntegration = "updatedSlackThreadSyncIntegration"
8607
8811
  }
8608
8812
  /** Operations that can be applied to UserFlagType */
@@ -8615,6 +8819,8 @@ export declare enum UserFlagUpdateOperation {
8615
8819
  /** A user notification subscription. */
8616
8820
  export declare type UserNotificationSubscription = Entity & Node & NotificationSubscription & {
8617
8821
  __typename?: "UserNotificationSubscription";
8822
+ /** Whether the subscription is active or not */
8823
+ active: Scalars["Boolean"];
8618
8824
  /** The time at which the entity was archived. Null if the entity has not been archived. */
8619
8825
  archivedAt?: Maybe<Scalars["DateTime"]>;
8620
8826
  /** The type of view to which the notification subscription context is associated with. */
@@ -9247,9 +9453,15 @@ declare type Entity_UserNotificationSubscription_Fragment = {
9247
9453
  __typename: "UserNotificationSubscription";
9248
9454
  } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
9249
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">;
9250
9459
  export declare type CommentFragment = {
9251
9460
  __typename: "Comment";
9252
9461
  } & Pick<Comment, "url" | "reactionData" | "bodyData" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id"> & {
9462
+ botActor?: Maybe<{
9463
+ __typename?: "ActorBot";
9464
+ } & ActorBotFragment>;
9253
9465
  issue: {
9254
9466
  __typename?: "Issue";
9255
9467
  } & Pick<Issue, "id">;
@@ -9276,7 +9488,7 @@ export declare type EmojiFragment = {
9276
9488
  };
9277
9489
  export declare type CustomViewNotificationSubscriptionFragment = {
9278
9490
  __typename: "CustomViewNotificationSubscription";
9279
- } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9491
+ } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9280
9492
  cycle?: Maybe<{
9281
9493
  __typename?: "Cycle";
9282
9494
  } & Pick<Cycle, "id">>;
@@ -9308,10 +9520,13 @@ export declare type CustomViewFragment = {
9308
9520
  creator: {
9309
9521
  __typename?: "User";
9310
9522
  } & Pick<User, "id">;
9523
+ owner: {
9524
+ __typename?: "User";
9525
+ } & Pick<User, "id">;
9311
9526
  };
9312
9527
  export declare type CycleNotificationSubscriptionFragment = {
9313
9528
  __typename: "CycleNotificationSubscription";
9314
- } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9529
+ } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9315
9530
  customView?: Maybe<{
9316
9531
  __typename?: "CustomView";
9317
9532
  } & Pick<CustomView, "id">>;
@@ -9336,10 +9551,13 @@ export declare type CycleNotificationSubscriptionFragment = {
9336
9551
  };
9337
9552
  export declare type DocumentContentFragment = {
9338
9553
  __typename: "DocumentContent";
9339
- } & Pick<DocumentContent, "contentData" | "content" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
9554
+ } & Pick<DocumentContent, "contentData" | "content" | "contentState" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
9340
9555
  issue?: Maybe<{
9341
9556
  __typename?: "Issue";
9342
9557
  } & Pick<Issue, "id">>;
9558
+ project?: Maybe<{
9559
+ __typename?: "Project";
9560
+ } & Pick<Project, "id">>;
9343
9561
  };
9344
9562
  export declare type DocumentFragment = {
9345
9563
  __typename: "Document";
@@ -9437,7 +9655,7 @@ export declare type DeletePayloadFragment = {
9437
9655
  } & Pick<DeletePayload, "entityId" | "lastSyncId" | "success">;
9438
9656
  export declare type LabelNotificationSubscriptionFragment = {
9439
9657
  __typename: "LabelNotificationSubscription";
9440
- } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9658
+ } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9441
9659
  customView?: Maybe<{
9442
9660
  __typename?: "CustomView";
9443
9661
  } & Pick<CustomView, "id">>;
@@ -9470,6 +9688,9 @@ export declare type ProjectMilestoneFragment = {
9470
9688
  declare type Notification_IssueNotification_Fragment = {
9471
9689
  __typename: "IssueNotification";
9472
9690
  } & Pick<IssueNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
9691
+ botActor?: Maybe<{
9692
+ __typename?: "ActorBot";
9693
+ } & ActorBotFragment>;
9473
9694
  actor?: Maybe<{
9474
9695
  __typename?: "User";
9475
9696
  } & Pick<User, "id">>;
@@ -9480,6 +9701,9 @@ declare type Notification_IssueNotification_Fragment = {
9480
9701
  declare type Notification_OauthClientApprovalNotification_Fragment = {
9481
9702
  __typename: "OauthClientApprovalNotification";
9482
9703
  } & Pick<OauthClientApprovalNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
9704
+ botActor?: Maybe<{
9705
+ __typename?: "ActorBot";
9706
+ } & ActorBotFragment>;
9483
9707
  actor?: Maybe<{
9484
9708
  __typename?: "User";
9485
9709
  } & Pick<User, "id">>;
@@ -9490,6 +9714,9 @@ declare type Notification_OauthClientApprovalNotification_Fragment = {
9490
9714
  declare type Notification_ProjectNotification_Fragment = {
9491
9715
  __typename: "ProjectNotification";
9492
9716
  } & Pick<ProjectNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
9717
+ botActor?: Maybe<{
9718
+ __typename?: "ActorBot";
9719
+ } & ActorBotFragment>;
9493
9720
  actor?: Maybe<{
9494
9721
  __typename?: "User";
9495
9722
  } & Pick<User, "id">>;
@@ -9500,7 +9727,7 @@ declare type Notification_ProjectNotification_Fragment = {
9500
9727
  export declare type NotificationFragment = Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
9501
9728
  export declare type ProjectNotificationSubscriptionFragment = {
9502
9729
  __typename: "ProjectNotificationSubscription";
9503
- } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9730
+ } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9504
9731
  customView?: Maybe<{
9505
9732
  __typename?: "CustomView";
9506
9733
  } & Pick<CustomView, "id">>;
@@ -9526,6 +9753,9 @@ export declare type ProjectNotificationSubscriptionFragment = {
9526
9753
  export declare type ProjectNotificationFragment = {
9527
9754
  __typename: "ProjectNotification";
9528
9755
  } & Pick<ProjectNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
9756
+ botActor?: Maybe<{
9757
+ __typename?: "ActorBot";
9758
+ } & ActorBotFragment>;
9529
9759
  project: {
9530
9760
  __typename?: "Project";
9531
9761
  } & Pick<Project, "id">;
@@ -9541,7 +9771,7 @@ export declare type ProjectNotificationFragment = {
9541
9771
  };
9542
9772
  export declare type ProjectFragment = {
9543
9773
  __typename: "Project";
9544
- } & 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"> & {
9545
9775
  integrationsSettings?: Maybe<{
9546
9776
  __typename?: "IntegrationsSettings";
9547
9777
  } & Pick<IntegrationsSettings, "id">>;
@@ -9568,6 +9798,9 @@ export declare type IssueHistoryFragment = {
9568
9798
  relationChanges?: Maybe<Array<{
9569
9799
  __typename?: "IssueRelationHistoryPayload";
9570
9800
  } & IssueRelationHistoryPayloadFragment>>;
9801
+ botActor?: Maybe<{
9802
+ __typename?: "ActorBot";
9803
+ } & ActorBotFragment>;
9571
9804
  issueImport?: Maybe<{
9572
9805
  __typename?: "IssueImport";
9573
9806
  } & IssueImportFragment>;
@@ -9642,7 +9875,7 @@ export declare type RoadmapFragment = {
9642
9875
  };
9643
9876
  export declare type FirstResponderScheduleFragment = {
9644
9877
  __typename: "FirstResponderSchedule";
9645
- } & Pick<FirstResponderSchedule, "scheduleData" | "integrationScheduleId" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
9878
+ } & Pick<FirstResponderSchedule, "updatedAt" | "scheduleData" | "archivedAt" | "createdAt" | "id"> & {
9646
9879
  integration: {
9647
9880
  __typename?: "Integration";
9648
9881
  } & Pick<Integration, "id">;
@@ -9666,7 +9899,7 @@ export declare type WorkflowStateFragment = {
9666
9899
  };
9667
9900
  export declare type TeamNotificationSubscriptionFragment = {
9668
9901
  __typename: "TeamNotificationSubscription";
9669
- } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9902
+ } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9670
9903
  customView?: Maybe<{
9671
9904
  __typename?: "CustomView";
9672
9905
  } & Pick<CustomView, "id">>;
@@ -9704,7 +9937,7 @@ export declare type TemplateFragment = {
9704
9937
  };
9705
9938
  export declare type ProjectUpdateFragment = {
9706
9939
  __typename: "ProjectUpdate";
9707
- } & Pick<ProjectUpdate, "url" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body"> & {
9940
+ } & Pick<ProjectUpdate, "url" | "diff" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body"> & {
9708
9941
  project: {
9709
9942
  __typename?: "Project";
9710
9943
  } & Pick<Project, "id">;
@@ -9721,7 +9954,7 @@ export declare type UserAccountFragment = {
9721
9954
  };
9722
9955
  export declare type UserNotificationSubscriptionFragment = {
9723
9956
  __typename: "UserNotificationSubscription";
9724
- } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9957
+ } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9725
9958
  customView?: Maybe<{
9726
9959
  __typename?: "CustomView";
9727
9960
  } & Pick<CustomView, "id">>;
@@ -9788,7 +10021,7 @@ export declare type IntegrationFragment = {
9788
10021
  };
9789
10022
  export declare type OrganizationInviteFragment = {
9790
10023
  __typename: "OrganizationInvite";
9791
- } & Pick<OrganizationInvite, "external" | "email" | "updatedAt" | "archivedAt" | "createdAt" | "acceptedAt" | "expiresAt" | "id"> & {
10024
+ } & Pick<OrganizationInvite, "metadata" | "external" | "email" | "updatedAt" | "archivedAt" | "createdAt" | "acceptedAt" | "expiresAt" | "id"> & {
9792
10025
  inviter: {
9793
10026
  __typename?: "User";
9794
10027
  } & Pick<User, "id">;
@@ -9799,6 +10032,9 @@ export declare type OrganizationInviteFragment = {
9799
10032
  export declare type IssueNotificationFragment = {
9800
10033
  __typename: "IssueNotification";
9801
10034
  } & Pick<IssueNotification, "reactionEmoji" | "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
10035
+ botActor?: Maybe<{
10036
+ __typename?: "ActorBot";
10037
+ } & ActorBotFragment>;
9802
10038
  comment?: Maybe<{
9803
10039
  __typename?: "Comment";
9804
10040
  } & Pick<Comment, "id">>;
@@ -9855,6 +10091,9 @@ export declare type OauthClientApprovalNotificationFragment = {
9855
10091
  oauthClientApproval: {
9856
10092
  __typename?: "OauthClientApproval";
9857
10093
  } & OauthClientApprovalFragment;
10094
+ botActor?: Maybe<{
10095
+ __typename?: "ActorBot";
10096
+ } & ActorBotFragment>;
9858
10097
  actor?: Maybe<{
9859
10098
  __typename?: "User";
9860
10099
  } & Pick<User, "id">>;
@@ -9896,6 +10135,9 @@ export declare type TeamFragment = {
9896
10135
  startWorkflowState?: Maybe<{
9897
10136
  __typename?: "WorkflowState";
9898
10137
  } & Pick<WorkflowState, "id">>;
10138
+ mergeableWorkflowState?: Maybe<{
10139
+ __typename?: "WorkflowState";
10140
+ } & Pick<WorkflowState, "id">>;
9899
10141
  reviewWorkflowState?: Maybe<{
9900
10142
  __typename?: "WorkflowState";
9901
10143
  } & Pick<WorkflowState, "id">>;
@@ -9993,7 +10235,7 @@ export declare type RoadmapToProjectFragment = {
9993
10235
  };
9994
10236
  export declare type IntegrationTemplateFragment = {
9995
10237
  __typename: "IntegrationTemplate";
9996
- } & Pick<IntegrationTemplate, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10238
+ } & Pick<IntegrationTemplate, "foreignEntityId" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
9997
10239
  integration: {
9998
10240
  __typename?: "Integration";
9999
10241
  } & Pick<Integration, "id">;
@@ -10019,10 +10261,10 @@ export declare type JiraProjectDataFragment = {
10019
10261
  } & Pick<JiraProjectData, "id" | "key" | "name">;
10020
10262
  export declare type GitHubSettingsFragment = {
10021
10263
  __typename: "GitHubSettings";
10022
- } & Pick<GitHubSettings, "orgLogin" | "orgAvatarUrl">;
10264
+ } & Pick<GitHubSettings, "orgLogin" | "orgAvatarUrl" | "repositories">;
10023
10265
  declare type NotificationSubscription_CustomViewNotificationSubscription_Fragment = {
10024
10266
  __typename: "CustomViewNotificationSubscription";
10025
- } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10267
+ } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10026
10268
  customView: {
10027
10269
  __typename?: "CustomView";
10028
10270
  } & Pick<CustomView, "id">;
@@ -10047,7 +10289,7 @@ declare type NotificationSubscription_CustomViewNotificationSubscription_Fragmen
10047
10289
  };
10048
10290
  declare type NotificationSubscription_CycleNotificationSubscription_Fragment = {
10049
10291
  __typename: "CycleNotificationSubscription";
10050
- } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10292
+ } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10051
10293
  customView?: Maybe<{
10052
10294
  __typename?: "CustomView";
10053
10295
  } & Pick<CustomView, "id">>;
@@ -10072,7 +10314,7 @@ declare type NotificationSubscription_CycleNotificationSubscription_Fragment = {
10072
10314
  };
10073
10315
  declare type NotificationSubscription_LabelNotificationSubscription_Fragment = {
10074
10316
  __typename: "LabelNotificationSubscription";
10075
- } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10317
+ } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10076
10318
  customView?: Maybe<{
10077
10319
  __typename?: "CustomView";
10078
10320
  } & Pick<CustomView, "id">>;
@@ -10097,7 +10339,7 @@ declare type NotificationSubscription_LabelNotificationSubscription_Fragment = {
10097
10339
  };
10098
10340
  declare type NotificationSubscription_ProjectNotificationSubscription_Fragment = {
10099
10341
  __typename: "ProjectNotificationSubscription";
10100
- } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10342
+ } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10101
10343
  customView?: Maybe<{
10102
10344
  __typename?: "CustomView";
10103
10345
  } & Pick<CustomView, "id">>;
@@ -10122,7 +10364,7 @@ declare type NotificationSubscription_ProjectNotificationSubscription_Fragment =
10122
10364
  };
10123
10365
  declare type NotificationSubscription_TeamNotificationSubscription_Fragment = {
10124
10366
  __typename: "TeamNotificationSubscription";
10125
- } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10367
+ } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10126
10368
  customView?: Maybe<{
10127
10369
  __typename?: "CustomView";
10128
10370
  } & Pick<CustomView, "id">>;
@@ -10147,7 +10389,7 @@ declare type NotificationSubscription_TeamNotificationSubscription_Fragment = {
10147
10389
  };
10148
10390
  declare type NotificationSubscription_UserNotificationSubscription_Fragment = {
10149
10391
  __typename: "UserNotificationSubscription";
10150
- } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10392
+ } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10151
10393
  customView?: Maybe<{
10152
10394
  __typename?: "CustomView";
10153
10395
  } & Pick<CustomView, "id">>;
@@ -10220,6 +10462,13 @@ export declare type OauthClientApprovalFragment = {
10220
10462
  export declare type SentrySettingsFragment = {
10221
10463
  __typename: "SentrySettings";
10222
10464
  } & Pick<SentrySettings, "organizationSlug">;
10465
+ export declare type SlackAsksSettingsFragment = {
10466
+ __typename: "SlackAsksSettings";
10467
+ } & {
10468
+ slackChannelMapping?: Maybe<Array<{
10469
+ __typename?: "SlackChannelNameMapping";
10470
+ } & SlackChannelNameMappingFragment>>;
10471
+ };
10223
10472
  export declare type SlackPostSettingsFragment = {
10224
10473
  __typename: "SlackPostSettings";
10225
10474
  } & Pick<SlackPostSettings, "channel" | "channelId" | "configurationUrl">;
@@ -10260,6 +10509,9 @@ export declare type IntegrationSettingsFragment = {
10260
10509
  sentry?: Maybe<{
10261
10510
  __typename?: "SentrySettings";
10262
10511
  } & SentrySettingsFragment>;
10512
+ slackAsks?: Maybe<{
10513
+ __typename?: "SlackAsksSettings";
10514
+ } & SlackAsksSettingsFragment>;
10263
10515
  slackOrgProjectUpdatesPost?: Maybe<{
10264
10516
  __typename?: "SlackPostSettings";
10265
10517
  } & SlackPostSettingsFragment>;
@@ -10296,6 +10548,9 @@ export declare type JiraLinearMappingFragment = {
10296
10548
  export declare type PagerDutyScheduleMappingFragment = {
10297
10549
  __typename: "PagerDutyScheduleMapping";
10298
10550
  } & Pick<PagerDutyScheduleMapping, "scheduleId" | "scheduleName">;
10551
+ export declare type SlackChannelNameMappingFragment = {
10552
+ __typename: "SlackChannelNameMapping";
10553
+ } & Pick<SlackChannelNameMapping, "id" | "name" | "isPrivate">;
10299
10554
  export declare type FavoriteFragment = {
10300
10555
  __typename: "Favorite";
10301
10556
  } & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
@@ -10366,6 +10621,16 @@ export declare type ApiKeyPayloadFragment = {
10366
10621
  __typename?: "ApiKey";
10367
10622
  } & ApiKeyFragment;
10368
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
+ };
10369
10634
  export declare type AttachmentConnectionFragment = {
10370
10635
  __typename: "AttachmentConnection";
10371
10636
  } & {
@@ -11189,7 +11454,7 @@ export declare type ProjectSearchPayloadFragment = {
11189
11454
  };
11190
11455
  export declare type ProjectSearchResultFragment = {
11191
11456
  __typename: "ProjectSearchResult";
11192
- } & 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"> & {
11193
11458
  integrationsSettings?: Maybe<{
11194
11459
  __typename?: "IntegrationsSettings";
11195
11460
  } & Pick<IntegrationsSettings, "id">>;
@@ -11588,6 +11853,8 @@ export declare type DeleteAttachmentMutation = {
11588
11853
  };
11589
11854
  export declare type AttachmentLinkDiscordMutationVariables = Exact<{
11590
11855
  channelId: Scalars["String"];
11856
+ createAsUser?: Maybe<Scalars["String"]>;
11857
+ displayIconUrl?: Maybe<Scalars["String"]>;
11591
11858
  issueId: Scalars["String"];
11592
11859
  messageId: Scalars["String"];
11593
11860
  url: Scalars["String"];
@@ -11601,6 +11868,8 @@ export declare type AttachmentLinkDiscordMutation = {
11601
11868
  };
11602
11869
  export declare type AttachmentLinkFrontMutationVariables = Exact<{
11603
11870
  conversationId: Scalars["String"];
11871
+ createAsUser?: Maybe<Scalars["String"]>;
11872
+ displayIconUrl?: Maybe<Scalars["String"]>;
11604
11873
  issueId: Scalars["String"];
11605
11874
  }>;
11606
11875
  export declare type AttachmentLinkFrontMutation = {
@@ -11612,6 +11881,8 @@ export declare type AttachmentLinkFrontMutation = {
11612
11881
  };
11613
11882
  export declare type AttachmentLinkIntercomMutationVariables = Exact<{
11614
11883
  conversationId: Scalars["String"];
11884
+ createAsUser?: Maybe<Scalars["String"]>;
11885
+ displayIconUrl?: Maybe<Scalars["String"]>;
11615
11886
  issueId: Scalars["String"];
11616
11887
  }>;
11617
11888
  export declare type AttachmentLinkIntercomMutation = {
@@ -11634,6 +11905,8 @@ export declare type AttachmentLinkJiraIssueMutation = {
11634
11905
  };
11635
11906
  export declare type AttachmentLinkSlackMutationVariables = Exact<{
11636
11907
  channel: Scalars["String"];
11908
+ createAsUser?: Maybe<Scalars["String"]>;
11909
+ displayIconUrl?: Maybe<Scalars["String"]>;
11637
11910
  id?: Maybe<Scalars["String"]>;
11638
11911
  issueId: Scalars["String"];
11639
11912
  latest: Scalars["String"];
@@ -11649,6 +11922,8 @@ export declare type AttachmentLinkSlackMutation = {
11649
11922
  } & AttachmentPayloadFragment;
11650
11923
  };
11651
11924
  export declare type AttachmentLinkUrlMutationVariables = Exact<{
11925
+ createAsUser?: Maybe<Scalars["String"]>;
11926
+ displayIconUrl?: Maybe<Scalars["String"]>;
11652
11927
  id?: Maybe<Scalars["String"]>;
11653
11928
  issueId: Scalars["String"];
11654
11929
  title?: Maybe<Scalars["String"]>;
@@ -11662,6 +11937,8 @@ export declare type AttachmentLinkUrlMutation = {
11662
11937
  } & AttachmentPayloadFragment;
11663
11938
  };
11664
11939
  export declare type AttachmentLinkZendeskMutationVariables = Exact<{
11940
+ createAsUser?: Maybe<Scalars["String"]>;
11941
+ displayIconUrl?: Maybe<Scalars["String"]>;
11665
11942
  issueId: Scalars["String"];
11666
11943
  ticketId: Scalars["String"];
11667
11944
  }>;
@@ -11976,6 +12253,17 @@ export declare type ImportFileUploadMutation = {
11976
12253
  __typename?: "UploadPayload";
11977
12254
  } & UploadPayloadFragment;
11978
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
+ };
11979
12267
  export declare type DeleteIntegrationMutationVariables = Exact<{
11980
12268
  id: Scalars["String"];
11981
12269
  }>;
@@ -12766,6 +13054,7 @@ export declare type UpdateOrganizationMutation = {
12766
13054
  };
12767
13055
  export declare type ArchiveProjectMutationVariables = Exact<{
12768
13056
  id: Scalars["String"];
13057
+ trash?: Maybe<Scalars["Boolean"]>;
12769
13058
  }>;
12770
13059
  export declare type ArchiveProjectMutation = {
12771
13060
  __typename?: "Mutation";
@@ -12791,8 +13080,8 @@ export declare type DeleteProjectMutation = {
12791
13080
  __typename?: "Mutation";
12792
13081
  } & {
12793
13082
  projectDelete: {
12794
- __typename?: "DeletePayload";
12795
- } & DeletePayloadFragment;
13083
+ __typename?: "ProjectArchivePayload";
13084
+ } & ProjectArchivePayloadFragment;
12796
13085
  };
12797
13086
  export declare type CreateProjectLinkMutationVariables = Exact<{
12798
13087
  input: ProjectLinkCreateInput;
@@ -13795,6 +14084,20 @@ export declare type CommentQuery = {
13795
14084
  __typename?: "Comment";
13796
14085
  } & CommentFragment;
13797
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
+ };
13798
14101
  export declare type Comment_ChildrenQueryVariables = Exact<{
13799
14102
  id: Scalars["String"];
13800
14103
  after?: Maybe<Scalars["String"]>;
@@ -15239,6 +15542,7 @@ export declare type SearchDocumentsQueryVariables = Exact<{
15239
15542
  includeArchived?: Maybe<Scalars["Boolean"]>;
15240
15543
  last?: Maybe<Scalars["Int"]>;
15241
15544
  orderBy?: Maybe<PaginationOrderBy>;
15545
+ teamId?: Maybe<Scalars["String"]>;
15242
15546
  term: Scalars["String"];
15243
15547
  }>;
15244
15548
  export declare type SearchDocumentsQuery = {
@@ -15255,6 +15559,7 @@ export declare type SearchDocuments_ArchivePayloadQueryVariables = Exact<{
15255
15559
  includeArchived?: Maybe<Scalars["Boolean"]>;
15256
15560
  last?: Maybe<Scalars["Int"]>;
15257
15561
  orderBy?: Maybe<PaginationOrderBy>;
15562
+ teamId?: Maybe<Scalars["String"]>;
15258
15563
  term: Scalars["String"];
15259
15564
  }>;
15260
15565
  export declare type SearchDocuments_ArchivePayloadQuery = {
@@ -15276,6 +15581,7 @@ export declare type SearchIssuesQueryVariables = Exact<{
15276
15581
  includeArchived?: Maybe<Scalars["Boolean"]>;
15277
15582
  last?: Maybe<Scalars["Int"]>;
15278
15583
  orderBy?: Maybe<PaginationOrderBy>;
15584
+ teamId?: Maybe<Scalars["String"]>;
15279
15585
  term: Scalars["String"];
15280
15586
  }>;
15281
15587
  export declare type SearchIssuesQuery = {
@@ -15293,6 +15599,7 @@ export declare type SearchIssues_ArchivePayloadQueryVariables = Exact<{
15293
15599
  includeArchived?: Maybe<Scalars["Boolean"]>;
15294
15600
  last?: Maybe<Scalars["Int"]>;
15295
15601
  orderBy?: Maybe<PaginationOrderBy>;
15602
+ teamId?: Maybe<Scalars["String"]>;
15296
15603
  term: Scalars["String"];
15297
15604
  }>;
15298
15605
  export declare type SearchIssues_ArchivePayloadQuery = {
@@ -15313,6 +15620,7 @@ export declare type SearchProjectsQueryVariables = Exact<{
15313
15620
  includeArchived?: Maybe<Scalars["Boolean"]>;
15314
15621
  last?: Maybe<Scalars["Int"]>;
15315
15622
  orderBy?: Maybe<PaginationOrderBy>;
15623
+ teamId?: Maybe<Scalars["String"]>;
15316
15624
  term: Scalars["String"];
15317
15625
  }>;
15318
15626
  export declare type SearchProjectsQuery = {
@@ -15329,6 +15637,7 @@ export declare type SearchProjects_ArchivePayloadQueryVariables = Exact<{
15329
15637
  includeArchived?: Maybe<Scalars["Boolean"]>;
15330
15638
  last?: Maybe<Scalars["Int"]>;
15331
15639
  orderBy?: Maybe<PaginationOrderBy>;
15640
+ teamId?: Maybe<Scalars["String"]>;
15332
15641
  term: Scalars["String"];
15333
15642
  }>;
15334
15643
  export declare type SearchProjects_ArchivePayloadQuery = {
@@ -15910,6 +16219,7 @@ export declare const AttachmentArchivePayloadFragmentDoc: DocumentNode<Attachmen
15910
16219
  export declare const CycleArchivePayloadFragmentDoc: DocumentNode<CycleArchivePayloadFragment, unknown>;
15911
16220
  export declare const DeletePayloadFragmentDoc: DocumentNode<DeletePayloadFragment, unknown>;
15912
16221
  export declare const IssueArchivePayloadFragmentDoc: DocumentNode<IssueArchivePayloadFragment, unknown>;
16222
+ export declare const ActorBotFragmentDoc: DocumentNode<ActorBotFragment, unknown>;
15913
16223
  export declare const IssueNotificationFragmentDoc: DocumentNode<IssueNotificationFragment, unknown>;
15914
16224
  export declare const OauthClientApprovalFragmentDoc: DocumentNode<OauthClientApprovalFragment, unknown>;
15915
16225
  export declare const OauthClientApprovalNotificationFragmentDoc: DocumentNode<OauthClientApprovalNotificationFragment, unknown>;
@@ -15945,6 +16255,8 @@ export declare const NotionSettingsFragmentDoc: DocumentNode<NotionSettingsFragm
15945
16255
  export declare const PagerDutyScheduleMappingFragmentDoc: DocumentNode<PagerDutyScheduleMappingFragment, unknown>;
15946
16256
  export declare const PagerDutySettingsFragmentDoc: DocumentNode<PagerDutySettingsFragment, unknown>;
15947
16257
  export declare const SentrySettingsFragmentDoc: DocumentNode<SentrySettingsFragment, unknown>;
16258
+ export declare const SlackChannelNameMappingFragmentDoc: DocumentNode<SlackChannelNameMappingFragment, unknown>;
16259
+ export declare const SlackAsksSettingsFragmentDoc: DocumentNode<SlackAsksSettingsFragment, unknown>;
15948
16260
  export declare const SlackPostSettingsFragmentDoc: DocumentNode<SlackPostSettingsFragment, unknown>;
15949
16261
  export declare const ZendeskSettingsFragmentDoc: DocumentNode<ZendeskSettingsFragment, unknown>;
15950
16262
  export declare const IntegrationSettingsFragmentDoc: DocumentNode<IntegrationSettingsFragment, unknown>;
@@ -15954,6 +16266,7 @@ export declare const ApiKeyFragmentDoc: DocumentNode<ApiKeyFragment, unknown>;
15954
16266
  export declare const PageInfoFragmentDoc: DocumentNode<PageInfoFragment, unknown>;
15955
16267
  export declare const ApiKeyConnectionFragmentDoc: DocumentNode<ApiKeyConnectionFragment, unknown>;
15956
16268
  export declare const ApiKeyPayloadFragmentDoc: DocumentNode<ApiKeyPayloadFragment, unknown>;
16269
+ export declare const AsksChannelConnectPayloadFragmentDoc: DocumentNode<AsksChannelConnectPayloadFragment, unknown>;
15957
16270
  export declare const AttachmentFragmentDoc: DocumentNode<AttachmentFragment, unknown>;
15958
16271
  export declare const AttachmentConnectionFragmentDoc: DocumentNode<AttachmentConnectionFragment, unknown>;
15959
16272
  export declare const AttachmentPayloadFragmentDoc: DocumentNode<AttachmentPayloadFragment, unknown>;
@@ -16141,16 +16454,22 @@ export declare const DeleteAttachmentDocument: DocumentNode<DeleteAttachmentMuta
16141
16454
  }>>;
16142
16455
  export declare const AttachmentLinkDiscordDocument: DocumentNode<AttachmentLinkDiscordMutation, Exact<{
16143
16456
  channelId: Scalars["String"];
16457
+ createAsUser?: Maybe<string> | undefined;
16458
+ displayIconUrl?: Maybe<string> | undefined;
16144
16459
  issueId: Scalars["String"];
16145
16460
  messageId: Scalars["String"];
16146
16461
  url: Scalars["String"];
16147
16462
  }>>;
16148
16463
  export declare const AttachmentLinkFrontDocument: DocumentNode<AttachmentLinkFrontMutation, Exact<{
16149
16464
  conversationId: Scalars["String"];
16465
+ createAsUser?: Maybe<string> | undefined;
16466
+ displayIconUrl?: Maybe<string> | undefined;
16150
16467
  issueId: Scalars["String"];
16151
16468
  }>>;
16152
16469
  export declare const AttachmentLinkIntercomDocument: DocumentNode<AttachmentLinkIntercomMutation, Exact<{
16153
16470
  conversationId: Scalars["String"];
16471
+ createAsUser?: Maybe<string> | undefined;
16472
+ displayIconUrl?: Maybe<string> | undefined;
16154
16473
  issueId: Scalars["String"];
16155
16474
  }>>;
16156
16475
  export declare const AttachmentLinkJiraIssueDocument: DocumentNode<AttachmentLinkJiraIssueMutation, Exact<{
@@ -16159,6 +16478,8 @@ export declare const AttachmentLinkJiraIssueDocument: DocumentNode<AttachmentLin
16159
16478
  }>>;
16160
16479
  export declare const AttachmentLinkSlackDocument: DocumentNode<AttachmentLinkSlackMutation, Exact<{
16161
16480
  channel: Scalars["String"];
16481
+ createAsUser?: Maybe<string> | undefined;
16482
+ displayIconUrl?: Maybe<string> | undefined;
16162
16483
  id?: Maybe<string> | undefined;
16163
16484
  issueId: Scalars["String"];
16164
16485
  latest: Scalars["String"];
@@ -16167,12 +16488,16 @@ export declare const AttachmentLinkSlackDocument: DocumentNode<AttachmentLinkSla
16167
16488
  url: Scalars["String"];
16168
16489
  }>>;
16169
16490
  export declare const AttachmentLinkUrlDocument: DocumentNode<AttachmentLinkUrlMutation, Exact<{
16491
+ createAsUser?: Maybe<string> | undefined;
16492
+ displayIconUrl?: Maybe<string> | undefined;
16170
16493
  id?: Maybe<string> | undefined;
16171
16494
  issueId: Scalars["String"];
16172
16495
  title?: Maybe<string> | undefined;
16173
16496
  url: Scalars["String"];
16174
16497
  }>>;
16175
16498
  export declare const AttachmentLinkZendeskDocument: DocumentNode<AttachmentLinkZendeskMutation, Exact<{
16499
+ createAsUser?: Maybe<string> | undefined;
16500
+ displayIconUrl?: Maybe<string> | undefined;
16176
16501
  issueId: Scalars["String"];
16177
16502
  ticketId: Scalars["String"];
16178
16503
  }>>;
@@ -16277,6 +16602,10 @@ export declare const ImportFileUploadDocument: DocumentNode<ImportFileUploadMuta
16277
16602
  metaData?: Maybe<Record<string, unknown>> | undefined;
16278
16603
  size: Scalars["Int"];
16279
16604
  }>>;
16605
+ export declare const IntegrationAsksConnectChannelDocument: DocumentNode<IntegrationAsksConnectChannelMutation, Exact<{
16606
+ code: Scalars["String"];
16607
+ redirectUri: Scalars["String"];
16608
+ }>>;
16280
16609
  export declare const DeleteIntegrationDocument: DocumentNode<DeleteIntegrationMutation, Exact<{
16281
16610
  id: Scalars["String"];
16282
16611
  }>>;
@@ -16570,6 +16899,7 @@ export declare const UpdateOrganizationDocument: DocumentNode<UpdateOrganization
16570
16899
  }>>;
16571
16900
  export declare const ArchiveProjectDocument: DocumentNode<ArchiveProjectMutation, Exact<{
16572
16901
  id: Scalars["String"];
16902
+ trash?: Maybe<boolean> | undefined;
16573
16903
  }>>;
16574
16904
  export declare const CreateProjectDocument: DocumentNode<CreateProjectMutation, Exact<{
16575
16905
  input: ProjectCreateInput;
@@ -16944,6 +17274,9 @@ export declare const AvailableUsersDocument: DocumentNode<AvailableUsersQuery, E
16944
17274
  export declare const CommentDocument: DocumentNode<CommentQuery, Exact<{
16945
17275
  id: Scalars["String"];
16946
17276
  }>>;
17277
+ export declare const Comment_BotActorDocument: DocumentNode<Comment_BotActorQuery, Exact<{
17278
+ id: Scalars["String"];
17279
+ }>>;
16947
17280
  export declare const Comment_ChildrenDocument: DocumentNode<Comment_ChildrenQuery, Exact<{
16948
17281
  id: Scalars["String"];
16949
17282
  after?: Maybe<string> | undefined;
@@ -17578,6 +17911,7 @@ export declare const SearchDocumentsDocument: DocumentNode<SearchDocumentsQuery,
17578
17911
  includeArchived?: Maybe<boolean> | undefined;
17579
17912
  last?: Maybe<number> | undefined;
17580
17913
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17914
+ teamId?: Maybe<string> | undefined;
17581
17915
  term: Scalars["String"];
17582
17916
  }>>;
17583
17917
  export declare const SearchDocuments_ArchivePayloadDocument: DocumentNode<SearchDocuments_ArchivePayloadQuery, Exact<{
@@ -17587,6 +17921,7 @@ export declare const SearchDocuments_ArchivePayloadDocument: DocumentNode<Search
17587
17921
  includeArchived?: Maybe<boolean> | undefined;
17588
17922
  last?: Maybe<number> | undefined;
17589
17923
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17924
+ teamId?: Maybe<string> | undefined;
17590
17925
  term: Scalars["String"];
17591
17926
  }>>;
17592
17927
  export declare const SearchIssuesDocument: DocumentNode<SearchIssuesQuery, Exact<{
@@ -17597,6 +17932,7 @@ export declare const SearchIssuesDocument: DocumentNode<SearchIssuesQuery, Exact
17597
17932
  includeArchived?: Maybe<boolean> | undefined;
17598
17933
  last?: Maybe<number> | undefined;
17599
17934
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17935
+ teamId?: Maybe<string> | undefined;
17600
17936
  term: Scalars["String"];
17601
17937
  }>>;
17602
17938
  export declare const SearchIssues_ArchivePayloadDocument: DocumentNode<SearchIssues_ArchivePayloadQuery, Exact<{
@@ -17607,6 +17943,7 @@ export declare const SearchIssues_ArchivePayloadDocument: DocumentNode<SearchIss
17607
17943
  includeArchived?: Maybe<boolean> | undefined;
17608
17944
  last?: Maybe<number> | undefined;
17609
17945
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17946
+ teamId?: Maybe<string> | undefined;
17610
17947
  term: Scalars["String"];
17611
17948
  }>>;
17612
17949
  export declare const SearchProjectsDocument: DocumentNode<SearchProjectsQuery, Exact<{
@@ -17616,6 +17953,7 @@ export declare const SearchProjectsDocument: DocumentNode<SearchProjectsQuery, E
17616
17953
  includeArchived?: Maybe<boolean> | undefined;
17617
17954
  last?: Maybe<number> | undefined;
17618
17955
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17956
+ teamId?: Maybe<string> | undefined;
17619
17957
  term: Scalars["String"];
17620
17958
  }>>;
17621
17959
  export declare const SearchProjects_ArchivePayloadDocument: DocumentNode<SearchProjects_ArchivePayloadQuery, Exact<{
@@ -17625,6 +17963,7 @@ export declare const SearchProjects_ArchivePayloadDocument: DocumentNode<SearchP
17625
17963
  includeArchived?: Maybe<boolean> | undefined;
17626
17964
  last?: Maybe<number> | undefined;
17627
17965
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17966
+ teamId?: Maybe<string> | undefined;
17628
17967
  term: Scalars["String"];
17629
17968
  }>>;
17630
17969
  export declare const SsoUrlFromEmailDocument: DocumentNode<SsoUrlFromEmailQuery, Exact<{