@linear/sdk 79.0.0 → 80.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -1560,7 +1560,9 @@ var _generated_documents_exports = /* @__PURE__ */ require_webhooks.__export({
1560
1560
  AiConversationWidgetDisplayInfoFragmentDoc: () => AiConversationWidgetDisplayInfoFragmentDoc,
1561
1561
  AiConversationWidgetName: () => AiConversationWidgetName,
1562
1562
  AiConversationWidgetPartFragmentDoc: () => AiConversationWidgetPartFragmentDoc,
1563
+ AiPromptProgressStatus: () => AiPromptProgressStatus,
1563
1564
  AiPromptRulesFragmentDoc: () => AiPromptRulesFragmentDoc,
1565
+ AiPromptType: () => AiPromptType,
1564
1566
  AirbyteIntegrationConnectDocument: () => AirbyteIntegrationConnectDocument,
1565
1567
  AppUserNotificationWebhookPayloadFragmentDoc: () => AppUserNotificationWebhookPayloadFragmentDoc,
1566
1568
  AppUserTeamAccessChangedWebhookPayloadFragmentDoc: () => AppUserTeamAccessChangedWebhookPayloadFragmentDoc,
@@ -1828,6 +1830,7 @@ var _generated_documents_exports = /* @__PURE__ */ require_webhooks.__export({
1828
1830
  DocumentChildWebhookPayloadFragmentDoc: () => DocumentChildWebhookPayloadFragmentDoc,
1829
1831
  DocumentConnectionFragmentDoc: () => DocumentConnectionFragmentDoc,
1830
1832
  DocumentContentChildWebhookPayloadFragmentDoc: () => DocumentContentChildWebhookPayloadFragmentDoc,
1833
+ DocumentContentDraftFragmentDoc: () => DocumentContentDraftFragmentDoc,
1831
1834
  DocumentContentFragmentDoc: () => DocumentContentFragmentDoc,
1832
1835
  DocumentContentHistoryDocument: () => DocumentContentHistoryDocument,
1833
1836
  DocumentContentHistoryPayloadFragmentDoc: () => DocumentContentHistoryPayloadFragmentDoc,
@@ -1978,6 +1981,8 @@ var _generated_documents_exports = /* @__PURE__ */ require_webhooks.__export({
1978
1981
  IntegrationIntercomDocument: () => IntegrationIntercomDocument,
1979
1982
  IntegrationJiraPersonalDocument: () => IntegrationJiraPersonalDocument,
1980
1983
  IntegrationLoomDocument: () => IntegrationLoomDocument,
1984
+ IntegrationMicrosoftPersonalConnectDocument: () => IntegrationMicrosoftPersonalConnectDocument,
1985
+ IntegrationMicrosoftTeamsDocument: () => IntegrationMicrosoftTeamsDocument,
1981
1986
  IntegrationPayloadFragmentDoc: () => IntegrationPayloadFragmentDoc,
1982
1987
  IntegrationRequestDocument: () => IntegrationRequestDocument,
1983
1988
  IntegrationRequestPayloadFragmentDoc: () => IntegrationRequestPayloadFragmentDoc,
@@ -2318,11 +2323,14 @@ var _generated_documents_exports = /* @__PURE__ */ require_webhooks.__export({
2318
2323
  ReleaseChannel: () => ReleaseChannel,
2319
2324
  ReleasePayloadFragmentDoc: () => ReleasePayloadFragmentDoc,
2320
2325
  ReleasePipelineArchivePayloadFragmentDoc: () => ReleasePipelineArchivePayloadFragmentDoc,
2326
+ ReleasePipelineChildWebhookPayloadFragmentDoc: () => ReleasePipelineChildWebhookPayloadFragmentDoc,
2321
2327
  ReleasePipelinePayloadFragmentDoc: () => ReleasePipelinePayloadFragmentDoc,
2322
2328
  ReleasePipelineType: () => ReleasePipelineType,
2323
2329
  ReleaseStageArchivePayloadFragmentDoc: () => ReleaseStageArchivePayloadFragmentDoc,
2330
+ ReleaseStageChildWebhookPayloadFragmentDoc: () => ReleaseStageChildWebhookPayloadFragmentDoc,
2324
2331
  ReleaseStagePayloadFragmentDoc: () => ReleaseStagePayloadFragmentDoc,
2325
2332
  ReleaseStageType: () => ReleaseStageType,
2333
+ ReleaseWebhookPayloadFragmentDoc: () => ReleaseWebhookPayloadFragmentDoc,
2326
2334
  RepositorySuggestionFragmentDoc: () => RepositorySuggestionFragmentDoc,
2327
2335
  RepositorySuggestionsPayloadFragmentDoc: () => RepositorySuggestionsPayloadFragmentDoc,
2328
2336
  ResendOrganizationInviteByEmailDocument: () => ResendOrganizationInviteByEmailDocument,
@@ -2362,6 +2370,7 @@ var _generated_documents_exports = /* @__PURE__ */ require_webhooks.__export({
2362
2370
  SlackChannelType: () => SlackChannelType,
2363
2371
  SsoUrlFromEmailDocument: () => SsoUrlFromEmailDocument,
2364
2372
  SsoUrlFromEmailResponseFragmentDoc: () => SsoUrlFromEmailResponseFragmentDoc,
2373
+ SubscriptionFragmentDoc: () => SubscriptionFragmentDoc,
2365
2374
  SuccessPayloadFragmentDoc: () => SuccessPayloadFragmentDoc,
2366
2375
  SummaryFragmentDoc: () => SummaryFragmentDoc,
2367
2376
  SummaryGenerationStatus: () => SummaryGenerationStatus,
@@ -2748,6 +2757,32 @@ let AiConversationWidgetName = /* @__PURE__ */ function(AiConversationWidgetName
2748
2757
  AiConversationWidgetName$1["EntityList"] = "EntityList";
2749
2758
  return AiConversationWidgetName$1;
2750
2759
  }({});
2760
+ /** [Internal] The status of a prompt workflow. */
2761
+ let AiPromptProgressStatus = /* @__PURE__ */ function(AiPromptProgressStatus$1) {
2762
+ AiPromptProgressStatus$1["Canceled"] = "canceled";
2763
+ AiPromptProgressStatus$1["Created"] = "created";
2764
+ AiPromptProgressStatus$1["Failed"] = "failed";
2765
+ AiPromptProgressStatus$1["Finished"] = "finished";
2766
+ AiPromptProgressStatus$1["InProgress"] = "inProgress";
2767
+ return AiPromptProgressStatus$1;
2768
+ }({});
2769
+ /** The type of AI prompt workflow. */
2770
+ let AiPromptType = /* @__PURE__ */ function(AiPromptType$1) {
2771
+ AiPromptType$1["AgentGuidance"] = "agentGuidance";
2772
+ AiPromptType$1["AiConversation"] = "aiConversation";
2773
+ AiPromptType$1["CodeIntelligence"] = "codeIntelligence";
2774
+ AiPromptType$1["GongIssueIntake"] = "gongIssueIntake";
2775
+ AiPromptType$1["InitiativeUpdates"] = "initiativeUpdates";
2776
+ AiPromptType$1["IntercomIssueIntake"] = "intercomIssueIntake";
2777
+ AiPromptType$1["InternalResearch"] = "internalResearch";
2778
+ AiPromptType$1["MicrosoftTeamsIssueIntake"] = "microsoftTeamsIssueIntake";
2779
+ AiPromptType$1["ProductIntelligence"] = "productIntelligence";
2780
+ AiPromptType$1["ProjectUpdates"] = "projectUpdates";
2781
+ AiPromptType$1["SlackIssueIntake"] = "slackIssueIntake";
2782
+ AiPromptType$1["TriageAgent"] = "triageAgent";
2783
+ AiPromptType$1["ZendeskIssueIntake"] = "zendeskIssueIntake";
2784
+ return AiPromptType$1;
2785
+ }({});
2751
2786
  let AuthenticationSessionType = /* @__PURE__ */ function(AuthenticationSessionType$1) {
2752
2787
  AuthenticationSessionType$1["Android"] = "android";
2753
2788
  AuthenticationSessionType$1["Desktop"] = "desktop";
@@ -3494,6 +3529,7 @@ let WorkflowTrigger = /* @__PURE__ */ function(WorkflowTrigger$1) {
3494
3529
  let WorkflowTriggerType = /* @__PURE__ */ function(WorkflowTriggerType$1) {
3495
3530
  WorkflowTriggerType$1["Issue"] = "issue";
3496
3531
  WorkflowTriggerType$1["Project"] = "project";
3532
+ WorkflowTriggerType$1["Release"] = "release";
3497
3533
  return WorkflowTriggerType$1;
3498
3534
  }({});
3499
3535
  let WorkflowType = /* @__PURE__ */ function(WorkflowType$1) {
@@ -9914,204 +9950,72 @@ fragment IssueChildWebhookPayload on IssueChildWebhookPayload {
9914
9950
  identifier
9915
9951
  title
9916
9952
  }`, { fragmentName: "ReactionWebhookPayload" });
9917
- const IssueStatusChangedNotificationWebhookPayloadFragmentDoc = new TypedDocumentString(`
9918
- fragment IssueStatusChangedNotificationWebhookPayload on IssueStatusChangedNotificationWebhookPayload {
9953
+ const ReleaseStageChildWebhookPayloadFragmentDoc = new TypedDocumentString(`
9954
+ fragment ReleaseStageChildWebhookPayload on ReleaseStageChildWebhookPayload {
9919
9955
  __typename
9920
- type
9921
- actorId
9922
9956
  id
9923
- externalUserActorId
9924
- issueId
9925
- userId
9926
- actor {
9927
- ...UserChildWebhookPayload
9928
- }
9929
- issue {
9930
- ...IssueWithDescriptionChildWebhookPayload
9931
- }
9932
- archivedAt
9933
- createdAt
9934
- updatedAt
9935
- }
9936
- fragment TeamChildWebhookPayload on TeamChildWebhookPayload {
9937
- __typename
9938
- id
9939
- key
9940
- name
9941
- }
9942
- fragment UserChildWebhookPayload on UserChildWebhookPayload {
9943
- __typename
9944
- id
9945
- url
9946
- avatarUrl
9947
- email
9957
+ color
9948
9958
  name
9959
+ position
9960
+ type
9949
9961
  }
9950
- fragment IssueWithDescriptionChildWebhookPayload on IssueWithDescriptionChildWebhookPayload {
9951
- __typename
9952
- id
9953
- team {
9954
- ...TeamChildWebhookPayload
9955
- }
9956
- teamId
9957
- url
9958
- description
9959
- identifier
9960
- title
9961
- }`, { fragmentName: "IssueStatusChangedNotificationWebhookPayload" });
9962
- const UserWebhookPayloadFragmentDoc = new TypedDocumentString(`
9963
- fragment UserWebhookPayload on UserWebhookPayload {
9962
+ `, { fragmentName: "ReleaseStageChildWebhookPayload" });
9963
+ const ReleasePipelineChildWebhookPayloadFragmentDoc = new TypedDocumentString(`
9964
+ fragment ReleasePipelineChildWebhookPayload on ReleasePipelineChildWebhookPayload {
9964
9965
  __typename
9965
9966
  id
9966
9967
  url
9967
- avatarUrl
9968
- description
9969
- displayName
9970
- email
9971
- timezone
9972
9968
  name
9973
- disableReason
9974
- archivedAt
9975
- createdAt
9976
- updatedAt
9977
- guest
9978
- active
9979
- admin
9980
- app
9981
- owner
9982
- }
9983
- `, { fragmentName: "UserWebhookPayload" });
9984
- const GuidanceRuleWebhookPayloadFragmentDoc = new TypedDocumentString(`
9985
- fragment GuidanceRuleWebhookPayload on GuidanceRuleWebhookPayload {
9986
- __typename
9987
- body
9988
- }
9989
- `, { fragmentName: "GuidanceRuleWebhookPayload" });
9990
- const AgentActivityWebhookPayloadFragmentDoc = new TypedDocumentString(`
9991
- fragment AgentActivityWebhookPayload on AgentActivityWebhookPayload {
9992
- __typename
9993
- signal
9994
- signalMetadata
9995
- agentSessionId
9996
- sourceCommentId
9997
- id
9998
- userId
9999
- content
10000
- archivedAt
10001
- createdAt
10002
- updatedAt
10003
- user {
10004
- ...UserChildWebhookPayload
10005
- }
9969
+ slugId
9970
+ type
10006
9971
  }
10007
- fragment UserChildWebhookPayload on UserChildWebhookPayload {
10008
- __typename
10009
- id
10010
- url
10011
- avatarUrl
10012
- email
10013
- name
10014
- }`, { fragmentName: "AgentActivityWebhookPayload" });
10015
- const AgentSessionWebhookPayloadFragmentDoc = new TypedDocumentString(`
10016
- fragment AgentSessionWebhookPayload on AgentSessionWebhookPayload {
9972
+ `, { fragmentName: "ReleasePipelineChildWebhookPayload" });
9973
+ const ReleaseWebhookPayloadFragmentDoc = new TypedDocumentString(`
9974
+ fragment ReleaseWebhookPayload on ReleaseWebhookPayload {
10017
9975
  __typename
10018
- summary
10019
- sourceMetadata
10020
- appUserId
10021
- sourceCommentId
9976
+ stageId
10022
9977
  id
10023
- creatorId
10024
- issueId
10025
- organizationId
10026
- commentId
9978
+ pipelineId
10027
9979
  url
10028
- status
10029
- creator {
10030
- ...UserChildWebhookPayload
9980
+ commitSha
9981
+ stage {
9982
+ ...ReleaseStageChildWebhookPayload
10031
9983
  }
10032
- issue {
10033
- ...IssueWithDescriptionChildWebhookPayload
9984
+ targetDate
9985
+ startDate
9986
+ issues {
9987
+ ...IssueChildWebhookPayload
10034
9988
  }
10035
- comment {
10036
- ...CommentChildWebhookPayload
9989
+ name
9990
+ pipeline {
9991
+ ...ReleasePipelineChildWebhookPayload
10037
9992
  }
9993
+ description
9994
+ slugId
10038
9995
  archivedAt
10039
9996
  createdAt
10040
9997
  updatedAt
10041
- endedAt
9998
+ canceledAt
9999
+ completedAt
10042
10000
  startedAt
10043
- type
10044
- }
10045
- fragment CommentChildWebhookPayload on CommentChildWebhookPayload {
10046
- __typename
10047
- id
10048
- documentContentId
10049
- initiativeUpdateId
10050
- issueId
10051
- projectUpdateId
10052
- userId
10053
- body
10054
- }
10055
- fragment TeamChildWebhookPayload on TeamChildWebhookPayload {
10056
- __typename
10057
- id
10058
- key
10059
- name
10001
+ version
10002
+ trashed
10060
10003
  }
10061
- fragment UserChildWebhookPayload on UserChildWebhookPayload {
10004
+ fragment ReleasePipelineChildWebhookPayload on ReleasePipelineChildWebhookPayload {
10062
10005
  __typename
10063
10006
  id
10064
10007
  url
10065
- avatarUrl
10066
- email
10067
10008
  name
10068
- }
10069
- fragment IssueWithDescriptionChildWebhookPayload on IssueWithDescriptionChildWebhookPayload {
10070
- __typename
10071
- id
10072
- team {
10073
- ...TeamChildWebhookPayload
10074
- }
10075
- teamId
10076
- url
10077
- description
10078
- identifier
10079
- title
10080
- }`, { fragmentName: "AgentSessionWebhookPayload" });
10081
- const AgentSessionEventWebhookPayloadFragmentDoc = new TypedDocumentString(`
10082
- fragment AgentSessionEventWebhookPayload on AgentSessionEventWebhookPayload {
10083
- __typename
10084
- promptContext
10085
- guidance {
10086
- ...GuidanceRuleWebhookPayload
10087
- }
10088
- oauthClientId
10089
- appUserId
10090
- organizationId
10091
- webhookId
10092
- agentActivity {
10093
- ...AgentActivityWebhookPayload
10094
- }
10095
- agentSession {
10096
- ...AgentSessionWebhookPayload
10097
- }
10098
- previousComments {
10099
- ...CommentChildWebhookPayload
10100
- }
10101
- createdAt
10102
- action
10009
+ slugId
10103
10010
  type
10104
- webhookTimestamp
10105
10011
  }
10106
- fragment CommentChildWebhookPayload on CommentChildWebhookPayload {
10012
+ fragment ReleaseStageChildWebhookPayload on ReleaseStageChildWebhookPayload {
10107
10013
  __typename
10108
10014
  id
10109
- documentContentId
10110
- initiativeUpdateId
10111
- issueId
10112
- projectUpdateId
10113
- userId
10114
- body
10015
+ color
10016
+ name
10017
+ position
10018
+ type
10115
10019
  }
10116
10020
  fragment TeamChildWebhookPayload on TeamChildWebhookPayload {
10117
10021
  __typename
@@ -10119,15 +10023,7 @@ fragment TeamChildWebhookPayload on TeamChildWebhookPayload {
10119
10023
  key
10120
10024
  name
10121
10025
  }
10122
- fragment UserChildWebhookPayload on UserChildWebhookPayload {
10123
- __typename
10124
- id
10125
- url
10126
- avatarUrl
10127
- email
10128
- name
10129
- }
10130
- fragment IssueWithDescriptionChildWebhookPayload on IssueWithDescriptionChildWebhookPayload {
10026
+ fragment IssueChildWebhookPayload on IssueChildWebhookPayload {
10131
10027
  __typename
10132
10028
  id
10133
10029
  team {
@@ -10135,195 +10031,419 @@ fragment IssueWithDescriptionChildWebhookPayload on IssueWithDescriptionChildWeb
10135
10031
  }
10136
10032
  teamId
10137
10033
  url
10138
- description
10139
10034
  identifier
10140
10035
  title
10141
- }
10142
- fragment GuidanceRuleWebhookPayload on GuidanceRuleWebhookPayload {
10143
- __typename
10144
- body
10145
- }
10146
- fragment AgentActivityWebhookPayload on AgentActivityWebhookPayload {
10147
- __typename
10148
- signal
10149
- signalMetadata
10150
- agentSessionId
10151
- sourceCommentId
10152
- id
10153
- userId
10154
- content
10155
- archivedAt
10156
- createdAt
10157
- updatedAt
10158
- user {
10159
- ...UserChildWebhookPayload
10160
- }
10161
- }
10162
- fragment AgentSessionWebhookPayload on AgentSessionWebhookPayload {
10163
- __typename
10164
- summary
10165
- sourceMetadata
10166
- appUserId
10167
- sourceCommentId
10168
- id
10169
- creatorId
10170
- issueId
10171
- organizationId
10172
- commentId
10173
- url
10174
- status
10175
- creator {
10176
- ...UserChildWebhookPayload
10177
- }
10178
- issue {
10179
- ...IssueWithDescriptionChildWebhookPayload
10180
- }
10181
- comment {
10182
- ...CommentChildWebhookPayload
10183
- }
10184
- archivedAt
10185
- createdAt
10186
- updatedAt
10187
- endedAt
10188
- startedAt
10189
- type
10190
- }`, { fragmentName: "AgentSessionEventWebhookPayload" });
10191
- const AuditEntryWebhookPayloadFragmentDoc = new TypedDocumentString(`
10192
- fragment AuditEntryWebhookPayload on AuditEntryWebhookPayload {
10193
- __typename
10194
- requestInformation
10195
- metadata
10196
- countryCode
10197
- ip
10198
- id
10199
- organizationId
10200
- actorId
10201
- archivedAt
10202
- createdAt
10203
- updatedAt
10204
- type
10205
- }
10206
- `, { fragmentName: "AuditEntryWebhookPayload" });
10207
- const InitiativeUpdateWebhookPayloadFragmentDoc = new TypedDocumentString(`
10208
- fragment InitiativeUpdateWebhookPayload on InitiativeUpdateWebhookPayload {
10209
- __typename
10210
- id
10211
- url
10212
- bodyData
10213
- body
10214
- diffMarkdown
10215
- editedAt
10216
- health
10217
- initiativeId
10218
- initiative {
10219
- ...InitiativeChildWebhookPayload
10220
- }
10221
- reactionData
10222
- slugId
10223
- archivedAt
10224
- createdAt
10225
- updatedAt
10226
- userId
10227
- user {
10228
- ...UserChildWebhookPayload
10229
- }
10230
- }
10231
- fragment UserChildWebhookPayload on UserChildWebhookPayload {
10232
- __typename
10233
- id
10234
- url
10235
- avatarUrl
10236
- email
10237
- name
10238
- }
10239
- fragment InitiativeChildWebhookPayload on InitiativeChildWebhookPayload {
10240
- __typename
10241
- id
10242
- url
10243
- name
10244
- }`, { fragmentName: "InitiativeUpdateWebhookPayload" });
10245
- const InitiativeWebhookPayloadFragmentDoc = new TypedDocumentString(`
10246
- fragment InitiativeWebhookPayload on InitiativeWebhookPayload {
10247
- __typename
10248
- id
10249
- lastUpdateId
10250
- organizationId
10251
- creatorId
10252
- ownerId
10253
- url
10254
- color
10255
- status
10256
- updateRemindersDay
10257
- description
10258
- updateReminderFrequencyInWeeks
10259
- updateReminderFrequency
10260
- health
10261
- updateRemindersHour
10262
- icon
10263
- lastUpdate {
10264
- ...InitiativeUpdateChildWebhookPayload
10265
- }
10266
- name
10267
- parentInitiative {
10268
- ...InitiativeChildWebhookPayload
10269
- }
10270
- parentInitiatives {
10271
- ...InitiativeChildWebhookPayload
10272
- }
10273
- projects {
10274
- ...ProjectChildWebhookPayload
10275
- }
10276
- targetDateResolution
10277
- frequencyResolution
10278
- sortOrder
10279
- subInitiatives {
10280
- ...InitiativeChildWebhookPayload
10281
- }
10282
- targetDate
10283
- archivedAt
10284
- createdAt
10285
- updatedAt
10286
- slugId
10287
- creator {
10288
- ...UserChildWebhookPayload
10289
- }
10290
- owner {
10291
- ...UserChildWebhookPayload
10292
- }
10293
- healthUpdatedAt
10294
- completedAt
10295
- startedAt
10296
- trashed
10297
- }
10298
- fragment ProjectChildWebhookPayload on ProjectChildWebhookPayload {
10299
- __typename
10300
- id
10301
- url
10302
- name
10303
- }
10304
- fragment UserChildWebhookPayload on UserChildWebhookPayload {
10305
- __typename
10306
- id
10307
- url
10308
- avatarUrl
10309
- email
10310
- name
10311
- }
10312
- fragment InitiativeUpdateChildWebhookPayload on InitiativeUpdateChildWebhookPayload {
10313
- __typename
10314
- id
10315
- bodyData
10316
- editedAt
10317
- health
10318
- }
10319
- fragment InitiativeChildWebhookPayload on InitiativeChildWebhookPayload {
10320
- __typename
10321
- id
10322
- url
10323
- name
10324
- }`, { fragmentName: "InitiativeWebhookPayload" });
10325
- const IssueAssignedToYouNotificationWebhookPayloadFragmentDoc = new TypedDocumentString(`
10326
- fragment IssueAssignedToYouNotificationWebhookPayload on IssueAssignedToYouNotificationWebhookPayload {
10036
+ }`, { fragmentName: "ReleaseWebhookPayload" });
10037
+ const IssueStatusChangedNotificationWebhookPayloadFragmentDoc = new TypedDocumentString(`
10038
+ fragment IssueStatusChangedNotificationWebhookPayload on IssueStatusChangedNotificationWebhookPayload {
10039
+ __typename
10040
+ type
10041
+ actorId
10042
+ id
10043
+ externalUserActorId
10044
+ issueId
10045
+ userId
10046
+ actor {
10047
+ ...UserChildWebhookPayload
10048
+ }
10049
+ issue {
10050
+ ...IssueWithDescriptionChildWebhookPayload
10051
+ }
10052
+ archivedAt
10053
+ createdAt
10054
+ updatedAt
10055
+ }
10056
+ fragment TeamChildWebhookPayload on TeamChildWebhookPayload {
10057
+ __typename
10058
+ id
10059
+ key
10060
+ name
10061
+ }
10062
+ fragment UserChildWebhookPayload on UserChildWebhookPayload {
10063
+ __typename
10064
+ id
10065
+ url
10066
+ avatarUrl
10067
+ email
10068
+ name
10069
+ }
10070
+ fragment IssueWithDescriptionChildWebhookPayload on IssueWithDescriptionChildWebhookPayload {
10071
+ __typename
10072
+ id
10073
+ team {
10074
+ ...TeamChildWebhookPayload
10075
+ }
10076
+ teamId
10077
+ url
10078
+ description
10079
+ identifier
10080
+ title
10081
+ }`, { fragmentName: "IssueStatusChangedNotificationWebhookPayload" });
10082
+ const UserWebhookPayloadFragmentDoc = new TypedDocumentString(`
10083
+ fragment UserWebhookPayload on UserWebhookPayload {
10084
+ __typename
10085
+ id
10086
+ url
10087
+ avatarUrl
10088
+ description
10089
+ displayName
10090
+ email
10091
+ timezone
10092
+ name
10093
+ disableReason
10094
+ archivedAt
10095
+ createdAt
10096
+ updatedAt
10097
+ guest
10098
+ active
10099
+ admin
10100
+ app
10101
+ owner
10102
+ }
10103
+ `, { fragmentName: "UserWebhookPayload" });
10104
+ const GuidanceRuleWebhookPayloadFragmentDoc = new TypedDocumentString(`
10105
+ fragment GuidanceRuleWebhookPayload on GuidanceRuleWebhookPayload {
10106
+ __typename
10107
+ body
10108
+ }
10109
+ `, { fragmentName: "GuidanceRuleWebhookPayload" });
10110
+ const AgentActivityWebhookPayloadFragmentDoc = new TypedDocumentString(`
10111
+ fragment AgentActivityWebhookPayload on AgentActivityWebhookPayload {
10112
+ __typename
10113
+ signal
10114
+ signalMetadata
10115
+ agentSessionId
10116
+ sourceCommentId
10117
+ id
10118
+ userId
10119
+ content
10120
+ archivedAt
10121
+ createdAt
10122
+ updatedAt
10123
+ user {
10124
+ ...UserChildWebhookPayload
10125
+ }
10126
+ }
10127
+ fragment UserChildWebhookPayload on UserChildWebhookPayload {
10128
+ __typename
10129
+ id
10130
+ url
10131
+ avatarUrl
10132
+ email
10133
+ name
10134
+ }`, { fragmentName: "AgentActivityWebhookPayload" });
10135
+ const AgentSessionWebhookPayloadFragmentDoc = new TypedDocumentString(`
10136
+ fragment AgentSessionWebhookPayload on AgentSessionWebhookPayload {
10137
+ __typename
10138
+ summary
10139
+ sourceMetadata
10140
+ appUserId
10141
+ sourceCommentId
10142
+ id
10143
+ creatorId
10144
+ issueId
10145
+ organizationId
10146
+ commentId
10147
+ url
10148
+ status
10149
+ creator {
10150
+ ...UserChildWebhookPayload
10151
+ }
10152
+ issue {
10153
+ ...IssueWithDescriptionChildWebhookPayload
10154
+ }
10155
+ comment {
10156
+ ...CommentChildWebhookPayload
10157
+ }
10158
+ archivedAt
10159
+ createdAt
10160
+ updatedAt
10161
+ endedAt
10162
+ startedAt
10163
+ type
10164
+ }
10165
+ fragment CommentChildWebhookPayload on CommentChildWebhookPayload {
10166
+ __typename
10167
+ id
10168
+ documentContentId
10169
+ initiativeUpdateId
10170
+ issueId
10171
+ projectUpdateId
10172
+ userId
10173
+ body
10174
+ }
10175
+ fragment TeamChildWebhookPayload on TeamChildWebhookPayload {
10176
+ __typename
10177
+ id
10178
+ key
10179
+ name
10180
+ }
10181
+ fragment UserChildWebhookPayload on UserChildWebhookPayload {
10182
+ __typename
10183
+ id
10184
+ url
10185
+ avatarUrl
10186
+ email
10187
+ name
10188
+ }
10189
+ fragment IssueWithDescriptionChildWebhookPayload on IssueWithDescriptionChildWebhookPayload {
10190
+ __typename
10191
+ id
10192
+ team {
10193
+ ...TeamChildWebhookPayload
10194
+ }
10195
+ teamId
10196
+ url
10197
+ description
10198
+ identifier
10199
+ title
10200
+ }`, { fragmentName: "AgentSessionWebhookPayload" });
10201
+ const AgentSessionEventWebhookPayloadFragmentDoc = new TypedDocumentString(`
10202
+ fragment AgentSessionEventWebhookPayload on AgentSessionEventWebhookPayload {
10203
+ __typename
10204
+ promptContext
10205
+ guidance {
10206
+ ...GuidanceRuleWebhookPayload
10207
+ }
10208
+ oauthClientId
10209
+ appUserId
10210
+ organizationId
10211
+ webhookId
10212
+ agentActivity {
10213
+ ...AgentActivityWebhookPayload
10214
+ }
10215
+ agentSession {
10216
+ ...AgentSessionWebhookPayload
10217
+ }
10218
+ previousComments {
10219
+ ...CommentChildWebhookPayload
10220
+ }
10221
+ createdAt
10222
+ action
10223
+ type
10224
+ webhookTimestamp
10225
+ }
10226
+ fragment CommentChildWebhookPayload on CommentChildWebhookPayload {
10227
+ __typename
10228
+ id
10229
+ documentContentId
10230
+ initiativeUpdateId
10231
+ issueId
10232
+ projectUpdateId
10233
+ userId
10234
+ body
10235
+ }
10236
+ fragment TeamChildWebhookPayload on TeamChildWebhookPayload {
10237
+ __typename
10238
+ id
10239
+ key
10240
+ name
10241
+ }
10242
+ fragment UserChildWebhookPayload on UserChildWebhookPayload {
10243
+ __typename
10244
+ id
10245
+ url
10246
+ avatarUrl
10247
+ email
10248
+ name
10249
+ }
10250
+ fragment IssueWithDescriptionChildWebhookPayload on IssueWithDescriptionChildWebhookPayload {
10251
+ __typename
10252
+ id
10253
+ team {
10254
+ ...TeamChildWebhookPayload
10255
+ }
10256
+ teamId
10257
+ url
10258
+ description
10259
+ identifier
10260
+ title
10261
+ }
10262
+ fragment GuidanceRuleWebhookPayload on GuidanceRuleWebhookPayload {
10263
+ __typename
10264
+ body
10265
+ }
10266
+ fragment AgentActivityWebhookPayload on AgentActivityWebhookPayload {
10267
+ __typename
10268
+ signal
10269
+ signalMetadata
10270
+ agentSessionId
10271
+ sourceCommentId
10272
+ id
10273
+ userId
10274
+ content
10275
+ archivedAt
10276
+ createdAt
10277
+ updatedAt
10278
+ user {
10279
+ ...UserChildWebhookPayload
10280
+ }
10281
+ }
10282
+ fragment AgentSessionWebhookPayload on AgentSessionWebhookPayload {
10283
+ __typename
10284
+ summary
10285
+ sourceMetadata
10286
+ appUserId
10287
+ sourceCommentId
10288
+ id
10289
+ creatorId
10290
+ issueId
10291
+ organizationId
10292
+ commentId
10293
+ url
10294
+ status
10295
+ creator {
10296
+ ...UserChildWebhookPayload
10297
+ }
10298
+ issue {
10299
+ ...IssueWithDescriptionChildWebhookPayload
10300
+ }
10301
+ comment {
10302
+ ...CommentChildWebhookPayload
10303
+ }
10304
+ archivedAt
10305
+ createdAt
10306
+ updatedAt
10307
+ endedAt
10308
+ startedAt
10309
+ type
10310
+ }`, { fragmentName: "AgentSessionEventWebhookPayload" });
10311
+ const AuditEntryWebhookPayloadFragmentDoc = new TypedDocumentString(`
10312
+ fragment AuditEntryWebhookPayload on AuditEntryWebhookPayload {
10313
+ __typename
10314
+ requestInformation
10315
+ metadata
10316
+ countryCode
10317
+ ip
10318
+ id
10319
+ organizationId
10320
+ actorId
10321
+ archivedAt
10322
+ createdAt
10323
+ updatedAt
10324
+ type
10325
+ }
10326
+ `, { fragmentName: "AuditEntryWebhookPayload" });
10327
+ const InitiativeUpdateWebhookPayloadFragmentDoc = new TypedDocumentString(`
10328
+ fragment InitiativeUpdateWebhookPayload on InitiativeUpdateWebhookPayload {
10329
+ __typename
10330
+ id
10331
+ url
10332
+ bodyData
10333
+ body
10334
+ diffMarkdown
10335
+ editedAt
10336
+ health
10337
+ initiativeId
10338
+ initiative {
10339
+ ...InitiativeChildWebhookPayload
10340
+ }
10341
+ reactionData
10342
+ slugId
10343
+ archivedAt
10344
+ createdAt
10345
+ updatedAt
10346
+ userId
10347
+ user {
10348
+ ...UserChildWebhookPayload
10349
+ }
10350
+ }
10351
+ fragment UserChildWebhookPayload on UserChildWebhookPayload {
10352
+ __typename
10353
+ id
10354
+ url
10355
+ avatarUrl
10356
+ email
10357
+ name
10358
+ }
10359
+ fragment InitiativeChildWebhookPayload on InitiativeChildWebhookPayload {
10360
+ __typename
10361
+ id
10362
+ url
10363
+ name
10364
+ }`, { fragmentName: "InitiativeUpdateWebhookPayload" });
10365
+ const InitiativeWebhookPayloadFragmentDoc = new TypedDocumentString(`
10366
+ fragment InitiativeWebhookPayload on InitiativeWebhookPayload {
10367
+ __typename
10368
+ id
10369
+ lastUpdateId
10370
+ organizationId
10371
+ creatorId
10372
+ ownerId
10373
+ url
10374
+ color
10375
+ status
10376
+ updateRemindersDay
10377
+ description
10378
+ updateReminderFrequencyInWeeks
10379
+ updateReminderFrequency
10380
+ health
10381
+ updateRemindersHour
10382
+ icon
10383
+ lastUpdate {
10384
+ ...InitiativeUpdateChildWebhookPayload
10385
+ }
10386
+ name
10387
+ parentInitiative {
10388
+ ...InitiativeChildWebhookPayload
10389
+ }
10390
+ parentInitiatives {
10391
+ ...InitiativeChildWebhookPayload
10392
+ }
10393
+ projects {
10394
+ ...ProjectChildWebhookPayload
10395
+ }
10396
+ targetDateResolution
10397
+ frequencyResolution
10398
+ sortOrder
10399
+ subInitiatives {
10400
+ ...InitiativeChildWebhookPayload
10401
+ }
10402
+ targetDate
10403
+ archivedAt
10404
+ createdAt
10405
+ updatedAt
10406
+ slugId
10407
+ creator {
10408
+ ...UserChildWebhookPayload
10409
+ }
10410
+ owner {
10411
+ ...UserChildWebhookPayload
10412
+ }
10413
+ healthUpdatedAt
10414
+ completedAt
10415
+ startedAt
10416
+ trashed
10417
+ }
10418
+ fragment ProjectChildWebhookPayload on ProjectChildWebhookPayload {
10419
+ __typename
10420
+ id
10421
+ url
10422
+ name
10423
+ }
10424
+ fragment UserChildWebhookPayload on UserChildWebhookPayload {
10425
+ __typename
10426
+ id
10427
+ url
10428
+ avatarUrl
10429
+ email
10430
+ name
10431
+ }
10432
+ fragment InitiativeUpdateChildWebhookPayload on InitiativeUpdateChildWebhookPayload {
10433
+ __typename
10434
+ id
10435
+ bodyData
10436
+ editedAt
10437
+ health
10438
+ }
10439
+ fragment InitiativeChildWebhookPayload on InitiativeChildWebhookPayload {
10440
+ __typename
10441
+ id
10442
+ url
10443
+ name
10444
+ }`, { fragmentName: "InitiativeWebhookPayload" });
10445
+ const IssueAssignedToYouNotificationWebhookPayloadFragmentDoc = new TypedDocumentString(`
10446
+ fragment IssueAssignedToYouNotificationWebhookPayload on IssueAssignedToYouNotificationWebhookPayload {
10327
10447
  __typename
10328
10448
  type
10329
10449
  actorId
@@ -16977,6 +17097,7 @@ const IssueFragmentDoc = new TypedDocumentString(`
16977
17097
  state {
16978
17098
  id
16979
17099
  }
17100
+ inheritsSharedAccess
16980
17101
  }
16981
17102
  fragment ActorBot on ActorBot {
16982
17103
  __typename
@@ -17277,6 +17398,7 @@ fragment Issue on Issue {
17277
17398
  state {
17278
17399
  id
17279
17400
  }
17401
+ inheritsSharedAccess
17280
17402
  }
17281
17403
  fragment ExternalEntityInfo on ExternalEntityInfo {
17282
17404
  __typename
@@ -17508,6 +17630,7 @@ fragment Issue on Issue {
17508
17630
  state {
17509
17631
  id
17510
17632
  }
17633
+ inheritsSharedAccess
17511
17634
  }
17512
17635
  fragment ExternalEntityInfo on ExternalEntityInfo {
17513
17636
  __typename
@@ -18364,6 +18487,7 @@ const IssueSearchResultFragmentDoc = new TypedDocumentString(`
18364
18487
  state {
18365
18488
  id
18366
18489
  }
18490
+ inheritsSharedAccess
18367
18491
  }
18368
18492
  fragment ActorBot on ActorBot {
18369
18493
  __typename
@@ -18712,6 +18836,7 @@ fragment IssueSearchResult on IssueSearchResult {
18712
18836
  state {
18713
18837
  id
18714
18838
  }
18839
+ inheritsSharedAccess
18715
18840
  }
18716
18841
  fragment IssueSharedAccess on IssueSharedAccess {
18717
18842
  __typename
@@ -22188,6 +22313,1064 @@ const SsoUrlFromEmailResponseFragmentDoc = new TypedDocumentString(`
22188
22313
  success
22189
22314
  }
22190
22315
  `, { fragmentName: "SsoUrlFromEmailResponse" });
22316
+ const DocumentContentDraftFragmentDoc = new TypedDocumentString(`
22317
+ fragment DocumentContentDraft on DocumentContentDraft {
22318
+ __typename
22319
+ contentState
22320
+ updatedAt
22321
+ archivedAt
22322
+ createdAt
22323
+ id
22324
+ documentContent {
22325
+ ...DocumentContent
22326
+ }
22327
+ documentContentId
22328
+ user {
22329
+ id
22330
+ }
22331
+ userId
22332
+ }
22333
+ fragment DocumentContent on DocumentContent {
22334
+ __typename
22335
+ aiPromptRules {
22336
+ ...AiPromptRules
22337
+ }
22338
+ content
22339
+ contentState
22340
+ document {
22341
+ id
22342
+ }
22343
+ initiative {
22344
+ id
22345
+ }
22346
+ issue {
22347
+ id
22348
+ }
22349
+ updatedAt
22350
+ projectMilestone {
22351
+ id
22352
+ }
22353
+ project {
22354
+ id
22355
+ }
22356
+ restoredAt
22357
+ archivedAt
22358
+ createdAt
22359
+ id
22360
+ welcomeMessage {
22361
+ ...WelcomeMessage
22362
+ }
22363
+ }
22364
+ fragment WelcomeMessage on WelcomeMessage {
22365
+ __typename
22366
+ updatedAt
22367
+ archivedAt
22368
+ createdAt
22369
+ title
22370
+ id
22371
+ updatedBy {
22372
+ id
22373
+ }
22374
+ enabled
22375
+ }
22376
+ fragment AiPromptRules on AiPromptRules {
22377
+ __typename
22378
+ updatedAt
22379
+ archivedAt
22380
+ createdAt
22381
+ id
22382
+ updatedBy {
22383
+ id
22384
+ }
22385
+ }`, { fragmentName: "DocumentContentDraft" });
22386
+ const SubscriptionFragmentDoc = new TypedDocumentString(`
22387
+ fragment Subscription on Subscription {
22388
+ __typename
22389
+ commentUnarchived {
22390
+ id
22391
+ }
22392
+ documentUnarchived {
22393
+ id
22394
+ }
22395
+ notificationUnarchived {
22396
+ ...Notification
22397
+ }
22398
+ projectUnarchived {
22399
+ id
22400
+ }
22401
+ issueUnarchived {
22402
+ id
22403
+ }
22404
+ commentArchived {
22405
+ id
22406
+ }
22407
+ commentCreated {
22408
+ id
22409
+ }
22410
+ commentDeleted {
22411
+ id
22412
+ }
22413
+ commentUpdated {
22414
+ id
22415
+ }
22416
+ cycleArchived {
22417
+ id
22418
+ }
22419
+ cycleCreated {
22420
+ id
22421
+ }
22422
+ cycleUpdated {
22423
+ id
22424
+ }
22425
+ documentContentDraftCreated {
22426
+ ...DocumentContentDraft
22427
+ }
22428
+ documentContentDraftDeleted {
22429
+ ...DocumentContentDraft
22430
+ }
22431
+ documentContentDraftUpdated {
22432
+ ...DocumentContentDraft
22433
+ }
22434
+ documentContentCreated {
22435
+ ...DocumentContent
22436
+ }
22437
+ documentContentUpdated {
22438
+ ...DocumentContent
22439
+ }
22440
+ documentArchived {
22441
+ id
22442
+ }
22443
+ documentCreated {
22444
+ id
22445
+ }
22446
+ documentUpdated {
22447
+ id
22448
+ }
22449
+ draftCreated {
22450
+ ...Draft
22451
+ }
22452
+ draftDeleted {
22453
+ ...Draft
22454
+ }
22455
+ draftUpdated {
22456
+ ...Draft
22457
+ }
22458
+ favoriteCreated {
22459
+ id
22460
+ }
22461
+ favoriteDeleted {
22462
+ id
22463
+ }
22464
+ favoriteUpdated {
22465
+ id
22466
+ }
22467
+ notificationArchived {
22468
+ ...Notification
22469
+ }
22470
+ notificationCreated {
22471
+ ...Notification
22472
+ }
22473
+ notificationDeleted {
22474
+ ...Notification
22475
+ }
22476
+ notificationUpdated {
22477
+ ...Notification
22478
+ }
22479
+ projectArchived {
22480
+ id
22481
+ }
22482
+ projectCreated {
22483
+ id
22484
+ }
22485
+ projectUpdated {
22486
+ id
22487
+ }
22488
+ projectUpdateCreated {
22489
+ id
22490
+ }
22491
+ projectUpdateDeleted {
22492
+ id
22493
+ }
22494
+ projectUpdateUpdated {
22495
+ id
22496
+ }
22497
+ roadmapCreated {
22498
+ id
22499
+ }
22500
+ roadmapDeleted {
22501
+ id
22502
+ }
22503
+ roadmapUpdated {
22504
+ id
22505
+ }
22506
+ teamCreated {
22507
+ id
22508
+ }
22509
+ teamDeleted {
22510
+ id
22511
+ }
22512
+ teamUpdated {
22513
+ id
22514
+ }
22515
+ teamMembershipCreated {
22516
+ id
22517
+ }
22518
+ teamMembershipDeleted {
22519
+ id
22520
+ }
22521
+ teamMembershipUpdated {
22522
+ id
22523
+ }
22524
+ workflowStateArchived {
22525
+ id
22526
+ }
22527
+ workflowStateCreated {
22528
+ id
22529
+ }
22530
+ workflowStateUpdated {
22531
+ id
22532
+ }
22533
+ agentActivityCreated {
22534
+ id
22535
+ }
22536
+ agentActivityUpdated {
22537
+ id
22538
+ }
22539
+ agentSessionCreated {
22540
+ id
22541
+ }
22542
+ agentSessionUpdated {
22543
+ id
22544
+ }
22545
+ initiativeCreated {
22546
+ id
22547
+ }
22548
+ initiativeDeleted {
22549
+ id
22550
+ }
22551
+ initiativeUpdated {
22552
+ id
22553
+ }
22554
+ issueHistoryCreated {
22555
+ ...IssueHistory
22556
+ }
22557
+ issueHistoryUpdated {
22558
+ ...IssueHistory
22559
+ }
22560
+ issueArchived {
22561
+ id
22562
+ }
22563
+ issueCreated {
22564
+ id
22565
+ }
22566
+ issueUpdated {
22567
+ id
22568
+ }
22569
+ issueLabelCreated {
22570
+ id
22571
+ }
22572
+ issueLabelDeleted {
22573
+ id
22574
+ }
22575
+ issueLabelUpdated {
22576
+ id
22577
+ }
22578
+ issueRelationCreated {
22579
+ id
22580
+ }
22581
+ issueRelationDeleted {
22582
+ id
22583
+ }
22584
+ issueRelationUpdated {
22585
+ id
22586
+ }
22587
+ userCreated {
22588
+ id
22589
+ }
22590
+ userUpdated {
22591
+ id
22592
+ }
22593
+ }
22594
+ fragment ActorBot on ActorBot {
22595
+ __typename
22596
+ avatarUrl
22597
+ name
22598
+ userDisplayName
22599
+ subType
22600
+ type
22601
+ id
22602
+ }
22603
+ fragment CustomerNeedNotification on CustomerNeedNotification {
22604
+ __typename
22605
+ type
22606
+ customerNeedId
22607
+ botActor {
22608
+ ...ActorBot
22609
+ }
22610
+ category
22611
+ customerNeed {
22612
+ id
22613
+ }
22614
+ externalUserActor {
22615
+ id
22616
+ }
22617
+ relatedIssue {
22618
+ id
22619
+ }
22620
+ updatedAt
22621
+ relatedProject {
22622
+ id
22623
+ }
22624
+ emailedAt
22625
+ readAt
22626
+ unsnoozedAt
22627
+ archivedAt
22628
+ createdAt
22629
+ snoozedUntilAt
22630
+ id
22631
+ actor {
22632
+ id
22633
+ }
22634
+ user {
22635
+ id
22636
+ }
22637
+ }
22638
+ fragment CustomerNotification on CustomerNotification {
22639
+ __typename
22640
+ type
22641
+ customerId
22642
+ botActor {
22643
+ ...ActorBot
22644
+ }
22645
+ category
22646
+ customer {
22647
+ id
22648
+ }
22649
+ externalUserActor {
22650
+ id
22651
+ }
22652
+ updatedAt
22653
+ emailedAt
22654
+ readAt
22655
+ unsnoozedAt
22656
+ archivedAt
22657
+ createdAt
22658
+ snoozedUntilAt
22659
+ id
22660
+ actor {
22661
+ id
22662
+ }
22663
+ user {
22664
+ id
22665
+ }
22666
+ }
22667
+ fragment DocumentContent on DocumentContent {
22668
+ __typename
22669
+ aiPromptRules {
22670
+ ...AiPromptRules
22671
+ }
22672
+ content
22673
+ contentState
22674
+ document {
22675
+ id
22676
+ }
22677
+ initiative {
22678
+ id
22679
+ }
22680
+ issue {
22681
+ id
22682
+ }
22683
+ updatedAt
22684
+ projectMilestone {
22685
+ id
22686
+ }
22687
+ project {
22688
+ id
22689
+ }
22690
+ restoredAt
22691
+ archivedAt
22692
+ createdAt
22693
+ id
22694
+ welcomeMessage {
22695
+ ...WelcomeMessage
22696
+ }
22697
+ }
22698
+ fragment DocumentNotification on DocumentNotification {
22699
+ __typename
22700
+ reactionEmoji
22701
+ type
22702
+ commentId
22703
+ documentId
22704
+ parentCommentId
22705
+ botActor {
22706
+ ...ActorBot
22707
+ }
22708
+ category
22709
+ externalUserActor {
22710
+ id
22711
+ }
22712
+ updatedAt
22713
+ emailedAt
22714
+ readAt
22715
+ unsnoozedAt
22716
+ archivedAt
22717
+ createdAt
22718
+ snoozedUntilAt
22719
+ id
22720
+ actor {
22721
+ id
22722
+ }
22723
+ user {
22724
+ id
22725
+ }
22726
+ }
22727
+ fragment DocumentContentDraft on DocumentContentDraft {
22728
+ __typename
22729
+ contentState
22730
+ updatedAt
22731
+ archivedAt
22732
+ createdAt
22733
+ id
22734
+ documentContent {
22735
+ ...DocumentContent
22736
+ }
22737
+ documentContentId
22738
+ user {
22739
+ id
22740
+ }
22741
+ userId
22742
+ }
22743
+ fragment Draft on Draft {
22744
+ __typename
22745
+ data
22746
+ parentComment {
22747
+ id
22748
+ }
22749
+ customerNeed {
22750
+ id
22751
+ }
22752
+ initiative {
22753
+ id
22754
+ }
22755
+ initiativeUpdate {
22756
+ id
22757
+ }
22758
+ issue {
22759
+ id
22760
+ }
22761
+ updatedAt
22762
+ project {
22763
+ id
22764
+ }
22765
+ projectUpdate {
22766
+ id
22767
+ }
22768
+ team {
22769
+ id
22770
+ }
22771
+ bodyData
22772
+ archivedAt
22773
+ createdAt
22774
+ id
22775
+ user {
22776
+ id
22777
+ }
22778
+ isAutogenerated
22779
+ }
22780
+ fragment Notification on Notification {
22781
+ __typename
22782
+ type
22783
+ botActor {
22784
+ ...ActorBot
22785
+ }
22786
+ category
22787
+ externalUserActor {
22788
+ id
22789
+ }
22790
+ updatedAt
22791
+ emailedAt
22792
+ readAt
22793
+ unsnoozedAt
22794
+ archivedAt
22795
+ createdAt
22796
+ snoozedUntilAt
22797
+ id
22798
+ actor {
22799
+ id
22800
+ }
22801
+ user {
22802
+ id
22803
+ }
22804
+ ... on CustomerNeedNotification {
22805
+ ...CustomerNeedNotification
22806
+ }
22807
+ ... on CustomerNotification {
22808
+ ...CustomerNotification
22809
+ }
22810
+ ... on DocumentNotification {
22811
+ ...DocumentNotification
22812
+ }
22813
+ ... on InitiativeNotification {
22814
+ ...InitiativeNotification
22815
+ }
22816
+ ... on IssueNotification {
22817
+ ...IssueNotification
22818
+ }
22819
+ ... on OauthClientApprovalNotification {
22820
+ ...OauthClientApprovalNotification
22821
+ }
22822
+ ... on PostNotification {
22823
+ ...PostNotification
22824
+ }
22825
+ ... on ProjectNotification {
22826
+ ...ProjectNotification
22827
+ }
22828
+ ... on PullRequestNotification {
22829
+ ...PullRequestNotification
22830
+ }
22831
+ ... on WelcomeMessageNotification {
22832
+ ...WelcomeMessageNotification
22833
+ }
22834
+ }
22835
+ fragment PostNotification on PostNotification {
22836
+ __typename
22837
+ reactionEmoji
22838
+ type
22839
+ commentId
22840
+ parentCommentId
22841
+ postId
22842
+ botActor {
22843
+ ...ActorBot
22844
+ }
22845
+ category
22846
+ externalUserActor {
22847
+ id
22848
+ }
22849
+ updatedAt
22850
+ emailedAt
22851
+ readAt
22852
+ unsnoozedAt
22853
+ archivedAt
22854
+ createdAt
22855
+ snoozedUntilAt
22856
+ id
22857
+ actor {
22858
+ id
22859
+ }
22860
+ user {
22861
+ id
22862
+ }
22863
+ }
22864
+ fragment ProjectNotification on ProjectNotification {
22865
+ __typename
22866
+ reactionEmoji
22867
+ type
22868
+ commentId
22869
+ parentCommentId
22870
+ projectId
22871
+ projectMilestoneId
22872
+ projectUpdateId
22873
+ botActor {
22874
+ ...ActorBot
22875
+ }
22876
+ category
22877
+ comment {
22878
+ id
22879
+ }
22880
+ document {
22881
+ id
22882
+ }
22883
+ externalUserActor {
22884
+ id
22885
+ }
22886
+ updatedAt
22887
+ parentComment {
22888
+ id
22889
+ }
22890
+ project {
22891
+ id
22892
+ }
22893
+ projectUpdate {
22894
+ id
22895
+ }
22896
+ emailedAt
22897
+ readAt
22898
+ unsnoozedAt
22899
+ archivedAt
22900
+ createdAt
22901
+ snoozedUntilAt
22902
+ id
22903
+ actor {
22904
+ id
22905
+ }
22906
+ user {
22907
+ id
22908
+ }
22909
+ }
22910
+ fragment PullRequestNotification on PullRequestNotification {
22911
+ __typename
22912
+ type
22913
+ pullRequestCommentId
22914
+ pullRequestId
22915
+ botActor {
22916
+ ...ActorBot
22917
+ }
22918
+ category
22919
+ externalUserActor {
22920
+ id
22921
+ }
22922
+ updatedAt
22923
+ emailedAt
22924
+ readAt
22925
+ unsnoozedAt
22926
+ archivedAt
22927
+ createdAt
22928
+ snoozedUntilAt
22929
+ id
22930
+ actor {
22931
+ id
22932
+ }
22933
+ user {
22934
+ id
22935
+ }
22936
+ }
22937
+ fragment IssueHistory on IssueHistory {
22938
+ __typename
22939
+ triageResponsibilityAutoAssigned
22940
+ relationChanges {
22941
+ ...IssueRelationHistoryPayload
22942
+ }
22943
+ addedLabelIds
22944
+ removedLabelIds
22945
+ toSlaBreachesAt
22946
+ fromSlaBreachesAt
22947
+ actor {
22948
+ id
22949
+ }
22950
+ descriptionUpdatedBy {
22951
+ ...User
22952
+ }
22953
+ actors {
22954
+ ...User
22955
+ }
22956
+ fromDelegate {
22957
+ id
22958
+ }
22959
+ toDelegate {
22960
+ id
22961
+ }
22962
+ botActor {
22963
+ ...ActorBot
22964
+ }
22965
+ fromCycle {
22966
+ id
22967
+ }
22968
+ toCycle {
22969
+ id
22970
+ }
22971
+ attachmentId
22972
+ customerNeedId
22973
+ toCycleId
22974
+ toParentId
22975
+ toConvertedProjectId
22976
+ toProjectId
22977
+ toStateId
22978
+ fromCycleId
22979
+ fromParentId
22980
+ fromProjectId
22981
+ fromStateId
22982
+ fromTeamId
22983
+ toTeamId
22984
+ fromAssigneeId
22985
+ toAssigneeId
22986
+ actorId
22987
+ issueImport {
22988
+ ...IssueImport
22989
+ }
22990
+ issue {
22991
+ id
22992
+ }
22993
+ addedLabels {
22994
+ ...IssueLabel
22995
+ }
22996
+ removedLabels {
22997
+ ...IssueLabel
22998
+ }
22999
+ updatedAt
23000
+ attachment {
23001
+ id
23002
+ }
23003
+ toConvertedProject {
23004
+ id
23005
+ }
23006
+ fromParent {
23007
+ id
23008
+ }
23009
+ toParent {
23010
+ id
23011
+ }
23012
+ fromProjectMilestone {
23013
+ id
23014
+ }
23015
+ toProjectMilestone {
23016
+ id
23017
+ }
23018
+ fromProject {
23019
+ id
23020
+ }
23021
+ toProject {
23022
+ id
23023
+ }
23024
+ fromState {
23025
+ id
23026
+ }
23027
+ toState {
23028
+ id
23029
+ }
23030
+ fromTeam {
23031
+ id
23032
+ }
23033
+ toTeam {
23034
+ id
23035
+ }
23036
+ triageResponsibilityTeam {
23037
+ id
23038
+ }
23039
+ archivedAt
23040
+ createdAt
23041
+ toSlaStartedAt
23042
+ fromSlaStartedAt
23043
+ toSlaType
23044
+ fromSlaType
23045
+ id
23046
+ toAssignee {
23047
+ id
23048
+ }
23049
+ fromAssignee {
23050
+ id
23051
+ }
23052
+ triageResponsibilityNotifiedUsers {
23053
+ ...User
23054
+ }
23055
+ fromDueDate
23056
+ toDueDate
23057
+ fromEstimate
23058
+ toEstimate
23059
+ fromPriority
23060
+ toPriority
23061
+ fromTitle
23062
+ toTitle
23063
+ fromSlaBreached
23064
+ toSlaBreached
23065
+ archived
23066
+ autoArchived
23067
+ autoClosed
23068
+ trashed
23069
+ updatedDescription
23070
+ }
23071
+ fragment User on User {
23072
+ __typename
23073
+ statusUntilAt
23074
+ description
23075
+ avatarUrl
23076
+ createdIssueCount
23077
+ disableReason
23078
+ avatarBackgroundColor
23079
+ statusEmoji
23080
+ initials
23081
+ statusLabel
23082
+ updatedAt
23083
+ lastSeen
23084
+ timezone
23085
+ archivedAt
23086
+ createdAt
23087
+ id
23088
+ gitHubUserId
23089
+ displayName
23090
+ email
23091
+ name
23092
+ url
23093
+ active
23094
+ guest
23095
+ app
23096
+ admin
23097
+ owner
23098
+ isAssignable
23099
+ isMentionable
23100
+ isMe
23101
+ supportsAgentSessions
23102
+ canAccessAnyPublicTeam
23103
+ calendarHash
23104
+ inviteHash
23105
+ }
23106
+ fragment WelcomeMessage on WelcomeMessage {
23107
+ __typename
23108
+ updatedAt
23109
+ archivedAt
23110
+ createdAt
23111
+ title
23112
+ id
23113
+ updatedBy {
23114
+ id
23115
+ }
23116
+ enabled
23117
+ }
23118
+ fragment WelcomeMessageNotification on WelcomeMessageNotification {
23119
+ __typename
23120
+ type
23121
+ welcomeMessageId
23122
+ botActor {
23123
+ ...ActorBot
23124
+ }
23125
+ category
23126
+ externalUserActor {
23127
+ id
23128
+ }
23129
+ updatedAt
23130
+ emailedAt
23131
+ readAt
23132
+ unsnoozedAt
23133
+ archivedAt
23134
+ createdAt
23135
+ snoozedUntilAt
23136
+ id
23137
+ actor {
23138
+ id
23139
+ }
23140
+ user {
23141
+ id
23142
+ }
23143
+ }
23144
+ fragment AiPromptRules on AiPromptRules {
23145
+ __typename
23146
+ updatedAt
23147
+ archivedAt
23148
+ createdAt
23149
+ id
23150
+ updatedBy {
23151
+ id
23152
+ }
23153
+ }
23154
+ fragment IssueImport on IssueImport {
23155
+ __typename
23156
+ progress
23157
+ errorMetadata
23158
+ csvFileUrl
23159
+ serviceMetadata
23160
+ teamName
23161
+ mapping
23162
+ displayName
23163
+ creatorId
23164
+ updatedAt
23165
+ service
23166
+ status
23167
+ archivedAt
23168
+ createdAt
23169
+ id
23170
+ error
23171
+ }
23172
+ fragment InitiativeNotification on InitiativeNotification {
23173
+ __typename
23174
+ reactionEmoji
23175
+ type
23176
+ commentId
23177
+ initiativeId
23178
+ initiativeUpdateId
23179
+ parentCommentId
23180
+ botActor {
23181
+ ...ActorBot
23182
+ }
23183
+ category
23184
+ comment {
23185
+ id
23186
+ }
23187
+ document {
23188
+ id
23189
+ }
23190
+ externalUserActor {
23191
+ id
23192
+ }
23193
+ initiative {
23194
+ id
23195
+ }
23196
+ initiativeUpdate {
23197
+ id
23198
+ }
23199
+ updatedAt
23200
+ parentComment {
23201
+ id
23202
+ }
23203
+ emailedAt
23204
+ readAt
23205
+ unsnoozedAt
23206
+ archivedAt
23207
+ createdAt
23208
+ snoozedUntilAt
23209
+ id
23210
+ actor {
23211
+ id
23212
+ }
23213
+ user {
23214
+ id
23215
+ }
23216
+ }
23217
+ fragment IssueNotification on IssueNotification {
23218
+ __typename
23219
+ reactionEmoji
23220
+ type
23221
+ commentId
23222
+ issueId
23223
+ parentCommentId
23224
+ botActor {
23225
+ ...ActorBot
23226
+ }
23227
+ category
23228
+ comment {
23229
+ id
23230
+ }
23231
+ externalUserActor {
23232
+ id
23233
+ }
23234
+ issue {
23235
+ id
23236
+ }
23237
+ updatedAt
23238
+ parentComment {
23239
+ id
23240
+ }
23241
+ subscriptions {
23242
+ ...NotificationSubscription
23243
+ }
23244
+ team {
23245
+ id
23246
+ }
23247
+ emailedAt
23248
+ readAt
23249
+ unsnoozedAt
23250
+ archivedAt
23251
+ createdAt
23252
+ snoozedUntilAt
23253
+ id
23254
+ actor {
23255
+ id
23256
+ }
23257
+ user {
23258
+ id
23259
+ }
23260
+ }
23261
+ fragment OauthClientApprovalNotification on OauthClientApprovalNotification {
23262
+ __typename
23263
+ type
23264
+ oauthClientApprovalId
23265
+ oauthClientApproval {
23266
+ ...OauthClientApproval
23267
+ }
23268
+ botActor {
23269
+ ...ActorBot
23270
+ }
23271
+ category
23272
+ externalUserActor {
23273
+ id
23274
+ }
23275
+ updatedAt
23276
+ emailedAt
23277
+ readAt
23278
+ unsnoozedAt
23279
+ archivedAt
23280
+ createdAt
23281
+ snoozedUntilAt
23282
+ id
23283
+ actor {
23284
+ id
23285
+ }
23286
+ user {
23287
+ id
23288
+ }
23289
+ }
23290
+ fragment IssueRelationHistoryPayload on IssueRelationHistoryPayload {
23291
+ __typename
23292
+ identifier
23293
+ type
23294
+ }
23295
+ fragment IssueLabel on IssueLabel {
23296
+ __typename
23297
+ lastAppliedAt
23298
+ color
23299
+ description
23300
+ name
23301
+ updatedAt
23302
+ inheritedFrom {
23303
+ id
23304
+ }
23305
+ parent {
23306
+ id
23307
+ }
23308
+ team {
23309
+ id
23310
+ }
23311
+ archivedAt
23312
+ createdAt
23313
+ id
23314
+ creator {
23315
+ id
23316
+ }
23317
+ retiredBy {
23318
+ id
23319
+ }
23320
+ isGroup
23321
+ }
23322
+ fragment NotificationSubscription on NotificationSubscription {
23323
+ __typename
23324
+ customView {
23325
+ id
23326
+ }
23327
+ cycle {
23328
+ id
23329
+ }
23330
+ initiative {
23331
+ id
23332
+ }
23333
+ label {
23334
+ id
23335
+ }
23336
+ project {
23337
+ id
23338
+ }
23339
+ customer {
23340
+ id
23341
+ }
23342
+ updatedAt
23343
+ team {
23344
+ id
23345
+ }
23346
+ archivedAt
23347
+ createdAt
23348
+ userContextViewType
23349
+ contextViewType
23350
+ id
23351
+ subscriber {
23352
+ id
23353
+ }
23354
+ user {
23355
+ id
23356
+ }
23357
+ active
23358
+ }
23359
+ fragment OauthClientApproval on OauthClientApproval {
23360
+ __typename
23361
+ newlyRequestedScopes
23362
+ updatedAt
23363
+ requesterId
23364
+ responderId
23365
+ requestReason
23366
+ denyReason
23367
+ scopes
23368
+ status
23369
+ archivedAt
23370
+ createdAt
23371
+ id
23372
+ oauthClientId
23373
+ }`, { fragmentName: "Subscription" });
22191
23374
  const SuccessPayloadFragmentDoc = new TypedDocumentString(`
22192
23375
  fragment SuccessPayload on SuccessPayload {
22193
23376
  __typename
@@ -24015,6 +25198,7 @@ fragment Issue on Issue {
24015
25198
  state {
24016
25199
  id
24017
25200
  }
25201
+ inheritsSharedAccess
24018
25202
  }
24019
25203
  fragment ExternalEntityInfo on ExternalEntityInfo {
24020
25204
  __typename
@@ -24328,6 +25512,7 @@ fragment Issue on Issue {
24328
25512
  state {
24329
25513
  id
24330
25514
  }
25515
+ inheritsSharedAccess
24331
25516
  }
24332
25517
  fragment ExternalEntityInfo on ExternalEntityInfo {
24333
25518
  __typename
@@ -26371,6 +27556,7 @@ fragment Issue on Issue {
26371
27556
  state {
26372
27557
  id
26373
27558
  }
27559
+ inheritsSharedAccess
26374
27560
  }
26375
27561
  fragment ExternalEntityInfo on ExternalEntityInfo {
26376
27562
  __typename
@@ -27376,6 +28562,7 @@ fragment Issue on Issue {
27376
28562
  state {
27377
28563
  id
27378
28564
  }
28565
+ inheritsSharedAccess
27379
28566
  }
27380
28567
  fragment ExternalEntityInfo on ExternalEntityInfo {
27381
28568
  __typename
@@ -29781,6 +30968,7 @@ fragment Issue on Issue {
29781
30968
  state {
29782
30969
  id
29783
30970
  }
30971
+ inheritsSharedAccess
29784
30972
  }
29785
30973
  fragment ExternalEntityInfo on ExternalEntityInfo {
29786
30974
  __typename
@@ -30034,6 +31222,7 @@ fragment Issue on Issue {
30034
31222
  state {
30035
31223
  id
30036
31224
  }
31225
+ inheritsSharedAccess
30037
31226
  }
30038
31227
  fragment ExternalEntityInfo on ExternalEntityInfo {
30039
31228
  __typename
@@ -32754,6 +33943,7 @@ fragment Issue on Issue {
32754
33943
  state {
32755
33944
  id
32756
33945
  }
33946
+ inheritsSharedAccess
32757
33947
  }
32758
33948
  fragment ExternalEntityInfo on ExternalEntityInfo {
32759
33949
  __typename
@@ -33067,6 +34257,7 @@ fragment Issue on Issue {
33067
34257
  state {
33068
34258
  id
33069
34259
  }
34260
+ inheritsSharedAccess
33070
34261
  }
33071
34262
  fragment ExternalEntityInfo on ExternalEntityInfo {
33072
34263
  __typename
@@ -34399,6 +35590,7 @@ fragment Issue on Issue {
34399
35590
  state {
34400
35591
  id
34401
35592
  }
35593
+ inheritsSharedAccess
34402
35594
  }
34403
35595
  fragment ExternalEntityInfo on ExternalEntityInfo {
34404
35596
  __typename
@@ -34794,6 +35986,7 @@ fragment Issue on Issue {
34794
35986
  state {
34795
35987
  id
34796
35988
  }
35989
+ inheritsSharedAccess
34797
35990
  }
34798
35991
  fragment ExternalEntityInfo on ExternalEntityInfo {
34799
35992
  __typename
@@ -35199,6 +36392,7 @@ fragment Issue on Issue {
35199
36392
  state {
35200
36393
  id
35201
36394
  }
36395
+ inheritsSharedAccess
35202
36396
  }
35203
36397
  fragment ExternalEntityInfo on ExternalEntityInfo {
35204
36398
  __typename
@@ -35453,6 +36647,7 @@ fragment Issue on Issue {
35453
36647
  state {
35454
36648
  id
35455
36649
  }
36650
+ inheritsSharedAccess
35456
36651
  }
35457
36652
  fragment ExternalEntityInfo on ExternalEntityInfo {
35458
36653
  __typename
@@ -35766,6 +36961,7 @@ fragment Issue on Issue {
35766
36961
  state {
35767
36962
  id
35768
36963
  }
36964
+ inheritsSharedAccess
35769
36965
  }
35770
36966
  fragment ExternalEntityInfo on ExternalEntityInfo {
35771
36967
  __typename
@@ -37099,6 +38295,7 @@ fragment Issue on Issue {
37099
38295
  state {
37100
38296
  id
37101
38297
  }
38298
+ inheritsSharedAccess
37102
38299
  }
37103
38300
  fragment ExternalEntityInfo on ExternalEntityInfo {
37104
38301
  __typename
@@ -39977,6 +41174,7 @@ fragment Issue on Issue {
39977
41174
  state {
39978
41175
  id
39979
41176
  }
41177
+ inheritsSharedAccess
39980
41178
  }
39981
41179
  fragment ExternalEntityInfo on ExternalEntityInfo {
39982
41180
  __typename
@@ -41330,6 +42528,7 @@ fragment Issue on Issue {
41330
42528
  state {
41331
42529
  id
41332
42530
  }
42531
+ inheritsSharedAccess
41333
42532
  }
41334
42533
  fragment ExternalEntityInfo on ExternalEntityInfo {
41335
42534
  __typename
@@ -42924,6 +44123,7 @@ fragment IssueSearchResult on IssueSearchResult {
42924
44123
  state {
42925
44124
  id
42926
44125
  }
44126
+ inheritsSharedAccess
42927
44127
  }
42928
44128
  fragment IssueSharedAccess on IssueSharedAccess {
42929
44129
  __typename
@@ -43671,6 +44871,7 @@ fragment Issue on Issue {
43671
44871
  state {
43672
44872
  id
43673
44873
  }
44874
+ inheritsSharedAccess
43674
44875
  }
43675
44876
  fragment ExternalEntityInfo on ExternalEntityInfo {
43676
44877
  __typename
@@ -44966,6 +46167,7 @@ fragment Issue on Issue {
44966
46167
  state {
44967
46168
  id
44968
46169
  }
46170
+ inheritsSharedAccess
44969
46171
  }
44970
46172
  fragment ExternalEntityInfo on ExternalEntityInfo {
44971
46173
  __typename
@@ -45219,6 +46421,7 @@ fragment Issue on Issue {
45219
46421
  state {
45220
46422
  id
45221
46423
  }
46424
+ inheritsSharedAccess
45222
46425
  }
45223
46426
  fragment ExternalEntityInfo on ExternalEntityInfo {
45224
46427
  __typename
@@ -45472,6 +46675,7 @@ fragment Issue on Issue {
45472
46675
  state {
45473
46676
  id
45474
46677
  }
46678
+ inheritsSharedAccess
45475
46679
  }
45476
46680
  fragment ExternalEntityInfo on ExternalEntityInfo {
45477
46681
  __typename
@@ -46954,6 +48158,7 @@ fragment Issue on Issue {
46954
48158
  state {
46955
48159
  id
46956
48160
  }
48161
+ inheritsSharedAccess
46957
48162
  }
46958
48163
  fragment ExternalEntityInfo on ExternalEntityInfo {
46959
48164
  __typename
@@ -47207,6 +48412,7 @@ fragment Issue on Issue {
47207
48412
  state {
47208
48413
  id
47209
48414
  }
48415
+ inheritsSharedAccess
47210
48416
  }
47211
48417
  fragment ExternalEntityInfo on ExternalEntityInfo {
47212
48418
  __typename
@@ -47460,6 +48666,7 @@ fragment Issue on Issue {
47460
48666
  state {
47461
48667
  id
47462
48668
  }
48669
+ inheritsSharedAccess
47463
48670
  }
47464
48671
  fragment ExternalEntityInfo on ExternalEntityInfo {
47465
48672
  __typename
@@ -48056,6 +49263,7 @@ fragment Issue on Issue {
48056
49263
  state {
48057
49264
  id
48058
49265
  }
49266
+ inheritsSharedAccess
48059
49267
  }
48060
49268
  fragment ExternalEntityInfo on ExternalEntityInfo {
48061
49269
  __typename
@@ -50291,6 +51499,34 @@ const IntegrationLoomDocument = new TypedDocumentString(`
50291
51499
  }
50292
51500
  success
50293
51501
  }`);
51502
+ const IntegrationMicrosoftPersonalConnectDocument = new TypedDocumentString(`
51503
+ mutation integrationMicrosoftPersonalConnect($code: String!, $redirectUri: String!) {
51504
+ integrationMicrosoftPersonalConnect(code: $code, redirectUri: $redirectUri) {
51505
+ ...IntegrationPayload
51506
+ }
51507
+ }
51508
+ fragment IntegrationPayload on IntegrationPayload {
51509
+ __typename
51510
+ lastSyncId
51511
+ integration {
51512
+ id
51513
+ }
51514
+ success
51515
+ }`);
51516
+ const IntegrationMicrosoftTeamsDocument = new TypedDocumentString(`
51517
+ mutation integrationMicrosoftTeams($code: String!, $redirectUri: String!) {
51518
+ integrationMicrosoftTeams(code: $code, redirectUri: $redirectUri) {
51519
+ ...IntegrationPayload
51520
+ }
51521
+ }
51522
+ fragment IntegrationPayload on IntegrationPayload {
51523
+ __typename
51524
+ lastSyncId
51525
+ integration {
51526
+ id
51527
+ }
51528
+ success
51529
+ }`);
50294
51530
  const IntegrationRequestDocument = new TypedDocumentString(`
50295
51531
  mutation integrationRequest($input: IntegrationRequestInput!) {
50296
51532
  integrationRequest(input: $input) {
@@ -50787,6 +52023,7 @@ fragment Issue on Issue {
50787
52023
  state {
50788
52024
  id
50789
52025
  }
52026
+ inheritsSharedAccess
50790
52027
  }
50791
52028
  fragment ExternalEntityInfo on ExternalEntityInfo {
50792
52029
  __typename
@@ -51022,6 +52259,7 @@ fragment Issue on Issue {
51022
52259
  state {
51023
52260
  id
51024
52261
  }
52262
+ inheritsSharedAccess
51025
52263
  }
51026
52264
  fragment ExternalEntityInfo on ExternalEntityInfo {
51027
52265
  __typename
@@ -62847,6 +64085,46 @@ var DocumentContentChildWebhookPayload = class {
62847
64085
  project;
62848
64086
  };
62849
64087
  /**
64088
+ * A draft revision of document content, pending user review.
64089
+ *
64090
+ * @param request - function to call the graphql client
64091
+ * @param data - L.DocumentContentDraftFragment response data
64092
+ */
64093
+ var DocumentContentDraft = class extends Request {
64094
+ _user;
64095
+ constructor(request, data) {
64096
+ super(request);
64097
+ this.archivedAt = parseDate(data.archivedAt) ?? void 0;
64098
+ this.contentState = data.contentState;
64099
+ this.createdAt = parseDate(data.createdAt) ?? /* @__PURE__ */ new Date();
64100
+ this.documentContentId = data.documentContentId;
64101
+ this.id = data.id;
64102
+ this.updatedAt = parseDate(data.updatedAt) ?? /* @__PURE__ */ new Date();
64103
+ this.userId = data.userId;
64104
+ this.documentContent = new DocumentContent(request, data.documentContent);
64105
+ this._user = data.user;
64106
+ }
64107
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
64108
+ archivedAt;
64109
+ /** The draft content state as a base64 encoded Yjs state update. */
64110
+ contentState;
64111
+ /** The time at which the entity was created. */
64112
+ createdAt;
64113
+ documentContentId;
64114
+ /** The unique identifier of the entity. */
64115
+ id;
64116
+ /**
64117
+ * The last time at which the entity was meaningfully updated. This is the same as the creation time if the entity hasn't
64118
+ * been updated after creation.
64119
+ */
64120
+ updatedAt;
64121
+ userId;
64122
+ documentContent;
64123
+ get user() {
64124
+ return new UserQuery(this._request).fetch(this._user.id);
64125
+ }
64126
+ };
64127
+ /**
62850
64128
  * DocumentContentHistoryPayload model
62851
64129
  *
62852
64130
  * @param request - function to call the graphql client
@@ -66403,6 +67681,7 @@ var Issue = class extends Request {
66403
67681
  this.estimate = data.estimate ?? void 0;
66404
67682
  this.id = data.id;
66405
67683
  this.identifier = data.identifier;
67684
+ this.inheritsSharedAccess = data.inheritsSharedAccess;
66406
67685
  this.labelIds = data.labelIds;
66407
67686
  this.number = data.number;
66408
67687
  this.previousIdentifiers = data.previousIdentifiers;
@@ -66482,13 +67761,15 @@ var Issue = class extends Request {
66482
67761
  id;
66483
67762
  /** Issue's human readable identifier (e.g. ENG-123). */
66484
67763
  identifier;
67764
+ /** Whether this issue inherits shared access from its parent issue. */
67765
+ inheritsSharedAccess;
66485
67766
  /** Id of the labels associated with this issue. */
66486
67767
  labelIds;
66487
67768
  /** The issue's unique number. */
66488
67769
  number;
66489
67770
  /** Previous identifiers of the issue if it has been moved between teams. */
66490
67771
  previousIdentifiers;
66491
- /** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
67772
+ /** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Medium, 4 = Low. */
66492
67773
  priority;
66493
67774
  /** Label for the priority. */
66494
67775
  priorityLabel;
@@ -68276,6 +69557,7 @@ var IssueSearchResult = class extends Request {
68276
69557
  this.estimate = data.estimate ?? void 0;
68277
69558
  this.id = data.id;
68278
69559
  this.identifier = data.identifier;
69560
+ this.inheritsSharedAccess = data.inheritsSharedAccess;
68279
69561
  this.labelIds = data.labelIds;
68280
69562
  this.metadata = data.metadata;
68281
69563
  this.number = data.number;
@@ -68356,6 +69638,8 @@ var IssueSearchResult = class extends Request {
68356
69638
  id;
68357
69639
  /** Issue's human readable identifier (e.g. ENG-123). */
68358
69640
  identifier;
69641
+ /** Whether this issue inherits shared access from its parent issue. */
69642
+ inheritsSharedAccess;
68359
69643
  /** Id of the labels associated with this issue. */
68360
69644
  labelIds;
68361
69645
  /** Metadata related to search result. */
@@ -68364,7 +69648,7 @@ var IssueSearchResult = class extends Request {
68364
69648
  number;
68365
69649
  /** Previous identifiers of the issue if it has been moved between teams. */
68366
69650
  previousIdentifiers;
68367
- /** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
69651
+ /** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Medium, 4 = Low. */
68368
69652
  priority;
68369
69653
  /** Label for the priority. */
68370
69654
  priorityLabel;
@@ -68998,7 +70282,7 @@ var IssueWebhookPayload = class {
68998
70282
  parentId;
68999
70283
  /** Previous identifiers of the issue if it has been moved between teams. */
69000
70284
  previousIdentifiers;
69001
- /** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
70285
+ /** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Medium, 4 = Low. */
69002
70286
  priority;
69003
70287
  /** The label of the issue's priority. */
69004
70288
  priorityLabel;
@@ -71002,7 +72286,7 @@ var Project = class extends Request {
71002
72286
  labelIds;
71003
72287
  /** The project's name. */
71004
72288
  name;
71005
- /** The priority of the project. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
72289
+ /** The priority of the project. 0 = No priority, 1 = Urgent, 2 = High, 3 = Medium, 4 = Low. */
71006
72290
  priority;
71007
72291
  /** The priority of the project as a label. */
71008
72292
  priorityLabel;
@@ -72346,7 +73630,7 @@ var ProjectSearchResult = class extends Request {
72346
73630
  metadata;
72347
73631
  /** The project's name. */
72348
73632
  name;
72349
- /** The priority of the project. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
73633
+ /** The priority of the project. 0 = No priority, 1 = Urgent, 2 = High, 3 = Medium, 4 = Low. */
72350
73634
  priority;
72351
73635
  /** The priority of the project as a label. */
72352
73636
  priorityLabel;
@@ -73010,7 +74294,7 @@ var ProjectWebhookPayload = class {
73010
74294
  memberIds;
73011
74295
  /** The project's name. */
73012
74296
  name;
73013
- /** The priority of the project. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
74297
+ /** The priority of the project. 0 = No priority, 1 = Urgent, 2 = High, 3 = Medium, 4 = Low. */
73014
74298
  priority;
73015
74299
  /** The sort order for the project within the organization, when ordered by priority. */
73016
74300
  prioritySortOrder;
@@ -73480,6 +74764,30 @@ var ReleasePipelineArchivePayload = class extends Request {
73480
74764
  success;
73481
74765
  };
73482
74766
  /**
74767
+ * Certain properties of a release pipeline.
74768
+ *
74769
+ * @param data - L.ReleasePipelineChildWebhookPayloadFragment response data
74770
+ */
74771
+ var ReleasePipelineChildWebhookPayload = class {
74772
+ constructor(data) {
74773
+ this.id = data.id;
74774
+ this.name = data.name;
74775
+ this.slugId = data.slugId;
74776
+ this.type = data.type;
74777
+ this.url = data.url;
74778
+ }
74779
+ /** The ID of the release pipeline. */
74780
+ id;
74781
+ /** The name of the release pipeline. */
74782
+ name;
74783
+ /** The pipeline's unique slug identifier. */
74784
+ slugId;
74785
+ /** The type of the release pipeline. */
74786
+ type;
74787
+ /** The URL of the release pipeline. */
74788
+ url;
74789
+ };
74790
+ /**
73483
74791
  * ReleasePipelinePayload model
73484
74792
  *
73485
74793
  * @param request - function to call the graphql client
@@ -73514,6 +74822,30 @@ var ReleaseStageArchivePayload = class extends Request {
73514
74822
  success;
73515
74823
  };
73516
74824
  /**
74825
+ * Certain properties of a release stage.
74826
+ *
74827
+ * @param data - L.ReleaseStageChildWebhookPayloadFragment response data
74828
+ */
74829
+ var ReleaseStageChildWebhookPayload = class {
74830
+ constructor(data) {
74831
+ this.color = data.color;
74832
+ this.id = data.id;
74833
+ this.name = data.name;
74834
+ this.position = data.position;
74835
+ this.type = data.type;
74836
+ }
74837
+ /** The UI color of the stage as a HEX string. */
74838
+ color;
74839
+ /** The ID of the release stage. */
74840
+ id;
74841
+ /** The name of the stage. */
74842
+ name;
74843
+ /** The position of the stage. */
74844
+ position;
74845
+ /** The type of the stage. */
74846
+ type;
74847
+ };
74848
+ /**
73517
74849
  * ReleaseStagePayload model
73518
74850
  *
73519
74851
  * @param request - function to call the graphql client
@@ -73531,6 +74863,78 @@ var ReleaseStagePayload = class extends Request {
73531
74863
  success;
73532
74864
  };
73533
74865
  /**
74866
+ * Payload for a release webhook.
74867
+ *
74868
+ * @param data - L.ReleaseWebhookPayloadFragment response data
74869
+ */
74870
+ var ReleaseWebhookPayload = class {
74871
+ constructor(data) {
74872
+ this.archivedAt = data.archivedAt ?? void 0;
74873
+ this.canceledAt = data.canceledAt ?? void 0;
74874
+ this.commitSha = data.commitSha ?? void 0;
74875
+ this.completedAt = data.completedAt ?? void 0;
74876
+ this.createdAt = data.createdAt;
74877
+ this.description = data.description ?? void 0;
74878
+ this.id = data.id;
74879
+ this.name = data.name;
74880
+ this.pipelineId = data.pipelineId;
74881
+ this.slugId = data.slugId;
74882
+ this.stageId = data.stageId;
74883
+ this.startDate = data.startDate ?? void 0;
74884
+ this.startedAt = data.startedAt ?? void 0;
74885
+ this.targetDate = data.targetDate ?? void 0;
74886
+ this.trashed = data.trashed ?? void 0;
74887
+ this.updatedAt = data.updatedAt;
74888
+ this.url = data.url;
74889
+ this.version = data.version ?? void 0;
74890
+ this.pipeline = data.pipeline ? new ReleasePipelineChildWebhookPayload(data.pipeline) : void 0;
74891
+ this.stage = data.stage ? new ReleaseStageChildWebhookPayload(data.stage) : void 0;
74892
+ this.issues = data.issues ? data.issues.map((node) => new IssueChildWebhookPayload(node)) : void 0;
74893
+ }
74894
+ /** The time at which the entity was archived. */
74895
+ archivedAt;
74896
+ /** The time at which the release was canceled. */
74897
+ canceledAt;
74898
+ /** The commit SHA associated with this release. */
74899
+ commitSha;
74900
+ /** The time at which the release was completed. */
74901
+ completedAt;
74902
+ /** The time at which the entity was created. */
74903
+ createdAt;
74904
+ /** The release's description. */
74905
+ description;
74906
+ /** The ID of the entity. */
74907
+ id;
74908
+ /** The name of the release. */
74909
+ name;
74910
+ /** The ID of the pipeline this release belongs to. */
74911
+ pipelineId;
74912
+ /** The release's unique URL slug. */
74913
+ slugId;
74914
+ /** The ID of the current stage of the release. */
74915
+ stageId;
74916
+ /** The estimated start date of the release. */
74917
+ startDate;
74918
+ /** The time at which the release was started. */
74919
+ startedAt;
74920
+ /** The estimated completion date of the release. */
74921
+ targetDate;
74922
+ /** Whether the release is in the trash bin. */
74923
+ trashed;
74924
+ /** The time at which the entity was updated. */
74925
+ updatedAt;
74926
+ /** The URL of the release. */
74927
+ url;
74928
+ /** The version of the release. */
74929
+ version;
74930
+ /** The issues associated with the release. */
74931
+ issues;
74932
+ /** The pipeline this release belongs to. */
74933
+ pipeline;
74934
+ /** The current stage of the release. */
74935
+ stage;
74936
+ };
74937
+ /**
73534
74938
  * RepositorySuggestion model
73535
74939
  *
73536
74940
  * @param request - function to call the graphql client
@@ -74094,6 +75498,581 @@ var SsoUrlFromEmailResponse = class extends Request {
74094
75498
  success;
74095
75499
  };
74096
75500
  /**
75501
+ * Subscription model
75502
+ *
75503
+ * @param request - function to call the graphql client
75504
+ * @param data - L.SubscriptionFragment response data
75505
+ */
75506
+ var Subscription = class extends Request {
75507
+ _agentActivityCreated;
75508
+ _agentActivityUpdated;
75509
+ _agentSessionCreated;
75510
+ _agentSessionUpdated;
75511
+ _commentArchived;
75512
+ _commentCreated;
75513
+ _commentDeleted;
75514
+ _commentUnarchived;
75515
+ _commentUpdated;
75516
+ _cycleArchived;
75517
+ _cycleCreated;
75518
+ _cycleUpdated;
75519
+ _documentArchived;
75520
+ _documentCreated;
75521
+ _documentUnarchived;
75522
+ _documentUpdated;
75523
+ _favoriteCreated;
75524
+ _favoriteDeleted;
75525
+ _favoriteUpdated;
75526
+ _initiativeCreated;
75527
+ _initiativeDeleted;
75528
+ _initiativeUpdated;
75529
+ _issueArchived;
75530
+ _issueCreated;
75531
+ _issueLabelCreated;
75532
+ _issueLabelDeleted;
75533
+ _issueLabelUpdated;
75534
+ _issueRelationCreated;
75535
+ _issueRelationDeleted;
75536
+ _issueRelationUpdated;
75537
+ _issueUnarchived;
75538
+ _issueUpdated;
75539
+ _projectArchived;
75540
+ _projectCreated;
75541
+ _projectUnarchived;
75542
+ _projectUpdateCreated;
75543
+ _projectUpdateDeleted;
75544
+ _projectUpdateUpdated;
75545
+ _projectUpdated;
75546
+ _roadmapCreated;
75547
+ _roadmapDeleted;
75548
+ _roadmapUpdated;
75549
+ _teamCreated;
75550
+ _teamDeleted;
75551
+ _teamMembershipCreated;
75552
+ _teamMembershipDeleted;
75553
+ _teamMembershipUpdated;
75554
+ _teamUpdated;
75555
+ _userCreated;
75556
+ _userUpdated;
75557
+ _workflowStateArchived;
75558
+ _workflowStateCreated;
75559
+ _workflowStateUpdated;
75560
+ constructor(request, data) {
75561
+ super(request);
75562
+ this.documentContentCreated = new DocumentContent(request, data.documentContentCreated);
75563
+ this.documentContentDraftCreated = new DocumentContentDraft(request, data.documentContentDraftCreated);
75564
+ this.documentContentDraftDeleted = new DocumentContentDraft(request, data.documentContentDraftDeleted);
75565
+ this.documentContentDraftUpdated = new DocumentContentDraft(request, data.documentContentDraftUpdated);
75566
+ this.documentContentUpdated = new DocumentContent(request, data.documentContentUpdated);
75567
+ this.draftCreated = new Draft(request, data.draftCreated);
75568
+ this.draftDeleted = new Draft(request, data.draftDeleted);
75569
+ this.draftUpdated = new Draft(request, data.draftUpdated);
75570
+ this.issueHistoryCreated = new IssueHistory(request, data.issueHistoryCreated);
75571
+ this.issueHistoryUpdated = new IssueHistory(request, data.issueHistoryUpdated);
75572
+ this._agentActivityCreated = data.agentActivityCreated;
75573
+ this._agentActivityUpdated = data.agentActivityUpdated;
75574
+ this._agentSessionCreated = data.agentSessionCreated;
75575
+ this._agentSessionUpdated = data.agentSessionUpdated;
75576
+ this._commentArchived = data.commentArchived;
75577
+ this._commentCreated = data.commentCreated;
75578
+ this._commentDeleted = data.commentDeleted;
75579
+ this._commentUnarchived = data.commentUnarchived;
75580
+ this._commentUpdated = data.commentUpdated;
75581
+ this._cycleArchived = data.cycleArchived;
75582
+ this._cycleCreated = data.cycleCreated;
75583
+ this._cycleUpdated = data.cycleUpdated;
75584
+ this._documentArchived = data.documentArchived;
75585
+ this._documentCreated = data.documentCreated;
75586
+ this._documentUnarchived = data.documentUnarchived;
75587
+ this._documentUpdated = data.documentUpdated;
75588
+ this._favoriteCreated = data.favoriteCreated;
75589
+ this._favoriteDeleted = data.favoriteDeleted;
75590
+ this._favoriteUpdated = data.favoriteUpdated;
75591
+ this._initiativeCreated = data.initiativeCreated;
75592
+ this._initiativeDeleted = data.initiativeDeleted;
75593
+ this._initiativeUpdated = data.initiativeUpdated;
75594
+ this._issueArchived = data.issueArchived;
75595
+ this._issueCreated = data.issueCreated;
75596
+ this._issueLabelCreated = data.issueLabelCreated;
75597
+ this._issueLabelDeleted = data.issueLabelDeleted;
75598
+ this._issueLabelUpdated = data.issueLabelUpdated;
75599
+ this._issueRelationCreated = data.issueRelationCreated;
75600
+ this._issueRelationDeleted = data.issueRelationDeleted;
75601
+ this._issueRelationUpdated = data.issueRelationUpdated;
75602
+ this._issueUnarchived = data.issueUnarchived;
75603
+ this._issueUpdated = data.issueUpdated;
75604
+ this._projectArchived = data.projectArchived;
75605
+ this._projectCreated = data.projectCreated;
75606
+ this._projectUnarchived = data.projectUnarchived;
75607
+ this._projectUpdateCreated = data.projectUpdateCreated;
75608
+ this._projectUpdateDeleted = data.projectUpdateDeleted;
75609
+ this._projectUpdateUpdated = data.projectUpdateUpdated;
75610
+ this._projectUpdated = data.projectUpdated;
75611
+ this._roadmapCreated = data.roadmapCreated;
75612
+ this._roadmapDeleted = data.roadmapDeleted;
75613
+ this._roadmapUpdated = data.roadmapUpdated;
75614
+ this._teamCreated = data.teamCreated;
75615
+ this._teamDeleted = data.teamDeleted;
75616
+ this._teamMembershipCreated = data.teamMembershipCreated;
75617
+ this._teamMembershipDeleted = data.teamMembershipDeleted;
75618
+ this._teamMembershipUpdated = data.teamMembershipUpdated;
75619
+ this._teamUpdated = data.teamUpdated;
75620
+ this._userCreated = data.userCreated;
75621
+ this._userUpdated = data.userUpdated;
75622
+ this._workflowStateArchived = data.workflowStateArchived;
75623
+ this._workflowStateCreated = data.workflowStateCreated;
75624
+ this._workflowStateUpdated = data.workflowStateUpdated;
75625
+ }
75626
+ /** Triggered when a document content is created */
75627
+ documentContentCreated;
75628
+ /** Triggered when a document content draft is created */
75629
+ documentContentDraftCreated;
75630
+ /** Triggered when a document content draft is deleted */
75631
+ documentContentDraftDeleted;
75632
+ /** Triggered when a document content draft is updated */
75633
+ documentContentDraftUpdated;
75634
+ /** Triggered when a document content is updated */
75635
+ documentContentUpdated;
75636
+ /** Triggered when a draft is created */
75637
+ draftCreated;
75638
+ /** Triggered when a draft is deleted */
75639
+ draftDeleted;
75640
+ /** Triggered when a draft is updated */
75641
+ draftUpdated;
75642
+ /** Triggered when an issue history is created */
75643
+ issueHistoryCreated;
75644
+ /** Triggered when an issue history is updated */
75645
+ issueHistoryUpdated;
75646
+ /** Triggered when an agent activity is created */
75647
+ get agentActivityCreated() {
75648
+ return new AgentActivityQuery(this._request).fetch(this._agentActivityCreated.id);
75649
+ }
75650
+ /** The ID of triggered when an agent activity is created */
75651
+ get agentActivityCreatedId() {
75652
+ return this._agentActivityCreated?.id;
75653
+ }
75654
+ /** Triggered when an agent activity is updated */
75655
+ get agentActivityUpdated() {
75656
+ return new AgentActivityQuery(this._request).fetch(this._agentActivityUpdated.id);
75657
+ }
75658
+ /** The ID of triggered when an agent activity is updated */
75659
+ get agentActivityUpdatedId() {
75660
+ return this._agentActivityUpdated?.id;
75661
+ }
75662
+ /** Triggered when an agent session is created */
75663
+ get agentSessionCreated() {
75664
+ return new AgentSessionQuery(this._request).fetch(this._agentSessionCreated.id);
75665
+ }
75666
+ /** The ID of triggered when an agent session is created */
75667
+ get agentSessionCreatedId() {
75668
+ return this._agentSessionCreated?.id;
75669
+ }
75670
+ /** Triggered when an agent session is updated */
75671
+ get agentSessionUpdated() {
75672
+ return new AgentSessionQuery(this._request).fetch(this._agentSessionUpdated.id);
75673
+ }
75674
+ /** The ID of triggered when an agent session is updated */
75675
+ get agentSessionUpdatedId() {
75676
+ return this._agentSessionUpdated?.id;
75677
+ }
75678
+ /** Triggered when a comment is archived */
75679
+ get commentArchived() {
75680
+ return new CommentQuery(this._request).fetch({ id: this._commentArchived.id });
75681
+ }
75682
+ /** The ID of triggered when a comment is archived */
75683
+ get commentArchivedId() {
75684
+ return this._commentArchived?.id;
75685
+ }
75686
+ /** Triggered when a comment is created */
75687
+ get commentCreated() {
75688
+ return new CommentQuery(this._request).fetch({ id: this._commentCreated.id });
75689
+ }
75690
+ /** The ID of triggered when a comment is created */
75691
+ get commentCreatedId() {
75692
+ return this._commentCreated?.id;
75693
+ }
75694
+ /** Triggered when a comment is deleted */
75695
+ get commentDeleted() {
75696
+ return new CommentQuery(this._request).fetch({ id: this._commentDeleted.id });
75697
+ }
75698
+ /** The ID of triggered when a comment is deleted */
75699
+ get commentDeletedId() {
75700
+ return this._commentDeleted?.id;
75701
+ }
75702
+ /** Triggered when a a comment is unarchived */
75703
+ get commentUnarchived() {
75704
+ return new CommentQuery(this._request).fetch({ id: this._commentUnarchived.id });
75705
+ }
75706
+ /** The ID of triggered when a a comment is unarchived */
75707
+ get commentUnarchivedId() {
75708
+ return this._commentUnarchived?.id;
75709
+ }
75710
+ /** Triggered when a comment is updated */
75711
+ get commentUpdated() {
75712
+ return new CommentQuery(this._request).fetch({ id: this._commentUpdated.id });
75713
+ }
75714
+ /** The ID of triggered when a comment is updated */
75715
+ get commentUpdatedId() {
75716
+ return this._commentUpdated?.id;
75717
+ }
75718
+ /** Triggered when a cycle is archived */
75719
+ get cycleArchived() {
75720
+ return new CycleQuery(this._request).fetch(this._cycleArchived.id);
75721
+ }
75722
+ /** The ID of triggered when a cycle is archived */
75723
+ get cycleArchivedId() {
75724
+ return this._cycleArchived?.id;
75725
+ }
75726
+ /** Triggered when a cycle is created */
75727
+ get cycleCreated() {
75728
+ return new CycleQuery(this._request).fetch(this._cycleCreated.id);
75729
+ }
75730
+ /** The ID of triggered when a cycle is created */
75731
+ get cycleCreatedId() {
75732
+ return this._cycleCreated?.id;
75733
+ }
75734
+ /** Triggered when a cycle is updated */
75735
+ get cycleUpdated() {
75736
+ return new CycleQuery(this._request).fetch(this._cycleUpdated.id);
75737
+ }
75738
+ /** The ID of triggered when a cycle is updated */
75739
+ get cycleUpdatedId() {
75740
+ return this._cycleUpdated?.id;
75741
+ }
75742
+ /** Triggered when a document is archived */
75743
+ get documentArchived() {
75744
+ return new DocumentQuery(this._request).fetch(this._documentArchived.id);
75745
+ }
75746
+ /** The ID of triggered when a document is archived */
75747
+ get documentArchivedId() {
75748
+ return this._documentArchived?.id;
75749
+ }
75750
+ /** Triggered when a document is created */
75751
+ get documentCreated() {
75752
+ return new DocumentQuery(this._request).fetch(this._documentCreated.id);
75753
+ }
75754
+ /** The ID of triggered when a document is created */
75755
+ get documentCreatedId() {
75756
+ return this._documentCreated?.id;
75757
+ }
75758
+ /** Triggered when a a document is unarchived */
75759
+ get documentUnarchived() {
75760
+ return new DocumentQuery(this._request).fetch(this._documentUnarchived.id);
75761
+ }
75762
+ /** The ID of triggered when a a document is unarchived */
75763
+ get documentUnarchivedId() {
75764
+ return this._documentUnarchived?.id;
75765
+ }
75766
+ /** Triggered when a document is updated */
75767
+ get documentUpdated() {
75768
+ return new DocumentQuery(this._request).fetch(this._documentUpdated.id);
75769
+ }
75770
+ /** The ID of triggered when a document is updated */
75771
+ get documentUpdatedId() {
75772
+ return this._documentUpdated?.id;
75773
+ }
75774
+ /** Triggered when a favorite is created */
75775
+ get favoriteCreated() {
75776
+ return new FavoriteQuery(this._request).fetch(this._favoriteCreated.id);
75777
+ }
75778
+ /** The ID of triggered when a favorite is created */
75779
+ get favoriteCreatedId() {
75780
+ return this._favoriteCreated?.id;
75781
+ }
75782
+ /** Triggered when a favorite is deleted */
75783
+ get favoriteDeleted() {
75784
+ return new FavoriteQuery(this._request).fetch(this._favoriteDeleted.id);
75785
+ }
75786
+ /** The ID of triggered when a favorite is deleted */
75787
+ get favoriteDeletedId() {
75788
+ return this._favoriteDeleted?.id;
75789
+ }
75790
+ /** Triggered when a favorite is updated */
75791
+ get favoriteUpdated() {
75792
+ return new FavoriteQuery(this._request).fetch(this._favoriteUpdated.id);
75793
+ }
75794
+ /** The ID of triggered when a favorite is updated */
75795
+ get favoriteUpdatedId() {
75796
+ return this._favoriteUpdated?.id;
75797
+ }
75798
+ /** Triggered when an initiative is created */
75799
+ get initiativeCreated() {
75800
+ return new InitiativeQuery(this._request).fetch(this._initiativeCreated.id);
75801
+ }
75802
+ /** The ID of triggered when an initiative is created */
75803
+ get initiativeCreatedId() {
75804
+ return this._initiativeCreated?.id;
75805
+ }
75806
+ /** Triggered when an initiative is deleted */
75807
+ get initiativeDeleted() {
75808
+ return new InitiativeQuery(this._request).fetch(this._initiativeDeleted.id);
75809
+ }
75810
+ /** The ID of triggered when an initiative is deleted */
75811
+ get initiativeDeletedId() {
75812
+ return this._initiativeDeleted?.id;
75813
+ }
75814
+ /** Triggered when an initiative is updated */
75815
+ get initiativeUpdated() {
75816
+ return new InitiativeQuery(this._request).fetch(this._initiativeUpdated.id);
75817
+ }
75818
+ /** The ID of triggered when an initiative is updated */
75819
+ get initiativeUpdatedId() {
75820
+ return this._initiativeUpdated?.id;
75821
+ }
75822
+ /** Triggered when an issue is archived */
75823
+ get issueArchived() {
75824
+ return new IssueQuery(this._request).fetch(this._issueArchived.id);
75825
+ }
75826
+ /** The ID of triggered when an issue is archived */
75827
+ get issueArchivedId() {
75828
+ return this._issueArchived?.id;
75829
+ }
75830
+ /** Triggered when an issue is created */
75831
+ get issueCreated() {
75832
+ return new IssueQuery(this._request).fetch(this._issueCreated.id);
75833
+ }
75834
+ /** The ID of triggered when an issue is created */
75835
+ get issueCreatedId() {
75836
+ return this._issueCreated?.id;
75837
+ }
75838
+ /** Triggered when an issue label is created */
75839
+ get issueLabelCreated() {
75840
+ return new IssueLabelQuery(this._request).fetch(this._issueLabelCreated.id);
75841
+ }
75842
+ /** The ID of triggered when an issue label is created */
75843
+ get issueLabelCreatedId() {
75844
+ return this._issueLabelCreated?.id;
75845
+ }
75846
+ /** Triggered when an issue label is deleted */
75847
+ get issueLabelDeleted() {
75848
+ return new IssueLabelQuery(this._request).fetch(this._issueLabelDeleted.id);
75849
+ }
75850
+ /** The ID of triggered when an issue label is deleted */
75851
+ get issueLabelDeletedId() {
75852
+ return this._issueLabelDeleted?.id;
75853
+ }
75854
+ /** Triggered when an issue label is updated */
75855
+ get issueLabelUpdated() {
75856
+ return new IssueLabelQuery(this._request).fetch(this._issueLabelUpdated.id);
75857
+ }
75858
+ /** The ID of triggered when an issue label is updated */
75859
+ get issueLabelUpdatedId() {
75860
+ return this._issueLabelUpdated?.id;
75861
+ }
75862
+ /** Triggered when an issue relation is created */
75863
+ get issueRelationCreated() {
75864
+ return new IssueRelationQuery(this._request).fetch(this._issueRelationCreated.id);
75865
+ }
75866
+ /** The ID of triggered when an issue relation is created */
75867
+ get issueRelationCreatedId() {
75868
+ return this._issueRelationCreated?.id;
75869
+ }
75870
+ /** Triggered when an issue relation is deleted */
75871
+ get issueRelationDeleted() {
75872
+ return new IssueRelationQuery(this._request).fetch(this._issueRelationDeleted.id);
75873
+ }
75874
+ /** The ID of triggered when an issue relation is deleted */
75875
+ get issueRelationDeletedId() {
75876
+ return this._issueRelationDeleted?.id;
75877
+ }
75878
+ /** Triggered when an issue relation is updated */
75879
+ get issueRelationUpdated() {
75880
+ return new IssueRelationQuery(this._request).fetch(this._issueRelationUpdated.id);
75881
+ }
75882
+ /** The ID of triggered when an issue relation is updated */
75883
+ get issueRelationUpdatedId() {
75884
+ return this._issueRelationUpdated?.id;
75885
+ }
75886
+ /** Triggered when a an issue is unarchived */
75887
+ get issueUnarchived() {
75888
+ return new IssueQuery(this._request).fetch(this._issueUnarchived.id);
75889
+ }
75890
+ /** The ID of triggered when a an issue is unarchived */
75891
+ get issueUnarchivedId() {
75892
+ return this._issueUnarchived?.id;
75893
+ }
75894
+ /** Triggered when an issue is updated */
75895
+ get issueUpdated() {
75896
+ return new IssueQuery(this._request).fetch(this._issueUpdated.id);
75897
+ }
75898
+ /** The ID of triggered when an issue is updated */
75899
+ get issueUpdatedId() {
75900
+ return this._issueUpdated?.id;
75901
+ }
75902
+ /** Triggered when an organization is updated */
75903
+ get organizationUpdated() {
75904
+ return new OrganizationQuery(this._request).fetch();
75905
+ }
75906
+ /** Triggered when a project is archived */
75907
+ get projectArchived() {
75908
+ return new ProjectQuery(this._request).fetch(this._projectArchived.id);
75909
+ }
75910
+ /** The ID of triggered when a project is archived */
75911
+ get projectArchivedId() {
75912
+ return this._projectArchived?.id;
75913
+ }
75914
+ /** Triggered when a project is created */
75915
+ get projectCreated() {
75916
+ return new ProjectQuery(this._request).fetch(this._projectCreated.id);
75917
+ }
75918
+ /** The ID of triggered when a project is created */
75919
+ get projectCreatedId() {
75920
+ return this._projectCreated?.id;
75921
+ }
75922
+ /** Triggered when a a project is unarchived */
75923
+ get projectUnarchived() {
75924
+ return new ProjectQuery(this._request).fetch(this._projectUnarchived.id);
75925
+ }
75926
+ /** The ID of triggered when a a project is unarchived */
75927
+ get projectUnarchivedId() {
75928
+ return this._projectUnarchived?.id;
75929
+ }
75930
+ /** Triggered when a project update is created */
75931
+ get projectUpdateCreated() {
75932
+ return new ProjectUpdateQuery(this._request).fetch(this._projectUpdateCreated.id);
75933
+ }
75934
+ /** The ID of triggered when a project update is created */
75935
+ get projectUpdateCreatedId() {
75936
+ return this._projectUpdateCreated?.id;
75937
+ }
75938
+ /** Triggered when a project update is deleted */
75939
+ get projectUpdateDeleted() {
75940
+ return new ProjectUpdateQuery(this._request).fetch(this._projectUpdateDeleted.id);
75941
+ }
75942
+ /** The ID of triggered when a project update is deleted */
75943
+ get projectUpdateDeletedId() {
75944
+ return this._projectUpdateDeleted?.id;
75945
+ }
75946
+ /** Triggered when a project update is updated */
75947
+ get projectUpdateUpdated() {
75948
+ return new ProjectUpdateQuery(this._request).fetch(this._projectUpdateUpdated.id);
75949
+ }
75950
+ /** The ID of triggered when a project update is updated */
75951
+ get projectUpdateUpdatedId() {
75952
+ return this._projectUpdateUpdated?.id;
75953
+ }
75954
+ /** Triggered when a project is updated */
75955
+ get projectUpdated() {
75956
+ return new ProjectQuery(this._request).fetch(this._projectUpdated.id);
75957
+ }
75958
+ /** The ID of triggered when a project is updated */
75959
+ get projectUpdatedId() {
75960
+ return this._projectUpdated?.id;
75961
+ }
75962
+ /** Triggered when a roadmap is created */
75963
+ get roadmapCreated() {
75964
+ return new RoadmapQuery(this._request).fetch(this._roadmapCreated.id);
75965
+ }
75966
+ /** The ID of triggered when a roadmap is created */
75967
+ get roadmapCreatedId() {
75968
+ return this._roadmapCreated?.id;
75969
+ }
75970
+ /** Triggered when a roadmap is deleted */
75971
+ get roadmapDeleted() {
75972
+ return new RoadmapQuery(this._request).fetch(this._roadmapDeleted.id);
75973
+ }
75974
+ /** The ID of triggered when a roadmap is deleted */
75975
+ get roadmapDeletedId() {
75976
+ return this._roadmapDeleted?.id;
75977
+ }
75978
+ /** Triggered when a roadmap is updated */
75979
+ get roadmapUpdated() {
75980
+ return new RoadmapQuery(this._request).fetch(this._roadmapUpdated.id);
75981
+ }
75982
+ /** The ID of triggered when a roadmap is updated */
75983
+ get roadmapUpdatedId() {
75984
+ return this._roadmapUpdated?.id;
75985
+ }
75986
+ /** Triggered when a team is created */
75987
+ get teamCreated() {
75988
+ return new TeamQuery(this._request).fetch(this._teamCreated.id);
75989
+ }
75990
+ /** The ID of triggered when a team is created */
75991
+ get teamCreatedId() {
75992
+ return this._teamCreated?.id;
75993
+ }
75994
+ /** Triggered when a team is deleted */
75995
+ get teamDeleted() {
75996
+ return new TeamQuery(this._request).fetch(this._teamDeleted.id);
75997
+ }
75998
+ /** The ID of triggered when a team is deleted */
75999
+ get teamDeletedId() {
76000
+ return this._teamDeleted?.id;
76001
+ }
76002
+ /** Triggered when a team membership is created */
76003
+ get teamMembershipCreated() {
76004
+ return new TeamMembershipQuery(this._request).fetch(this._teamMembershipCreated.id);
76005
+ }
76006
+ /** The ID of triggered when a team membership is created */
76007
+ get teamMembershipCreatedId() {
76008
+ return this._teamMembershipCreated?.id;
76009
+ }
76010
+ /** Triggered when a team membership is deleted */
76011
+ get teamMembershipDeleted() {
76012
+ return new TeamMembershipQuery(this._request).fetch(this._teamMembershipDeleted.id);
76013
+ }
76014
+ /** The ID of triggered when a team membership is deleted */
76015
+ get teamMembershipDeletedId() {
76016
+ return this._teamMembershipDeleted?.id;
76017
+ }
76018
+ /** Triggered when a team membership is updated */
76019
+ get teamMembershipUpdated() {
76020
+ return new TeamMembershipQuery(this._request).fetch(this._teamMembershipUpdated.id);
76021
+ }
76022
+ /** The ID of triggered when a team membership is updated */
76023
+ get teamMembershipUpdatedId() {
76024
+ return this._teamMembershipUpdated?.id;
76025
+ }
76026
+ /** Triggered when a team is updated */
76027
+ get teamUpdated() {
76028
+ return new TeamQuery(this._request).fetch(this._teamUpdated.id);
76029
+ }
76030
+ /** The ID of triggered when a team is updated */
76031
+ get teamUpdatedId() {
76032
+ return this._teamUpdated?.id;
76033
+ }
76034
+ /** Triggered when an user is created */
76035
+ get userCreated() {
76036
+ return new UserQuery(this._request).fetch(this._userCreated.id);
76037
+ }
76038
+ /** The ID of triggered when an user is created */
76039
+ get userCreatedId() {
76040
+ return this._userCreated?.id;
76041
+ }
76042
+ /** Triggered when an user is updated */
76043
+ get userUpdated() {
76044
+ return new UserQuery(this._request).fetch(this._userUpdated.id);
76045
+ }
76046
+ /** The ID of triggered when an user is updated */
76047
+ get userUpdatedId() {
76048
+ return this._userUpdated?.id;
76049
+ }
76050
+ /** Triggered when a workflow state is archived */
76051
+ get workflowStateArchived() {
76052
+ return new WorkflowStateQuery(this._request).fetch(this._workflowStateArchived.id);
76053
+ }
76054
+ /** The ID of triggered when a workflow state is archived */
76055
+ get workflowStateArchivedId() {
76056
+ return this._workflowStateArchived?.id;
76057
+ }
76058
+ /** Triggered when a workflow state is created */
76059
+ get workflowStateCreated() {
76060
+ return new WorkflowStateQuery(this._request).fetch(this._workflowStateCreated.id);
76061
+ }
76062
+ /** The ID of triggered when a workflow state is created */
76063
+ get workflowStateCreatedId() {
76064
+ return this._workflowStateCreated?.id;
76065
+ }
76066
+ /** Triggered when a workflow state is updated */
76067
+ get workflowStateUpdated() {
76068
+ return new WorkflowStateQuery(this._request).fetch(this._workflowStateUpdated.id);
76069
+ }
76070
+ /** The ID of triggered when a workflow state is updated */
76071
+ get workflowStateUpdatedId() {
76072
+ return this._workflowStateUpdated?.id;
76073
+ }
76074
+ };
76075
+ /**
74097
76076
  * SuccessPayload model
74098
76077
  *
74099
76078
  * @param request - function to call the graphql client
@@ -82721,6 +84700,54 @@ var IntegrationLoomMutation = class extends Request {
82721
84700
  }
82722
84701
  };
82723
84702
  /**
84703
+ * A fetchable IntegrationMicrosoftPersonalConnect Mutation
84704
+ *
84705
+ * @param request - function to call the graphql client
84706
+ */
84707
+ var IntegrationMicrosoftPersonalConnectMutation = class extends Request {
84708
+ constructor(request) {
84709
+ super(request);
84710
+ }
84711
+ /**
84712
+ * Call the IntegrationMicrosoftPersonalConnect mutation and return a IntegrationPayload
84713
+ *
84714
+ * @param code - required code to pass to integrationMicrosoftPersonalConnect
84715
+ * @param redirectUri - required redirectUri to pass to integrationMicrosoftPersonalConnect
84716
+ * @returns parsed response from IntegrationMicrosoftPersonalConnectMutation
84717
+ */
84718
+ async fetch(code, redirectUri) {
84719
+ const data = (await this._request(IntegrationMicrosoftPersonalConnectDocument.toString(), {
84720
+ code,
84721
+ redirectUri
84722
+ })).integrationMicrosoftPersonalConnect;
84723
+ return new IntegrationPayload(this._request, data);
84724
+ }
84725
+ };
84726
+ /**
84727
+ * A fetchable IntegrationMicrosoftTeams Mutation
84728
+ *
84729
+ * @param request - function to call the graphql client
84730
+ */
84731
+ var IntegrationMicrosoftTeamsMutation = class extends Request {
84732
+ constructor(request) {
84733
+ super(request);
84734
+ }
84735
+ /**
84736
+ * Call the IntegrationMicrosoftTeams mutation and return a IntegrationPayload
84737
+ *
84738
+ * @param code - required code to pass to integrationMicrosoftTeams
84739
+ * @param redirectUri - required redirectUri to pass to integrationMicrosoftTeams
84740
+ * @returns parsed response from IntegrationMicrosoftTeamsMutation
84741
+ */
84742
+ async fetch(code, redirectUri) {
84743
+ const data = (await this._request(IntegrationMicrosoftTeamsDocument.toString(), {
84744
+ code,
84745
+ redirectUri
84746
+ })).integrationMicrosoftTeams;
84747
+ return new IntegrationPayload(this._request, data);
84748
+ }
84749
+ };
84750
+ /**
82724
84751
  * A fetchable IntegrationRequest Mutation
82725
84752
  *
82726
84753
  * @param request - function to call the graphql client
@@ -93481,6 +95508,26 @@ var LinearSdk = class extends Request {
93481
95508
  return new IntegrationLoomMutation(this._request).fetch();
93482
95509
  }
93483
95510
  /**
95511
+ * Connects the user's personal Microsoft account to Linear.
95512
+ *
95513
+ * @param code - required code to pass to integrationMicrosoftPersonalConnect
95514
+ * @param redirectUri - required redirectUri to pass to integrationMicrosoftPersonalConnect
95515
+ * @returns IntegrationPayload
95516
+ */
95517
+ integrationMicrosoftPersonalConnect(code, redirectUri) {
95518
+ return new IntegrationMicrosoftPersonalConnectMutation(this._request).fetch(code, redirectUri);
95519
+ }
95520
+ /**
95521
+ * Integrates the organization with Microsoft Teams.
95522
+ *
95523
+ * @param code - required code to pass to integrationMicrosoftTeams
95524
+ * @param redirectUri - required redirectUri to pass to integrationMicrosoftTeams
95525
+ * @returns IntegrationPayload
95526
+ */
95527
+ integrationMicrosoftTeams(code, redirectUri) {
95528
+ return new IntegrationMicrosoftTeamsMutation(this._request).fetch(code, redirectUri);
95529
+ }
95530
+ /**
93484
95531
  * Requests a currently unavailable integration.
93485
95532
  *
93486
95533
  * @param input - required input to pass to integrationRequest
@@ -95179,7 +97226,9 @@ exports.AiConversationWebSearchToolCallArgs = AiConversationWebSearchToolCallArg
95179
97226
  exports.AiConversationWidgetDisplayInfo = AiConversationWidgetDisplayInfo;
95180
97227
  exports.AiConversationWidgetName = AiConversationWidgetName;
95181
97228
  exports.AiConversationWidgetPart = AiConversationWidgetPart;
97229
+ exports.AiPromptProgressStatus = AiPromptProgressStatus;
95182
97230
  exports.AiPromptRules = AiPromptRules;
97231
+ exports.AiPromptType = AiPromptType;
95183
97232
  exports.AirbyteIntegrationConnectMutation = AirbyteIntegrationConnectMutation;
95184
97233
  exports.AppUserNotificationWebhookPayload = AppUserNotificationWebhookPayload;
95185
97234
  exports.AppUserTeamAccessChangedWebhookPayload = AppUserTeamAccessChangedWebhookPayload;
@@ -95452,6 +97501,7 @@ exports.DocumentChildWebhookPayload = DocumentChildWebhookPayload;
95452
97501
  exports.DocumentConnection = DocumentConnection;
95453
97502
  exports.DocumentContent = DocumentContent;
95454
97503
  exports.DocumentContentChildWebhookPayload = DocumentContentChildWebhookPayload;
97504
+ exports.DocumentContentDraft = DocumentContentDraft;
95455
97505
  exports.DocumentContentHistoryPayload = DocumentContentHistoryPayload;
95456
97506
  exports.DocumentContentHistoryQuery = DocumentContentHistoryQuery;
95457
97507
  exports.DocumentContentHistoryType = DocumentContentHistoryType;
@@ -95603,6 +97653,8 @@ exports.IntegrationHasScopesQuery = IntegrationHasScopesQuery;
95603
97653
  exports.IntegrationIntercomMutation = IntegrationIntercomMutation;
95604
97654
  exports.IntegrationJiraPersonalMutation = IntegrationJiraPersonalMutation;
95605
97655
  exports.IntegrationLoomMutation = IntegrationLoomMutation;
97656
+ exports.IntegrationMicrosoftPersonalConnectMutation = IntegrationMicrosoftPersonalConnectMutation;
97657
+ exports.IntegrationMicrosoftTeamsMutation = IntegrationMicrosoftTeamsMutation;
95606
97658
  exports.IntegrationPayload = IntegrationPayload;
95607
97659
  exports.IntegrationQuery = IntegrationQuery;
95608
97660
  exports.IntegrationRequestMutation = IntegrationRequestMutation;
@@ -95964,11 +98016,14 @@ exports.ReleaseArchivePayload = ReleaseArchivePayload;
95964
98016
  exports.ReleaseChannel = ReleaseChannel;
95965
98017
  exports.ReleasePayload = ReleasePayload;
95966
98018
  exports.ReleasePipelineArchivePayload = ReleasePipelineArchivePayload;
98019
+ exports.ReleasePipelineChildWebhookPayload = ReleasePipelineChildWebhookPayload;
95967
98020
  exports.ReleasePipelinePayload = ReleasePipelinePayload;
95968
98021
  exports.ReleasePipelineType = ReleasePipelineType;
95969
98022
  exports.ReleaseStageArchivePayload = ReleaseStageArchivePayload;
98023
+ exports.ReleaseStageChildWebhookPayload = ReleaseStageChildWebhookPayload;
95970
98024
  exports.ReleaseStagePayload = ReleaseStagePayload;
95971
98025
  exports.ReleaseStageType = ReleaseStageType;
98026
+ exports.ReleaseWebhookPayload = ReleaseWebhookPayload;
95972
98027
  exports.RepositorySuggestion = RepositorySuggestion;
95973
98028
  exports.RepositorySuggestionsPayload = RepositorySuggestionsPayload;
95974
98029
  exports.Request = Request;
@@ -96009,6 +98064,7 @@ exports.SlackChannelNameMapping = SlackChannelNameMapping;
96009
98064
  exports.SlackChannelType = SlackChannelType;
96010
98065
  exports.SsoUrlFromEmailQuery = SsoUrlFromEmailQuery;
96011
98066
  exports.SsoUrlFromEmailResponse = SsoUrlFromEmailResponse;
98067
+ exports.Subscription = Subscription;
96012
98068
  exports.SuccessPayload = SuccessPayload;
96013
98069
  exports.Summary = Summary;
96014
98070
  exports.SummaryGenerationStatus = SummaryGenerationStatus;