@linear/sdk 78.0.0 → 79.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{index-WIxhBqz5.d.cts → index-CArLFN-t.d.cts} +158 -31
- package/dist/index-CArLFN-t.d.cts.map +1 -0
- package/dist/{index-ZingMK-8.d.mts → index-ClHDrkhS.d.mts} +158 -31
- package/dist/index-ClHDrkhS.d.mts.map +1 -0
- package/dist/index.cjs +177 -22
- package/dist/index.d.cts +23 -8
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +23 -8
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +175 -23
- package/dist/index.mjs.map +1 -1
- package/dist/webhooks/index.d.cts +1 -1
- package/dist/webhooks/index.d.mts +1 -1
- package/package.json +3 -3
- package/dist/index-WIxhBqz5.d.cts.map +0 -1
- package/dist/index-ZingMK-8.d.mts.map +0 -1
package/dist/index.mjs
CHANGED
|
@@ -1514,6 +1514,7 @@ var _generated_documents_exports = /* @__PURE__ */ __export({
|
|
|
1514
1514
|
AiConversationGetPullRequestFileToolCallArgsFragmentDoc: () => AiConversationGetPullRequestFileToolCallArgsFragmentDoc,
|
|
1515
1515
|
AiConversationGetPullRequestFileToolCallFragmentDoc: () => AiConversationGetPullRequestFileToolCallFragmentDoc,
|
|
1516
1516
|
AiConversationGetSlackConversationHistoryToolCallFragmentDoc: () => AiConversationGetSlackConversationHistoryToolCallFragmentDoc,
|
|
1517
|
+
AiConversationInitialSource: () => AiConversationInitialSource,
|
|
1517
1518
|
AiConversationInvokeMcpToolToolCallArgsFragmentDoc: () => AiConversationInvokeMcpToolToolCallArgsFragmentDoc,
|
|
1518
1519
|
AiConversationInvokeMcpToolToolCallArgsServerFragmentDoc: () => AiConversationInvokeMcpToolToolCallArgsServerFragmentDoc,
|
|
1519
1520
|
AiConversationInvokeMcpToolToolCallArgsToolFragmentDoc: () => AiConversationInvokeMcpToolToolCallArgsToolFragmentDoc,
|
|
@@ -2072,6 +2073,7 @@ var _generated_documents_exports = /* @__PURE__ */ __export({
|
|
|
2072
2073
|
IssueSearchResultFragmentDoc: () => IssueSearchResultFragmentDoc,
|
|
2073
2074
|
IssueSharedAccessDisallowedField: () => IssueSharedAccessDisallowedField,
|
|
2074
2075
|
IssueSharedAccessFragmentDoc: () => IssueSharedAccessFragmentDoc,
|
|
2076
|
+
IssueSharingPolicy: () => IssueSharingPolicy,
|
|
2075
2077
|
IssueSlaWebhookPayloadFragmentDoc: () => IssueSlaWebhookPayloadFragmentDoc,
|
|
2076
2078
|
IssueStateSpanConnectionFragmentDoc: () => IssueStateSpanConnectionFragmentDoc,
|
|
2077
2079
|
IssueStateSpanFragmentDoc: () => IssueStateSpanFragmentDoc,
|
|
@@ -2296,6 +2298,7 @@ var _generated_documents_exports = /* @__PURE__ */ __export({
|
|
|
2296
2298
|
Project_RelationsDocument: () => Project_RelationsDocument,
|
|
2297
2299
|
Project_TeamsDocument: () => Project_TeamsDocument,
|
|
2298
2300
|
ProjectsDocument: () => ProjectsDocument,
|
|
2301
|
+
PullRequestCheckPresentation: () => PullRequestCheckPresentation,
|
|
2299
2302
|
PullRequestMergeMethod: () => PullRequestMergeMethod,
|
|
2300
2303
|
PullRequestNotificationFragmentDoc: () => PullRequestNotificationFragmentDoc,
|
|
2301
2304
|
PullRequestReviewTool: () => PullRequestReviewTool,
|
|
@@ -2670,6 +2673,16 @@ let AiConversationEntityListWidgetArgsEntitiesType = /* @__PURE__ */ function(Ai
|
|
|
2670
2673
|
AiConversationEntityListWidgetArgsEntitiesType$1["Template"] = "Template";
|
|
2671
2674
|
return AiConversationEntityListWidgetArgsEntitiesType$1;
|
|
2672
2675
|
}({});
|
|
2676
|
+
/** The initial source of an AI conversation. */
|
|
2677
|
+
let AiConversationInitialSource = /* @__PURE__ */ function(AiConversationInitialSource$1) {
|
|
2678
|
+
AiConversationInitialSource$1["Comment"] = "comment";
|
|
2679
|
+
AiConversationInitialSource$1["DirectChat"] = "directChat";
|
|
2680
|
+
AiConversationInitialSource$1["MicrosoftTeams"] = "microsoftTeams";
|
|
2681
|
+
AiConversationInitialSource$1["PullRequestComment"] = "pullRequestComment";
|
|
2682
|
+
AiConversationInitialSource$1["Slack"] = "slack";
|
|
2683
|
+
AiConversationInitialSource$1["Workflow"] = "workflow";
|
|
2684
|
+
return AiConversationInitialSource$1;
|
|
2685
|
+
}({});
|
|
2673
2686
|
/** The phase during which a conversation part was generated. */
|
|
2674
2687
|
let AiConversationPartPhase = /* @__PURE__ */ function(AiConversationPartPhase$1) {
|
|
2675
2688
|
AiConversationPartPhase$1["Answer"] = "answer";
|
|
@@ -2933,6 +2946,13 @@ let IssueSharedAccessDisallowedField = /* @__PURE__ */ function(IssueSharedAcces
|
|
|
2933
2946
|
IssueSharedAccessDisallowedField$1["TeamId"] = "teamId";
|
|
2934
2947
|
return IssueSharedAccessDisallowedField$1;
|
|
2935
2948
|
}({});
|
|
2949
|
+
/** Policy controlling whether and by whom issues in a team can be shared with non-team-members. */
|
|
2950
|
+
let IssueSharingPolicy = /* @__PURE__ */ function(IssueSharingPolicy$1) {
|
|
2951
|
+
IssueSharingPolicy$1["AdminsOnly"] = "adminsOnly";
|
|
2952
|
+
IssueSharingPolicy$1["AllMembers"] = "allMembers";
|
|
2953
|
+
IssueSharingPolicy$1["Disabled"] = "disabled";
|
|
2954
|
+
return IssueSharingPolicy$1;
|
|
2955
|
+
}({});
|
|
2936
2956
|
let IssueSuggestionState = /* @__PURE__ */ function(IssueSuggestionState$1) {
|
|
2937
2957
|
IssueSuggestionState$1["Accepted"] = "accepted";
|
|
2938
2958
|
IssueSuggestionState$1["Active"] = "active";
|
|
@@ -3160,6 +3180,14 @@ let ProjectUpdateReminderFrequency = /* @__PURE__ */ function(ProjectUpdateRemin
|
|
|
3160
3180
|
ProjectUpdateReminderFrequency$1["Week"] = "week";
|
|
3161
3181
|
return ProjectUpdateReminderFrequency$1;
|
|
3162
3182
|
}({});
|
|
3183
|
+
/** [ALPHA] How a pull request check should be opened in the client. */
|
|
3184
|
+
let PullRequestCheckPresentation = /* @__PURE__ */ function(PullRequestCheckPresentation$1) {
|
|
3185
|
+
PullRequestCheckPresentation$1["ExternalOnly"] = "externalOnly";
|
|
3186
|
+
PullRequestCheckPresentation$1["JobLogs"] = "jobLogs";
|
|
3187
|
+
PullRequestCheckPresentation$1["Markdown"] = "markdown";
|
|
3188
|
+
PullRequestCheckPresentation$1["RunLogs"] = "runLogs";
|
|
3189
|
+
return PullRequestCheckPresentation$1;
|
|
3190
|
+
}({});
|
|
3163
3191
|
/** The method used to merge a pull request. */
|
|
3164
3192
|
let PullRequestMergeMethod = /* @__PURE__ */ function(PullRequestMergeMethod$1) {
|
|
3165
3193
|
PullRequestMergeMethod$1["Merge"] = "MERGE";
|
|
@@ -3290,6 +3318,7 @@ let UserContextViewType = /* @__PURE__ */ function(UserContextViewType$1) {
|
|
|
3290
3318
|
}({});
|
|
3291
3319
|
/** The types of flags that the user can have. */
|
|
3292
3320
|
let UserFlagType = /* @__PURE__ */ function(UserFlagType$1) {
|
|
3321
|
+
UserFlagType$1["AgentExamplesDismissed"] = "agentExamplesDismissed";
|
|
3293
3322
|
UserFlagType$1["All"] = "all";
|
|
3294
3323
|
UserFlagType$1["AnalyticsWelcomeDismissed"] = "analyticsWelcomeDismissed";
|
|
3295
3324
|
UserFlagType$1["CanPlaySnake"] = "canPlaySnake";
|
|
@@ -3469,9 +3498,10 @@ let WorkflowTriggerType = /* @__PURE__ */ function(WorkflowTriggerType$1) {
|
|
|
3469
3498
|
return WorkflowTriggerType$1;
|
|
3470
3499
|
}({});
|
|
3471
3500
|
let WorkflowType = /* @__PURE__ */ function(WorkflowType$1) {
|
|
3472
|
-
WorkflowType$1["
|
|
3501
|
+
WorkflowType$1["Automation"] = "automation";
|
|
3473
3502
|
WorkflowType$1["Sla"] = "sla";
|
|
3474
3503
|
WorkflowType$1["Triage"] = "triage";
|
|
3504
|
+
WorkflowType$1["TriageAutomation"] = "triageAutomation";
|
|
3475
3505
|
WorkflowType$1["ViewSubscription"] = "viewSubscription";
|
|
3476
3506
|
return WorkflowType$1;
|
|
3477
3507
|
}({});
|
|
@@ -13562,9 +13592,11 @@ const ViewPreferencesValuesFragmentDoc = new TypedDocumentString(`
|
|
|
13562
13592
|
projectLayout
|
|
13563
13593
|
projectViewOrdering
|
|
13564
13594
|
projectSubGrouping
|
|
13595
|
+
releasePipelineGrouping
|
|
13565
13596
|
releasePipelinesViewOrdering
|
|
13566
13597
|
reviewGrouping
|
|
13567
13598
|
reviewViewOrdering
|
|
13599
|
+
scheduledPipelineReleasesViewGrouping
|
|
13568
13600
|
scheduledPipelineReleasesViewOrdering
|
|
13569
13601
|
searchResultType
|
|
13570
13602
|
searchViewOrdering
|
|
@@ -13604,6 +13636,7 @@ const ViewPreferencesValuesFragmentDoc = new TypedDocumentString(`
|
|
|
13604
13636
|
showSupervisedIssues
|
|
13605
13637
|
fieldSla
|
|
13606
13638
|
fieldSentryIssues
|
|
13639
|
+
scheduledPipelineReleaseFieldCompletion
|
|
13607
13640
|
customViewFieldDateCreated
|
|
13608
13641
|
customViewFieldOwner
|
|
13609
13642
|
customViewFieldDateUpdated
|
|
@@ -13622,6 +13655,7 @@ const ViewPreferencesValuesFragmentDoc = new TypedDocumentString(`
|
|
|
13622
13655
|
dashboardFieldDateCreated
|
|
13623
13656
|
dashboardFieldOwner
|
|
13624
13657
|
dashboardFieldDateUpdated
|
|
13658
|
+
scheduledPipelineReleaseFieldDescription
|
|
13625
13659
|
fieldDueDate
|
|
13626
13660
|
initiativeFieldHealth
|
|
13627
13661
|
initiativeFieldActivity
|
|
@@ -13703,7 +13737,6 @@ const ViewPreferencesValuesFragmentDoc = new TypedDocumentString(`
|
|
|
13703
13737
|
reviewFieldIdentifier
|
|
13704
13738
|
reviewFieldPreviewLinks
|
|
13705
13739
|
reviewFieldRepository
|
|
13706
|
-
scheduledPipelineReleaseFieldStage
|
|
13707
13740
|
teamFieldDateCreated
|
|
13708
13741
|
teamFieldCycle
|
|
13709
13742
|
teamFieldIdentifier
|
|
@@ -13712,8 +13745,10 @@ const ViewPreferencesValuesFragmentDoc = new TypedDocumentString(`
|
|
|
13712
13745
|
teamFieldOwner
|
|
13713
13746
|
teamFieldProjects
|
|
13714
13747
|
teamFieldDateUpdated
|
|
13748
|
+
releasePipelineFieldTeams
|
|
13715
13749
|
fieldTimeInCurrentStatus
|
|
13716
13750
|
releasePipelineFieldType
|
|
13751
|
+
scheduledPipelineReleaseFieldVersion
|
|
13717
13752
|
showTriageIssues
|
|
13718
13753
|
showUnreadItemsFirst
|
|
13719
13754
|
timelineChronologyShowWeekNumbers
|
|
@@ -13787,9 +13822,11 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
13787
13822
|
projectLayout
|
|
13788
13823
|
projectViewOrdering
|
|
13789
13824
|
projectSubGrouping
|
|
13825
|
+
releasePipelineGrouping
|
|
13790
13826
|
releasePipelinesViewOrdering
|
|
13791
13827
|
reviewGrouping
|
|
13792
13828
|
reviewViewOrdering
|
|
13829
|
+
scheduledPipelineReleasesViewGrouping
|
|
13793
13830
|
scheduledPipelineReleasesViewOrdering
|
|
13794
13831
|
searchResultType
|
|
13795
13832
|
searchViewOrdering
|
|
@@ -13829,6 +13866,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
13829
13866
|
showSupervisedIssues
|
|
13830
13867
|
fieldSla
|
|
13831
13868
|
fieldSentryIssues
|
|
13869
|
+
scheduledPipelineReleaseFieldCompletion
|
|
13832
13870
|
customViewFieldDateCreated
|
|
13833
13871
|
customViewFieldOwner
|
|
13834
13872
|
customViewFieldDateUpdated
|
|
@@ -13847,6 +13885,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
13847
13885
|
dashboardFieldDateCreated
|
|
13848
13886
|
dashboardFieldOwner
|
|
13849
13887
|
dashboardFieldDateUpdated
|
|
13888
|
+
scheduledPipelineReleaseFieldDescription
|
|
13850
13889
|
fieldDueDate
|
|
13851
13890
|
initiativeFieldHealth
|
|
13852
13891
|
initiativeFieldActivity
|
|
@@ -13928,7 +13967,6 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
13928
13967
|
reviewFieldIdentifier
|
|
13929
13968
|
reviewFieldPreviewLinks
|
|
13930
13969
|
reviewFieldRepository
|
|
13931
|
-
scheduledPipelineReleaseFieldStage
|
|
13932
13970
|
teamFieldDateCreated
|
|
13933
13971
|
teamFieldCycle
|
|
13934
13972
|
teamFieldIdentifier
|
|
@@ -13937,8 +13975,10 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
13937
13975
|
teamFieldOwner
|
|
13938
13976
|
teamFieldProjects
|
|
13939
13977
|
teamFieldDateUpdated
|
|
13978
|
+
releasePipelineFieldTeams
|
|
13940
13979
|
fieldTimeInCurrentStatus
|
|
13941
13980
|
releasePipelineFieldType
|
|
13981
|
+
scheduledPipelineReleaseFieldVersion
|
|
13942
13982
|
showTriageIssues
|
|
13943
13983
|
showUnreadItemsFirst
|
|
13944
13984
|
timelineChronologyShowWeekNumbers
|
|
@@ -14047,9 +14087,11 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
14047
14087
|
projectLayout
|
|
14048
14088
|
projectViewOrdering
|
|
14049
14089
|
projectSubGrouping
|
|
14090
|
+
releasePipelineGrouping
|
|
14050
14091
|
releasePipelinesViewOrdering
|
|
14051
14092
|
reviewGrouping
|
|
14052
14093
|
reviewViewOrdering
|
|
14094
|
+
scheduledPipelineReleasesViewGrouping
|
|
14053
14095
|
scheduledPipelineReleasesViewOrdering
|
|
14054
14096
|
searchResultType
|
|
14055
14097
|
searchViewOrdering
|
|
@@ -14089,6 +14131,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
14089
14131
|
showSupervisedIssues
|
|
14090
14132
|
fieldSla
|
|
14091
14133
|
fieldSentryIssues
|
|
14134
|
+
scheduledPipelineReleaseFieldCompletion
|
|
14092
14135
|
customViewFieldDateCreated
|
|
14093
14136
|
customViewFieldOwner
|
|
14094
14137
|
customViewFieldDateUpdated
|
|
@@ -14107,6 +14150,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
14107
14150
|
dashboardFieldDateCreated
|
|
14108
14151
|
dashboardFieldOwner
|
|
14109
14152
|
dashboardFieldDateUpdated
|
|
14153
|
+
scheduledPipelineReleaseFieldDescription
|
|
14110
14154
|
fieldDueDate
|
|
14111
14155
|
initiativeFieldHealth
|
|
14112
14156
|
initiativeFieldActivity
|
|
@@ -14188,7 +14232,6 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
14188
14232
|
reviewFieldIdentifier
|
|
14189
14233
|
reviewFieldPreviewLinks
|
|
14190
14234
|
reviewFieldRepository
|
|
14191
|
-
scheduledPipelineReleaseFieldStage
|
|
14192
14235
|
teamFieldDateCreated
|
|
14193
14236
|
teamFieldCycle
|
|
14194
14237
|
teamFieldIdentifier
|
|
@@ -14197,8 +14240,10 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
14197
14240
|
teamFieldOwner
|
|
14198
14241
|
teamFieldProjects
|
|
14199
14242
|
teamFieldDateUpdated
|
|
14243
|
+
releasePipelineFieldTeams
|
|
14200
14244
|
fieldTimeInCurrentStatus
|
|
14201
14245
|
releasePipelineFieldType
|
|
14246
|
+
scheduledPipelineReleaseFieldVersion
|
|
14202
14247
|
showTriageIssues
|
|
14203
14248
|
showUnreadItemsFirst
|
|
14204
14249
|
timelineChronologyShowWeekNumbers
|
|
@@ -14323,9 +14368,11 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
14323
14368
|
projectLayout
|
|
14324
14369
|
projectViewOrdering
|
|
14325
14370
|
projectSubGrouping
|
|
14371
|
+
releasePipelineGrouping
|
|
14326
14372
|
releasePipelinesViewOrdering
|
|
14327
14373
|
reviewGrouping
|
|
14328
14374
|
reviewViewOrdering
|
|
14375
|
+
scheduledPipelineReleasesViewGrouping
|
|
14329
14376
|
scheduledPipelineReleasesViewOrdering
|
|
14330
14377
|
searchResultType
|
|
14331
14378
|
searchViewOrdering
|
|
@@ -14365,6 +14412,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
14365
14412
|
showSupervisedIssues
|
|
14366
14413
|
fieldSla
|
|
14367
14414
|
fieldSentryIssues
|
|
14415
|
+
scheduledPipelineReleaseFieldCompletion
|
|
14368
14416
|
customViewFieldDateCreated
|
|
14369
14417
|
customViewFieldOwner
|
|
14370
14418
|
customViewFieldDateUpdated
|
|
@@ -14383,6 +14431,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
14383
14431
|
dashboardFieldDateCreated
|
|
14384
14432
|
dashboardFieldOwner
|
|
14385
14433
|
dashboardFieldDateUpdated
|
|
14434
|
+
scheduledPipelineReleaseFieldDescription
|
|
14386
14435
|
fieldDueDate
|
|
14387
14436
|
initiativeFieldHealth
|
|
14388
14437
|
initiativeFieldActivity
|
|
@@ -14464,7 +14513,6 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
14464
14513
|
reviewFieldIdentifier
|
|
14465
14514
|
reviewFieldPreviewLinks
|
|
14466
14515
|
reviewFieldRepository
|
|
14467
|
-
scheduledPipelineReleaseFieldStage
|
|
14468
14516
|
teamFieldDateCreated
|
|
14469
14517
|
teamFieldCycle
|
|
14470
14518
|
teamFieldIdentifier
|
|
@@ -14473,8 +14521,10 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
14473
14521
|
teamFieldOwner
|
|
14474
14522
|
teamFieldProjects
|
|
14475
14523
|
teamFieldDateUpdated
|
|
14524
|
+
releasePipelineFieldTeams
|
|
14476
14525
|
fieldTimeInCurrentStatus
|
|
14477
14526
|
releasePipelineFieldType
|
|
14527
|
+
scheduledPipelineReleaseFieldVersion
|
|
14478
14528
|
showTriageIssues
|
|
14479
14529
|
showUnreadItemsFirst
|
|
14480
14530
|
timelineChronologyShowWeekNumbers
|
|
@@ -22193,6 +22243,9 @@ const TeamFragmentDoc = new TypedDocumentString(`
|
|
|
22193
22243
|
color
|
|
22194
22244
|
description
|
|
22195
22245
|
name
|
|
22246
|
+
parent {
|
|
22247
|
+
id
|
|
22248
|
+
}
|
|
22196
22249
|
key
|
|
22197
22250
|
archivedAt
|
|
22198
22251
|
createdAt
|
|
@@ -22301,6 +22354,9 @@ const TeamConnectionFragmentDoc = new TypedDocumentString(`
|
|
|
22301
22354
|
color
|
|
22302
22355
|
description
|
|
22303
22356
|
name
|
|
22357
|
+
parent {
|
|
22358
|
+
id
|
|
22359
|
+
}
|
|
22304
22360
|
key
|
|
22305
22361
|
archivedAt
|
|
22306
22362
|
createdAt
|
|
@@ -22890,9 +22946,11 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
22890
22946
|
projectLayout
|
|
22891
22947
|
projectViewOrdering
|
|
22892
22948
|
projectSubGrouping
|
|
22949
|
+
releasePipelineGrouping
|
|
22893
22950
|
releasePipelinesViewOrdering
|
|
22894
22951
|
reviewGrouping
|
|
22895
22952
|
reviewViewOrdering
|
|
22953
|
+
scheduledPipelineReleasesViewGrouping
|
|
22896
22954
|
scheduledPipelineReleasesViewOrdering
|
|
22897
22955
|
searchResultType
|
|
22898
22956
|
searchViewOrdering
|
|
@@ -22932,6 +22990,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
22932
22990
|
showSupervisedIssues
|
|
22933
22991
|
fieldSla
|
|
22934
22992
|
fieldSentryIssues
|
|
22993
|
+
scheduledPipelineReleaseFieldCompletion
|
|
22935
22994
|
customViewFieldDateCreated
|
|
22936
22995
|
customViewFieldOwner
|
|
22937
22996
|
customViewFieldDateUpdated
|
|
@@ -22950,6 +23009,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
22950
23009
|
dashboardFieldDateCreated
|
|
22951
23010
|
dashboardFieldOwner
|
|
22952
23011
|
dashboardFieldDateUpdated
|
|
23012
|
+
scheduledPipelineReleaseFieldDescription
|
|
22953
23013
|
fieldDueDate
|
|
22954
23014
|
initiativeFieldHealth
|
|
22955
23015
|
initiativeFieldActivity
|
|
@@ -23031,7 +23091,6 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
23031
23091
|
reviewFieldIdentifier
|
|
23032
23092
|
reviewFieldPreviewLinks
|
|
23033
23093
|
reviewFieldRepository
|
|
23034
|
-
scheduledPipelineReleaseFieldStage
|
|
23035
23094
|
teamFieldDateCreated
|
|
23036
23095
|
teamFieldCycle
|
|
23037
23096
|
teamFieldIdentifier
|
|
@@ -23040,8 +23099,10 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
23040
23099
|
teamFieldOwner
|
|
23041
23100
|
teamFieldProjects
|
|
23042
23101
|
teamFieldDateUpdated
|
|
23102
|
+
releasePipelineFieldTeams
|
|
23043
23103
|
fieldTimeInCurrentStatus
|
|
23044
23104
|
releasePipelineFieldType
|
|
23105
|
+
scheduledPipelineReleaseFieldVersion
|
|
23045
23106
|
showTriageIssues
|
|
23046
23107
|
showUnreadItemsFirst
|
|
23047
23108
|
timelineChronologyShowWeekNumbers
|
|
@@ -23246,6 +23307,9 @@ const AdministrableTeamsDocument = new TypedDocumentString(`
|
|
|
23246
23307
|
color
|
|
23247
23308
|
description
|
|
23248
23309
|
name
|
|
23310
|
+
parent {
|
|
23311
|
+
id
|
|
23312
|
+
}
|
|
23249
23313
|
key
|
|
23250
23314
|
archivedAt
|
|
23251
23315
|
createdAt
|
|
@@ -26828,9 +26892,11 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
26828
26892
|
projectLayout
|
|
26829
26893
|
projectViewOrdering
|
|
26830
26894
|
projectSubGrouping
|
|
26895
|
+
releasePipelineGrouping
|
|
26831
26896
|
releasePipelinesViewOrdering
|
|
26832
26897
|
reviewGrouping
|
|
26833
26898
|
reviewViewOrdering
|
|
26899
|
+
scheduledPipelineReleasesViewGrouping
|
|
26834
26900
|
scheduledPipelineReleasesViewOrdering
|
|
26835
26901
|
searchResultType
|
|
26836
26902
|
searchViewOrdering
|
|
@@ -26870,6 +26936,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
26870
26936
|
showSupervisedIssues
|
|
26871
26937
|
fieldSla
|
|
26872
26938
|
fieldSentryIssues
|
|
26939
|
+
scheduledPipelineReleaseFieldCompletion
|
|
26873
26940
|
customViewFieldDateCreated
|
|
26874
26941
|
customViewFieldOwner
|
|
26875
26942
|
customViewFieldDateUpdated
|
|
@@ -26888,6 +26955,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
26888
26955
|
dashboardFieldDateCreated
|
|
26889
26956
|
dashboardFieldOwner
|
|
26890
26957
|
dashboardFieldDateUpdated
|
|
26958
|
+
scheduledPipelineReleaseFieldDescription
|
|
26891
26959
|
fieldDueDate
|
|
26892
26960
|
initiativeFieldHealth
|
|
26893
26961
|
initiativeFieldActivity
|
|
@@ -26969,7 +27037,6 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
26969
27037
|
reviewFieldIdentifier
|
|
26970
27038
|
reviewFieldPreviewLinks
|
|
26971
27039
|
reviewFieldRepository
|
|
26972
|
-
scheduledPipelineReleaseFieldStage
|
|
26973
27040
|
teamFieldDateCreated
|
|
26974
27041
|
teamFieldCycle
|
|
26975
27042
|
teamFieldIdentifier
|
|
@@ -26978,8 +27045,10 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
26978
27045
|
teamFieldOwner
|
|
26979
27046
|
teamFieldProjects
|
|
26980
27047
|
teamFieldDateUpdated
|
|
27048
|
+
releasePipelineFieldTeams
|
|
26981
27049
|
fieldTimeInCurrentStatus
|
|
26982
27050
|
releasePipelineFieldType
|
|
27051
|
+
scheduledPipelineReleaseFieldVersion
|
|
26983
27052
|
showTriageIssues
|
|
26984
27053
|
showUnreadItemsFirst
|
|
26985
27054
|
timelineChronologyShowWeekNumbers
|
|
@@ -27441,9 +27510,11 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
27441
27510
|
projectLayout
|
|
27442
27511
|
projectViewOrdering
|
|
27443
27512
|
projectSubGrouping
|
|
27513
|
+
releasePipelineGrouping
|
|
27444
27514
|
releasePipelinesViewOrdering
|
|
27445
27515
|
reviewGrouping
|
|
27446
27516
|
reviewViewOrdering
|
|
27517
|
+
scheduledPipelineReleasesViewGrouping
|
|
27447
27518
|
scheduledPipelineReleasesViewOrdering
|
|
27448
27519
|
searchResultType
|
|
27449
27520
|
searchViewOrdering
|
|
@@ -27483,6 +27554,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
27483
27554
|
showSupervisedIssues
|
|
27484
27555
|
fieldSla
|
|
27485
27556
|
fieldSentryIssues
|
|
27557
|
+
scheduledPipelineReleaseFieldCompletion
|
|
27486
27558
|
customViewFieldDateCreated
|
|
27487
27559
|
customViewFieldOwner
|
|
27488
27560
|
customViewFieldDateUpdated
|
|
@@ -27501,6 +27573,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
27501
27573
|
dashboardFieldDateCreated
|
|
27502
27574
|
dashboardFieldOwner
|
|
27503
27575
|
dashboardFieldDateUpdated
|
|
27576
|
+
scheduledPipelineReleaseFieldDescription
|
|
27504
27577
|
fieldDueDate
|
|
27505
27578
|
initiativeFieldHealth
|
|
27506
27579
|
initiativeFieldActivity
|
|
@@ -27582,7 +27655,6 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
27582
27655
|
reviewFieldIdentifier
|
|
27583
27656
|
reviewFieldPreviewLinks
|
|
27584
27657
|
reviewFieldRepository
|
|
27585
|
-
scheduledPipelineReleaseFieldStage
|
|
27586
27658
|
teamFieldDateCreated
|
|
27587
27659
|
teamFieldCycle
|
|
27588
27660
|
teamFieldIdentifier
|
|
@@ -27591,8 +27663,10 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
27591
27663
|
teamFieldOwner
|
|
27592
27664
|
teamFieldProjects
|
|
27593
27665
|
teamFieldDateUpdated
|
|
27666
|
+
releasePipelineFieldTeams
|
|
27594
27667
|
fieldTimeInCurrentStatus
|
|
27595
27668
|
releasePipelineFieldType
|
|
27669
|
+
scheduledPipelineReleaseFieldVersion
|
|
27596
27670
|
showTriageIssues
|
|
27597
27671
|
showUnreadItemsFirst
|
|
27598
27672
|
timelineChronologyShowWeekNumbers
|
|
@@ -27658,9 +27732,11 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
27658
27732
|
projectLayout
|
|
27659
27733
|
projectViewOrdering
|
|
27660
27734
|
projectSubGrouping
|
|
27735
|
+
releasePipelineGrouping
|
|
27661
27736
|
releasePipelinesViewOrdering
|
|
27662
27737
|
reviewGrouping
|
|
27663
27738
|
reviewViewOrdering
|
|
27739
|
+
scheduledPipelineReleasesViewGrouping
|
|
27664
27740
|
scheduledPipelineReleasesViewOrdering
|
|
27665
27741
|
searchResultType
|
|
27666
27742
|
searchViewOrdering
|
|
@@ -27700,6 +27776,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
27700
27776
|
showSupervisedIssues
|
|
27701
27777
|
fieldSla
|
|
27702
27778
|
fieldSentryIssues
|
|
27779
|
+
scheduledPipelineReleaseFieldCompletion
|
|
27703
27780
|
customViewFieldDateCreated
|
|
27704
27781
|
customViewFieldOwner
|
|
27705
27782
|
customViewFieldDateUpdated
|
|
@@ -27718,6 +27795,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
27718
27795
|
dashboardFieldDateCreated
|
|
27719
27796
|
dashboardFieldOwner
|
|
27720
27797
|
dashboardFieldDateUpdated
|
|
27798
|
+
scheduledPipelineReleaseFieldDescription
|
|
27721
27799
|
fieldDueDate
|
|
27722
27800
|
initiativeFieldHealth
|
|
27723
27801
|
initiativeFieldActivity
|
|
@@ -27799,7 +27877,6 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
27799
27877
|
reviewFieldIdentifier
|
|
27800
27878
|
reviewFieldPreviewLinks
|
|
27801
27879
|
reviewFieldRepository
|
|
27802
|
-
scheduledPipelineReleaseFieldStage
|
|
27803
27880
|
teamFieldDateCreated
|
|
27804
27881
|
teamFieldCycle
|
|
27805
27882
|
teamFieldIdentifier
|
|
@@ -27808,8 +27885,10 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
27808
27885
|
teamFieldOwner
|
|
27809
27886
|
teamFieldProjects
|
|
27810
27887
|
teamFieldDateUpdated
|
|
27888
|
+
releasePipelineFieldTeams
|
|
27811
27889
|
fieldTimeInCurrentStatus
|
|
27812
27890
|
releasePipelineFieldType
|
|
27891
|
+
scheduledPipelineReleaseFieldVersion
|
|
27813
27892
|
showTriageIssues
|
|
27814
27893
|
showUnreadItemsFirst
|
|
27815
27894
|
timelineChronologyShowWeekNumbers
|
|
@@ -28084,9 +28163,11 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28084
28163
|
projectLayout
|
|
28085
28164
|
projectViewOrdering
|
|
28086
28165
|
projectSubGrouping
|
|
28166
|
+
releasePipelineGrouping
|
|
28087
28167
|
releasePipelinesViewOrdering
|
|
28088
28168
|
reviewGrouping
|
|
28089
28169
|
reviewViewOrdering
|
|
28170
|
+
scheduledPipelineReleasesViewGrouping
|
|
28090
28171
|
scheduledPipelineReleasesViewOrdering
|
|
28091
28172
|
searchResultType
|
|
28092
28173
|
searchViewOrdering
|
|
@@ -28126,6 +28207,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28126
28207
|
showSupervisedIssues
|
|
28127
28208
|
fieldSla
|
|
28128
28209
|
fieldSentryIssues
|
|
28210
|
+
scheduledPipelineReleaseFieldCompletion
|
|
28129
28211
|
customViewFieldDateCreated
|
|
28130
28212
|
customViewFieldOwner
|
|
28131
28213
|
customViewFieldDateUpdated
|
|
@@ -28144,6 +28226,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28144
28226
|
dashboardFieldDateCreated
|
|
28145
28227
|
dashboardFieldOwner
|
|
28146
28228
|
dashboardFieldDateUpdated
|
|
28229
|
+
scheduledPipelineReleaseFieldDescription
|
|
28147
28230
|
fieldDueDate
|
|
28148
28231
|
initiativeFieldHealth
|
|
28149
28232
|
initiativeFieldActivity
|
|
@@ -28225,7 +28308,6 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28225
28308
|
reviewFieldIdentifier
|
|
28226
28309
|
reviewFieldPreviewLinks
|
|
28227
28310
|
reviewFieldRepository
|
|
28228
|
-
scheduledPipelineReleaseFieldStage
|
|
28229
28311
|
teamFieldDateCreated
|
|
28230
28312
|
teamFieldCycle
|
|
28231
28313
|
teamFieldIdentifier
|
|
@@ -28234,8 +28316,10 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28234
28316
|
teamFieldOwner
|
|
28235
28317
|
teamFieldProjects
|
|
28236
28318
|
teamFieldDateUpdated
|
|
28319
|
+
releasePipelineFieldTeams
|
|
28237
28320
|
fieldTimeInCurrentStatus
|
|
28238
28321
|
releasePipelineFieldType
|
|
28322
|
+
scheduledPipelineReleaseFieldVersion
|
|
28239
28323
|
showTriageIssues
|
|
28240
28324
|
showUnreadItemsFirst
|
|
28241
28325
|
timelineChronologyShowWeekNumbers
|
|
@@ -28301,9 +28385,11 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28301
28385
|
projectLayout
|
|
28302
28386
|
projectViewOrdering
|
|
28303
28387
|
projectSubGrouping
|
|
28388
|
+
releasePipelineGrouping
|
|
28304
28389
|
releasePipelinesViewOrdering
|
|
28305
28390
|
reviewGrouping
|
|
28306
28391
|
reviewViewOrdering
|
|
28392
|
+
scheduledPipelineReleasesViewGrouping
|
|
28307
28393
|
scheduledPipelineReleasesViewOrdering
|
|
28308
28394
|
searchResultType
|
|
28309
28395
|
searchViewOrdering
|
|
@@ -28343,6 +28429,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28343
28429
|
showSupervisedIssues
|
|
28344
28430
|
fieldSla
|
|
28345
28431
|
fieldSentryIssues
|
|
28432
|
+
scheduledPipelineReleaseFieldCompletion
|
|
28346
28433
|
customViewFieldDateCreated
|
|
28347
28434
|
customViewFieldOwner
|
|
28348
28435
|
customViewFieldDateUpdated
|
|
@@ -28361,6 +28448,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28361
28448
|
dashboardFieldDateCreated
|
|
28362
28449
|
dashboardFieldOwner
|
|
28363
28450
|
dashboardFieldDateUpdated
|
|
28451
|
+
scheduledPipelineReleaseFieldDescription
|
|
28364
28452
|
fieldDueDate
|
|
28365
28453
|
initiativeFieldHealth
|
|
28366
28454
|
initiativeFieldActivity
|
|
@@ -28442,7 +28530,6 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28442
28530
|
reviewFieldIdentifier
|
|
28443
28531
|
reviewFieldPreviewLinks
|
|
28444
28532
|
reviewFieldRepository
|
|
28445
|
-
scheduledPipelineReleaseFieldStage
|
|
28446
28533
|
teamFieldDateCreated
|
|
28447
28534
|
teamFieldCycle
|
|
28448
28535
|
teamFieldIdentifier
|
|
@@ -28451,8 +28538,10 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28451
28538
|
teamFieldOwner
|
|
28452
28539
|
teamFieldProjects
|
|
28453
28540
|
teamFieldDateUpdated
|
|
28541
|
+
releasePipelineFieldTeams
|
|
28454
28542
|
fieldTimeInCurrentStatus
|
|
28455
28543
|
releasePipelineFieldType
|
|
28544
|
+
scheduledPipelineReleaseFieldVersion
|
|
28456
28545
|
showTriageIssues
|
|
28457
28546
|
showUnreadItemsFirst
|
|
28458
28547
|
timelineChronologyShowWeekNumbers
|
|
@@ -28516,9 +28605,11 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28516
28605
|
projectLayout
|
|
28517
28606
|
projectViewOrdering
|
|
28518
28607
|
projectSubGrouping
|
|
28608
|
+
releasePipelineGrouping
|
|
28519
28609
|
releasePipelinesViewOrdering
|
|
28520
28610
|
reviewGrouping
|
|
28521
28611
|
reviewViewOrdering
|
|
28612
|
+
scheduledPipelineReleasesViewGrouping
|
|
28522
28613
|
scheduledPipelineReleasesViewOrdering
|
|
28523
28614
|
searchResultType
|
|
28524
28615
|
searchViewOrdering
|
|
@@ -28558,6 +28649,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28558
28649
|
showSupervisedIssues
|
|
28559
28650
|
fieldSla
|
|
28560
28651
|
fieldSentryIssues
|
|
28652
|
+
scheduledPipelineReleaseFieldCompletion
|
|
28561
28653
|
customViewFieldDateCreated
|
|
28562
28654
|
customViewFieldOwner
|
|
28563
28655
|
customViewFieldDateUpdated
|
|
@@ -28576,6 +28668,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28576
28668
|
dashboardFieldDateCreated
|
|
28577
28669
|
dashboardFieldOwner
|
|
28578
28670
|
dashboardFieldDateUpdated
|
|
28671
|
+
scheduledPipelineReleaseFieldDescription
|
|
28579
28672
|
fieldDueDate
|
|
28580
28673
|
initiativeFieldHealth
|
|
28581
28674
|
initiativeFieldActivity
|
|
@@ -28657,7 +28750,6 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28657
28750
|
reviewFieldIdentifier
|
|
28658
28751
|
reviewFieldPreviewLinks
|
|
28659
28752
|
reviewFieldRepository
|
|
28660
|
-
scheduledPipelineReleaseFieldStage
|
|
28661
28753
|
teamFieldDateCreated
|
|
28662
28754
|
teamFieldCycle
|
|
28663
28755
|
teamFieldIdentifier
|
|
@@ -28666,8 +28758,10 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28666
28758
|
teamFieldOwner
|
|
28667
28759
|
teamFieldProjects
|
|
28668
28760
|
teamFieldDateUpdated
|
|
28761
|
+
releasePipelineFieldTeams
|
|
28669
28762
|
fieldTimeInCurrentStatus
|
|
28670
28763
|
releasePipelineFieldType
|
|
28764
|
+
scheduledPipelineReleaseFieldVersion
|
|
28671
28765
|
showTriageIssues
|
|
28672
28766
|
showUnreadItemsFirst
|
|
28673
28767
|
timelineChronologyShowWeekNumbers
|
|
@@ -28816,9 +28910,11 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28816
28910
|
projectLayout
|
|
28817
28911
|
projectViewOrdering
|
|
28818
28912
|
projectSubGrouping
|
|
28913
|
+
releasePipelineGrouping
|
|
28819
28914
|
releasePipelinesViewOrdering
|
|
28820
28915
|
reviewGrouping
|
|
28821
28916
|
reviewViewOrdering
|
|
28917
|
+
scheduledPipelineReleasesViewGrouping
|
|
28822
28918
|
scheduledPipelineReleasesViewOrdering
|
|
28823
28919
|
searchResultType
|
|
28824
28920
|
searchViewOrdering
|
|
@@ -28858,6 +28954,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28858
28954
|
showSupervisedIssues
|
|
28859
28955
|
fieldSla
|
|
28860
28956
|
fieldSentryIssues
|
|
28957
|
+
scheduledPipelineReleaseFieldCompletion
|
|
28861
28958
|
customViewFieldDateCreated
|
|
28862
28959
|
customViewFieldOwner
|
|
28863
28960
|
customViewFieldDateUpdated
|
|
@@ -28876,6 +28973,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28876
28973
|
dashboardFieldDateCreated
|
|
28877
28974
|
dashboardFieldOwner
|
|
28878
28975
|
dashboardFieldDateUpdated
|
|
28976
|
+
scheduledPipelineReleaseFieldDescription
|
|
28879
28977
|
fieldDueDate
|
|
28880
28978
|
initiativeFieldHealth
|
|
28881
28979
|
initiativeFieldActivity
|
|
@@ -28957,7 +29055,6 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28957
29055
|
reviewFieldIdentifier
|
|
28958
29056
|
reviewFieldPreviewLinks
|
|
28959
29057
|
reviewFieldRepository
|
|
28960
|
-
scheduledPipelineReleaseFieldStage
|
|
28961
29058
|
teamFieldDateCreated
|
|
28962
29059
|
teamFieldCycle
|
|
28963
29060
|
teamFieldIdentifier
|
|
@@ -28966,8 +29063,10 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
28966
29063
|
teamFieldOwner
|
|
28967
29064
|
teamFieldProjects
|
|
28968
29065
|
teamFieldDateUpdated
|
|
29066
|
+
releasePipelineFieldTeams
|
|
28969
29067
|
fieldTimeInCurrentStatus
|
|
28970
29068
|
releasePipelineFieldType
|
|
29069
|
+
scheduledPipelineReleaseFieldVersion
|
|
28971
29070
|
showTriageIssues
|
|
28972
29071
|
showUnreadItemsFirst
|
|
28973
29072
|
timelineChronologyShowWeekNumbers
|
|
@@ -38472,6 +38571,9 @@ const Organization_TeamsDocument = new TypedDocumentString(`
|
|
|
38472
38571
|
color
|
|
38473
38572
|
description
|
|
38474
38573
|
name
|
|
38574
|
+
parent {
|
|
38575
|
+
id
|
|
38576
|
+
}
|
|
38475
38577
|
key
|
|
38476
38578
|
archivedAt
|
|
38477
38579
|
createdAt
|
|
@@ -40447,6 +40549,9 @@ const Project_TeamsDocument = new TypedDocumentString(`
|
|
|
40447
40549
|
color
|
|
40448
40550
|
description
|
|
40449
40551
|
name
|
|
40552
|
+
parent {
|
|
40553
|
+
id
|
|
40554
|
+
}
|
|
40450
40555
|
key
|
|
40451
40556
|
archivedAt
|
|
40452
40557
|
createdAt
|
|
@@ -43197,6 +43302,9 @@ const TeamDocument = new TypedDocumentString(`
|
|
|
43197
43302
|
color
|
|
43198
43303
|
description
|
|
43199
43304
|
name
|
|
43305
|
+
parent {
|
|
43306
|
+
id
|
|
43307
|
+
}
|
|
43200
43308
|
key
|
|
43201
43309
|
archivedAt
|
|
43202
43310
|
createdAt
|
|
@@ -44282,6 +44390,9 @@ const TeamsDocument = new TypedDocumentString(`
|
|
|
44282
44390
|
color
|
|
44283
44391
|
description
|
|
44284
44392
|
name
|
|
44393
|
+
parent {
|
|
44394
|
+
id
|
|
44395
|
+
}
|
|
44285
44396
|
key
|
|
44286
44397
|
archivedAt
|
|
44287
44398
|
createdAt
|
|
@@ -45600,6 +45711,9 @@ const User_TeamsDocument = new TypedDocumentString(`
|
|
|
45600
45711
|
color
|
|
45601
45712
|
description
|
|
45602
45713
|
name
|
|
45714
|
+
parent {
|
|
45715
|
+
id
|
|
45716
|
+
}
|
|
45603
45717
|
key
|
|
45604
45718
|
archivedAt
|
|
45605
45719
|
createdAt
|
|
@@ -47585,6 +47699,9 @@ const Viewer_TeamsDocument = new TypedDocumentString(`
|
|
|
47585
47699
|
color
|
|
47586
47700
|
description
|
|
47587
47701
|
name
|
|
47702
|
+
parent {
|
|
47703
|
+
id
|
|
47704
|
+
}
|
|
47588
47705
|
key
|
|
47589
47706
|
archivedAt
|
|
47590
47707
|
createdAt
|
|
@@ -56809,9 +56926,11 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
56809
56926
|
projectLayout
|
|
56810
56927
|
projectViewOrdering
|
|
56811
56928
|
projectSubGrouping
|
|
56929
|
+
releasePipelineGrouping
|
|
56812
56930
|
releasePipelinesViewOrdering
|
|
56813
56931
|
reviewGrouping
|
|
56814
56932
|
reviewViewOrdering
|
|
56933
|
+
scheduledPipelineReleasesViewGrouping
|
|
56815
56934
|
scheduledPipelineReleasesViewOrdering
|
|
56816
56935
|
searchResultType
|
|
56817
56936
|
searchViewOrdering
|
|
@@ -56851,6 +56970,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
56851
56970
|
showSupervisedIssues
|
|
56852
56971
|
fieldSla
|
|
56853
56972
|
fieldSentryIssues
|
|
56973
|
+
scheduledPipelineReleaseFieldCompletion
|
|
56854
56974
|
customViewFieldDateCreated
|
|
56855
56975
|
customViewFieldOwner
|
|
56856
56976
|
customViewFieldDateUpdated
|
|
@@ -56869,6 +56989,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
56869
56989
|
dashboardFieldDateCreated
|
|
56870
56990
|
dashboardFieldOwner
|
|
56871
56991
|
dashboardFieldDateUpdated
|
|
56992
|
+
scheduledPipelineReleaseFieldDescription
|
|
56872
56993
|
fieldDueDate
|
|
56873
56994
|
initiativeFieldHealth
|
|
56874
56995
|
initiativeFieldActivity
|
|
@@ -56950,7 +57071,6 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
56950
57071
|
reviewFieldIdentifier
|
|
56951
57072
|
reviewFieldPreviewLinks
|
|
56952
57073
|
reviewFieldRepository
|
|
56953
|
-
scheduledPipelineReleaseFieldStage
|
|
56954
57074
|
teamFieldDateCreated
|
|
56955
57075
|
teamFieldCycle
|
|
56956
57076
|
teamFieldIdentifier
|
|
@@ -56959,8 +57079,10 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
56959
57079
|
teamFieldOwner
|
|
56960
57080
|
teamFieldProjects
|
|
56961
57081
|
teamFieldDateUpdated
|
|
57082
|
+
releasePipelineFieldTeams
|
|
56962
57083
|
fieldTimeInCurrentStatus
|
|
56963
57084
|
releasePipelineFieldType
|
|
57085
|
+
scheduledPipelineReleaseFieldVersion
|
|
56964
57086
|
showTriageIssues
|
|
56965
57087
|
showUnreadItemsFirst
|
|
56966
57088
|
timelineChronologyShowWeekNumbers
|
|
@@ -57054,9 +57176,11 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
57054
57176
|
projectLayout
|
|
57055
57177
|
projectViewOrdering
|
|
57056
57178
|
projectSubGrouping
|
|
57179
|
+
releasePipelineGrouping
|
|
57057
57180
|
releasePipelinesViewOrdering
|
|
57058
57181
|
reviewGrouping
|
|
57059
57182
|
reviewViewOrdering
|
|
57183
|
+
scheduledPipelineReleasesViewGrouping
|
|
57060
57184
|
scheduledPipelineReleasesViewOrdering
|
|
57061
57185
|
searchResultType
|
|
57062
57186
|
searchViewOrdering
|
|
@@ -57096,6 +57220,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
57096
57220
|
showSupervisedIssues
|
|
57097
57221
|
fieldSla
|
|
57098
57222
|
fieldSentryIssues
|
|
57223
|
+
scheduledPipelineReleaseFieldCompletion
|
|
57099
57224
|
customViewFieldDateCreated
|
|
57100
57225
|
customViewFieldOwner
|
|
57101
57226
|
customViewFieldDateUpdated
|
|
@@ -57114,6 +57239,7 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
57114
57239
|
dashboardFieldDateCreated
|
|
57115
57240
|
dashboardFieldOwner
|
|
57116
57241
|
dashboardFieldDateUpdated
|
|
57242
|
+
scheduledPipelineReleaseFieldDescription
|
|
57117
57243
|
fieldDueDate
|
|
57118
57244
|
initiativeFieldHealth
|
|
57119
57245
|
initiativeFieldActivity
|
|
@@ -57195,7 +57321,6 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
57195
57321
|
reviewFieldIdentifier
|
|
57196
57322
|
reviewFieldPreviewLinks
|
|
57197
57323
|
reviewFieldRepository
|
|
57198
|
-
scheduledPipelineReleaseFieldStage
|
|
57199
57324
|
teamFieldDateCreated
|
|
57200
57325
|
teamFieldCycle
|
|
57201
57326
|
teamFieldIdentifier
|
|
@@ -57204,8 +57329,10 @@ fragment ViewPreferencesValues on ViewPreferencesValues {
|
|
|
57204
57329
|
teamFieldOwner
|
|
57205
57330
|
teamFieldProjects
|
|
57206
57331
|
teamFieldDateUpdated
|
|
57332
|
+
releasePipelineFieldTeams
|
|
57207
57333
|
fieldTimeInCurrentStatus
|
|
57208
57334
|
releasePipelineFieldType
|
|
57335
|
+
scheduledPipelineReleaseFieldVersion
|
|
57209
57336
|
showTriageIssues
|
|
57210
57337
|
showUnreadItemsFirst
|
|
57211
57338
|
timelineChronologyShowWeekNumbers
|
|
@@ -63151,11 +63278,11 @@ var Draft = class extends Request {
|
|
|
63151
63278
|
get customerNeedId() {
|
|
63152
63279
|
return this._customerNeed?.id;
|
|
63153
63280
|
}
|
|
63154
|
-
/** The initiative for which this is a draft initiative update. */
|
|
63281
|
+
/** The initiative for which this is a draft comment or initiative update. */
|
|
63155
63282
|
get initiative() {
|
|
63156
63283
|
return this._initiative?.id ? new InitiativeQuery(this._request).fetch(this._initiative?.id) : void 0;
|
|
63157
63284
|
}
|
|
63158
|
-
/** The ID of initiative for which this is a draft initiative update. */
|
|
63285
|
+
/** The ID of initiative for which this is a draft comment or initiative update. */
|
|
63159
63286
|
get initiativeId() {
|
|
63160
63287
|
return this._initiative?.id;
|
|
63161
63288
|
}
|
|
@@ -63183,11 +63310,11 @@ var Draft = class extends Request {
|
|
|
63183
63310
|
get parentCommentId() {
|
|
63184
63311
|
return this._parentComment?.id;
|
|
63185
63312
|
}
|
|
63186
|
-
/** The project for which this is a draft project update. */
|
|
63313
|
+
/** The project for which this is a draft comment or project update. */
|
|
63187
63314
|
get project() {
|
|
63188
63315
|
return this._project?.id ? new ProjectQuery(this._request).fetch(this._project?.id) : void 0;
|
|
63189
63316
|
}
|
|
63190
|
-
/** The ID of project for which this is a draft project update. */
|
|
63317
|
+
/** The ID of project for which this is a draft comment or project update. */
|
|
63191
63318
|
get projectId() {
|
|
63192
63319
|
return this._project?.id;
|
|
63193
63320
|
}
|
|
@@ -74086,6 +74213,7 @@ var Team = class extends Request {
|
|
|
74086
74213
|
_markedAsDuplicateWorkflowState;
|
|
74087
74214
|
_mergeWorkflowState;
|
|
74088
74215
|
_mergeableWorkflowState;
|
|
74216
|
+
_parent;
|
|
74089
74217
|
_reviewWorkflowState;
|
|
74090
74218
|
_startWorkflowState;
|
|
74091
74219
|
_triageIssueState;
|
|
@@ -74154,6 +74282,7 @@ var Team = class extends Request {
|
|
|
74154
74282
|
this._markedAsDuplicateWorkflowState = data.markedAsDuplicateWorkflowState ?? void 0;
|
|
74155
74283
|
this._mergeWorkflowState = data.mergeWorkflowState ?? void 0;
|
|
74156
74284
|
this._mergeableWorkflowState = data.mergeableWorkflowState ?? void 0;
|
|
74285
|
+
this._parent = data.parent ?? void 0;
|
|
74157
74286
|
this._reviewWorkflowState = data.reviewWorkflowState ?? void 0;
|
|
74158
74287
|
this._startWorkflowState = data.startWorkflowState ?? void 0;
|
|
74159
74288
|
this._triageIssueState = data.triageIssueState ?? void 0;
|
|
@@ -74342,6 +74471,14 @@ var Team = class extends Request {
|
|
|
74342
74471
|
get organization() {
|
|
74343
74472
|
return new OrganizationQuery(this._request).fetch();
|
|
74344
74473
|
}
|
|
74474
|
+
/** The team's parent team. */
|
|
74475
|
+
get parent() {
|
|
74476
|
+
return this._parent?.id ? new TeamQuery(this._request).fetch(this._parent?.id) : void 0;
|
|
74477
|
+
}
|
|
74478
|
+
/** The ID of team's parent team. */
|
|
74479
|
+
get parentId() {
|
|
74480
|
+
return this._parent?.id;
|
|
74481
|
+
}
|
|
74345
74482
|
/** The workflow state into which issues are moved when a review has been requested for the PR. */
|
|
74346
74483
|
get reviewWorkflowState() {
|
|
74347
74484
|
return this._reviewWorkflowState?.id ? new WorkflowStateQuery(this._request).fetch(this._reviewWorkflowState?.id) : void 0;
|
|
@@ -76128,7 +76265,9 @@ var ViewPreferencesValues = class extends Request {
|
|
|
76128
76265
|
this.projectZoomLevel = data.projectZoomLevel ?? void 0;
|
|
76129
76266
|
this.releasePipelineFieldLatestRelease = data.releasePipelineFieldLatestRelease ?? void 0;
|
|
76130
76267
|
this.releasePipelineFieldReleases = data.releasePipelineFieldReleases ?? void 0;
|
|
76268
|
+
this.releasePipelineFieldTeams = data.releasePipelineFieldTeams ?? void 0;
|
|
76131
76269
|
this.releasePipelineFieldType = data.releasePipelineFieldType ?? void 0;
|
|
76270
|
+
this.releasePipelineGrouping = data.releasePipelineGrouping ?? void 0;
|
|
76132
76271
|
this.releasePipelinesViewOrdering = data.releasePipelinesViewOrdering ?? void 0;
|
|
76133
76272
|
this.reviewFieldAvatar = data.reviewFieldAvatar ?? void 0;
|
|
76134
76273
|
this.reviewFieldChecks = data.reviewFieldChecks ?? void 0;
|
|
@@ -76137,8 +76276,11 @@ var ViewPreferencesValues = class extends Request {
|
|
|
76137
76276
|
this.reviewFieldRepository = data.reviewFieldRepository ?? void 0;
|
|
76138
76277
|
this.reviewGrouping = data.reviewGrouping ?? void 0;
|
|
76139
76278
|
this.reviewViewOrdering = data.reviewViewOrdering ?? void 0;
|
|
76279
|
+
this.scheduledPipelineReleaseFieldCompletion = data.scheduledPipelineReleaseFieldCompletion ?? void 0;
|
|
76280
|
+
this.scheduledPipelineReleaseFieldDescription = data.scheduledPipelineReleaseFieldDescription ?? void 0;
|
|
76140
76281
|
this.scheduledPipelineReleaseFieldReleaseDate = data.scheduledPipelineReleaseFieldReleaseDate ?? void 0;
|
|
76141
|
-
this.
|
|
76282
|
+
this.scheduledPipelineReleaseFieldVersion = data.scheduledPipelineReleaseFieldVersion ?? void 0;
|
|
76283
|
+
this.scheduledPipelineReleasesViewGrouping = data.scheduledPipelineReleasesViewGrouping ?? void 0;
|
|
76142
76284
|
this.scheduledPipelineReleasesViewOrdering = data.scheduledPipelineReleasesViewOrdering ?? void 0;
|
|
76143
76285
|
this.searchResultType = data.searchResultType ?? void 0;
|
|
76144
76286
|
this.searchViewOrdering = data.searchViewOrdering ?? void 0;
|
|
@@ -76468,8 +76610,12 @@ var ViewPreferencesValues = class extends Request {
|
|
|
76468
76610
|
releasePipelineFieldLatestRelease;
|
|
76469
76611
|
/** Whether to show the releases field for release pipelines. */
|
|
76470
76612
|
releasePipelineFieldReleases;
|
|
76613
|
+
/** Whether to show the teams field for release pipelines. */
|
|
76614
|
+
releasePipelineFieldTeams;
|
|
76471
76615
|
/** Whether to show the type field for release pipelines. */
|
|
76472
76616
|
releasePipelineFieldType;
|
|
76617
|
+
/** The release pipeline grouping. */
|
|
76618
|
+
releasePipelineGrouping;
|
|
76473
76619
|
/** The release pipelines view ordering. */
|
|
76474
76620
|
releasePipelinesViewOrdering;
|
|
76475
76621
|
/** Whether to show the review avatar field. */
|
|
@@ -76486,10 +76632,16 @@ var ViewPreferencesValues = class extends Request {
|
|
|
76486
76632
|
reviewGrouping;
|
|
76487
76633
|
/** The review view ordering. */
|
|
76488
76634
|
reviewViewOrdering;
|
|
76635
|
+
/** Whether to show the completion field for scheduled pipeline releases. */
|
|
76636
|
+
scheduledPipelineReleaseFieldCompletion;
|
|
76637
|
+
/** Whether to show the description field for scheduled pipeline releases. */
|
|
76638
|
+
scheduledPipelineReleaseFieldDescription;
|
|
76489
76639
|
/** Whether to show the release date field for scheduled pipeline releases. */
|
|
76490
76640
|
scheduledPipelineReleaseFieldReleaseDate;
|
|
76491
|
-
/** Whether to show the
|
|
76492
|
-
|
|
76641
|
+
/** Whether to show the version field for scheduled pipeline releases. */
|
|
76642
|
+
scheduledPipelineReleaseFieldVersion;
|
|
76643
|
+
/** The scheduled pipeline releases view grouping. */
|
|
76644
|
+
scheduledPipelineReleasesViewGrouping;
|
|
76493
76645
|
/** The scheduled pipeline releases view ordering. */
|
|
76494
76646
|
scheduledPipelineReleasesViewOrdering;
|
|
76495
76647
|
/** The search result type filter. */
|
|
@@ -94925,5 +95077,5 @@ var LinearClient = class extends LinearSdk {
|
|
|
94925
95077
|
const LinearWebhooks = LinearWebhookClient;
|
|
94926
95078
|
|
|
94927
95079
|
//#endregion
|
|
94928
|
-
export { ActorBot, AdministrableTeamsQuery, AgentActivitiesQuery, AgentActivity, AgentActivityActionContent, AgentActivityConnection, AgentActivityElicitationContent, AgentActivityErrorContent, AgentActivityPayload, AgentActivityPromptContent, AgentActivityQuery, AgentActivityResponseContent, AgentActivitySignal, AgentActivityThoughtContent, AgentActivityType, AgentActivityWebhookPayload, AgentSession, AgentSessionConnection, AgentSessionCreateOnCommentMutation, AgentSessionCreateOnIssueMutation, AgentSessionEventWebhookPayload, AgentSessionExternalLink, AgentSessionPayload, AgentSessionQuery, AgentSessionStatus, AgentSessionToPullRequest, AgentSessionToPullRequestConnection, AgentSessionType, AgentSessionUpdateExternalUrlMutation, AgentSessionWebhookPayload, AgentSession_ActivitiesQuery, AgentSessionsQuery, AiConversationBasePart, AiConversationBaseToolCall, AiConversationBaseWidget, AiConversationCodeIntelligenceToolCall, AiConversationCodeIntelligenceToolCallArgs, AiConversationCreateEntityToolCall, AiConversationCreateEntityToolCallArgs, AiConversationDeleteEntityToolCall, AiConversationDeleteEntityToolCallArgs, AiConversationEntityCardWidget, AiConversationEntityCardWidgetArgs, AiConversationEntityCardWidgetArgsAction, AiConversationEntityCardWidgetArgsType, AiConversationEntityListWidget, AiConversationEntityListWidgetArgs, AiConversationEntityListWidgetArgsAction, AiConversationEntityListWidgetArgsEntities, AiConversationEntityListWidgetArgsEntitiesType, AiConversationGetMicrosoftTeamsConversationHistoryToolCall, AiConversationGetPullRequestDiffToolCall, AiConversationGetPullRequestDiffToolCallArgs, AiConversationGetPullRequestFileToolCall, AiConversationGetPullRequestFileToolCallArgs, AiConversationGetSlackConversationHistoryToolCall, AiConversationInvokeMcpToolToolCall, AiConversationInvokeMcpToolToolCallArgs, AiConversationInvokeMcpToolToolCallArgsServer, AiConversationInvokeMcpToolToolCallArgsTool, AiConversationPartMetadata, AiConversationPartPhase, AiConversationPartType, AiConversationPromptPart, AiConversationQueryActivityToolCall, AiConversationQueryActivityToolCallArgs, AiConversationQueryUpdatesToolCall, AiConversationQueryUpdatesToolCallArgs, AiConversationQueryUpdatesToolCallArgsUpdateType, AiConversationQueryViewToolCall, AiConversationQueryViewToolCallArgs, AiConversationQueryViewToolCallArgsMode, AiConversationQueryViewToolCallArgsView, AiConversationReasoningPart, AiConversationResearchToolCall, AiConversationResearchToolCallArgs, AiConversationResearchToolCallResult, AiConversationRestoreEntityToolCall, AiConversationRestoreEntityToolCallArgs, AiConversationRetrieveEntitiesToolCall, AiConversationRetrieveEntitiesToolCallArgs, AiConversationSearchDocumentationToolCall, AiConversationSearchEntitiesToolCall, AiConversationSearchEntitiesToolCallArgs, AiConversationSearchEntitiesToolCallResult, AiConversationSearchEntitiesToolCallResultEntities, AiConversationStatus, AiConversationSuggestValuesToolCall, AiConversationSuggestValuesToolCallArgs, AiConversationTextPart, AiConversationTool, AiConversationToolCallPart, AiConversationToolDisplayInfo, AiConversationTranscribeMediaToolCall, AiConversationTranscribeVideoToolCall, AiConversationUpdateEntityToolCall, AiConversationUpdateEntityToolCallArgs, AiConversationWebSearchToolCall, AiConversationWebSearchToolCallArgs, AiConversationWidgetDisplayInfo, AiConversationWidgetName, AiConversationWidgetPart, AiPromptRules, AirbyteIntegrationConnectMutation, AppUserNotificationWebhookPayload, AppUserTeamAccessChangedWebhookPayload, Application, ApplicationInfoQuery, ArchiveCustomerNeedMutation, ArchiveCycleMutation, ArchiveInitiativeMutation, ArchiveInitiativeUpdateMutation, ArchiveIntegrationMutation, ArchiveIssueMutation, ArchiveNotificationMutation, ArchivePayload, ArchiveProjectMutation, ArchiveProjectStatusMutation, ArchiveProjectUpdateMutation, ArchiveResponse, ArchiveRoadmapMutation, ArchiveWorkflowStateMutation, AsksChannelConnectPayload, Attachment, AttachmentConnection, AttachmentIssueQuery, AttachmentIssue_AttachmentsQuery, AttachmentIssue_BotActorQuery, AttachmentIssue_ChildrenQuery, AttachmentIssue_CommentsQuery, AttachmentIssue_DocumentsQuery, AttachmentIssue_FormerAttachmentsQuery, AttachmentIssue_FormerNeedsQuery, AttachmentIssue_HistoryQuery, AttachmentIssue_InverseRelationsQuery, AttachmentIssue_LabelsQuery, AttachmentIssue_NeedsQuery, AttachmentIssue_RelationsQuery, AttachmentIssue_SharedAccessQuery, AttachmentIssue_StateHistoryQuery, AttachmentIssue_SubscribersQuery, AttachmentLinkDiscordMutation, AttachmentLinkFrontMutation, AttachmentLinkGitHubIssueMutation, AttachmentLinkGitHubPrMutation, AttachmentLinkGitLabMrMutation, AttachmentLinkIntercomMutation, AttachmentLinkJiraIssueMutation, AttachmentLinkSalesforceMutation, AttachmentLinkSlackMutation, AttachmentLinkUrlMutation, AttachmentLinkZendeskMutation, AttachmentPayload, AttachmentQuery, AttachmentSourcesPayload, AttachmentSyncToSlackMutation, AttachmentWebhookPayload, AttachmentsForUrlQuery, AttachmentsQuery, AuditEntriesQuery, AuditEntry, AuditEntryConnection, AuditEntryType, AuditEntryTypesQuery, AuditEntryWebhookPayload, AuthIdentityProvider, AuthOrganization, AuthResolverResponse, AuthUser, AuthenticationLinearError, AuthenticationSessionResponse, AuthenticationSessionType, AuthenticationSessionsQuery, AvailableUsersQuery, BaseWebhookPayload, BootstrapLinearError, Comment, CommentChildWebhookPayload, CommentConnection, CommentPayload, CommentQuery, CommentResolveMutation, CommentUnresolveMutation, CommentWebhookPayload, Comment_BotActorQuery, Comment_ChildrenQuery, Comment_CreatedIssuesQuery, Comment_DocumentContentQuery, Comment_DocumentContent_AiPromptRulesQuery, Comment_DocumentContent_WelcomeMessageQuery, Comment_ExternalThreadQuery, CommentsQuery, Connection, ContactPayload, ContextViewType, CreateAgentActivityMutation, CreateAttachmentMutation, CreateCommentMutation, CreateContactMutation, CreateCsvExportReportMutation, CreateCsvExportReportPayload, CreateCustomViewMutation, CreateCustomerMutation, CreateCustomerNeedMutation, CreateCustomerStatusMutation, CreateCustomerTierMutation, CreateCycleMutation, CreateDocumentMutation, CreateEmailIntakeAddressMutation, CreateEmojiMutation, CreateEntityExternalLinkMutation, CreateFavoriteMutation, CreateGitAutomationStateMutation, CreateGitAutomationTargetBranchMutation, CreateInitiativeMutation, CreateInitiativeRelationMutation, CreateInitiativeToProjectMutation, CreateInitiativeUpdateMutation, CreateInitiativeUpdateReminderMutation, CreateIntegrationGithubCommitMutation, CreateIntegrationTemplateMutation, CreateIntegrationsSettingsMutation, CreateIssueBatchMutation, CreateIssueLabelMutation, CreateIssueMutation, CreateIssueRelationMutation, CreateNotificationSubscriptionMutation, CreateOrJoinOrganizationResponse, CreateOrganizationFromOnboardingMutation, CreateOrganizationInviteMutation, CreateProjectLabelMutation, CreateProjectMilestoneMutation, CreateProjectMutation, CreateProjectRelationMutation, CreateProjectStatusMutation, CreateProjectUpdateMutation, CreateProjectUpdateReminderMutation, CreatePushSubscriptionMutation, CreateReactionMutation, CreateRoadmapMutation, CreateRoadmapToProjectMutation, CreateTeamMembershipMutation, CreateTeamMutation, CreateTemplateMutation, CreateTimeScheduleMutation, CreateTriageResponsibilityMutation, CreateViewPreferencesMutation, CreateWebhookMutation, CreateWorkflowStateMutation, CustomResourceWebhookPayload, CustomView, CustomViewConnection, CustomViewHasSubscribersPayload, CustomViewHasSubscribersQuery, CustomViewNotificationSubscription, CustomViewPayload, CustomViewQuery, CustomViewSuggestionPayload, CustomView_InitiativesQuery, CustomView_IssuesQuery, CustomView_OrganizationViewPreferencesQuery, CustomView_OrganizationViewPreferences_PreferencesQuery, CustomView_ProjectsQuery, CustomView_UserViewPreferencesQuery, CustomView_UserViewPreferences_PreferencesQuery, CustomView_ViewPreferencesValuesQuery, CustomViewsQuery, Customer, CustomerChildWebhookPayload, CustomerConnection, CustomerMergeMutation, CustomerNeed, CustomerNeedArchivePayload, CustomerNeedChildWebhookPayload, CustomerNeedConnection, CustomerNeedCreateFromAttachmentMutation, CustomerNeedNotification, CustomerNeedPayload, CustomerNeedQuery, CustomerNeedUpdatePayload, CustomerNeedWebhookPayload, CustomerNeed_ProjectAttachmentQuery, CustomerNeedsQuery, CustomerNotification, CustomerNotificationSubscription, CustomerPayload, CustomerQuery, CustomerStatus, CustomerStatusChildWebhookPayload, CustomerStatusConnection, CustomerStatusPayload, CustomerStatusQuery, CustomerStatusType, CustomerStatusesQuery, CustomerTier, CustomerTierChildWebhookPayload, CustomerTierConnection, CustomerTierPayload, CustomerTierQuery, CustomerTiersQuery, CustomerUnsyncMutation, CustomerUpsertMutation, CustomerVisibilityMode, CustomerWebhookPayload, CustomersQuery, Cycle, CycleArchivePayload, CycleChildWebhookPayload, CycleConnection, CycleNotificationSubscription, CyclePayload, CyclePeriod, CycleQuery, CycleShiftAllMutation, CycleStartUpcomingCycleTodayMutation, CycleWebhookPayload, Cycle_IssuesQuery, Cycle_UncompletedIssuesUponCloseQuery, CyclesQuery, DateResolutionType, Day, DeleteAttachmentMutation, DeleteCommentMutation, DeleteCustomViewMutation, DeleteCustomerMutation, DeleteCustomerNeedMutation, DeleteCustomerStatusMutation, DeleteCustomerTierMutation, DeleteDocumentMutation, DeleteEmailIntakeAddressMutation, DeleteEmojiMutation, DeleteEntityExternalLinkMutation, DeleteFavoriteMutation, DeleteGitAutomationStateMutation, DeleteGitAutomationTargetBranchMutation, DeleteInitiativeMutation, DeleteInitiativeRelationMutation, DeleteInitiativeToProjectMutation, DeleteIntegrationIntercomMutation, DeleteIntegrationMutation, DeleteIntegrationTemplateMutation, DeleteIssueImportMutation, DeleteIssueLabelMutation, DeleteIssueMutation, DeleteIssueRelationMutation, DeleteNotificationSubscriptionMutation, DeleteOrganizationCancelMutation, DeleteOrganizationDomainMutation, DeleteOrganizationInviteMutation, DeleteOrganizationMutation, DeletePayload, DeleteProjectLabelMutation, DeleteProjectMilestoneMutation, DeleteProjectMutation, DeleteProjectRelationMutation, DeleteProjectUpdateMutation, DeletePushSubscriptionMutation, DeleteReactionMutation, DeleteRoadmapMutation, DeleteRoadmapToProjectMutation, DeleteTeamCyclesMutation, DeleteTeamKeyMutation, DeleteTeamMembershipMutation, DeleteTeamMutation, DeleteTemplateMutation, DeleteTimeScheduleMutation, DeleteTriageResponsibilityMutation, DeleteViewPreferencesMutation, DeleteWebhookMutation, Document, DocumentArchivePayload, DocumentChildWebhookPayload, DocumentConnection, DocumentContent, DocumentContentChildWebhookPayload, DocumentContentHistoryPayload, DocumentContentHistoryQuery, DocumentContentHistoryType, DocumentNotification, DocumentPayload, DocumentQuery, DocumentSearchPayload, DocumentSearchResult, DocumentWebhookPayload, Document_CommentsQuery, DocumentsQuery, Draft, DraftConnection, EmailIntakeAddress, EmailIntakeAddressPayload, EmailIntakeAddressQuery, EmailIntakeAddressRotateMutation, EmailIntakeAddressType, EmailIntakeAddress_SesDomainIdentityQuery, EmailTokenUserAccountAuthMutation, EmailUnsubscribeMutation, EmailUnsubscribePayload, EmailUserAccountAuthChallengeMutation, EmailUserAccountAuthChallengeResponse, Emoji, EmojiConnection, EmojiPayload, EmojiQuery, EmojisQuery, Entity, EntityExternalLink, EntityExternalLinkConnection, EntityExternalLinkPayload, EntityExternalLinkQuery, EntityWebhookPayload, EventTrackingPayload, ExternalEntityInfo, ExternalEntityInfoGithubMetadata, ExternalEntityInfoJiraMetadata, ExternalEntitySlackMetadata, ExternalSyncService, ExternalUser, ExternalUserChildWebhookPayload, ExternalUserConnection, ExternalUserQuery, ExternalUsersQuery, Facet, FacetConnection, FacetPageSource, Favorite, FavoriteConnection, FavoritePayload, FavoriteQuery, Favorite_ChildrenQuery, FavoritesQuery, FeatureNotAccessibleLinearError, FeedSummarySchedule, FetchDataPayload, FileUploadDeletePayload, FileUploadMutation, ForbiddenLinearError, FrequencyResolutionType, FrontAttachmentPayload, GitAutomationState, GitAutomationStateConnection, GitAutomationStatePayload, GitAutomationStates, GitAutomationTargetBranch, GitAutomationTargetBranchPayload, GitHubCommitIntegrationPayload, GitHubEnterpriseServerInstallVerificationPayload, GitHubEnterpriseServerPayload, GitLabIntegrationCreatePayload, GitLabTestConnectionPayload, GitLinkKind, GithubOrgType, GoogleUserAccountAuthMutation, GraphQLClientError, GraphqlLinearError, GuidanceRuleWebhookPayload, IdentityProvider, IdentityProviderType, ImageUploadFromUrlMutation, ImageUploadFromUrlPayload, ImportFileUploadMutation, Initiative, InitiativeArchivePayload, InitiativeChildWebhookPayload, InitiativeConnection, InitiativeHistory, InitiativeHistoryConnection, InitiativeNotification, InitiativeNotificationSubscription, InitiativePayload, InitiativeQuery, InitiativeRelation, InitiativeRelationConnection, InitiativeRelationPayload, InitiativeRelationQuery, InitiativeRelationsQuery, InitiativeStatus, InitiativeTab, InitiativeToProject, InitiativeToProjectConnection, InitiativeToProjectPayload, InitiativeToProjectQuery, InitiativeToProjectsQuery, InitiativeUpdate, InitiativeUpdateArchivePayload, InitiativeUpdateChildWebhookPayload, InitiativeUpdateConnection, InitiativeUpdateHealthType, InitiativeUpdatePayload, InitiativeUpdateQuery, InitiativeUpdateReminderPayload, InitiativeUpdateWebhookPayload, InitiativeUpdate_CommentsQuery, InitiativeUpdatesQuery, InitiativeWebhookPayload, Initiative_DocumentContentQuery, Initiative_DocumentContent_AiPromptRulesQuery, Initiative_DocumentContent_WelcomeMessageQuery, Initiative_DocumentsQuery, Initiative_HistoryQuery, Initiative_InitiativeUpdatesQuery, Initiative_LinksQuery, Initiative_ProjectsQuery, Initiative_SubInitiativesQuery, InitiativesQuery, Integration, IntegrationActorWebhookPayload, IntegrationAsksConnectChannelMutation, IntegrationChildWebhookPayload, IntegrationConnection, IntegrationDiscordMutation, IntegrationFigmaMutation, IntegrationFrontMutation, IntegrationGitHubEnterpriseServerConnectMutation, IntegrationGitHubPersonalMutation, IntegrationGithubConnectMutation, IntegrationGithubImportConnectMutation, IntegrationGithubImportRefreshMutation, IntegrationGitlabConnectMutation, IntegrationGitlabTestConnectionMutation, IntegrationGongMutation, IntegrationGoogleSheetsMutation, IntegrationHasScopesPayload, IntegrationHasScopesQuery, IntegrationIntercomMutation, IntegrationJiraPersonalMutation, IntegrationLoomMutation, IntegrationPayload, IntegrationQuery, IntegrationRequestMutation, IntegrationRequestPayload, IntegrationSalesforceMutation, IntegrationSentryConnectMutation, IntegrationService, IntegrationSlackAsksMutation, IntegrationSlackCustomViewNotificationsMutation, IntegrationSlackCustomerChannelLinkMutation, IntegrationSlackImportEmojisMutation, IntegrationSlackMutation, IntegrationSlackOrAsksUpdateSlackTeamNameMutation, IntegrationSlackOrgProjectUpdatesPostMutation, IntegrationSlackPersonalMutation, IntegrationSlackPostMutation, IntegrationSlackProjectPostMutation, IntegrationSlackWorkspaceNamePayload, IntegrationTemplate, IntegrationTemplateConnection, IntegrationTemplatePayload, IntegrationTemplateQuery, IntegrationTemplatesQuery, IntegrationZendeskMutation, IntegrationsQuery, IntegrationsSettings, IntegrationsSettingsPayload, IntegrationsSettingsQuery, InternalLinearError, InvalidInputLinearError, Issue, IssueAddLabelMutation, IssueArchivePayload, IssueAssignedToYouNotificationWebhookPayload, IssueBatchPayload, IssueChildWebhookPayload, IssueCommentMentionNotificationWebhookPayload, IssueCommentReactionNotificationWebhookPayload, IssueConnection, IssueEmojiReactionNotificationWebhookPayload, IssueExternalSyncDisableMutation, IssueFigmaFileKeySearchQuery, IssueFilterSuggestionPayload, IssueFilterSuggestionQuery, IssueHistory, IssueHistoryConnection, IssueHistoryTriageRuleError, IssueHistoryTriageRuleMetadata, IssueHistoryWorkflowMetadata, IssueImport, IssueImportCheckCsvQuery, IssueImportCheckPayload, IssueImportCheckSyncQuery, IssueImportCreateAsanaMutation, IssueImportCreateClubhouseMutation, IssueImportCreateCsvJiraMutation, IssueImportCreateGithubMutation, IssueImportCreateJiraMutation, IssueImportDeletePayload, IssueImportJqlCheckPayload, IssueImportJqlCheckQuery, IssueImportPayload, IssueImportProcessMutation, IssueImportSyncCheckPayload, IssueLabel, IssueLabelChildWebhookPayload, IssueLabelConnection, IssueLabelPayload, IssueLabelQuery, IssueLabelRestoreMutation, IssueLabelRetireMutation, IssueLabelWebhookPayload, IssueLabel_ChildrenQuery, IssueLabel_IssuesQuery, IssueLabelsQuery, IssueMentionNotificationWebhookPayload, IssueNewCommentNotificationWebhookPayload, IssueNotification, IssuePayload, IssuePriorityValue, IssuePriorityValuesQuery, IssueQuery, IssueRelation, IssueRelationConnection, IssueRelationHistoryPayload, IssueRelationPayload, IssueRelationQuery, IssueRelationType, IssueRelationsQuery, IssueReminderMutation, IssueRemoveLabelMutation, IssueRepositorySuggestionsQuery, IssueSearchPayload, IssueSearchQuery, IssueSearchResult, IssueSharedAccess, IssueSharedAccessDisallowedField, IssueSlaWebhookPayload, IssueStateSpan, IssueStateSpanConnection, IssueStatusChangedNotificationWebhookPayload, IssueSubscribeMutation, IssueSuggestion, IssueSuggestionConnection, IssueSuggestionMetadata, IssueSuggestionState, IssueSuggestionType, IssueTitleSuggestionFromCustomerRequestPayload, IssueTitleSuggestionFromCustomerRequestQuery, IssueUnassignedFromYouNotificationWebhookPayload, IssueUnsubscribeMutation, IssueVcsBranchSearchQuery, IssueVcsBranchSearch_AttachmentsQuery, IssueVcsBranchSearch_BotActorQuery, IssueVcsBranchSearch_ChildrenQuery, IssueVcsBranchSearch_CommentsQuery, IssueVcsBranchSearch_DocumentsQuery, IssueVcsBranchSearch_FormerAttachmentsQuery, IssueVcsBranchSearch_FormerNeedsQuery, IssueVcsBranchSearch_HistoryQuery, IssueVcsBranchSearch_InverseRelationsQuery, IssueVcsBranchSearch_LabelsQuery, IssueVcsBranchSearch_NeedsQuery, IssueVcsBranchSearch_RelationsQuery, IssueVcsBranchSearch_SharedAccessQuery, IssueVcsBranchSearch_StateHistoryQuery, IssueVcsBranchSearch_SubscribersQuery, IssueWebhookPayload, IssueWithDescriptionChildWebhookPayload, Issue_AttachmentsQuery, Issue_BotActorQuery, Issue_ChildrenQuery, Issue_CommentsQuery, Issue_DocumentsQuery, Issue_FormerAttachmentsQuery, Issue_FormerNeedsQuery, Issue_HistoryQuery, Issue_InverseRelationsQuery, Issue_LabelsQuery, Issue_NeedsQuery, Issue_RelationsQuery, Issue_SharedAccessQuery, Issue_StateHistoryQuery, Issue_SubscribersQuery, IssuesQuery, JiraFetchProjectStatusesPayload, JoinOrganizationFromOnboardingMutation, LabelNotificationSubscription, LeaveOrganizationMutation, LinearClient, LinearConnection, _generated_documents_exports as LinearDocument, LinearError, LinearErrorType, LinearGraphQLClient, LinearGraphQLError, LinearSdk, LinearWebhooks, LockTimeoutLinearError, LogoutAllSessionsMutation, LogoutMutation, LogoutOtherSessionsMutation, LogoutResponse, LogoutSessionMutation, NetworkLinearError, Node, Notification, NotificationArchiveAllMutation, NotificationArchivePayload, NotificationBatchActionPayload, NotificationCategory, NotificationCategoryPreferences, NotificationChannel, NotificationChannelPreferences, NotificationConnection, NotificationDeliveryPreferences, NotificationDeliveryPreferencesChannel, NotificationDeliveryPreferencesDay, NotificationDeliveryPreferencesSchedule, NotificationMarkReadAllMutation, NotificationMarkUnreadAllMutation, NotificationPayload, NotificationQuery, NotificationSnoozeAllMutation, NotificationSubscription, NotificationSubscriptionConnection, NotificationSubscriptionPayload, NotificationSubscriptionQuery, NotificationSubscriptionsQuery, NotificationUnsnoozeAllMutation, NotificationsQuery, OAuthAppWebhookPayload, OAuthAuthorizationWebhookPayload, OAuthClientApprovalStatus, OauthClientActorWebhookPayload, OauthClientApproval, OauthClientApprovalNotification, OauthClientChildWebhookPayload, Organization, OrganizationAcceptedOrExpiredInviteDetailsPayload, OrganizationCancelDeletePayload, OrganizationDeleteChallengeMutation, OrganizationDeletePayload, OrganizationDomain, OrganizationDomainAuthType, OrganizationExistsPayload, OrganizationExistsQuery, OrganizationInvite, OrganizationInviteConnection, OrganizationInviteFullDetailsPayload, OrganizationInvitePayload, OrganizationInviteQuery, OrganizationInviteStatus, OrganizationInvitesQuery, OrganizationIpRestriction, OrganizationMeta, OrganizationOriginWebhookPayload, OrganizationPayload, OrganizationQuery, OrganizationStartTrialForPlanMutation, OrganizationStartTrialMutation, OrganizationStartTrialPayload, Organization_IntegrationsQuery, Organization_LabelsQuery, Organization_ProjectLabelsQuery, Organization_SubscriptionQuery, Organization_TeamsQuery, Organization_TemplatesQuery, Organization_UsersQuery, OtherLinearError, OtherNotificationType, OtherNotificationWebhookPayload, PageInfo, PaginationNulls, PaginationOrderBy, PaginationSortOrder, PaidSubscription, PasskeyLoginStartResponse, PostNotification, PostType, ProductIntelligenceScope, Project, ProjectAddLabelMutation, ProjectArchivePayload, ProjectAttachment, ProjectAttachmentConnection, ProjectChildWebhookPayload, ProjectConnection, ProjectExternalSyncDisableMutation, ProjectFilterSuggestionPayload, ProjectFilterSuggestionQuery, ProjectHistory, ProjectHistoryConnection, ProjectLabel, ProjectLabelChildWebhookPayload, ProjectLabelConnection, ProjectLabelPayload, ProjectLabelQuery, ProjectLabelRestoreMutation, ProjectLabelRetireMutation, ProjectLabelWebhookPayload, ProjectLabel_ChildrenQuery, ProjectLabel_ProjectsQuery, ProjectLabelsQuery, ProjectMilestone, ProjectMilestoneChildWebhookPayload, ProjectMilestoneConnection, ProjectMilestoneMoveIssueToTeam, ProjectMilestoneMovePayload, ProjectMilestoneMoveProjectTeams, ProjectMilestonePayload, ProjectMilestoneQuery, ProjectMilestoneStatus, ProjectMilestone_DocumentContentQuery, ProjectMilestone_DocumentContent_AiPromptRulesQuery, ProjectMilestone_DocumentContent_WelcomeMessageQuery, ProjectMilestone_IssuesQuery, ProjectMilestonesQuery, ProjectNotification, ProjectNotificationSubscription, ProjectPayload, ProjectQuery, ProjectRelation, ProjectRelationConnection, ProjectRelationPayload, ProjectRelationQuery, ProjectRelationsQuery, ProjectRemoveLabelMutation, ProjectSearchPayload, ProjectSearchResult, ProjectStatus, ProjectStatusArchivePayload, ProjectStatusChildWebhookPayload, ProjectStatusConnection, ProjectStatusCountPayload, ProjectStatusPayload, ProjectStatusQuery, ProjectStatusType, ProjectStatusesQuery, ProjectTab, ProjectUpdate, ProjectUpdateArchivePayload, ProjectUpdateChildWebhookPayload, ProjectUpdateConnection, ProjectUpdateHealthType, ProjectUpdatePayload, ProjectUpdateQuery, ProjectUpdateReminderFrequency, ProjectUpdateReminderPayload, ProjectUpdateWebhookPayload, ProjectUpdate_CommentsQuery, ProjectUpdatesQuery, ProjectWebhookPayload, Project_AttachmentsQuery, Project_CommentsQuery, Project_DocumentContentQuery, Project_DocumentContent_AiPromptRulesQuery, Project_DocumentContent_WelcomeMessageQuery, Project_DocumentsQuery, Project_ExternalLinksQuery, Project_HistoryQuery, Project_InitiativeToProjectsQuery, Project_InitiativesQuery, Project_InverseRelationsQuery, Project_IssuesQuery, Project_LabelsQuery, Project_MembersQuery, Project_NeedsQuery, Project_ProjectMilestonesQuery, Project_ProjectUpdatesQuery, Project_RelationsQuery, Project_TeamsQuery, ProjectsQuery, PullRequestMergeMethod, PullRequestNotification, PullRequestReviewTool, PullRequestStatus, PushSubscription, PushSubscriptionPayload, PushSubscriptionTestPayload, PushSubscriptionTestQuery, PushSubscriptionType, RateLimitPayload, RateLimitResultPayload, RateLimitStatusQuery, RatelimitedLinearError, Reaction, ReactionPayload, ReactionWebhookPayload, RefreshGoogleSheetsDataMutation, ReleaseArchivePayload, ReleaseChannel, ReleasePayload, ReleasePipelineArchivePayload, ReleasePipelinePayload, ReleasePipelineType, ReleaseStageArchivePayload, ReleaseStagePayload, ReleaseStageType, RepositorySuggestion, RepositorySuggestionsPayload, Request, ResendOrganizationInviteByEmailMutation, ResendOrganizationInviteMutation, Roadmap, RoadmapArchivePayload, RoadmapConnection, RoadmapPayload, RoadmapQuery, RoadmapToProject, RoadmapToProjectConnection, RoadmapToProjectPayload, RoadmapToProjectQuery, RoadmapToProjectsQuery, Roadmap_ProjectsQuery, RoadmapsQuery, RotateSecretWebhookMutation, SLADayCountType, SamlTokenUserAccountAuthMutation, SearchDocumentsQuery, SearchDocuments_ArchivePayloadQuery, SearchIssuesQuery, SearchIssues_ArchivePayloadQuery, SearchProjectsQuery, SearchProjects_ArchivePayloadQuery, SemanticSearchPayload, SemanticSearchQuery, SemanticSearchResult, SemanticSearchResultType, SendStrategy, SesDomainIdentity, SesDomainIdentityDnsRecord, SlaStatus, SlackAsksTeamSettings, SlackChannelConnectPayload, SlackChannelNameMapping, SlackChannelType, SsoUrlFromEmailQuery, SsoUrlFromEmailResponse, SuccessPayload, Summary, SummaryGenerationStatus, SuspendUserMutation, SyncedExternalThread, Team, TeamArchivePayload, TeamChildWebhookPayload, TeamConnection, TeamMembership, TeamMembershipConnection, TeamMembershipPayload, TeamMembershipQuery, TeamMembershipsQuery, TeamNotificationSubscription, TeamOriginWebhookPayload, TeamPayload, TeamQuery, TeamRetirementSubTeamHandling, TeamRoleType, TeamWithParentWebhookPayload, Team_CyclesQuery, Team_GitAutomationStatesQuery, Team_IssuesQuery, Team_LabelsQuery, Team_MembersQuery, Team_MembershipsQuery, Team_ProjectsQuery, Team_StatesQuery, Team_TemplatesQuery, Team_WebhooksQuery, TeamsQuery, Template, TemplateConnection, TemplatePayload, TemplateQuery, TemplatesForIntegrationQuery, TemplatesQuery, TimeSchedule, TimeScheduleConnection, TimeScheduleEntry, TimeSchedulePayload, TimeScheduleQuery, TimeScheduleRefreshIntegrationScheduleMutation, TimeScheduleUpsertExternalMutation, TimeSchedulesQuery, TrackAnonymousEventMutation, TriageResponsibilitiesQuery, TriageResponsibility, TriageResponsibilityAction, TriageResponsibilityConnection, TriageResponsibilityManualSelection, TriageResponsibilityPayload, TriageResponsibilityQuery, TriageResponsibility_ManualSelectionQuery, TriageRuleErrorType, UnarchiveCustomerNeedMutation, UnarchiveDocumentMutation, UnarchiveInitiativeMutation, UnarchiveInitiativeUpdateMutation, UnarchiveIssueMutation, UnarchiveNotificationMutation, UnarchiveProjectMutation, UnarchiveProjectStatusMutation, UnarchiveProjectUpdateMutation, UnarchiveRoadmapMutation, UnarchiveTeamMutation, UnknownLinearError, UnsuspendUserMutation, UpdateAgentSessionMutation, UpdateAttachmentMutation, UpdateCommentMutation, UpdateCustomViewMutation, UpdateCustomerMutation, UpdateCustomerNeedMutation, UpdateCustomerStatusMutation, UpdateCustomerTierMutation, UpdateCycleMutation, UpdateDocumentMutation, UpdateEmailIntakeAddressMutation, UpdateEntityExternalLinkMutation, UpdateFavoriteMutation, UpdateGitAutomationStateMutation, UpdateGitAutomationTargetBranchMutation, UpdateInitiativeMutation, UpdateInitiativeRelationMutation, UpdateInitiativeToProjectMutation, UpdateInitiativeUpdateMutation, UpdateIntegrationIntercomSettingsMutation, UpdateIntegrationsSettingsMutation, UpdateIssueBatchMutation, UpdateIssueImportMutation, UpdateIssueLabelMutation, UpdateIssueMutation, UpdateIssueRelationMutation, UpdateNotificationCategoryChannelSubscriptionMutation, UpdateNotificationMutation, UpdateNotificationSubscriptionMutation, UpdateOrganizationInviteMutation, UpdateOrganizationMutation, UpdateProjectLabelMutation, UpdateProjectMilestoneMutation, UpdateProjectMutation, UpdateProjectRelationMutation, UpdateProjectStatusMutation, UpdateProjectUpdateMutation, UpdateRoadmapMutation, UpdateRoadmapToProjectMutation, UpdateTeamMembershipMutation, UpdateTeamMutation, UpdateTemplateMutation, UpdateTimeScheduleMutation, UpdateTriageResponsibilityMutation, UpdateUserFlagMutation, UpdateUserMutation, UpdateUserSettingsMutation, UpdateViewPreferencesMutation, UpdateWebhookMutation, UpdateWorkflowStateMutation, UploadFile, UploadFileHeader, UploadPayload, UsageLimitExceededLinearError, User, UserActorWebhookPayload, UserAdminPayload, UserChangeRoleMutation, UserChildWebhookPayload, UserConnection, UserContextViewType, UserDiscordConnectMutation, UserExternalUserDisconnectMutation, UserFlagType, UserFlagUpdateOperation, UserLinearError, UserNotificationSubscription, UserPayload, UserQuery, UserRevokeAllSessionsMutation, UserRevokeSessionMutation, UserRoleType, UserSessionsQuery, UserSettings, UserSettingsCustomSidebarTheme, UserSettingsCustomTheme, UserSettingsFlagPayload, UserSettingsFlagsResetMutation, UserSettingsFlagsResetPayload, UserSettingsPayload, UserSettingsQuery, UserSettingsTheme, UserSettingsThemeDeviceType, UserSettingsThemeMode, UserSettingsThemePreset, UserSettings_NotificationCategoryPreferencesQuery, UserSettings_NotificationCategoryPreferences_AppsAndIntegrationsQuery, UserSettings_NotificationCategoryPreferences_AssignmentsQuery, UserSettings_NotificationCategoryPreferences_CommentsAndRepliesQuery, UserSettings_NotificationCategoryPreferences_CustomersQuery, UserSettings_NotificationCategoryPreferences_DocumentChangesQuery, UserSettings_NotificationCategoryPreferences_FeedQuery, UserSettings_NotificationCategoryPreferences_MentionsQuery, UserSettings_NotificationCategoryPreferences_PostsAndUpdatesQuery, UserSettings_NotificationCategoryPreferences_ReactionsQuery, UserSettings_NotificationCategoryPreferences_RemindersQuery, UserSettings_NotificationCategoryPreferences_ReviewsQuery, UserSettings_NotificationCategoryPreferences_StatusChangesQuery, UserSettings_NotificationCategoryPreferences_SubscriptionsQuery, UserSettings_NotificationCategoryPreferences_SystemQuery, UserSettings_NotificationCategoryPreferences_TriageQuery, UserSettings_NotificationChannelPreferencesQuery, UserSettings_NotificationDeliveryPreferencesQuery, UserSettings_NotificationDeliveryPreferences_MobileQuery, UserSettings_NotificationDeliveryPreferences_Mobile_ScheduleQuery, UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_FridayQuery, UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_MondayQuery, UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SaturdayQuery, UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SundayQuery, UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_ThursdayQuery, UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_TuesdayQuery, UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_WednesdayQuery, UserSettings_ThemeQuery, UserSettings_Theme_CustomQuery, UserSettings_Theme_Custom_SidebarQuery, UserUnlinkFromIdentityProviderMutation, UserWebhookPayload, User_AssignedIssuesQuery, User_CreatedIssuesQuery, User_DelegatedIssuesQuery, User_DraftsQuery, User_TeamMembershipsQuery, User_TeamsQuery, UsersQuery, VerifyGitHubEnterpriseServerInstallationQuery, ViewPreferences, ViewPreferencesPayload, ViewPreferencesProjectLabelGroupColumn, ViewPreferencesType, ViewPreferencesValues, ViewType, ViewerQuery, Viewer_AssignedIssuesQuery, Viewer_CreatedIssuesQuery, Viewer_DelegatedIssuesQuery, Viewer_DraftsQuery, Viewer_TeamMembershipsQuery, Viewer_TeamsQuery, Webhook, WebhookConnection, WebhookFailureEvent, WebhookPayload, WebhookQuery, WebhookRotateSecretPayload, WebhooksQuery, WelcomeMessage, WelcomeMessageNotification, WorkflowDefinition, WorkflowState, WorkflowStateArchivePayload, WorkflowStateChildWebhookPayload, WorkflowStateConnection, WorkflowStatePayload, WorkflowStateQuery, WorkflowState_IssuesQuery, WorkflowStatesQuery, WorkflowTrigger, WorkflowTriggerType, WorkflowType, parseLinearError };
|
|
95080
|
+
export { ActorBot, AdministrableTeamsQuery, AgentActivitiesQuery, AgentActivity, AgentActivityActionContent, AgentActivityConnection, AgentActivityElicitationContent, AgentActivityErrorContent, AgentActivityPayload, AgentActivityPromptContent, AgentActivityQuery, AgentActivityResponseContent, AgentActivitySignal, AgentActivityThoughtContent, AgentActivityType, AgentActivityWebhookPayload, AgentSession, AgentSessionConnection, AgentSessionCreateOnCommentMutation, AgentSessionCreateOnIssueMutation, AgentSessionEventWebhookPayload, AgentSessionExternalLink, AgentSessionPayload, AgentSessionQuery, AgentSessionStatus, AgentSessionToPullRequest, AgentSessionToPullRequestConnection, AgentSessionType, AgentSessionUpdateExternalUrlMutation, AgentSessionWebhookPayload, AgentSession_ActivitiesQuery, AgentSessionsQuery, AiConversationBasePart, AiConversationBaseToolCall, AiConversationBaseWidget, AiConversationCodeIntelligenceToolCall, AiConversationCodeIntelligenceToolCallArgs, AiConversationCreateEntityToolCall, AiConversationCreateEntityToolCallArgs, AiConversationDeleteEntityToolCall, AiConversationDeleteEntityToolCallArgs, AiConversationEntityCardWidget, AiConversationEntityCardWidgetArgs, AiConversationEntityCardWidgetArgsAction, AiConversationEntityCardWidgetArgsType, AiConversationEntityListWidget, AiConversationEntityListWidgetArgs, AiConversationEntityListWidgetArgsAction, AiConversationEntityListWidgetArgsEntities, AiConversationEntityListWidgetArgsEntitiesType, AiConversationGetMicrosoftTeamsConversationHistoryToolCall, AiConversationGetPullRequestDiffToolCall, AiConversationGetPullRequestDiffToolCallArgs, AiConversationGetPullRequestFileToolCall, AiConversationGetPullRequestFileToolCallArgs, AiConversationGetSlackConversationHistoryToolCall, AiConversationInitialSource, AiConversationInvokeMcpToolToolCall, AiConversationInvokeMcpToolToolCallArgs, AiConversationInvokeMcpToolToolCallArgsServer, AiConversationInvokeMcpToolToolCallArgsTool, AiConversationPartMetadata, AiConversationPartPhase, AiConversationPartType, AiConversationPromptPart, AiConversationQueryActivityToolCall, AiConversationQueryActivityToolCallArgs, AiConversationQueryUpdatesToolCall, AiConversationQueryUpdatesToolCallArgs, AiConversationQueryUpdatesToolCallArgsUpdateType, AiConversationQueryViewToolCall, AiConversationQueryViewToolCallArgs, AiConversationQueryViewToolCallArgsMode, AiConversationQueryViewToolCallArgsView, AiConversationReasoningPart, AiConversationResearchToolCall, AiConversationResearchToolCallArgs, AiConversationResearchToolCallResult, AiConversationRestoreEntityToolCall, AiConversationRestoreEntityToolCallArgs, AiConversationRetrieveEntitiesToolCall, AiConversationRetrieveEntitiesToolCallArgs, AiConversationSearchDocumentationToolCall, AiConversationSearchEntitiesToolCall, AiConversationSearchEntitiesToolCallArgs, AiConversationSearchEntitiesToolCallResult, AiConversationSearchEntitiesToolCallResultEntities, AiConversationStatus, AiConversationSuggestValuesToolCall, AiConversationSuggestValuesToolCallArgs, AiConversationTextPart, AiConversationTool, AiConversationToolCallPart, AiConversationToolDisplayInfo, AiConversationTranscribeMediaToolCall, AiConversationTranscribeVideoToolCall, AiConversationUpdateEntityToolCall, AiConversationUpdateEntityToolCallArgs, AiConversationWebSearchToolCall, AiConversationWebSearchToolCallArgs, AiConversationWidgetDisplayInfo, AiConversationWidgetName, AiConversationWidgetPart, AiPromptRules, AirbyteIntegrationConnectMutation, AppUserNotificationWebhookPayload, AppUserTeamAccessChangedWebhookPayload, Application, ApplicationInfoQuery, ArchiveCustomerNeedMutation, ArchiveCycleMutation, ArchiveInitiativeMutation, ArchiveInitiativeUpdateMutation, ArchiveIntegrationMutation, ArchiveIssueMutation, ArchiveNotificationMutation, ArchivePayload, ArchiveProjectMutation, ArchiveProjectStatusMutation, ArchiveProjectUpdateMutation, ArchiveResponse, ArchiveRoadmapMutation, ArchiveWorkflowStateMutation, AsksChannelConnectPayload, Attachment, AttachmentConnection, AttachmentIssueQuery, AttachmentIssue_AttachmentsQuery, AttachmentIssue_BotActorQuery, AttachmentIssue_ChildrenQuery, AttachmentIssue_CommentsQuery, AttachmentIssue_DocumentsQuery, AttachmentIssue_FormerAttachmentsQuery, AttachmentIssue_FormerNeedsQuery, AttachmentIssue_HistoryQuery, AttachmentIssue_InverseRelationsQuery, AttachmentIssue_LabelsQuery, AttachmentIssue_NeedsQuery, AttachmentIssue_RelationsQuery, AttachmentIssue_SharedAccessQuery, AttachmentIssue_StateHistoryQuery, AttachmentIssue_SubscribersQuery, AttachmentLinkDiscordMutation, AttachmentLinkFrontMutation, AttachmentLinkGitHubIssueMutation, AttachmentLinkGitHubPrMutation, AttachmentLinkGitLabMrMutation, AttachmentLinkIntercomMutation, AttachmentLinkJiraIssueMutation, AttachmentLinkSalesforceMutation, AttachmentLinkSlackMutation, AttachmentLinkUrlMutation, AttachmentLinkZendeskMutation, AttachmentPayload, AttachmentQuery, AttachmentSourcesPayload, AttachmentSyncToSlackMutation, AttachmentWebhookPayload, AttachmentsForUrlQuery, AttachmentsQuery, AuditEntriesQuery, AuditEntry, AuditEntryConnection, AuditEntryType, AuditEntryTypesQuery, AuditEntryWebhookPayload, AuthIdentityProvider, AuthOrganization, AuthResolverResponse, AuthUser, AuthenticationLinearError, AuthenticationSessionResponse, AuthenticationSessionType, AuthenticationSessionsQuery, AvailableUsersQuery, BaseWebhookPayload, BootstrapLinearError, Comment, CommentChildWebhookPayload, CommentConnection, CommentPayload, CommentQuery, CommentResolveMutation, CommentUnresolveMutation, CommentWebhookPayload, Comment_BotActorQuery, Comment_ChildrenQuery, Comment_CreatedIssuesQuery, Comment_DocumentContentQuery, Comment_DocumentContent_AiPromptRulesQuery, Comment_DocumentContent_WelcomeMessageQuery, Comment_ExternalThreadQuery, CommentsQuery, Connection, ContactPayload, ContextViewType, CreateAgentActivityMutation, CreateAttachmentMutation, CreateCommentMutation, CreateContactMutation, CreateCsvExportReportMutation, CreateCsvExportReportPayload, CreateCustomViewMutation, CreateCustomerMutation, CreateCustomerNeedMutation, CreateCustomerStatusMutation, CreateCustomerTierMutation, CreateCycleMutation, CreateDocumentMutation, CreateEmailIntakeAddressMutation, CreateEmojiMutation, CreateEntityExternalLinkMutation, CreateFavoriteMutation, CreateGitAutomationStateMutation, CreateGitAutomationTargetBranchMutation, CreateInitiativeMutation, CreateInitiativeRelationMutation, CreateInitiativeToProjectMutation, CreateInitiativeUpdateMutation, CreateInitiativeUpdateReminderMutation, CreateIntegrationGithubCommitMutation, CreateIntegrationTemplateMutation, CreateIntegrationsSettingsMutation, CreateIssueBatchMutation, CreateIssueLabelMutation, CreateIssueMutation, CreateIssueRelationMutation, CreateNotificationSubscriptionMutation, CreateOrJoinOrganizationResponse, CreateOrganizationFromOnboardingMutation, CreateOrganizationInviteMutation, CreateProjectLabelMutation, CreateProjectMilestoneMutation, CreateProjectMutation, CreateProjectRelationMutation, CreateProjectStatusMutation, CreateProjectUpdateMutation, CreateProjectUpdateReminderMutation, CreatePushSubscriptionMutation, CreateReactionMutation, CreateRoadmapMutation, CreateRoadmapToProjectMutation, CreateTeamMembershipMutation, CreateTeamMutation, CreateTemplateMutation, CreateTimeScheduleMutation, CreateTriageResponsibilityMutation, CreateViewPreferencesMutation, CreateWebhookMutation, CreateWorkflowStateMutation, CustomResourceWebhookPayload, CustomView, CustomViewConnection, CustomViewHasSubscribersPayload, CustomViewHasSubscribersQuery, CustomViewNotificationSubscription, CustomViewPayload, CustomViewQuery, CustomViewSuggestionPayload, CustomView_InitiativesQuery, CustomView_IssuesQuery, CustomView_OrganizationViewPreferencesQuery, CustomView_OrganizationViewPreferences_PreferencesQuery, CustomView_ProjectsQuery, CustomView_UserViewPreferencesQuery, CustomView_UserViewPreferences_PreferencesQuery, CustomView_ViewPreferencesValuesQuery, CustomViewsQuery, Customer, CustomerChildWebhookPayload, CustomerConnection, CustomerMergeMutation, CustomerNeed, CustomerNeedArchivePayload, CustomerNeedChildWebhookPayload, CustomerNeedConnection, CustomerNeedCreateFromAttachmentMutation, CustomerNeedNotification, CustomerNeedPayload, CustomerNeedQuery, CustomerNeedUpdatePayload, CustomerNeedWebhookPayload, CustomerNeed_ProjectAttachmentQuery, CustomerNeedsQuery, CustomerNotification, CustomerNotificationSubscription, CustomerPayload, CustomerQuery, CustomerStatus, CustomerStatusChildWebhookPayload, CustomerStatusConnection, CustomerStatusPayload, CustomerStatusQuery, CustomerStatusType, CustomerStatusesQuery, CustomerTier, CustomerTierChildWebhookPayload, CustomerTierConnection, CustomerTierPayload, CustomerTierQuery, CustomerTiersQuery, CustomerUnsyncMutation, CustomerUpsertMutation, CustomerVisibilityMode, CustomerWebhookPayload, CustomersQuery, Cycle, CycleArchivePayload, CycleChildWebhookPayload, CycleConnection, CycleNotificationSubscription, CyclePayload, CyclePeriod, CycleQuery, CycleShiftAllMutation, CycleStartUpcomingCycleTodayMutation, CycleWebhookPayload, Cycle_IssuesQuery, Cycle_UncompletedIssuesUponCloseQuery, CyclesQuery, DateResolutionType, Day, DeleteAttachmentMutation, DeleteCommentMutation, DeleteCustomViewMutation, DeleteCustomerMutation, DeleteCustomerNeedMutation, DeleteCustomerStatusMutation, DeleteCustomerTierMutation, DeleteDocumentMutation, DeleteEmailIntakeAddressMutation, DeleteEmojiMutation, DeleteEntityExternalLinkMutation, DeleteFavoriteMutation, DeleteGitAutomationStateMutation, DeleteGitAutomationTargetBranchMutation, DeleteInitiativeMutation, DeleteInitiativeRelationMutation, DeleteInitiativeToProjectMutation, DeleteIntegrationIntercomMutation, DeleteIntegrationMutation, DeleteIntegrationTemplateMutation, DeleteIssueImportMutation, DeleteIssueLabelMutation, DeleteIssueMutation, DeleteIssueRelationMutation, DeleteNotificationSubscriptionMutation, DeleteOrganizationCancelMutation, DeleteOrganizationDomainMutation, DeleteOrganizationInviteMutation, DeleteOrganizationMutation, DeletePayload, DeleteProjectLabelMutation, DeleteProjectMilestoneMutation, DeleteProjectMutation, DeleteProjectRelationMutation, DeleteProjectUpdateMutation, DeletePushSubscriptionMutation, DeleteReactionMutation, DeleteRoadmapMutation, DeleteRoadmapToProjectMutation, DeleteTeamCyclesMutation, DeleteTeamKeyMutation, DeleteTeamMembershipMutation, DeleteTeamMutation, DeleteTemplateMutation, DeleteTimeScheduleMutation, DeleteTriageResponsibilityMutation, DeleteViewPreferencesMutation, DeleteWebhookMutation, Document, DocumentArchivePayload, DocumentChildWebhookPayload, DocumentConnection, DocumentContent, DocumentContentChildWebhookPayload, DocumentContentHistoryPayload, DocumentContentHistoryQuery, DocumentContentHistoryType, DocumentNotification, DocumentPayload, DocumentQuery, DocumentSearchPayload, DocumentSearchResult, DocumentWebhookPayload, Document_CommentsQuery, DocumentsQuery, Draft, DraftConnection, EmailIntakeAddress, EmailIntakeAddressPayload, EmailIntakeAddressQuery, EmailIntakeAddressRotateMutation, EmailIntakeAddressType, EmailIntakeAddress_SesDomainIdentityQuery, EmailTokenUserAccountAuthMutation, EmailUnsubscribeMutation, EmailUnsubscribePayload, EmailUserAccountAuthChallengeMutation, EmailUserAccountAuthChallengeResponse, Emoji, EmojiConnection, EmojiPayload, EmojiQuery, EmojisQuery, Entity, EntityExternalLink, EntityExternalLinkConnection, EntityExternalLinkPayload, EntityExternalLinkQuery, EntityWebhookPayload, EventTrackingPayload, ExternalEntityInfo, ExternalEntityInfoGithubMetadata, ExternalEntityInfoJiraMetadata, ExternalEntitySlackMetadata, ExternalSyncService, ExternalUser, ExternalUserChildWebhookPayload, ExternalUserConnection, ExternalUserQuery, ExternalUsersQuery, Facet, FacetConnection, FacetPageSource, Favorite, FavoriteConnection, FavoritePayload, FavoriteQuery, Favorite_ChildrenQuery, FavoritesQuery, FeatureNotAccessibleLinearError, FeedSummarySchedule, FetchDataPayload, FileUploadDeletePayload, FileUploadMutation, ForbiddenLinearError, FrequencyResolutionType, FrontAttachmentPayload, GitAutomationState, GitAutomationStateConnection, GitAutomationStatePayload, GitAutomationStates, GitAutomationTargetBranch, GitAutomationTargetBranchPayload, GitHubCommitIntegrationPayload, GitHubEnterpriseServerInstallVerificationPayload, GitHubEnterpriseServerPayload, GitLabIntegrationCreatePayload, GitLabTestConnectionPayload, GitLinkKind, GithubOrgType, GoogleUserAccountAuthMutation, GraphQLClientError, GraphqlLinearError, GuidanceRuleWebhookPayload, IdentityProvider, IdentityProviderType, ImageUploadFromUrlMutation, ImageUploadFromUrlPayload, ImportFileUploadMutation, Initiative, InitiativeArchivePayload, InitiativeChildWebhookPayload, InitiativeConnection, InitiativeHistory, InitiativeHistoryConnection, InitiativeNotification, InitiativeNotificationSubscription, InitiativePayload, InitiativeQuery, InitiativeRelation, InitiativeRelationConnection, InitiativeRelationPayload, InitiativeRelationQuery, InitiativeRelationsQuery, InitiativeStatus, InitiativeTab, InitiativeToProject, InitiativeToProjectConnection, InitiativeToProjectPayload, InitiativeToProjectQuery, InitiativeToProjectsQuery, InitiativeUpdate, InitiativeUpdateArchivePayload, InitiativeUpdateChildWebhookPayload, InitiativeUpdateConnection, InitiativeUpdateHealthType, InitiativeUpdatePayload, InitiativeUpdateQuery, InitiativeUpdateReminderPayload, InitiativeUpdateWebhookPayload, InitiativeUpdate_CommentsQuery, InitiativeUpdatesQuery, InitiativeWebhookPayload, Initiative_DocumentContentQuery, Initiative_DocumentContent_AiPromptRulesQuery, Initiative_DocumentContent_WelcomeMessageQuery, Initiative_DocumentsQuery, Initiative_HistoryQuery, Initiative_InitiativeUpdatesQuery, Initiative_LinksQuery, Initiative_ProjectsQuery, Initiative_SubInitiativesQuery, InitiativesQuery, Integration, IntegrationActorWebhookPayload, IntegrationAsksConnectChannelMutation, IntegrationChildWebhookPayload, IntegrationConnection, IntegrationDiscordMutation, IntegrationFigmaMutation, IntegrationFrontMutation, IntegrationGitHubEnterpriseServerConnectMutation, IntegrationGitHubPersonalMutation, IntegrationGithubConnectMutation, IntegrationGithubImportConnectMutation, IntegrationGithubImportRefreshMutation, IntegrationGitlabConnectMutation, IntegrationGitlabTestConnectionMutation, IntegrationGongMutation, IntegrationGoogleSheetsMutation, IntegrationHasScopesPayload, IntegrationHasScopesQuery, IntegrationIntercomMutation, IntegrationJiraPersonalMutation, IntegrationLoomMutation, IntegrationPayload, IntegrationQuery, IntegrationRequestMutation, IntegrationRequestPayload, IntegrationSalesforceMutation, IntegrationSentryConnectMutation, IntegrationService, IntegrationSlackAsksMutation, IntegrationSlackCustomViewNotificationsMutation, IntegrationSlackCustomerChannelLinkMutation, IntegrationSlackImportEmojisMutation, IntegrationSlackMutation, IntegrationSlackOrAsksUpdateSlackTeamNameMutation, IntegrationSlackOrgProjectUpdatesPostMutation, IntegrationSlackPersonalMutation, IntegrationSlackPostMutation, IntegrationSlackProjectPostMutation, IntegrationSlackWorkspaceNamePayload, IntegrationTemplate, IntegrationTemplateConnection, IntegrationTemplatePayload, IntegrationTemplateQuery, IntegrationTemplatesQuery, IntegrationZendeskMutation, IntegrationsQuery, IntegrationsSettings, IntegrationsSettingsPayload, IntegrationsSettingsQuery, InternalLinearError, InvalidInputLinearError, Issue, IssueAddLabelMutation, IssueArchivePayload, IssueAssignedToYouNotificationWebhookPayload, IssueBatchPayload, IssueChildWebhookPayload, IssueCommentMentionNotificationWebhookPayload, IssueCommentReactionNotificationWebhookPayload, IssueConnection, IssueEmojiReactionNotificationWebhookPayload, IssueExternalSyncDisableMutation, IssueFigmaFileKeySearchQuery, IssueFilterSuggestionPayload, IssueFilterSuggestionQuery, IssueHistory, IssueHistoryConnection, IssueHistoryTriageRuleError, IssueHistoryTriageRuleMetadata, IssueHistoryWorkflowMetadata, IssueImport, IssueImportCheckCsvQuery, IssueImportCheckPayload, IssueImportCheckSyncQuery, IssueImportCreateAsanaMutation, IssueImportCreateClubhouseMutation, IssueImportCreateCsvJiraMutation, IssueImportCreateGithubMutation, IssueImportCreateJiraMutation, IssueImportDeletePayload, IssueImportJqlCheckPayload, IssueImportJqlCheckQuery, IssueImportPayload, IssueImportProcessMutation, IssueImportSyncCheckPayload, IssueLabel, IssueLabelChildWebhookPayload, IssueLabelConnection, IssueLabelPayload, IssueLabelQuery, IssueLabelRestoreMutation, IssueLabelRetireMutation, IssueLabelWebhookPayload, IssueLabel_ChildrenQuery, IssueLabel_IssuesQuery, IssueLabelsQuery, IssueMentionNotificationWebhookPayload, IssueNewCommentNotificationWebhookPayload, IssueNotification, IssuePayload, IssuePriorityValue, IssuePriorityValuesQuery, IssueQuery, IssueRelation, IssueRelationConnection, IssueRelationHistoryPayload, IssueRelationPayload, IssueRelationQuery, IssueRelationType, IssueRelationsQuery, IssueReminderMutation, IssueRemoveLabelMutation, IssueRepositorySuggestionsQuery, IssueSearchPayload, IssueSearchQuery, IssueSearchResult, IssueSharedAccess, IssueSharedAccessDisallowedField, IssueSharingPolicy, IssueSlaWebhookPayload, IssueStateSpan, IssueStateSpanConnection, IssueStatusChangedNotificationWebhookPayload, IssueSubscribeMutation, IssueSuggestion, IssueSuggestionConnection, IssueSuggestionMetadata, IssueSuggestionState, IssueSuggestionType, IssueTitleSuggestionFromCustomerRequestPayload, IssueTitleSuggestionFromCustomerRequestQuery, IssueUnassignedFromYouNotificationWebhookPayload, IssueUnsubscribeMutation, IssueVcsBranchSearchQuery, IssueVcsBranchSearch_AttachmentsQuery, IssueVcsBranchSearch_BotActorQuery, IssueVcsBranchSearch_ChildrenQuery, IssueVcsBranchSearch_CommentsQuery, IssueVcsBranchSearch_DocumentsQuery, IssueVcsBranchSearch_FormerAttachmentsQuery, IssueVcsBranchSearch_FormerNeedsQuery, IssueVcsBranchSearch_HistoryQuery, IssueVcsBranchSearch_InverseRelationsQuery, IssueVcsBranchSearch_LabelsQuery, IssueVcsBranchSearch_NeedsQuery, IssueVcsBranchSearch_RelationsQuery, IssueVcsBranchSearch_SharedAccessQuery, IssueVcsBranchSearch_StateHistoryQuery, IssueVcsBranchSearch_SubscribersQuery, IssueWebhookPayload, IssueWithDescriptionChildWebhookPayload, Issue_AttachmentsQuery, Issue_BotActorQuery, Issue_ChildrenQuery, Issue_CommentsQuery, Issue_DocumentsQuery, Issue_FormerAttachmentsQuery, Issue_FormerNeedsQuery, Issue_HistoryQuery, Issue_InverseRelationsQuery, Issue_LabelsQuery, Issue_NeedsQuery, Issue_RelationsQuery, Issue_SharedAccessQuery, Issue_StateHistoryQuery, Issue_SubscribersQuery, IssuesQuery, JiraFetchProjectStatusesPayload, JoinOrganizationFromOnboardingMutation, LabelNotificationSubscription, LeaveOrganizationMutation, LinearClient, LinearConnection, _generated_documents_exports as LinearDocument, LinearError, LinearErrorType, LinearGraphQLClient, LinearGraphQLError, LinearSdk, LinearWebhooks, LockTimeoutLinearError, LogoutAllSessionsMutation, LogoutMutation, LogoutOtherSessionsMutation, LogoutResponse, LogoutSessionMutation, NetworkLinearError, Node, Notification, NotificationArchiveAllMutation, NotificationArchivePayload, NotificationBatchActionPayload, NotificationCategory, NotificationCategoryPreferences, NotificationChannel, NotificationChannelPreferences, NotificationConnection, NotificationDeliveryPreferences, NotificationDeliveryPreferencesChannel, NotificationDeliveryPreferencesDay, NotificationDeliveryPreferencesSchedule, NotificationMarkReadAllMutation, NotificationMarkUnreadAllMutation, NotificationPayload, NotificationQuery, NotificationSnoozeAllMutation, NotificationSubscription, NotificationSubscriptionConnection, NotificationSubscriptionPayload, NotificationSubscriptionQuery, NotificationSubscriptionsQuery, NotificationUnsnoozeAllMutation, NotificationsQuery, OAuthAppWebhookPayload, OAuthAuthorizationWebhookPayload, OAuthClientApprovalStatus, OauthClientActorWebhookPayload, OauthClientApproval, OauthClientApprovalNotification, OauthClientChildWebhookPayload, Organization, OrganizationAcceptedOrExpiredInviteDetailsPayload, OrganizationCancelDeletePayload, OrganizationDeleteChallengeMutation, OrganizationDeletePayload, OrganizationDomain, OrganizationDomainAuthType, OrganizationExistsPayload, OrganizationExistsQuery, OrganizationInvite, OrganizationInviteConnection, OrganizationInviteFullDetailsPayload, OrganizationInvitePayload, OrganizationInviteQuery, OrganizationInviteStatus, OrganizationInvitesQuery, OrganizationIpRestriction, OrganizationMeta, OrganizationOriginWebhookPayload, OrganizationPayload, OrganizationQuery, OrganizationStartTrialForPlanMutation, OrganizationStartTrialMutation, OrganizationStartTrialPayload, Organization_IntegrationsQuery, Organization_LabelsQuery, Organization_ProjectLabelsQuery, Organization_SubscriptionQuery, Organization_TeamsQuery, Organization_TemplatesQuery, Organization_UsersQuery, OtherLinearError, OtherNotificationType, OtherNotificationWebhookPayload, PageInfo, PaginationNulls, PaginationOrderBy, PaginationSortOrder, PaidSubscription, PasskeyLoginStartResponse, PostNotification, PostType, ProductIntelligenceScope, Project, ProjectAddLabelMutation, ProjectArchivePayload, ProjectAttachment, ProjectAttachmentConnection, ProjectChildWebhookPayload, ProjectConnection, ProjectExternalSyncDisableMutation, ProjectFilterSuggestionPayload, ProjectFilterSuggestionQuery, ProjectHistory, ProjectHistoryConnection, ProjectLabel, ProjectLabelChildWebhookPayload, ProjectLabelConnection, ProjectLabelPayload, ProjectLabelQuery, ProjectLabelRestoreMutation, ProjectLabelRetireMutation, ProjectLabelWebhookPayload, ProjectLabel_ChildrenQuery, ProjectLabel_ProjectsQuery, ProjectLabelsQuery, ProjectMilestone, ProjectMilestoneChildWebhookPayload, ProjectMilestoneConnection, ProjectMilestoneMoveIssueToTeam, ProjectMilestoneMovePayload, ProjectMilestoneMoveProjectTeams, ProjectMilestonePayload, ProjectMilestoneQuery, ProjectMilestoneStatus, ProjectMilestone_DocumentContentQuery, ProjectMilestone_DocumentContent_AiPromptRulesQuery, ProjectMilestone_DocumentContent_WelcomeMessageQuery, ProjectMilestone_IssuesQuery, ProjectMilestonesQuery, ProjectNotification, ProjectNotificationSubscription, ProjectPayload, ProjectQuery, ProjectRelation, ProjectRelationConnection, ProjectRelationPayload, ProjectRelationQuery, ProjectRelationsQuery, ProjectRemoveLabelMutation, ProjectSearchPayload, ProjectSearchResult, ProjectStatus, ProjectStatusArchivePayload, ProjectStatusChildWebhookPayload, ProjectStatusConnection, ProjectStatusCountPayload, ProjectStatusPayload, ProjectStatusQuery, ProjectStatusType, ProjectStatusesQuery, ProjectTab, ProjectUpdate, ProjectUpdateArchivePayload, ProjectUpdateChildWebhookPayload, ProjectUpdateConnection, ProjectUpdateHealthType, ProjectUpdatePayload, ProjectUpdateQuery, ProjectUpdateReminderFrequency, ProjectUpdateReminderPayload, ProjectUpdateWebhookPayload, ProjectUpdate_CommentsQuery, ProjectUpdatesQuery, ProjectWebhookPayload, Project_AttachmentsQuery, Project_CommentsQuery, Project_DocumentContentQuery, Project_DocumentContent_AiPromptRulesQuery, Project_DocumentContent_WelcomeMessageQuery, Project_DocumentsQuery, Project_ExternalLinksQuery, Project_HistoryQuery, Project_InitiativeToProjectsQuery, Project_InitiativesQuery, Project_InverseRelationsQuery, Project_IssuesQuery, Project_LabelsQuery, Project_MembersQuery, Project_NeedsQuery, Project_ProjectMilestonesQuery, Project_ProjectUpdatesQuery, Project_RelationsQuery, Project_TeamsQuery, ProjectsQuery, PullRequestCheckPresentation, PullRequestMergeMethod, PullRequestNotification, PullRequestReviewTool, PullRequestStatus, PushSubscription, PushSubscriptionPayload, PushSubscriptionTestPayload, PushSubscriptionTestQuery, PushSubscriptionType, RateLimitPayload, RateLimitResultPayload, RateLimitStatusQuery, RatelimitedLinearError, Reaction, ReactionPayload, ReactionWebhookPayload, RefreshGoogleSheetsDataMutation, ReleaseArchivePayload, ReleaseChannel, ReleasePayload, ReleasePipelineArchivePayload, ReleasePipelinePayload, ReleasePipelineType, ReleaseStageArchivePayload, ReleaseStagePayload, ReleaseStageType, RepositorySuggestion, RepositorySuggestionsPayload, Request, ResendOrganizationInviteByEmailMutation, ResendOrganizationInviteMutation, Roadmap, RoadmapArchivePayload, RoadmapConnection, RoadmapPayload, RoadmapQuery, RoadmapToProject, RoadmapToProjectConnection, RoadmapToProjectPayload, RoadmapToProjectQuery, RoadmapToProjectsQuery, Roadmap_ProjectsQuery, RoadmapsQuery, RotateSecretWebhookMutation, SLADayCountType, SamlTokenUserAccountAuthMutation, SearchDocumentsQuery, SearchDocuments_ArchivePayloadQuery, SearchIssuesQuery, SearchIssues_ArchivePayloadQuery, SearchProjectsQuery, SearchProjects_ArchivePayloadQuery, SemanticSearchPayload, SemanticSearchQuery, SemanticSearchResult, SemanticSearchResultType, SendStrategy, SesDomainIdentity, SesDomainIdentityDnsRecord, SlaStatus, SlackAsksTeamSettings, SlackChannelConnectPayload, SlackChannelNameMapping, SlackChannelType, SsoUrlFromEmailQuery, SsoUrlFromEmailResponse, SuccessPayload, Summary, SummaryGenerationStatus, SuspendUserMutation, SyncedExternalThread, Team, TeamArchivePayload, TeamChildWebhookPayload, TeamConnection, TeamMembership, TeamMembershipConnection, TeamMembershipPayload, TeamMembershipQuery, TeamMembershipsQuery, TeamNotificationSubscription, TeamOriginWebhookPayload, TeamPayload, TeamQuery, TeamRetirementSubTeamHandling, TeamRoleType, TeamWithParentWebhookPayload, Team_CyclesQuery, Team_GitAutomationStatesQuery, Team_IssuesQuery, Team_LabelsQuery, Team_MembersQuery, Team_MembershipsQuery, Team_ProjectsQuery, Team_StatesQuery, Team_TemplatesQuery, Team_WebhooksQuery, TeamsQuery, Template, TemplateConnection, TemplatePayload, TemplateQuery, TemplatesForIntegrationQuery, TemplatesQuery, TimeSchedule, TimeScheduleConnection, TimeScheduleEntry, TimeSchedulePayload, TimeScheduleQuery, TimeScheduleRefreshIntegrationScheduleMutation, TimeScheduleUpsertExternalMutation, TimeSchedulesQuery, TrackAnonymousEventMutation, TriageResponsibilitiesQuery, TriageResponsibility, TriageResponsibilityAction, TriageResponsibilityConnection, TriageResponsibilityManualSelection, TriageResponsibilityPayload, TriageResponsibilityQuery, TriageResponsibility_ManualSelectionQuery, TriageRuleErrorType, UnarchiveCustomerNeedMutation, UnarchiveDocumentMutation, UnarchiveInitiativeMutation, UnarchiveInitiativeUpdateMutation, UnarchiveIssueMutation, UnarchiveNotificationMutation, UnarchiveProjectMutation, UnarchiveProjectStatusMutation, UnarchiveProjectUpdateMutation, UnarchiveRoadmapMutation, UnarchiveTeamMutation, UnknownLinearError, UnsuspendUserMutation, UpdateAgentSessionMutation, UpdateAttachmentMutation, UpdateCommentMutation, UpdateCustomViewMutation, UpdateCustomerMutation, UpdateCustomerNeedMutation, UpdateCustomerStatusMutation, UpdateCustomerTierMutation, UpdateCycleMutation, UpdateDocumentMutation, UpdateEmailIntakeAddressMutation, UpdateEntityExternalLinkMutation, UpdateFavoriteMutation, UpdateGitAutomationStateMutation, UpdateGitAutomationTargetBranchMutation, UpdateInitiativeMutation, UpdateInitiativeRelationMutation, UpdateInitiativeToProjectMutation, UpdateInitiativeUpdateMutation, UpdateIntegrationIntercomSettingsMutation, UpdateIntegrationsSettingsMutation, UpdateIssueBatchMutation, UpdateIssueImportMutation, UpdateIssueLabelMutation, UpdateIssueMutation, UpdateIssueRelationMutation, UpdateNotificationCategoryChannelSubscriptionMutation, UpdateNotificationMutation, UpdateNotificationSubscriptionMutation, UpdateOrganizationInviteMutation, UpdateOrganizationMutation, UpdateProjectLabelMutation, UpdateProjectMilestoneMutation, UpdateProjectMutation, UpdateProjectRelationMutation, UpdateProjectStatusMutation, UpdateProjectUpdateMutation, UpdateRoadmapMutation, UpdateRoadmapToProjectMutation, UpdateTeamMembershipMutation, UpdateTeamMutation, UpdateTemplateMutation, UpdateTimeScheduleMutation, UpdateTriageResponsibilityMutation, UpdateUserFlagMutation, UpdateUserMutation, UpdateUserSettingsMutation, UpdateViewPreferencesMutation, UpdateWebhookMutation, UpdateWorkflowStateMutation, UploadFile, UploadFileHeader, UploadPayload, UsageLimitExceededLinearError, User, UserActorWebhookPayload, UserAdminPayload, UserChangeRoleMutation, UserChildWebhookPayload, UserConnection, UserContextViewType, UserDiscordConnectMutation, UserExternalUserDisconnectMutation, UserFlagType, UserFlagUpdateOperation, UserLinearError, UserNotificationSubscription, UserPayload, UserQuery, UserRevokeAllSessionsMutation, UserRevokeSessionMutation, UserRoleType, UserSessionsQuery, UserSettings, UserSettingsCustomSidebarTheme, UserSettingsCustomTheme, UserSettingsFlagPayload, UserSettingsFlagsResetMutation, UserSettingsFlagsResetPayload, UserSettingsPayload, UserSettingsQuery, UserSettingsTheme, UserSettingsThemeDeviceType, UserSettingsThemeMode, UserSettingsThemePreset, UserSettings_NotificationCategoryPreferencesQuery, UserSettings_NotificationCategoryPreferences_AppsAndIntegrationsQuery, UserSettings_NotificationCategoryPreferences_AssignmentsQuery, UserSettings_NotificationCategoryPreferences_CommentsAndRepliesQuery, UserSettings_NotificationCategoryPreferences_CustomersQuery, UserSettings_NotificationCategoryPreferences_DocumentChangesQuery, UserSettings_NotificationCategoryPreferences_FeedQuery, UserSettings_NotificationCategoryPreferences_MentionsQuery, UserSettings_NotificationCategoryPreferences_PostsAndUpdatesQuery, UserSettings_NotificationCategoryPreferences_ReactionsQuery, UserSettings_NotificationCategoryPreferences_RemindersQuery, UserSettings_NotificationCategoryPreferences_ReviewsQuery, UserSettings_NotificationCategoryPreferences_StatusChangesQuery, UserSettings_NotificationCategoryPreferences_SubscriptionsQuery, UserSettings_NotificationCategoryPreferences_SystemQuery, UserSettings_NotificationCategoryPreferences_TriageQuery, UserSettings_NotificationChannelPreferencesQuery, UserSettings_NotificationDeliveryPreferencesQuery, UserSettings_NotificationDeliveryPreferences_MobileQuery, UserSettings_NotificationDeliveryPreferences_Mobile_ScheduleQuery, UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_FridayQuery, UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_MondayQuery, UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SaturdayQuery, UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SundayQuery, UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_ThursdayQuery, UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_TuesdayQuery, UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_WednesdayQuery, UserSettings_ThemeQuery, UserSettings_Theme_CustomQuery, UserSettings_Theme_Custom_SidebarQuery, UserUnlinkFromIdentityProviderMutation, UserWebhookPayload, User_AssignedIssuesQuery, User_CreatedIssuesQuery, User_DelegatedIssuesQuery, User_DraftsQuery, User_TeamMembershipsQuery, User_TeamsQuery, UsersQuery, VerifyGitHubEnterpriseServerInstallationQuery, ViewPreferences, ViewPreferencesPayload, ViewPreferencesProjectLabelGroupColumn, ViewPreferencesType, ViewPreferencesValues, ViewType, ViewerQuery, Viewer_AssignedIssuesQuery, Viewer_CreatedIssuesQuery, Viewer_DelegatedIssuesQuery, Viewer_DraftsQuery, Viewer_TeamMembershipsQuery, Viewer_TeamsQuery, Webhook, WebhookConnection, WebhookFailureEvent, WebhookPayload, WebhookQuery, WebhookRotateSecretPayload, WebhooksQuery, WelcomeMessage, WelcomeMessageNotification, WorkflowDefinition, WorkflowState, WorkflowStateArchivePayload, WorkflowStateChildWebhookPayload, WorkflowStateConnection, WorkflowStatePayload, WorkflowStateQuery, WorkflowState_IssuesQuery, WorkflowStatesQuery, WorkflowTrigger, WorkflowTriggerType, WorkflowType, parseLinearError };
|
|
94929
95081
|
//# sourceMappingURL=index.mjs.map
|