@linear/sdk 79.0.0 → 80.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-ClHDrkhS.d.mts → index-DtVBKYPy.d.mts} +3254 -4
- package/dist/index-DtVBKYPy.d.mts.map +1 -0
- package/dist/{index-CArLFN-t.d.cts → index-eT4BK9yb.d.cts} +3254 -4
- package/dist/index-eT4BK9yb.d.cts.map +1 -0
- package/dist/index.cjs +1928 -233
- package/dist/index.d.cts +321 -2
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +321 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1925 -234
- 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 +1 -1
- package/dist/index-CArLFN-t.d.cts.map +0 -1
- package/dist/index-ClHDrkhS.d.mts.map +0 -1
package/dist/index.mjs
CHANGED
|
@@ -1561,7 +1561,9 @@ var _generated_documents_exports = /* @__PURE__ */ __export({
|
|
|
1561
1561
|
AiConversationWidgetDisplayInfoFragmentDoc: () => AiConversationWidgetDisplayInfoFragmentDoc,
|
|
1562
1562
|
AiConversationWidgetName: () => AiConversationWidgetName,
|
|
1563
1563
|
AiConversationWidgetPartFragmentDoc: () => AiConversationWidgetPartFragmentDoc,
|
|
1564
|
+
AiPromptProgressStatus: () => AiPromptProgressStatus,
|
|
1564
1565
|
AiPromptRulesFragmentDoc: () => AiPromptRulesFragmentDoc,
|
|
1566
|
+
AiPromptType: () => AiPromptType,
|
|
1565
1567
|
AirbyteIntegrationConnectDocument: () => AirbyteIntegrationConnectDocument,
|
|
1566
1568
|
AppUserNotificationWebhookPayloadFragmentDoc: () => AppUserNotificationWebhookPayloadFragmentDoc,
|
|
1567
1569
|
AppUserTeamAccessChangedWebhookPayloadFragmentDoc: () => AppUserTeamAccessChangedWebhookPayloadFragmentDoc,
|
|
@@ -1829,6 +1831,7 @@ var _generated_documents_exports = /* @__PURE__ */ __export({
|
|
|
1829
1831
|
DocumentChildWebhookPayloadFragmentDoc: () => DocumentChildWebhookPayloadFragmentDoc,
|
|
1830
1832
|
DocumentConnectionFragmentDoc: () => DocumentConnectionFragmentDoc,
|
|
1831
1833
|
DocumentContentChildWebhookPayloadFragmentDoc: () => DocumentContentChildWebhookPayloadFragmentDoc,
|
|
1834
|
+
DocumentContentDraftFragmentDoc: () => DocumentContentDraftFragmentDoc,
|
|
1832
1835
|
DocumentContentFragmentDoc: () => DocumentContentFragmentDoc,
|
|
1833
1836
|
DocumentContentHistoryDocument: () => DocumentContentHistoryDocument,
|
|
1834
1837
|
DocumentContentHistoryPayloadFragmentDoc: () => DocumentContentHistoryPayloadFragmentDoc,
|
|
@@ -2363,6 +2366,7 @@ var _generated_documents_exports = /* @__PURE__ */ __export({
|
|
|
2363
2366
|
SlackChannelType: () => SlackChannelType,
|
|
2364
2367
|
SsoUrlFromEmailDocument: () => SsoUrlFromEmailDocument,
|
|
2365
2368
|
SsoUrlFromEmailResponseFragmentDoc: () => SsoUrlFromEmailResponseFragmentDoc,
|
|
2369
|
+
SubscriptionFragmentDoc: () => SubscriptionFragmentDoc,
|
|
2366
2370
|
SuccessPayloadFragmentDoc: () => SuccessPayloadFragmentDoc,
|
|
2367
2371
|
SummaryFragmentDoc: () => SummaryFragmentDoc,
|
|
2368
2372
|
SummaryGenerationStatus: () => SummaryGenerationStatus,
|
|
@@ -2749,6 +2753,32 @@ let AiConversationWidgetName = /* @__PURE__ */ function(AiConversationWidgetName
|
|
|
2749
2753
|
AiConversationWidgetName$1["EntityList"] = "EntityList";
|
|
2750
2754
|
return AiConversationWidgetName$1;
|
|
2751
2755
|
}({});
|
|
2756
|
+
/** [Internal] The status of a prompt workflow. */
|
|
2757
|
+
let AiPromptProgressStatus = /* @__PURE__ */ function(AiPromptProgressStatus$1) {
|
|
2758
|
+
AiPromptProgressStatus$1["Canceled"] = "canceled";
|
|
2759
|
+
AiPromptProgressStatus$1["Created"] = "created";
|
|
2760
|
+
AiPromptProgressStatus$1["Failed"] = "failed";
|
|
2761
|
+
AiPromptProgressStatus$1["Finished"] = "finished";
|
|
2762
|
+
AiPromptProgressStatus$1["InProgress"] = "inProgress";
|
|
2763
|
+
return AiPromptProgressStatus$1;
|
|
2764
|
+
}({});
|
|
2765
|
+
/** The type of AI prompt workflow. */
|
|
2766
|
+
let AiPromptType = /* @__PURE__ */ function(AiPromptType$1) {
|
|
2767
|
+
AiPromptType$1["AgentGuidance"] = "agentGuidance";
|
|
2768
|
+
AiPromptType$1["AiConversation"] = "aiConversation";
|
|
2769
|
+
AiPromptType$1["CodeIntelligence"] = "codeIntelligence";
|
|
2770
|
+
AiPromptType$1["GongIssueIntake"] = "gongIssueIntake";
|
|
2771
|
+
AiPromptType$1["InitiativeUpdates"] = "initiativeUpdates";
|
|
2772
|
+
AiPromptType$1["IntercomIssueIntake"] = "intercomIssueIntake";
|
|
2773
|
+
AiPromptType$1["InternalResearch"] = "internalResearch";
|
|
2774
|
+
AiPromptType$1["MicrosoftTeamsIssueIntake"] = "microsoftTeamsIssueIntake";
|
|
2775
|
+
AiPromptType$1["ProductIntelligence"] = "productIntelligence";
|
|
2776
|
+
AiPromptType$1["ProjectUpdates"] = "projectUpdates";
|
|
2777
|
+
AiPromptType$1["SlackIssueIntake"] = "slackIssueIntake";
|
|
2778
|
+
AiPromptType$1["TriageAgent"] = "triageAgent";
|
|
2779
|
+
AiPromptType$1["ZendeskIssueIntake"] = "zendeskIssueIntake";
|
|
2780
|
+
return AiPromptType$1;
|
|
2781
|
+
}({});
|
|
2752
2782
|
let AuthenticationSessionType = /* @__PURE__ */ function(AuthenticationSessionType$1) {
|
|
2753
2783
|
AuthenticationSessionType$1["Android"] = "android";
|
|
2754
2784
|
AuthenticationSessionType$1["Desktop"] = "desktop";
|
|
@@ -21857,338 +21887,1390 @@ const ProjectUpdateConnectionFragmentDoc = new TypedDocumentString(`
|
|
|
21857
21887
|
id
|
|
21858
21888
|
}
|
|
21859
21889
|
}
|
|
21860
|
-
fragment ProjectUpdate on ProjectUpdate {
|
|
21890
|
+
fragment ProjectUpdate on ProjectUpdate {
|
|
21891
|
+
__typename
|
|
21892
|
+
reactionData
|
|
21893
|
+
commentCount
|
|
21894
|
+
reactions {
|
|
21895
|
+
...Reaction
|
|
21896
|
+
}
|
|
21897
|
+
url
|
|
21898
|
+
diffMarkdown
|
|
21899
|
+
diff
|
|
21900
|
+
health
|
|
21901
|
+
updatedAt
|
|
21902
|
+
project {
|
|
21903
|
+
id
|
|
21904
|
+
}
|
|
21905
|
+
archivedAt
|
|
21906
|
+
createdAt
|
|
21907
|
+
editedAt
|
|
21908
|
+
id
|
|
21909
|
+
body
|
|
21910
|
+
slugId
|
|
21911
|
+
user {
|
|
21912
|
+
id
|
|
21913
|
+
}
|
|
21914
|
+
isDiffHidden
|
|
21915
|
+
isStale
|
|
21916
|
+
}
|
|
21917
|
+
fragment PageInfo on PageInfo {
|
|
21918
|
+
__typename
|
|
21919
|
+
startCursor
|
|
21920
|
+
endCursor
|
|
21921
|
+
hasPreviousPage
|
|
21922
|
+
hasNextPage
|
|
21923
|
+
}`, { fragmentName: "ProjectUpdateConnection" });
|
|
21924
|
+
const ProjectUpdatePayloadFragmentDoc = new TypedDocumentString(`
|
|
21925
|
+
fragment ProjectUpdatePayload on ProjectUpdatePayload {
|
|
21926
|
+
__typename
|
|
21927
|
+
lastSyncId
|
|
21928
|
+
projectUpdate {
|
|
21929
|
+
id
|
|
21930
|
+
}
|
|
21931
|
+
success
|
|
21932
|
+
}
|
|
21933
|
+
`, { fragmentName: "ProjectUpdatePayload" });
|
|
21934
|
+
const ProjectUpdateReminderPayloadFragmentDoc = new TypedDocumentString(`
|
|
21935
|
+
fragment ProjectUpdateReminderPayload on ProjectUpdateReminderPayload {
|
|
21936
|
+
__typename
|
|
21937
|
+
lastSyncId
|
|
21938
|
+
success
|
|
21939
|
+
}
|
|
21940
|
+
`, { fragmentName: "ProjectUpdateReminderPayload" });
|
|
21941
|
+
const PushSubscriptionFragmentDoc = new TypedDocumentString(`
|
|
21942
|
+
fragment PushSubscription on PushSubscription {
|
|
21943
|
+
__typename
|
|
21944
|
+
updatedAt
|
|
21945
|
+
archivedAt
|
|
21946
|
+
createdAt
|
|
21947
|
+
id
|
|
21948
|
+
}
|
|
21949
|
+
`, { fragmentName: "PushSubscription" });
|
|
21950
|
+
const PushSubscriptionPayloadFragmentDoc = new TypedDocumentString(`
|
|
21951
|
+
fragment PushSubscriptionPayload on PushSubscriptionPayload {
|
|
21952
|
+
__typename
|
|
21953
|
+
lastSyncId
|
|
21954
|
+
entity {
|
|
21955
|
+
...PushSubscription
|
|
21956
|
+
}
|
|
21957
|
+
success
|
|
21958
|
+
}
|
|
21959
|
+
fragment PushSubscription on PushSubscription {
|
|
21960
|
+
__typename
|
|
21961
|
+
updatedAt
|
|
21962
|
+
archivedAt
|
|
21963
|
+
createdAt
|
|
21964
|
+
id
|
|
21965
|
+
}`, { fragmentName: "PushSubscriptionPayload" });
|
|
21966
|
+
const PushSubscriptionTestPayloadFragmentDoc = new TypedDocumentString(`
|
|
21967
|
+
fragment PushSubscriptionTestPayload on PushSubscriptionTestPayload {
|
|
21968
|
+
__typename
|
|
21969
|
+
success
|
|
21970
|
+
}
|
|
21971
|
+
`, { fragmentName: "PushSubscriptionTestPayload" });
|
|
21972
|
+
const RateLimitResultPayloadFragmentDoc = new TypedDocumentString(`
|
|
21973
|
+
fragment RateLimitResultPayload on RateLimitResultPayload {
|
|
21974
|
+
__typename
|
|
21975
|
+
period
|
|
21976
|
+
remainingAmount
|
|
21977
|
+
requestedAmount
|
|
21978
|
+
reset
|
|
21979
|
+
allowedAmount
|
|
21980
|
+
type
|
|
21981
|
+
}
|
|
21982
|
+
`, { fragmentName: "RateLimitResultPayload" });
|
|
21983
|
+
const RateLimitPayloadFragmentDoc = new TypedDocumentString(`
|
|
21984
|
+
fragment RateLimitPayload on RateLimitPayload {
|
|
21985
|
+
__typename
|
|
21986
|
+
identifier
|
|
21987
|
+
kind
|
|
21988
|
+
limits {
|
|
21989
|
+
...RateLimitResultPayload
|
|
21990
|
+
}
|
|
21991
|
+
}
|
|
21992
|
+
fragment RateLimitResultPayload on RateLimitResultPayload {
|
|
21993
|
+
__typename
|
|
21994
|
+
period
|
|
21995
|
+
remainingAmount
|
|
21996
|
+
requestedAmount
|
|
21997
|
+
reset
|
|
21998
|
+
allowedAmount
|
|
21999
|
+
type
|
|
22000
|
+
}`, { fragmentName: "RateLimitPayload" });
|
|
22001
|
+
const ReactionPayloadFragmentDoc = new TypedDocumentString(`
|
|
22002
|
+
fragment ReactionPayload on ReactionPayload {
|
|
22003
|
+
__typename
|
|
22004
|
+
lastSyncId
|
|
22005
|
+
reaction {
|
|
22006
|
+
...Reaction
|
|
22007
|
+
}
|
|
22008
|
+
success
|
|
22009
|
+
}
|
|
22010
|
+
fragment Reaction on Reaction {
|
|
22011
|
+
__typename
|
|
22012
|
+
emoji
|
|
22013
|
+
comment {
|
|
22014
|
+
id
|
|
22015
|
+
}
|
|
22016
|
+
externalUser {
|
|
22017
|
+
id
|
|
22018
|
+
}
|
|
22019
|
+
initiativeUpdate {
|
|
22020
|
+
id
|
|
22021
|
+
}
|
|
22022
|
+
issue {
|
|
22023
|
+
id
|
|
22024
|
+
}
|
|
22025
|
+
updatedAt
|
|
22026
|
+
projectUpdate {
|
|
22027
|
+
id
|
|
22028
|
+
}
|
|
22029
|
+
archivedAt
|
|
22030
|
+
createdAt
|
|
22031
|
+
id
|
|
22032
|
+
user {
|
|
22033
|
+
id
|
|
22034
|
+
}
|
|
22035
|
+
}`, { fragmentName: "ReactionPayload" });
|
|
22036
|
+
const ReleasePayloadFragmentDoc = new TypedDocumentString(`
|
|
22037
|
+
fragment ReleasePayload on ReleasePayload {
|
|
22038
|
+
__typename
|
|
22039
|
+
lastSyncId
|
|
22040
|
+
success
|
|
22041
|
+
}
|
|
22042
|
+
`, { fragmentName: "ReleasePayload" });
|
|
22043
|
+
const ReleasePipelinePayloadFragmentDoc = new TypedDocumentString(`
|
|
22044
|
+
fragment ReleasePipelinePayload on ReleasePipelinePayload {
|
|
22045
|
+
__typename
|
|
22046
|
+
lastSyncId
|
|
22047
|
+
success
|
|
22048
|
+
}
|
|
22049
|
+
`, { fragmentName: "ReleasePipelinePayload" });
|
|
22050
|
+
const ReleaseStagePayloadFragmentDoc = new TypedDocumentString(`
|
|
22051
|
+
fragment ReleaseStagePayload on ReleaseStagePayload {
|
|
22052
|
+
__typename
|
|
22053
|
+
lastSyncId
|
|
22054
|
+
success
|
|
22055
|
+
}
|
|
22056
|
+
`, { fragmentName: "ReleaseStagePayload" });
|
|
22057
|
+
const RepositorySuggestionFragmentDoc = new TypedDocumentString(`
|
|
22058
|
+
fragment RepositorySuggestion on RepositorySuggestion {
|
|
22059
|
+
__typename
|
|
22060
|
+
confidence
|
|
22061
|
+
hostname
|
|
22062
|
+
repositoryFullName
|
|
22063
|
+
}
|
|
22064
|
+
`, { fragmentName: "RepositorySuggestion" });
|
|
22065
|
+
const RepositorySuggestionsPayloadFragmentDoc = new TypedDocumentString(`
|
|
22066
|
+
fragment RepositorySuggestionsPayload on RepositorySuggestionsPayload {
|
|
22067
|
+
__typename
|
|
22068
|
+
suggestions {
|
|
22069
|
+
...RepositorySuggestion
|
|
22070
|
+
}
|
|
22071
|
+
}
|
|
22072
|
+
fragment RepositorySuggestion on RepositorySuggestion {
|
|
22073
|
+
__typename
|
|
22074
|
+
confidence
|
|
22075
|
+
hostname
|
|
22076
|
+
repositoryFullName
|
|
22077
|
+
}`, { fragmentName: "RepositorySuggestionsPayload" });
|
|
22078
|
+
const RoadmapFragmentDoc = new TypedDocumentString(`
|
|
22079
|
+
fragment Roadmap on Roadmap {
|
|
22080
|
+
__typename
|
|
22081
|
+
url
|
|
22082
|
+
description
|
|
22083
|
+
updatedAt
|
|
22084
|
+
name
|
|
22085
|
+
color
|
|
22086
|
+
slugId
|
|
22087
|
+
sortOrder
|
|
22088
|
+
archivedAt
|
|
22089
|
+
createdAt
|
|
22090
|
+
id
|
|
22091
|
+
creator {
|
|
22092
|
+
id
|
|
22093
|
+
}
|
|
22094
|
+
owner {
|
|
22095
|
+
id
|
|
22096
|
+
}
|
|
22097
|
+
}
|
|
22098
|
+
`, { fragmentName: "Roadmap" });
|
|
22099
|
+
const RoadmapConnectionFragmentDoc = new TypedDocumentString(`
|
|
22100
|
+
fragment RoadmapConnection on RoadmapConnection {
|
|
22101
|
+
__typename
|
|
22102
|
+
nodes {
|
|
22103
|
+
...Roadmap
|
|
22104
|
+
}
|
|
22105
|
+
pageInfo {
|
|
22106
|
+
...PageInfo
|
|
22107
|
+
}
|
|
22108
|
+
}
|
|
22109
|
+
fragment Roadmap on Roadmap {
|
|
22110
|
+
__typename
|
|
22111
|
+
url
|
|
22112
|
+
description
|
|
22113
|
+
updatedAt
|
|
22114
|
+
name
|
|
22115
|
+
color
|
|
22116
|
+
slugId
|
|
22117
|
+
sortOrder
|
|
22118
|
+
archivedAt
|
|
22119
|
+
createdAt
|
|
22120
|
+
id
|
|
22121
|
+
creator {
|
|
22122
|
+
id
|
|
22123
|
+
}
|
|
22124
|
+
owner {
|
|
22125
|
+
id
|
|
22126
|
+
}
|
|
22127
|
+
}
|
|
22128
|
+
fragment PageInfo on PageInfo {
|
|
22129
|
+
__typename
|
|
22130
|
+
startCursor
|
|
22131
|
+
endCursor
|
|
22132
|
+
hasPreviousPage
|
|
22133
|
+
hasNextPage
|
|
22134
|
+
}`, { fragmentName: "RoadmapConnection" });
|
|
22135
|
+
const RoadmapPayloadFragmentDoc = new TypedDocumentString(`
|
|
22136
|
+
fragment RoadmapPayload on RoadmapPayload {
|
|
22137
|
+
__typename
|
|
22138
|
+
lastSyncId
|
|
22139
|
+
roadmap {
|
|
22140
|
+
id
|
|
22141
|
+
}
|
|
22142
|
+
success
|
|
22143
|
+
}
|
|
22144
|
+
`, { fragmentName: "RoadmapPayload" });
|
|
22145
|
+
const RoadmapToProjectFragmentDoc = new TypedDocumentString(`
|
|
22146
|
+
fragment RoadmapToProject on RoadmapToProject {
|
|
22147
|
+
__typename
|
|
22148
|
+
updatedAt
|
|
22149
|
+
project {
|
|
22150
|
+
id
|
|
22151
|
+
}
|
|
22152
|
+
roadmap {
|
|
22153
|
+
id
|
|
22154
|
+
}
|
|
22155
|
+
sortOrder
|
|
22156
|
+
archivedAt
|
|
22157
|
+
createdAt
|
|
22158
|
+
id
|
|
22159
|
+
}
|
|
22160
|
+
`, { fragmentName: "RoadmapToProject" });
|
|
22161
|
+
const RoadmapToProjectConnectionFragmentDoc = new TypedDocumentString(`
|
|
22162
|
+
fragment RoadmapToProjectConnection on RoadmapToProjectConnection {
|
|
22163
|
+
__typename
|
|
22164
|
+
nodes {
|
|
22165
|
+
...RoadmapToProject
|
|
22166
|
+
}
|
|
22167
|
+
pageInfo {
|
|
22168
|
+
...PageInfo
|
|
22169
|
+
}
|
|
22170
|
+
}
|
|
22171
|
+
fragment RoadmapToProject on RoadmapToProject {
|
|
22172
|
+
__typename
|
|
22173
|
+
updatedAt
|
|
22174
|
+
project {
|
|
22175
|
+
id
|
|
22176
|
+
}
|
|
22177
|
+
roadmap {
|
|
22178
|
+
id
|
|
22179
|
+
}
|
|
22180
|
+
sortOrder
|
|
22181
|
+
archivedAt
|
|
22182
|
+
createdAt
|
|
22183
|
+
id
|
|
22184
|
+
}
|
|
22185
|
+
fragment PageInfo on PageInfo {
|
|
22186
|
+
__typename
|
|
22187
|
+
startCursor
|
|
22188
|
+
endCursor
|
|
22189
|
+
hasPreviousPage
|
|
22190
|
+
hasNextPage
|
|
22191
|
+
}`, { fragmentName: "RoadmapToProjectConnection" });
|
|
22192
|
+
const RoadmapToProjectPayloadFragmentDoc = new TypedDocumentString(`
|
|
22193
|
+
fragment RoadmapToProjectPayload on RoadmapToProjectPayload {
|
|
22194
|
+
__typename
|
|
22195
|
+
lastSyncId
|
|
22196
|
+
roadmapToProject {
|
|
22197
|
+
id
|
|
22198
|
+
}
|
|
22199
|
+
success
|
|
22200
|
+
}
|
|
22201
|
+
`, { fragmentName: "RoadmapToProjectPayload" });
|
|
22202
|
+
const SlackChannelConnectPayloadFragmentDoc = new TypedDocumentString(`
|
|
22203
|
+
fragment SlackChannelConnectPayload on SlackChannelConnectPayload {
|
|
22204
|
+
__typename
|
|
22205
|
+
lastSyncId
|
|
22206
|
+
integration {
|
|
22207
|
+
id
|
|
22208
|
+
}
|
|
22209
|
+
nudgeToConnectMainSlackIntegration
|
|
22210
|
+
nudgeToUpdateMainSlackIntegration
|
|
22211
|
+
addBot
|
|
22212
|
+
success
|
|
22213
|
+
}
|
|
22214
|
+
`, { fragmentName: "SlackChannelConnectPayload" });
|
|
22215
|
+
const SsoUrlFromEmailResponseFragmentDoc = new TypedDocumentString(`
|
|
22216
|
+
fragment SsoUrlFromEmailResponse on SsoUrlFromEmailResponse {
|
|
22217
|
+
__typename
|
|
22218
|
+
samlSsoUrl
|
|
22219
|
+
success
|
|
22220
|
+
}
|
|
22221
|
+
`, { fragmentName: "SsoUrlFromEmailResponse" });
|
|
22222
|
+
const DocumentContentDraftFragmentDoc = new TypedDocumentString(`
|
|
22223
|
+
fragment DocumentContentDraft on DocumentContentDraft {
|
|
22224
|
+
__typename
|
|
22225
|
+
contentState
|
|
22226
|
+
updatedAt
|
|
22227
|
+
archivedAt
|
|
22228
|
+
createdAt
|
|
22229
|
+
id
|
|
22230
|
+
documentContent {
|
|
22231
|
+
...DocumentContent
|
|
22232
|
+
}
|
|
22233
|
+
documentContentId
|
|
22234
|
+
user {
|
|
22235
|
+
id
|
|
22236
|
+
}
|
|
22237
|
+
userId
|
|
22238
|
+
}
|
|
22239
|
+
fragment DocumentContent on DocumentContent {
|
|
22240
|
+
__typename
|
|
22241
|
+
aiPromptRules {
|
|
22242
|
+
...AiPromptRules
|
|
22243
|
+
}
|
|
22244
|
+
content
|
|
22245
|
+
contentState
|
|
22246
|
+
document {
|
|
22247
|
+
id
|
|
22248
|
+
}
|
|
22249
|
+
initiative {
|
|
22250
|
+
id
|
|
22251
|
+
}
|
|
22252
|
+
issue {
|
|
22253
|
+
id
|
|
22254
|
+
}
|
|
22255
|
+
updatedAt
|
|
22256
|
+
projectMilestone {
|
|
22257
|
+
id
|
|
22258
|
+
}
|
|
22259
|
+
project {
|
|
22260
|
+
id
|
|
22261
|
+
}
|
|
22262
|
+
restoredAt
|
|
22263
|
+
archivedAt
|
|
22264
|
+
createdAt
|
|
22265
|
+
id
|
|
22266
|
+
welcomeMessage {
|
|
22267
|
+
...WelcomeMessage
|
|
22268
|
+
}
|
|
22269
|
+
}
|
|
22270
|
+
fragment WelcomeMessage on WelcomeMessage {
|
|
22271
|
+
__typename
|
|
22272
|
+
updatedAt
|
|
22273
|
+
archivedAt
|
|
22274
|
+
createdAt
|
|
22275
|
+
title
|
|
22276
|
+
id
|
|
22277
|
+
updatedBy {
|
|
22278
|
+
id
|
|
22279
|
+
}
|
|
22280
|
+
enabled
|
|
22281
|
+
}
|
|
22282
|
+
fragment AiPromptRules on AiPromptRules {
|
|
22283
|
+
__typename
|
|
22284
|
+
updatedAt
|
|
22285
|
+
archivedAt
|
|
22286
|
+
createdAt
|
|
22287
|
+
id
|
|
22288
|
+
updatedBy {
|
|
22289
|
+
id
|
|
22290
|
+
}
|
|
22291
|
+
}`, { fragmentName: "DocumentContentDraft" });
|
|
22292
|
+
const SubscriptionFragmentDoc = new TypedDocumentString(`
|
|
22293
|
+
fragment Subscription on Subscription {
|
|
22294
|
+
__typename
|
|
22295
|
+
commentUnarchived {
|
|
22296
|
+
id
|
|
22297
|
+
}
|
|
22298
|
+
documentUnarchived {
|
|
22299
|
+
id
|
|
22300
|
+
}
|
|
22301
|
+
notificationUnarchived {
|
|
22302
|
+
...Notification
|
|
22303
|
+
}
|
|
22304
|
+
projectUnarchived {
|
|
22305
|
+
id
|
|
22306
|
+
}
|
|
22307
|
+
issueUnarchived {
|
|
22308
|
+
id
|
|
22309
|
+
}
|
|
22310
|
+
commentArchived {
|
|
22311
|
+
id
|
|
22312
|
+
}
|
|
22313
|
+
commentCreated {
|
|
22314
|
+
id
|
|
22315
|
+
}
|
|
22316
|
+
commentDeleted {
|
|
22317
|
+
id
|
|
22318
|
+
}
|
|
22319
|
+
commentUpdated {
|
|
22320
|
+
id
|
|
22321
|
+
}
|
|
22322
|
+
cycleArchived {
|
|
22323
|
+
id
|
|
22324
|
+
}
|
|
22325
|
+
cycleCreated {
|
|
22326
|
+
id
|
|
22327
|
+
}
|
|
22328
|
+
cycleUpdated {
|
|
22329
|
+
id
|
|
22330
|
+
}
|
|
22331
|
+
documentContentDraftCreated {
|
|
22332
|
+
...DocumentContentDraft
|
|
22333
|
+
}
|
|
22334
|
+
documentContentDraftDeleted {
|
|
22335
|
+
...DocumentContentDraft
|
|
22336
|
+
}
|
|
22337
|
+
documentContentDraftUpdated {
|
|
22338
|
+
...DocumentContentDraft
|
|
22339
|
+
}
|
|
22340
|
+
documentArchived {
|
|
22341
|
+
id
|
|
22342
|
+
}
|
|
22343
|
+
documentCreated {
|
|
22344
|
+
id
|
|
22345
|
+
}
|
|
22346
|
+
documentUpdated {
|
|
22347
|
+
id
|
|
22348
|
+
}
|
|
22349
|
+
draftCreated {
|
|
22350
|
+
...Draft
|
|
22351
|
+
}
|
|
22352
|
+
draftDeleted {
|
|
22353
|
+
...Draft
|
|
22354
|
+
}
|
|
22355
|
+
draftUpdated {
|
|
22356
|
+
...Draft
|
|
22357
|
+
}
|
|
22358
|
+
favoriteCreated {
|
|
22359
|
+
id
|
|
22360
|
+
}
|
|
22361
|
+
favoriteDeleted {
|
|
22362
|
+
id
|
|
22363
|
+
}
|
|
22364
|
+
favoriteUpdated {
|
|
22365
|
+
id
|
|
22366
|
+
}
|
|
22367
|
+
notificationArchived {
|
|
22368
|
+
...Notification
|
|
22369
|
+
}
|
|
22370
|
+
notificationCreated {
|
|
22371
|
+
...Notification
|
|
22372
|
+
}
|
|
22373
|
+
notificationDeleted {
|
|
22374
|
+
...Notification
|
|
22375
|
+
}
|
|
22376
|
+
notificationUpdated {
|
|
22377
|
+
...Notification
|
|
22378
|
+
}
|
|
22379
|
+
projectArchived {
|
|
22380
|
+
id
|
|
22381
|
+
}
|
|
22382
|
+
projectCreated {
|
|
22383
|
+
id
|
|
22384
|
+
}
|
|
22385
|
+
projectUpdated {
|
|
22386
|
+
id
|
|
22387
|
+
}
|
|
22388
|
+
projectUpdateCreated {
|
|
22389
|
+
id
|
|
22390
|
+
}
|
|
22391
|
+
projectUpdateDeleted {
|
|
22392
|
+
id
|
|
22393
|
+
}
|
|
22394
|
+
projectUpdateUpdated {
|
|
22395
|
+
id
|
|
22396
|
+
}
|
|
22397
|
+
roadmapCreated {
|
|
22398
|
+
id
|
|
22399
|
+
}
|
|
22400
|
+
roadmapDeleted {
|
|
22401
|
+
id
|
|
22402
|
+
}
|
|
22403
|
+
roadmapUpdated {
|
|
22404
|
+
id
|
|
22405
|
+
}
|
|
22406
|
+
teamCreated {
|
|
22407
|
+
id
|
|
22408
|
+
}
|
|
22409
|
+
teamDeleted {
|
|
22410
|
+
id
|
|
22411
|
+
}
|
|
22412
|
+
teamUpdated {
|
|
22413
|
+
id
|
|
22414
|
+
}
|
|
22415
|
+
teamMembershipCreated {
|
|
22416
|
+
id
|
|
22417
|
+
}
|
|
22418
|
+
teamMembershipDeleted {
|
|
22419
|
+
id
|
|
22420
|
+
}
|
|
22421
|
+
teamMembershipUpdated {
|
|
22422
|
+
id
|
|
22423
|
+
}
|
|
22424
|
+
workflowStateArchived {
|
|
22425
|
+
id
|
|
22426
|
+
}
|
|
22427
|
+
workflowStateCreated {
|
|
22428
|
+
id
|
|
22429
|
+
}
|
|
22430
|
+
workflowStateUpdated {
|
|
22431
|
+
id
|
|
22432
|
+
}
|
|
22433
|
+
agentActivityCreated {
|
|
22434
|
+
id
|
|
22435
|
+
}
|
|
22436
|
+
agentActivityUpdated {
|
|
22437
|
+
id
|
|
22438
|
+
}
|
|
22439
|
+
agentSessionCreated {
|
|
22440
|
+
id
|
|
22441
|
+
}
|
|
22442
|
+
agentSessionUpdated {
|
|
22443
|
+
id
|
|
22444
|
+
}
|
|
22445
|
+
initiativeCreated {
|
|
22446
|
+
id
|
|
22447
|
+
}
|
|
22448
|
+
initiativeDeleted {
|
|
22449
|
+
id
|
|
22450
|
+
}
|
|
22451
|
+
initiativeUpdated {
|
|
22452
|
+
id
|
|
22453
|
+
}
|
|
22454
|
+
issueHistoryCreated {
|
|
22455
|
+
...IssueHistory
|
|
22456
|
+
}
|
|
22457
|
+
issueHistoryUpdated {
|
|
22458
|
+
...IssueHistory
|
|
22459
|
+
}
|
|
22460
|
+
issueArchived {
|
|
22461
|
+
id
|
|
22462
|
+
}
|
|
22463
|
+
issueCreated {
|
|
22464
|
+
id
|
|
22465
|
+
}
|
|
22466
|
+
issueUpdated {
|
|
22467
|
+
id
|
|
22468
|
+
}
|
|
22469
|
+
issueLabelCreated {
|
|
22470
|
+
id
|
|
22471
|
+
}
|
|
22472
|
+
issueLabelDeleted {
|
|
22473
|
+
id
|
|
22474
|
+
}
|
|
22475
|
+
issueLabelUpdated {
|
|
22476
|
+
id
|
|
22477
|
+
}
|
|
22478
|
+
issueRelationCreated {
|
|
22479
|
+
id
|
|
22480
|
+
}
|
|
22481
|
+
issueRelationDeleted {
|
|
22482
|
+
id
|
|
22483
|
+
}
|
|
22484
|
+
issueRelationUpdated {
|
|
22485
|
+
id
|
|
22486
|
+
}
|
|
22487
|
+
userCreated {
|
|
22488
|
+
id
|
|
22489
|
+
}
|
|
22490
|
+
userUpdated {
|
|
22491
|
+
id
|
|
22492
|
+
}
|
|
22493
|
+
}
|
|
22494
|
+
fragment ActorBot on ActorBot {
|
|
22495
|
+
__typename
|
|
22496
|
+
avatarUrl
|
|
22497
|
+
name
|
|
22498
|
+
userDisplayName
|
|
22499
|
+
subType
|
|
22500
|
+
type
|
|
22501
|
+
id
|
|
22502
|
+
}
|
|
22503
|
+
fragment CustomerNeedNotification on CustomerNeedNotification {
|
|
22504
|
+
__typename
|
|
22505
|
+
type
|
|
22506
|
+
customerNeedId
|
|
22507
|
+
botActor {
|
|
22508
|
+
...ActorBot
|
|
22509
|
+
}
|
|
22510
|
+
category
|
|
22511
|
+
customerNeed {
|
|
22512
|
+
id
|
|
22513
|
+
}
|
|
22514
|
+
externalUserActor {
|
|
22515
|
+
id
|
|
22516
|
+
}
|
|
22517
|
+
relatedIssue {
|
|
22518
|
+
id
|
|
22519
|
+
}
|
|
22520
|
+
updatedAt
|
|
22521
|
+
relatedProject {
|
|
22522
|
+
id
|
|
22523
|
+
}
|
|
22524
|
+
emailedAt
|
|
22525
|
+
readAt
|
|
22526
|
+
unsnoozedAt
|
|
22527
|
+
archivedAt
|
|
22528
|
+
createdAt
|
|
22529
|
+
snoozedUntilAt
|
|
22530
|
+
id
|
|
22531
|
+
actor {
|
|
22532
|
+
id
|
|
22533
|
+
}
|
|
22534
|
+
user {
|
|
22535
|
+
id
|
|
22536
|
+
}
|
|
22537
|
+
}
|
|
22538
|
+
fragment CustomerNotification on CustomerNotification {
|
|
22539
|
+
__typename
|
|
22540
|
+
type
|
|
22541
|
+
customerId
|
|
22542
|
+
botActor {
|
|
22543
|
+
...ActorBot
|
|
22544
|
+
}
|
|
22545
|
+
category
|
|
22546
|
+
customer {
|
|
22547
|
+
id
|
|
22548
|
+
}
|
|
22549
|
+
externalUserActor {
|
|
22550
|
+
id
|
|
22551
|
+
}
|
|
22552
|
+
updatedAt
|
|
22553
|
+
emailedAt
|
|
22554
|
+
readAt
|
|
22555
|
+
unsnoozedAt
|
|
22556
|
+
archivedAt
|
|
22557
|
+
createdAt
|
|
22558
|
+
snoozedUntilAt
|
|
22559
|
+
id
|
|
22560
|
+
actor {
|
|
22561
|
+
id
|
|
22562
|
+
}
|
|
22563
|
+
user {
|
|
22564
|
+
id
|
|
22565
|
+
}
|
|
22566
|
+
}
|
|
22567
|
+
fragment DocumentContent on DocumentContent {
|
|
22568
|
+
__typename
|
|
22569
|
+
aiPromptRules {
|
|
22570
|
+
...AiPromptRules
|
|
22571
|
+
}
|
|
22572
|
+
content
|
|
22573
|
+
contentState
|
|
22574
|
+
document {
|
|
22575
|
+
id
|
|
22576
|
+
}
|
|
22577
|
+
initiative {
|
|
22578
|
+
id
|
|
22579
|
+
}
|
|
22580
|
+
issue {
|
|
22581
|
+
id
|
|
22582
|
+
}
|
|
22583
|
+
updatedAt
|
|
22584
|
+
projectMilestone {
|
|
22585
|
+
id
|
|
22586
|
+
}
|
|
22587
|
+
project {
|
|
22588
|
+
id
|
|
22589
|
+
}
|
|
22590
|
+
restoredAt
|
|
22591
|
+
archivedAt
|
|
22592
|
+
createdAt
|
|
22593
|
+
id
|
|
22594
|
+
welcomeMessage {
|
|
22595
|
+
...WelcomeMessage
|
|
22596
|
+
}
|
|
22597
|
+
}
|
|
22598
|
+
fragment DocumentNotification on DocumentNotification {
|
|
22599
|
+
__typename
|
|
22600
|
+
reactionEmoji
|
|
22601
|
+
type
|
|
22602
|
+
commentId
|
|
22603
|
+
documentId
|
|
22604
|
+
parentCommentId
|
|
22605
|
+
botActor {
|
|
22606
|
+
...ActorBot
|
|
22607
|
+
}
|
|
22608
|
+
category
|
|
22609
|
+
externalUserActor {
|
|
22610
|
+
id
|
|
22611
|
+
}
|
|
22612
|
+
updatedAt
|
|
22613
|
+
emailedAt
|
|
22614
|
+
readAt
|
|
22615
|
+
unsnoozedAt
|
|
22616
|
+
archivedAt
|
|
22617
|
+
createdAt
|
|
22618
|
+
snoozedUntilAt
|
|
22619
|
+
id
|
|
22620
|
+
actor {
|
|
22621
|
+
id
|
|
22622
|
+
}
|
|
22623
|
+
user {
|
|
22624
|
+
id
|
|
22625
|
+
}
|
|
22626
|
+
}
|
|
22627
|
+
fragment DocumentContentDraft on DocumentContentDraft {
|
|
22628
|
+
__typename
|
|
22629
|
+
contentState
|
|
22630
|
+
updatedAt
|
|
22631
|
+
archivedAt
|
|
22632
|
+
createdAt
|
|
22633
|
+
id
|
|
22634
|
+
documentContent {
|
|
22635
|
+
...DocumentContent
|
|
22636
|
+
}
|
|
22637
|
+
documentContentId
|
|
22638
|
+
user {
|
|
22639
|
+
id
|
|
22640
|
+
}
|
|
22641
|
+
userId
|
|
22642
|
+
}
|
|
22643
|
+
fragment Draft on Draft {
|
|
22644
|
+
__typename
|
|
22645
|
+
data
|
|
22646
|
+
parentComment {
|
|
22647
|
+
id
|
|
22648
|
+
}
|
|
22649
|
+
customerNeed {
|
|
22650
|
+
id
|
|
22651
|
+
}
|
|
22652
|
+
initiative {
|
|
22653
|
+
id
|
|
22654
|
+
}
|
|
22655
|
+
initiativeUpdate {
|
|
22656
|
+
id
|
|
22657
|
+
}
|
|
22658
|
+
issue {
|
|
22659
|
+
id
|
|
22660
|
+
}
|
|
22661
|
+
updatedAt
|
|
22662
|
+
project {
|
|
22663
|
+
id
|
|
22664
|
+
}
|
|
22665
|
+
projectUpdate {
|
|
22666
|
+
id
|
|
22667
|
+
}
|
|
22668
|
+
team {
|
|
22669
|
+
id
|
|
22670
|
+
}
|
|
22671
|
+
bodyData
|
|
22672
|
+
archivedAt
|
|
22673
|
+
createdAt
|
|
22674
|
+
id
|
|
22675
|
+
user {
|
|
22676
|
+
id
|
|
22677
|
+
}
|
|
22678
|
+
isAutogenerated
|
|
22679
|
+
}
|
|
22680
|
+
fragment Notification on Notification {
|
|
22681
|
+
__typename
|
|
22682
|
+
type
|
|
22683
|
+
botActor {
|
|
22684
|
+
...ActorBot
|
|
22685
|
+
}
|
|
22686
|
+
category
|
|
22687
|
+
externalUserActor {
|
|
22688
|
+
id
|
|
22689
|
+
}
|
|
22690
|
+
updatedAt
|
|
22691
|
+
emailedAt
|
|
22692
|
+
readAt
|
|
22693
|
+
unsnoozedAt
|
|
22694
|
+
archivedAt
|
|
22695
|
+
createdAt
|
|
22696
|
+
snoozedUntilAt
|
|
22697
|
+
id
|
|
22698
|
+
actor {
|
|
22699
|
+
id
|
|
22700
|
+
}
|
|
22701
|
+
user {
|
|
22702
|
+
id
|
|
22703
|
+
}
|
|
22704
|
+
... on CustomerNeedNotification {
|
|
22705
|
+
...CustomerNeedNotification
|
|
22706
|
+
}
|
|
22707
|
+
... on CustomerNotification {
|
|
22708
|
+
...CustomerNotification
|
|
22709
|
+
}
|
|
22710
|
+
... on DocumentNotification {
|
|
22711
|
+
...DocumentNotification
|
|
22712
|
+
}
|
|
22713
|
+
... on InitiativeNotification {
|
|
22714
|
+
...InitiativeNotification
|
|
22715
|
+
}
|
|
22716
|
+
... on IssueNotification {
|
|
22717
|
+
...IssueNotification
|
|
22718
|
+
}
|
|
22719
|
+
... on OauthClientApprovalNotification {
|
|
22720
|
+
...OauthClientApprovalNotification
|
|
22721
|
+
}
|
|
22722
|
+
... on PostNotification {
|
|
22723
|
+
...PostNotification
|
|
22724
|
+
}
|
|
22725
|
+
... on ProjectNotification {
|
|
22726
|
+
...ProjectNotification
|
|
22727
|
+
}
|
|
22728
|
+
... on PullRequestNotification {
|
|
22729
|
+
...PullRequestNotification
|
|
22730
|
+
}
|
|
22731
|
+
... on WelcomeMessageNotification {
|
|
22732
|
+
...WelcomeMessageNotification
|
|
22733
|
+
}
|
|
22734
|
+
}
|
|
22735
|
+
fragment PostNotification on PostNotification {
|
|
22736
|
+
__typename
|
|
22737
|
+
reactionEmoji
|
|
22738
|
+
type
|
|
22739
|
+
commentId
|
|
22740
|
+
parentCommentId
|
|
22741
|
+
postId
|
|
22742
|
+
botActor {
|
|
22743
|
+
...ActorBot
|
|
22744
|
+
}
|
|
22745
|
+
category
|
|
22746
|
+
externalUserActor {
|
|
22747
|
+
id
|
|
22748
|
+
}
|
|
22749
|
+
updatedAt
|
|
22750
|
+
emailedAt
|
|
22751
|
+
readAt
|
|
22752
|
+
unsnoozedAt
|
|
22753
|
+
archivedAt
|
|
22754
|
+
createdAt
|
|
22755
|
+
snoozedUntilAt
|
|
22756
|
+
id
|
|
22757
|
+
actor {
|
|
22758
|
+
id
|
|
22759
|
+
}
|
|
22760
|
+
user {
|
|
22761
|
+
id
|
|
22762
|
+
}
|
|
22763
|
+
}
|
|
22764
|
+
fragment ProjectNotification on ProjectNotification {
|
|
22765
|
+
__typename
|
|
22766
|
+
reactionEmoji
|
|
22767
|
+
type
|
|
22768
|
+
commentId
|
|
22769
|
+
parentCommentId
|
|
22770
|
+
projectId
|
|
22771
|
+
projectMilestoneId
|
|
22772
|
+
projectUpdateId
|
|
22773
|
+
botActor {
|
|
22774
|
+
...ActorBot
|
|
22775
|
+
}
|
|
22776
|
+
category
|
|
22777
|
+
comment {
|
|
22778
|
+
id
|
|
22779
|
+
}
|
|
22780
|
+
document {
|
|
22781
|
+
id
|
|
22782
|
+
}
|
|
22783
|
+
externalUserActor {
|
|
22784
|
+
id
|
|
22785
|
+
}
|
|
22786
|
+
updatedAt
|
|
22787
|
+
parentComment {
|
|
22788
|
+
id
|
|
22789
|
+
}
|
|
22790
|
+
project {
|
|
22791
|
+
id
|
|
22792
|
+
}
|
|
22793
|
+
projectUpdate {
|
|
22794
|
+
id
|
|
22795
|
+
}
|
|
22796
|
+
emailedAt
|
|
22797
|
+
readAt
|
|
22798
|
+
unsnoozedAt
|
|
22799
|
+
archivedAt
|
|
22800
|
+
createdAt
|
|
22801
|
+
snoozedUntilAt
|
|
22802
|
+
id
|
|
22803
|
+
actor {
|
|
22804
|
+
id
|
|
22805
|
+
}
|
|
22806
|
+
user {
|
|
22807
|
+
id
|
|
22808
|
+
}
|
|
22809
|
+
}
|
|
22810
|
+
fragment PullRequestNotification on PullRequestNotification {
|
|
22811
|
+
__typename
|
|
22812
|
+
type
|
|
22813
|
+
pullRequestCommentId
|
|
22814
|
+
pullRequestId
|
|
22815
|
+
botActor {
|
|
22816
|
+
...ActorBot
|
|
22817
|
+
}
|
|
22818
|
+
category
|
|
22819
|
+
externalUserActor {
|
|
22820
|
+
id
|
|
22821
|
+
}
|
|
22822
|
+
updatedAt
|
|
22823
|
+
emailedAt
|
|
22824
|
+
readAt
|
|
22825
|
+
unsnoozedAt
|
|
22826
|
+
archivedAt
|
|
22827
|
+
createdAt
|
|
22828
|
+
snoozedUntilAt
|
|
22829
|
+
id
|
|
22830
|
+
actor {
|
|
22831
|
+
id
|
|
22832
|
+
}
|
|
22833
|
+
user {
|
|
22834
|
+
id
|
|
22835
|
+
}
|
|
22836
|
+
}
|
|
22837
|
+
fragment IssueHistory on IssueHistory {
|
|
22838
|
+
__typename
|
|
22839
|
+
triageResponsibilityAutoAssigned
|
|
22840
|
+
relationChanges {
|
|
22841
|
+
...IssueRelationHistoryPayload
|
|
22842
|
+
}
|
|
22843
|
+
addedLabelIds
|
|
22844
|
+
removedLabelIds
|
|
22845
|
+
toSlaBreachesAt
|
|
22846
|
+
fromSlaBreachesAt
|
|
22847
|
+
actor {
|
|
22848
|
+
id
|
|
22849
|
+
}
|
|
22850
|
+
descriptionUpdatedBy {
|
|
22851
|
+
...User
|
|
22852
|
+
}
|
|
22853
|
+
actors {
|
|
22854
|
+
...User
|
|
22855
|
+
}
|
|
22856
|
+
fromDelegate {
|
|
22857
|
+
id
|
|
22858
|
+
}
|
|
22859
|
+
toDelegate {
|
|
22860
|
+
id
|
|
22861
|
+
}
|
|
22862
|
+
botActor {
|
|
22863
|
+
...ActorBot
|
|
22864
|
+
}
|
|
22865
|
+
fromCycle {
|
|
22866
|
+
id
|
|
22867
|
+
}
|
|
22868
|
+
toCycle {
|
|
22869
|
+
id
|
|
22870
|
+
}
|
|
22871
|
+
attachmentId
|
|
22872
|
+
customerNeedId
|
|
22873
|
+
toCycleId
|
|
22874
|
+
toParentId
|
|
22875
|
+
toConvertedProjectId
|
|
22876
|
+
toProjectId
|
|
22877
|
+
toStateId
|
|
22878
|
+
fromCycleId
|
|
22879
|
+
fromParentId
|
|
22880
|
+
fromProjectId
|
|
22881
|
+
fromStateId
|
|
22882
|
+
fromTeamId
|
|
22883
|
+
toTeamId
|
|
22884
|
+
fromAssigneeId
|
|
22885
|
+
toAssigneeId
|
|
22886
|
+
actorId
|
|
22887
|
+
issueImport {
|
|
22888
|
+
...IssueImport
|
|
22889
|
+
}
|
|
22890
|
+
issue {
|
|
22891
|
+
id
|
|
22892
|
+
}
|
|
22893
|
+
addedLabels {
|
|
22894
|
+
...IssueLabel
|
|
22895
|
+
}
|
|
22896
|
+
removedLabels {
|
|
22897
|
+
...IssueLabel
|
|
22898
|
+
}
|
|
22899
|
+
updatedAt
|
|
22900
|
+
attachment {
|
|
22901
|
+
id
|
|
22902
|
+
}
|
|
22903
|
+
toConvertedProject {
|
|
22904
|
+
id
|
|
22905
|
+
}
|
|
22906
|
+
fromParent {
|
|
22907
|
+
id
|
|
22908
|
+
}
|
|
22909
|
+
toParent {
|
|
22910
|
+
id
|
|
22911
|
+
}
|
|
22912
|
+
fromProjectMilestone {
|
|
22913
|
+
id
|
|
22914
|
+
}
|
|
22915
|
+
toProjectMilestone {
|
|
22916
|
+
id
|
|
22917
|
+
}
|
|
22918
|
+
fromProject {
|
|
22919
|
+
id
|
|
22920
|
+
}
|
|
22921
|
+
toProject {
|
|
22922
|
+
id
|
|
22923
|
+
}
|
|
22924
|
+
fromState {
|
|
22925
|
+
id
|
|
22926
|
+
}
|
|
22927
|
+
toState {
|
|
22928
|
+
id
|
|
22929
|
+
}
|
|
22930
|
+
fromTeam {
|
|
22931
|
+
id
|
|
22932
|
+
}
|
|
22933
|
+
toTeam {
|
|
22934
|
+
id
|
|
22935
|
+
}
|
|
22936
|
+
triageResponsibilityTeam {
|
|
22937
|
+
id
|
|
22938
|
+
}
|
|
22939
|
+
archivedAt
|
|
22940
|
+
createdAt
|
|
22941
|
+
toSlaStartedAt
|
|
22942
|
+
fromSlaStartedAt
|
|
22943
|
+
toSlaType
|
|
22944
|
+
fromSlaType
|
|
22945
|
+
id
|
|
22946
|
+
toAssignee {
|
|
22947
|
+
id
|
|
22948
|
+
}
|
|
22949
|
+
fromAssignee {
|
|
22950
|
+
id
|
|
22951
|
+
}
|
|
22952
|
+
triageResponsibilityNotifiedUsers {
|
|
22953
|
+
...User
|
|
22954
|
+
}
|
|
22955
|
+
fromDueDate
|
|
22956
|
+
toDueDate
|
|
22957
|
+
fromEstimate
|
|
22958
|
+
toEstimate
|
|
22959
|
+
fromPriority
|
|
22960
|
+
toPriority
|
|
22961
|
+
fromTitle
|
|
22962
|
+
toTitle
|
|
22963
|
+
fromSlaBreached
|
|
22964
|
+
toSlaBreached
|
|
22965
|
+
archived
|
|
22966
|
+
autoArchived
|
|
22967
|
+
autoClosed
|
|
22968
|
+
trashed
|
|
22969
|
+
updatedDescription
|
|
22970
|
+
}
|
|
22971
|
+
fragment User on User {
|
|
22972
|
+
__typename
|
|
22973
|
+
statusUntilAt
|
|
22974
|
+
description
|
|
22975
|
+
avatarUrl
|
|
22976
|
+
createdIssueCount
|
|
22977
|
+
disableReason
|
|
22978
|
+
avatarBackgroundColor
|
|
22979
|
+
statusEmoji
|
|
22980
|
+
initials
|
|
22981
|
+
statusLabel
|
|
22982
|
+
updatedAt
|
|
22983
|
+
lastSeen
|
|
22984
|
+
timezone
|
|
22985
|
+
archivedAt
|
|
22986
|
+
createdAt
|
|
22987
|
+
id
|
|
22988
|
+
gitHubUserId
|
|
22989
|
+
displayName
|
|
22990
|
+
email
|
|
22991
|
+
name
|
|
22992
|
+
url
|
|
22993
|
+
active
|
|
22994
|
+
guest
|
|
22995
|
+
app
|
|
22996
|
+
admin
|
|
22997
|
+
owner
|
|
22998
|
+
isAssignable
|
|
22999
|
+
isMentionable
|
|
23000
|
+
isMe
|
|
23001
|
+
supportsAgentSessions
|
|
23002
|
+
canAccessAnyPublicTeam
|
|
23003
|
+
calendarHash
|
|
23004
|
+
inviteHash
|
|
23005
|
+
}
|
|
23006
|
+
fragment WelcomeMessage on WelcomeMessage {
|
|
23007
|
+
__typename
|
|
23008
|
+
updatedAt
|
|
23009
|
+
archivedAt
|
|
23010
|
+
createdAt
|
|
23011
|
+
title
|
|
23012
|
+
id
|
|
23013
|
+
updatedBy {
|
|
23014
|
+
id
|
|
23015
|
+
}
|
|
23016
|
+
enabled
|
|
23017
|
+
}
|
|
23018
|
+
fragment WelcomeMessageNotification on WelcomeMessageNotification {
|
|
21861
23019
|
__typename
|
|
21862
|
-
|
|
21863
|
-
|
|
21864
|
-
|
|
21865
|
-
...
|
|
23020
|
+
type
|
|
23021
|
+
welcomeMessageId
|
|
23022
|
+
botActor {
|
|
23023
|
+
...ActorBot
|
|
21866
23024
|
}
|
|
21867
|
-
|
|
21868
|
-
|
|
21869
|
-
diff
|
|
21870
|
-
health
|
|
21871
|
-
updatedAt
|
|
21872
|
-
project {
|
|
23025
|
+
category
|
|
23026
|
+
externalUserActor {
|
|
21873
23027
|
id
|
|
21874
23028
|
}
|
|
23029
|
+
updatedAt
|
|
23030
|
+
emailedAt
|
|
23031
|
+
readAt
|
|
23032
|
+
unsnoozedAt
|
|
21875
23033
|
archivedAt
|
|
21876
23034
|
createdAt
|
|
21877
|
-
|
|
23035
|
+
snoozedUntilAt
|
|
21878
23036
|
id
|
|
21879
|
-
|
|
21880
|
-
slugId
|
|
21881
|
-
user {
|
|
23037
|
+
actor {
|
|
21882
23038
|
id
|
|
21883
23039
|
}
|
|
21884
|
-
|
|
21885
|
-
isStale
|
|
21886
|
-
}
|
|
21887
|
-
fragment PageInfo on PageInfo {
|
|
21888
|
-
__typename
|
|
21889
|
-
startCursor
|
|
21890
|
-
endCursor
|
|
21891
|
-
hasPreviousPage
|
|
21892
|
-
hasNextPage
|
|
21893
|
-
}`, { fragmentName: "ProjectUpdateConnection" });
|
|
21894
|
-
const ProjectUpdatePayloadFragmentDoc = new TypedDocumentString(`
|
|
21895
|
-
fragment ProjectUpdatePayload on ProjectUpdatePayload {
|
|
21896
|
-
__typename
|
|
21897
|
-
lastSyncId
|
|
21898
|
-
projectUpdate {
|
|
23040
|
+
user {
|
|
21899
23041
|
id
|
|
21900
23042
|
}
|
|
21901
|
-
success
|
|
21902
|
-
}
|
|
21903
|
-
`, { fragmentName: "ProjectUpdatePayload" });
|
|
21904
|
-
const ProjectUpdateReminderPayloadFragmentDoc = new TypedDocumentString(`
|
|
21905
|
-
fragment ProjectUpdateReminderPayload on ProjectUpdateReminderPayload {
|
|
21906
|
-
__typename
|
|
21907
|
-
lastSyncId
|
|
21908
|
-
success
|
|
21909
23043
|
}
|
|
21910
|
-
|
|
21911
|
-
const PushSubscriptionFragmentDoc = new TypedDocumentString(`
|
|
21912
|
-
fragment PushSubscription on PushSubscription {
|
|
23044
|
+
fragment AiPromptRules on AiPromptRules {
|
|
21913
23045
|
__typename
|
|
21914
23046
|
updatedAt
|
|
21915
23047
|
archivedAt
|
|
21916
23048
|
createdAt
|
|
21917
23049
|
id
|
|
21918
|
-
|
|
21919
|
-
|
|
21920
|
-
const PushSubscriptionPayloadFragmentDoc = new TypedDocumentString(`
|
|
21921
|
-
fragment PushSubscriptionPayload on PushSubscriptionPayload {
|
|
21922
|
-
__typename
|
|
21923
|
-
lastSyncId
|
|
21924
|
-
entity {
|
|
21925
|
-
...PushSubscription
|
|
23050
|
+
updatedBy {
|
|
23051
|
+
id
|
|
21926
23052
|
}
|
|
21927
|
-
success
|
|
21928
23053
|
}
|
|
21929
|
-
|
|
23054
|
+
fragment IssueImport on IssueImport {
|
|
21930
23055
|
__typename
|
|
23056
|
+
progress
|
|
23057
|
+
errorMetadata
|
|
23058
|
+
csvFileUrl
|
|
23059
|
+
serviceMetadata
|
|
23060
|
+
teamName
|
|
23061
|
+
mapping
|
|
23062
|
+
displayName
|
|
23063
|
+
creatorId
|
|
21931
23064
|
updatedAt
|
|
23065
|
+
service
|
|
23066
|
+
status
|
|
21932
23067
|
archivedAt
|
|
21933
23068
|
createdAt
|
|
21934
23069
|
id
|
|
21935
|
-
|
|
21936
|
-
const PushSubscriptionTestPayloadFragmentDoc = new TypedDocumentString(`
|
|
21937
|
-
fragment PushSubscriptionTestPayload on PushSubscriptionTestPayload {
|
|
21938
|
-
__typename
|
|
21939
|
-
success
|
|
21940
|
-
}
|
|
21941
|
-
`, { fragmentName: "PushSubscriptionTestPayload" });
|
|
21942
|
-
const RateLimitResultPayloadFragmentDoc = new TypedDocumentString(`
|
|
21943
|
-
fragment RateLimitResultPayload on RateLimitResultPayload {
|
|
21944
|
-
__typename
|
|
21945
|
-
period
|
|
21946
|
-
remainingAmount
|
|
21947
|
-
requestedAmount
|
|
21948
|
-
reset
|
|
21949
|
-
allowedAmount
|
|
21950
|
-
type
|
|
21951
|
-
}
|
|
21952
|
-
`, { fragmentName: "RateLimitResultPayload" });
|
|
21953
|
-
const RateLimitPayloadFragmentDoc = new TypedDocumentString(`
|
|
21954
|
-
fragment RateLimitPayload on RateLimitPayload {
|
|
21955
|
-
__typename
|
|
21956
|
-
identifier
|
|
21957
|
-
kind
|
|
21958
|
-
limits {
|
|
21959
|
-
...RateLimitResultPayload
|
|
21960
|
-
}
|
|
23070
|
+
error
|
|
21961
23071
|
}
|
|
21962
|
-
|
|
23072
|
+
fragment InitiativeNotification on InitiativeNotification {
|
|
21963
23073
|
__typename
|
|
21964
|
-
|
|
21965
|
-
remainingAmount
|
|
21966
|
-
requestedAmount
|
|
21967
|
-
reset
|
|
21968
|
-
allowedAmount
|
|
23074
|
+
reactionEmoji
|
|
21969
23075
|
type
|
|
21970
|
-
|
|
21971
|
-
|
|
21972
|
-
|
|
21973
|
-
|
|
21974
|
-
|
|
21975
|
-
|
|
21976
|
-
...Reaction
|
|
23076
|
+
commentId
|
|
23077
|
+
initiativeId
|
|
23078
|
+
initiativeUpdateId
|
|
23079
|
+
parentCommentId
|
|
23080
|
+
botActor {
|
|
23081
|
+
...ActorBot
|
|
21977
23082
|
}
|
|
21978
|
-
|
|
21979
|
-
}
|
|
21980
|
-
fragment Reaction on Reaction {
|
|
21981
|
-
__typename
|
|
21982
|
-
emoji
|
|
23083
|
+
category
|
|
21983
23084
|
comment {
|
|
21984
23085
|
id
|
|
21985
23086
|
}
|
|
21986
|
-
|
|
23087
|
+
document {
|
|
21987
23088
|
id
|
|
21988
23089
|
}
|
|
21989
|
-
|
|
23090
|
+
externalUserActor {
|
|
21990
23091
|
id
|
|
21991
23092
|
}
|
|
21992
|
-
|
|
23093
|
+
initiative {
|
|
23094
|
+
id
|
|
23095
|
+
}
|
|
23096
|
+
initiativeUpdate {
|
|
21993
23097
|
id
|
|
21994
23098
|
}
|
|
21995
23099
|
updatedAt
|
|
21996
|
-
|
|
23100
|
+
parentComment {
|
|
21997
23101
|
id
|
|
21998
23102
|
}
|
|
23103
|
+
emailedAt
|
|
23104
|
+
readAt
|
|
23105
|
+
unsnoozedAt
|
|
21999
23106
|
archivedAt
|
|
22000
23107
|
createdAt
|
|
23108
|
+
snoozedUntilAt
|
|
22001
23109
|
id
|
|
23110
|
+
actor {
|
|
23111
|
+
id
|
|
23112
|
+
}
|
|
22002
23113
|
user {
|
|
22003
23114
|
id
|
|
22004
23115
|
}
|
|
22005
|
-
}`, { fragmentName: "ReactionPayload" });
|
|
22006
|
-
const ReleasePayloadFragmentDoc = new TypedDocumentString(`
|
|
22007
|
-
fragment ReleasePayload on ReleasePayload {
|
|
22008
|
-
__typename
|
|
22009
|
-
lastSyncId
|
|
22010
|
-
success
|
|
22011
|
-
}
|
|
22012
|
-
`, { fragmentName: "ReleasePayload" });
|
|
22013
|
-
const ReleasePipelinePayloadFragmentDoc = new TypedDocumentString(`
|
|
22014
|
-
fragment ReleasePipelinePayload on ReleasePipelinePayload {
|
|
22015
|
-
__typename
|
|
22016
|
-
lastSyncId
|
|
22017
|
-
success
|
|
22018
|
-
}
|
|
22019
|
-
`, { fragmentName: "ReleasePipelinePayload" });
|
|
22020
|
-
const ReleaseStagePayloadFragmentDoc = new TypedDocumentString(`
|
|
22021
|
-
fragment ReleaseStagePayload on ReleaseStagePayload {
|
|
22022
|
-
__typename
|
|
22023
|
-
lastSyncId
|
|
22024
|
-
success
|
|
22025
|
-
}
|
|
22026
|
-
`, { fragmentName: "ReleaseStagePayload" });
|
|
22027
|
-
const RepositorySuggestionFragmentDoc = new TypedDocumentString(`
|
|
22028
|
-
fragment RepositorySuggestion on RepositorySuggestion {
|
|
22029
|
-
__typename
|
|
22030
|
-
confidence
|
|
22031
|
-
hostname
|
|
22032
|
-
repositoryFullName
|
|
22033
23116
|
}
|
|
22034
|
-
|
|
22035
|
-
const RepositorySuggestionsPayloadFragmentDoc = new TypedDocumentString(`
|
|
22036
|
-
fragment RepositorySuggestionsPayload on RepositorySuggestionsPayload {
|
|
23117
|
+
fragment IssueNotification on IssueNotification {
|
|
22037
23118
|
__typename
|
|
22038
|
-
|
|
22039
|
-
|
|
23119
|
+
reactionEmoji
|
|
23120
|
+
type
|
|
23121
|
+
commentId
|
|
23122
|
+
issueId
|
|
23123
|
+
parentCommentId
|
|
23124
|
+
botActor {
|
|
23125
|
+
...ActorBot
|
|
23126
|
+
}
|
|
23127
|
+
category
|
|
23128
|
+
comment {
|
|
23129
|
+
id
|
|
23130
|
+
}
|
|
23131
|
+
externalUserActor {
|
|
23132
|
+
id
|
|
23133
|
+
}
|
|
23134
|
+
issue {
|
|
23135
|
+
id
|
|
22040
23136
|
}
|
|
22041
|
-
}
|
|
22042
|
-
fragment RepositorySuggestion on RepositorySuggestion {
|
|
22043
|
-
__typename
|
|
22044
|
-
confidence
|
|
22045
|
-
hostname
|
|
22046
|
-
repositoryFullName
|
|
22047
|
-
}`, { fragmentName: "RepositorySuggestionsPayload" });
|
|
22048
|
-
const RoadmapFragmentDoc = new TypedDocumentString(`
|
|
22049
|
-
fragment Roadmap on Roadmap {
|
|
22050
|
-
__typename
|
|
22051
|
-
url
|
|
22052
|
-
description
|
|
22053
23137
|
updatedAt
|
|
22054
|
-
|
|
22055
|
-
|
|
22056
|
-
|
|
22057
|
-
|
|
23138
|
+
parentComment {
|
|
23139
|
+
id
|
|
23140
|
+
}
|
|
23141
|
+
subscriptions {
|
|
23142
|
+
...NotificationSubscription
|
|
23143
|
+
}
|
|
23144
|
+
team {
|
|
23145
|
+
id
|
|
23146
|
+
}
|
|
23147
|
+
emailedAt
|
|
23148
|
+
readAt
|
|
23149
|
+
unsnoozedAt
|
|
22058
23150
|
archivedAt
|
|
22059
23151
|
createdAt
|
|
23152
|
+
snoozedUntilAt
|
|
22060
23153
|
id
|
|
22061
|
-
|
|
23154
|
+
actor {
|
|
22062
23155
|
id
|
|
22063
23156
|
}
|
|
22064
|
-
|
|
23157
|
+
user {
|
|
22065
23158
|
id
|
|
22066
23159
|
}
|
|
22067
23160
|
}
|
|
22068
|
-
|
|
22069
|
-
const RoadmapConnectionFragmentDoc = new TypedDocumentString(`
|
|
22070
|
-
fragment RoadmapConnection on RoadmapConnection {
|
|
23161
|
+
fragment OauthClientApprovalNotification on OauthClientApprovalNotification {
|
|
22071
23162
|
__typename
|
|
22072
|
-
|
|
22073
|
-
|
|
23163
|
+
type
|
|
23164
|
+
oauthClientApprovalId
|
|
23165
|
+
oauthClientApproval {
|
|
23166
|
+
...OauthClientApproval
|
|
22074
23167
|
}
|
|
22075
|
-
|
|
22076
|
-
...
|
|
23168
|
+
botActor {
|
|
23169
|
+
...ActorBot
|
|
23170
|
+
}
|
|
23171
|
+
category
|
|
23172
|
+
externalUserActor {
|
|
23173
|
+
id
|
|
22077
23174
|
}
|
|
22078
|
-
}
|
|
22079
|
-
fragment Roadmap on Roadmap {
|
|
22080
|
-
__typename
|
|
22081
|
-
url
|
|
22082
|
-
description
|
|
22083
23175
|
updatedAt
|
|
22084
|
-
|
|
22085
|
-
|
|
22086
|
-
|
|
22087
|
-
sortOrder
|
|
23176
|
+
emailedAt
|
|
23177
|
+
readAt
|
|
23178
|
+
unsnoozedAt
|
|
22088
23179
|
archivedAt
|
|
22089
23180
|
createdAt
|
|
23181
|
+
snoozedUntilAt
|
|
22090
23182
|
id
|
|
22091
|
-
|
|
23183
|
+
actor {
|
|
22092
23184
|
id
|
|
22093
23185
|
}
|
|
22094
|
-
|
|
23186
|
+
user {
|
|
22095
23187
|
id
|
|
22096
23188
|
}
|
|
22097
23189
|
}
|
|
22098
|
-
fragment
|
|
22099
|
-
__typename
|
|
22100
|
-
startCursor
|
|
22101
|
-
endCursor
|
|
22102
|
-
hasPreviousPage
|
|
22103
|
-
hasNextPage
|
|
22104
|
-
}`, { fragmentName: "RoadmapConnection" });
|
|
22105
|
-
const RoadmapPayloadFragmentDoc = new TypedDocumentString(`
|
|
22106
|
-
fragment RoadmapPayload on RoadmapPayload {
|
|
23190
|
+
fragment IssueRelationHistoryPayload on IssueRelationHistoryPayload {
|
|
22107
23191
|
__typename
|
|
22108
|
-
|
|
22109
|
-
|
|
22110
|
-
id
|
|
22111
|
-
}
|
|
22112
|
-
success
|
|
23192
|
+
identifier
|
|
23193
|
+
type
|
|
22113
23194
|
}
|
|
22114
|
-
|
|
22115
|
-
const RoadmapToProjectFragmentDoc = new TypedDocumentString(`
|
|
22116
|
-
fragment RoadmapToProject on RoadmapToProject {
|
|
23195
|
+
fragment IssueLabel on IssueLabel {
|
|
22117
23196
|
__typename
|
|
23197
|
+
lastAppliedAt
|
|
23198
|
+
color
|
|
23199
|
+
description
|
|
23200
|
+
name
|
|
22118
23201
|
updatedAt
|
|
22119
|
-
|
|
23202
|
+
inheritedFrom {
|
|
22120
23203
|
id
|
|
22121
23204
|
}
|
|
22122
|
-
|
|
23205
|
+
parent {
|
|
23206
|
+
id
|
|
23207
|
+
}
|
|
23208
|
+
team {
|
|
22123
23209
|
id
|
|
22124
23210
|
}
|
|
22125
|
-
sortOrder
|
|
22126
23211
|
archivedAt
|
|
22127
23212
|
createdAt
|
|
22128
23213
|
id
|
|
22129
|
-
|
|
22130
|
-
|
|
22131
|
-
const RoadmapToProjectConnectionFragmentDoc = new TypedDocumentString(`
|
|
22132
|
-
fragment RoadmapToProjectConnection on RoadmapToProjectConnection {
|
|
22133
|
-
__typename
|
|
22134
|
-
nodes {
|
|
22135
|
-
...RoadmapToProject
|
|
23214
|
+
creator {
|
|
23215
|
+
id
|
|
22136
23216
|
}
|
|
22137
|
-
|
|
22138
|
-
|
|
23217
|
+
retiredBy {
|
|
23218
|
+
id
|
|
22139
23219
|
}
|
|
23220
|
+
isGroup
|
|
22140
23221
|
}
|
|
22141
|
-
|
|
23222
|
+
fragment NotificationSubscription on NotificationSubscription {
|
|
22142
23223
|
__typename
|
|
22143
|
-
|
|
23224
|
+
customView {
|
|
23225
|
+
id
|
|
23226
|
+
}
|
|
23227
|
+
cycle {
|
|
23228
|
+
id
|
|
23229
|
+
}
|
|
23230
|
+
initiative {
|
|
23231
|
+
id
|
|
23232
|
+
}
|
|
23233
|
+
label {
|
|
23234
|
+
id
|
|
23235
|
+
}
|
|
22144
23236
|
project {
|
|
22145
23237
|
id
|
|
22146
23238
|
}
|
|
22147
|
-
|
|
23239
|
+
customer {
|
|
23240
|
+
id
|
|
23241
|
+
}
|
|
23242
|
+
updatedAt
|
|
23243
|
+
team {
|
|
22148
23244
|
id
|
|
22149
23245
|
}
|
|
22150
|
-
sortOrder
|
|
22151
23246
|
archivedAt
|
|
22152
23247
|
createdAt
|
|
23248
|
+
userContextViewType
|
|
23249
|
+
contextViewType
|
|
22153
23250
|
id
|
|
22154
|
-
|
|
22155
|
-
fragment PageInfo on PageInfo {
|
|
22156
|
-
__typename
|
|
22157
|
-
startCursor
|
|
22158
|
-
endCursor
|
|
22159
|
-
hasPreviousPage
|
|
22160
|
-
hasNextPage
|
|
22161
|
-
}`, { fragmentName: "RoadmapToProjectConnection" });
|
|
22162
|
-
const RoadmapToProjectPayloadFragmentDoc = new TypedDocumentString(`
|
|
22163
|
-
fragment RoadmapToProjectPayload on RoadmapToProjectPayload {
|
|
22164
|
-
__typename
|
|
22165
|
-
lastSyncId
|
|
22166
|
-
roadmapToProject {
|
|
23251
|
+
subscriber {
|
|
22167
23252
|
id
|
|
22168
23253
|
}
|
|
22169
|
-
|
|
22170
|
-
}
|
|
22171
|
-
`, { fragmentName: "RoadmapToProjectPayload" });
|
|
22172
|
-
const SlackChannelConnectPayloadFragmentDoc = new TypedDocumentString(`
|
|
22173
|
-
fragment SlackChannelConnectPayload on SlackChannelConnectPayload {
|
|
22174
|
-
__typename
|
|
22175
|
-
lastSyncId
|
|
22176
|
-
integration {
|
|
23254
|
+
user {
|
|
22177
23255
|
id
|
|
22178
23256
|
}
|
|
22179
|
-
|
|
22180
|
-
nudgeToUpdateMainSlackIntegration
|
|
22181
|
-
addBot
|
|
22182
|
-
success
|
|
23257
|
+
active
|
|
22183
23258
|
}
|
|
22184
|
-
|
|
22185
|
-
const SsoUrlFromEmailResponseFragmentDoc = new TypedDocumentString(`
|
|
22186
|
-
fragment SsoUrlFromEmailResponse on SsoUrlFromEmailResponse {
|
|
23259
|
+
fragment OauthClientApproval on OauthClientApproval {
|
|
22187
23260
|
__typename
|
|
22188
|
-
|
|
22189
|
-
|
|
22190
|
-
|
|
22191
|
-
|
|
23261
|
+
newlyRequestedScopes
|
|
23262
|
+
updatedAt
|
|
23263
|
+
requesterId
|
|
23264
|
+
responderId
|
|
23265
|
+
requestReason
|
|
23266
|
+
denyReason
|
|
23267
|
+
scopes
|
|
23268
|
+
status
|
|
23269
|
+
archivedAt
|
|
23270
|
+
createdAt
|
|
23271
|
+
id
|
|
23272
|
+
oauthClientId
|
|
23273
|
+
}`, { fragmentName: "Subscription" });
|
|
22192
23274
|
const SuccessPayloadFragmentDoc = new TypedDocumentString(`
|
|
22193
23275
|
fragment SuccessPayload on SuccessPayload {
|
|
22194
23276
|
__typename
|
|
@@ -62848,6 +63930,46 @@ var DocumentContentChildWebhookPayload = class {
|
|
|
62848
63930
|
project;
|
|
62849
63931
|
};
|
|
62850
63932
|
/**
|
|
63933
|
+
* A draft revision of document content, pending user review.
|
|
63934
|
+
*
|
|
63935
|
+
* @param request - function to call the graphql client
|
|
63936
|
+
* @param data - L.DocumentContentDraftFragment response data
|
|
63937
|
+
*/
|
|
63938
|
+
var DocumentContentDraft = class extends Request {
|
|
63939
|
+
_user;
|
|
63940
|
+
constructor(request, data) {
|
|
63941
|
+
super(request);
|
|
63942
|
+
this.archivedAt = parseDate(data.archivedAt) ?? void 0;
|
|
63943
|
+
this.contentState = data.contentState;
|
|
63944
|
+
this.createdAt = parseDate(data.createdAt) ?? /* @__PURE__ */ new Date();
|
|
63945
|
+
this.documentContentId = data.documentContentId;
|
|
63946
|
+
this.id = data.id;
|
|
63947
|
+
this.updatedAt = parseDate(data.updatedAt) ?? /* @__PURE__ */ new Date();
|
|
63948
|
+
this.userId = data.userId;
|
|
63949
|
+
this.documentContent = new DocumentContent(request, data.documentContent);
|
|
63950
|
+
this._user = data.user;
|
|
63951
|
+
}
|
|
63952
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
|
63953
|
+
archivedAt;
|
|
63954
|
+
/** The draft content state as a base64 encoded Yjs state update. */
|
|
63955
|
+
contentState;
|
|
63956
|
+
/** The time at which the entity was created. */
|
|
63957
|
+
createdAt;
|
|
63958
|
+
documentContentId;
|
|
63959
|
+
/** The unique identifier of the entity. */
|
|
63960
|
+
id;
|
|
63961
|
+
/**
|
|
63962
|
+
* The last time at which the entity was meaningfully updated. This is the same as the creation time if the entity hasn't
|
|
63963
|
+
* been updated after creation.
|
|
63964
|
+
*/
|
|
63965
|
+
updatedAt;
|
|
63966
|
+
userId;
|
|
63967
|
+
documentContent;
|
|
63968
|
+
get user() {
|
|
63969
|
+
return new UserQuery(this._request).fetch(this._user.id);
|
|
63970
|
+
}
|
|
63971
|
+
};
|
|
63972
|
+
/**
|
|
62851
63973
|
* DocumentContentHistoryPayload model
|
|
62852
63974
|
*
|
|
62853
63975
|
* @param request - function to call the graphql client
|
|
@@ -74095,6 +75217,575 @@ var SsoUrlFromEmailResponse = class extends Request {
|
|
|
74095
75217
|
success;
|
|
74096
75218
|
};
|
|
74097
75219
|
/**
|
|
75220
|
+
* Subscription model
|
|
75221
|
+
*
|
|
75222
|
+
* @param request - function to call the graphql client
|
|
75223
|
+
* @param data - L.SubscriptionFragment response data
|
|
75224
|
+
*/
|
|
75225
|
+
var Subscription = class extends Request {
|
|
75226
|
+
_agentActivityCreated;
|
|
75227
|
+
_agentActivityUpdated;
|
|
75228
|
+
_agentSessionCreated;
|
|
75229
|
+
_agentSessionUpdated;
|
|
75230
|
+
_commentArchived;
|
|
75231
|
+
_commentCreated;
|
|
75232
|
+
_commentDeleted;
|
|
75233
|
+
_commentUnarchived;
|
|
75234
|
+
_commentUpdated;
|
|
75235
|
+
_cycleArchived;
|
|
75236
|
+
_cycleCreated;
|
|
75237
|
+
_cycleUpdated;
|
|
75238
|
+
_documentArchived;
|
|
75239
|
+
_documentCreated;
|
|
75240
|
+
_documentUnarchived;
|
|
75241
|
+
_documentUpdated;
|
|
75242
|
+
_favoriteCreated;
|
|
75243
|
+
_favoriteDeleted;
|
|
75244
|
+
_favoriteUpdated;
|
|
75245
|
+
_initiativeCreated;
|
|
75246
|
+
_initiativeDeleted;
|
|
75247
|
+
_initiativeUpdated;
|
|
75248
|
+
_issueArchived;
|
|
75249
|
+
_issueCreated;
|
|
75250
|
+
_issueLabelCreated;
|
|
75251
|
+
_issueLabelDeleted;
|
|
75252
|
+
_issueLabelUpdated;
|
|
75253
|
+
_issueRelationCreated;
|
|
75254
|
+
_issueRelationDeleted;
|
|
75255
|
+
_issueRelationUpdated;
|
|
75256
|
+
_issueUnarchived;
|
|
75257
|
+
_issueUpdated;
|
|
75258
|
+
_projectArchived;
|
|
75259
|
+
_projectCreated;
|
|
75260
|
+
_projectUnarchived;
|
|
75261
|
+
_projectUpdateCreated;
|
|
75262
|
+
_projectUpdateDeleted;
|
|
75263
|
+
_projectUpdateUpdated;
|
|
75264
|
+
_projectUpdated;
|
|
75265
|
+
_roadmapCreated;
|
|
75266
|
+
_roadmapDeleted;
|
|
75267
|
+
_roadmapUpdated;
|
|
75268
|
+
_teamCreated;
|
|
75269
|
+
_teamDeleted;
|
|
75270
|
+
_teamMembershipCreated;
|
|
75271
|
+
_teamMembershipDeleted;
|
|
75272
|
+
_teamMembershipUpdated;
|
|
75273
|
+
_teamUpdated;
|
|
75274
|
+
_userCreated;
|
|
75275
|
+
_userUpdated;
|
|
75276
|
+
_workflowStateArchived;
|
|
75277
|
+
_workflowStateCreated;
|
|
75278
|
+
_workflowStateUpdated;
|
|
75279
|
+
constructor(request, data) {
|
|
75280
|
+
super(request);
|
|
75281
|
+
this.documentContentDraftCreated = new DocumentContentDraft(request, data.documentContentDraftCreated);
|
|
75282
|
+
this.documentContentDraftDeleted = new DocumentContentDraft(request, data.documentContentDraftDeleted);
|
|
75283
|
+
this.documentContentDraftUpdated = new DocumentContentDraft(request, data.documentContentDraftUpdated);
|
|
75284
|
+
this.draftCreated = new Draft(request, data.draftCreated);
|
|
75285
|
+
this.draftDeleted = new Draft(request, data.draftDeleted);
|
|
75286
|
+
this.draftUpdated = new Draft(request, data.draftUpdated);
|
|
75287
|
+
this.issueHistoryCreated = new IssueHistory(request, data.issueHistoryCreated);
|
|
75288
|
+
this.issueHistoryUpdated = new IssueHistory(request, data.issueHistoryUpdated);
|
|
75289
|
+
this._agentActivityCreated = data.agentActivityCreated;
|
|
75290
|
+
this._agentActivityUpdated = data.agentActivityUpdated;
|
|
75291
|
+
this._agentSessionCreated = data.agentSessionCreated;
|
|
75292
|
+
this._agentSessionUpdated = data.agentSessionUpdated;
|
|
75293
|
+
this._commentArchived = data.commentArchived;
|
|
75294
|
+
this._commentCreated = data.commentCreated;
|
|
75295
|
+
this._commentDeleted = data.commentDeleted;
|
|
75296
|
+
this._commentUnarchived = data.commentUnarchived;
|
|
75297
|
+
this._commentUpdated = data.commentUpdated;
|
|
75298
|
+
this._cycleArchived = data.cycleArchived;
|
|
75299
|
+
this._cycleCreated = data.cycleCreated;
|
|
75300
|
+
this._cycleUpdated = data.cycleUpdated;
|
|
75301
|
+
this._documentArchived = data.documentArchived;
|
|
75302
|
+
this._documentCreated = data.documentCreated;
|
|
75303
|
+
this._documentUnarchived = data.documentUnarchived;
|
|
75304
|
+
this._documentUpdated = data.documentUpdated;
|
|
75305
|
+
this._favoriteCreated = data.favoriteCreated;
|
|
75306
|
+
this._favoriteDeleted = data.favoriteDeleted;
|
|
75307
|
+
this._favoriteUpdated = data.favoriteUpdated;
|
|
75308
|
+
this._initiativeCreated = data.initiativeCreated;
|
|
75309
|
+
this._initiativeDeleted = data.initiativeDeleted;
|
|
75310
|
+
this._initiativeUpdated = data.initiativeUpdated;
|
|
75311
|
+
this._issueArchived = data.issueArchived;
|
|
75312
|
+
this._issueCreated = data.issueCreated;
|
|
75313
|
+
this._issueLabelCreated = data.issueLabelCreated;
|
|
75314
|
+
this._issueLabelDeleted = data.issueLabelDeleted;
|
|
75315
|
+
this._issueLabelUpdated = data.issueLabelUpdated;
|
|
75316
|
+
this._issueRelationCreated = data.issueRelationCreated;
|
|
75317
|
+
this._issueRelationDeleted = data.issueRelationDeleted;
|
|
75318
|
+
this._issueRelationUpdated = data.issueRelationUpdated;
|
|
75319
|
+
this._issueUnarchived = data.issueUnarchived;
|
|
75320
|
+
this._issueUpdated = data.issueUpdated;
|
|
75321
|
+
this._projectArchived = data.projectArchived;
|
|
75322
|
+
this._projectCreated = data.projectCreated;
|
|
75323
|
+
this._projectUnarchived = data.projectUnarchived;
|
|
75324
|
+
this._projectUpdateCreated = data.projectUpdateCreated;
|
|
75325
|
+
this._projectUpdateDeleted = data.projectUpdateDeleted;
|
|
75326
|
+
this._projectUpdateUpdated = data.projectUpdateUpdated;
|
|
75327
|
+
this._projectUpdated = data.projectUpdated;
|
|
75328
|
+
this._roadmapCreated = data.roadmapCreated;
|
|
75329
|
+
this._roadmapDeleted = data.roadmapDeleted;
|
|
75330
|
+
this._roadmapUpdated = data.roadmapUpdated;
|
|
75331
|
+
this._teamCreated = data.teamCreated;
|
|
75332
|
+
this._teamDeleted = data.teamDeleted;
|
|
75333
|
+
this._teamMembershipCreated = data.teamMembershipCreated;
|
|
75334
|
+
this._teamMembershipDeleted = data.teamMembershipDeleted;
|
|
75335
|
+
this._teamMembershipUpdated = data.teamMembershipUpdated;
|
|
75336
|
+
this._teamUpdated = data.teamUpdated;
|
|
75337
|
+
this._userCreated = data.userCreated;
|
|
75338
|
+
this._userUpdated = data.userUpdated;
|
|
75339
|
+
this._workflowStateArchived = data.workflowStateArchived;
|
|
75340
|
+
this._workflowStateCreated = data.workflowStateCreated;
|
|
75341
|
+
this._workflowStateUpdated = data.workflowStateUpdated;
|
|
75342
|
+
}
|
|
75343
|
+
/** Triggered when a document content draft is created */
|
|
75344
|
+
documentContentDraftCreated;
|
|
75345
|
+
/** Triggered when a document content draft is deleted */
|
|
75346
|
+
documentContentDraftDeleted;
|
|
75347
|
+
/** Triggered when a document content draft is updated */
|
|
75348
|
+
documentContentDraftUpdated;
|
|
75349
|
+
/** Triggered when a draft is created */
|
|
75350
|
+
draftCreated;
|
|
75351
|
+
/** Triggered when a draft is deleted */
|
|
75352
|
+
draftDeleted;
|
|
75353
|
+
/** Triggered when a draft is updated */
|
|
75354
|
+
draftUpdated;
|
|
75355
|
+
/** Triggered when an issue history is created */
|
|
75356
|
+
issueHistoryCreated;
|
|
75357
|
+
/** Triggered when an issue history is updated */
|
|
75358
|
+
issueHistoryUpdated;
|
|
75359
|
+
/** Triggered when an agent activity is created */
|
|
75360
|
+
get agentActivityCreated() {
|
|
75361
|
+
return new AgentActivityQuery(this._request).fetch(this._agentActivityCreated.id);
|
|
75362
|
+
}
|
|
75363
|
+
/** The ID of triggered when an agent activity is created */
|
|
75364
|
+
get agentActivityCreatedId() {
|
|
75365
|
+
return this._agentActivityCreated?.id;
|
|
75366
|
+
}
|
|
75367
|
+
/** Triggered when an agent activity is updated */
|
|
75368
|
+
get agentActivityUpdated() {
|
|
75369
|
+
return new AgentActivityQuery(this._request).fetch(this._agentActivityUpdated.id);
|
|
75370
|
+
}
|
|
75371
|
+
/** The ID of triggered when an agent activity is updated */
|
|
75372
|
+
get agentActivityUpdatedId() {
|
|
75373
|
+
return this._agentActivityUpdated?.id;
|
|
75374
|
+
}
|
|
75375
|
+
/** Triggered when an agent session is created */
|
|
75376
|
+
get agentSessionCreated() {
|
|
75377
|
+
return new AgentSessionQuery(this._request).fetch(this._agentSessionCreated.id);
|
|
75378
|
+
}
|
|
75379
|
+
/** The ID of triggered when an agent session is created */
|
|
75380
|
+
get agentSessionCreatedId() {
|
|
75381
|
+
return this._agentSessionCreated?.id;
|
|
75382
|
+
}
|
|
75383
|
+
/** Triggered when an agent session is updated */
|
|
75384
|
+
get agentSessionUpdated() {
|
|
75385
|
+
return new AgentSessionQuery(this._request).fetch(this._agentSessionUpdated.id);
|
|
75386
|
+
}
|
|
75387
|
+
/** The ID of triggered when an agent session is updated */
|
|
75388
|
+
get agentSessionUpdatedId() {
|
|
75389
|
+
return this._agentSessionUpdated?.id;
|
|
75390
|
+
}
|
|
75391
|
+
/** Triggered when a comment is archived */
|
|
75392
|
+
get commentArchived() {
|
|
75393
|
+
return new CommentQuery(this._request).fetch({ id: this._commentArchived.id });
|
|
75394
|
+
}
|
|
75395
|
+
/** The ID of triggered when a comment is archived */
|
|
75396
|
+
get commentArchivedId() {
|
|
75397
|
+
return this._commentArchived?.id;
|
|
75398
|
+
}
|
|
75399
|
+
/** Triggered when a comment is created */
|
|
75400
|
+
get commentCreated() {
|
|
75401
|
+
return new CommentQuery(this._request).fetch({ id: this._commentCreated.id });
|
|
75402
|
+
}
|
|
75403
|
+
/** The ID of triggered when a comment is created */
|
|
75404
|
+
get commentCreatedId() {
|
|
75405
|
+
return this._commentCreated?.id;
|
|
75406
|
+
}
|
|
75407
|
+
/** Triggered when a comment is deleted */
|
|
75408
|
+
get commentDeleted() {
|
|
75409
|
+
return new CommentQuery(this._request).fetch({ id: this._commentDeleted.id });
|
|
75410
|
+
}
|
|
75411
|
+
/** The ID of triggered when a comment is deleted */
|
|
75412
|
+
get commentDeletedId() {
|
|
75413
|
+
return this._commentDeleted?.id;
|
|
75414
|
+
}
|
|
75415
|
+
/** Triggered when a a comment is unarchived */
|
|
75416
|
+
get commentUnarchived() {
|
|
75417
|
+
return new CommentQuery(this._request).fetch({ id: this._commentUnarchived.id });
|
|
75418
|
+
}
|
|
75419
|
+
/** The ID of triggered when a a comment is unarchived */
|
|
75420
|
+
get commentUnarchivedId() {
|
|
75421
|
+
return this._commentUnarchived?.id;
|
|
75422
|
+
}
|
|
75423
|
+
/** Triggered when a comment is updated */
|
|
75424
|
+
get commentUpdated() {
|
|
75425
|
+
return new CommentQuery(this._request).fetch({ id: this._commentUpdated.id });
|
|
75426
|
+
}
|
|
75427
|
+
/** The ID of triggered when a comment is updated */
|
|
75428
|
+
get commentUpdatedId() {
|
|
75429
|
+
return this._commentUpdated?.id;
|
|
75430
|
+
}
|
|
75431
|
+
/** Triggered when a cycle is archived */
|
|
75432
|
+
get cycleArchived() {
|
|
75433
|
+
return new CycleQuery(this._request).fetch(this._cycleArchived.id);
|
|
75434
|
+
}
|
|
75435
|
+
/** The ID of triggered when a cycle is archived */
|
|
75436
|
+
get cycleArchivedId() {
|
|
75437
|
+
return this._cycleArchived?.id;
|
|
75438
|
+
}
|
|
75439
|
+
/** Triggered when a cycle is created */
|
|
75440
|
+
get cycleCreated() {
|
|
75441
|
+
return new CycleQuery(this._request).fetch(this._cycleCreated.id);
|
|
75442
|
+
}
|
|
75443
|
+
/** The ID of triggered when a cycle is created */
|
|
75444
|
+
get cycleCreatedId() {
|
|
75445
|
+
return this._cycleCreated?.id;
|
|
75446
|
+
}
|
|
75447
|
+
/** Triggered when a cycle is updated */
|
|
75448
|
+
get cycleUpdated() {
|
|
75449
|
+
return new CycleQuery(this._request).fetch(this._cycleUpdated.id);
|
|
75450
|
+
}
|
|
75451
|
+
/** The ID of triggered when a cycle is updated */
|
|
75452
|
+
get cycleUpdatedId() {
|
|
75453
|
+
return this._cycleUpdated?.id;
|
|
75454
|
+
}
|
|
75455
|
+
/** Triggered when a document is archived */
|
|
75456
|
+
get documentArchived() {
|
|
75457
|
+
return new DocumentQuery(this._request).fetch(this._documentArchived.id);
|
|
75458
|
+
}
|
|
75459
|
+
/** The ID of triggered when a document is archived */
|
|
75460
|
+
get documentArchivedId() {
|
|
75461
|
+
return this._documentArchived?.id;
|
|
75462
|
+
}
|
|
75463
|
+
/** Triggered when a document is created */
|
|
75464
|
+
get documentCreated() {
|
|
75465
|
+
return new DocumentQuery(this._request).fetch(this._documentCreated.id);
|
|
75466
|
+
}
|
|
75467
|
+
/** The ID of triggered when a document is created */
|
|
75468
|
+
get documentCreatedId() {
|
|
75469
|
+
return this._documentCreated?.id;
|
|
75470
|
+
}
|
|
75471
|
+
/** Triggered when a a document is unarchived */
|
|
75472
|
+
get documentUnarchived() {
|
|
75473
|
+
return new DocumentQuery(this._request).fetch(this._documentUnarchived.id);
|
|
75474
|
+
}
|
|
75475
|
+
/** The ID of triggered when a a document is unarchived */
|
|
75476
|
+
get documentUnarchivedId() {
|
|
75477
|
+
return this._documentUnarchived?.id;
|
|
75478
|
+
}
|
|
75479
|
+
/** Triggered when a document is updated */
|
|
75480
|
+
get documentUpdated() {
|
|
75481
|
+
return new DocumentQuery(this._request).fetch(this._documentUpdated.id);
|
|
75482
|
+
}
|
|
75483
|
+
/** The ID of triggered when a document is updated */
|
|
75484
|
+
get documentUpdatedId() {
|
|
75485
|
+
return this._documentUpdated?.id;
|
|
75486
|
+
}
|
|
75487
|
+
/** Triggered when a favorite is created */
|
|
75488
|
+
get favoriteCreated() {
|
|
75489
|
+
return new FavoriteQuery(this._request).fetch(this._favoriteCreated.id);
|
|
75490
|
+
}
|
|
75491
|
+
/** The ID of triggered when a favorite is created */
|
|
75492
|
+
get favoriteCreatedId() {
|
|
75493
|
+
return this._favoriteCreated?.id;
|
|
75494
|
+
}
|
|
75495
|
+
/** Triggered when a favorite is deleted */
|
|
75496
|
+
get favoriteDeleted() {
|
|
75497
|
+
return new FavoriteQuery(this._request).fetch(this._favoriteDeleted.id);
|
|
75498
|
+
}
|
|
75499
|
+
/** The ID of triggered when a favorite is deleted */
|
|
75500
|
+
get favoriteDeletedId() {
|
|
75501
|
+
return this._favoriteDeleted?.id;
|
|
75502
|
+
}
|
|
75503
|
+
/** Triggered when a favorite is updated */
|
|
75504
|
+
get favoriteUpdated() {
|
|
75505
|
+
return new FavoriteQuery(this._request).fetch(this._favoriteUpdated.id);
|
|
75506
|
+
}
|
|
75507
|
+
/** The ID of triggered when a favorite is updated */
|
|
75508
|
+
get favoriteUpdatedId() {
|
|
75509
|
+
return this._favoriteUpdated?.id;
|
|
75510
|
+
}
|
|
75511
|
+
/** Triggered when an initiative is created */
|
|
75512
|
+
get initiativeCreated() {
|
|
75513
|
+
return new InitiativeQuery(this._request).fetch(this._initiativeCreated.id);
|
|
75514
|
+
}
|
|
75515
|
+
/** The ID of triggered when an initiative is created */
|
|
75516
|
+
get initiativeCreatedId() {
|
|
75517
|
+
return this._initiativeCreated?.id;
|
|
75518
|
+
}
|
|
75519
|
+
/** Triggered when an initiative is deleted */
|
|
75520
|
+
get initiativeDeleted() {
|
|
75521
|
+
return new InitiativeQuery(this._request).fetch(this._initiativeDeleted.id);
|
|
75522
|
+
}
|
|
75523
|
+
/** The ID of triggered when an initiative is deleted */
|
|
75524
|
+
get initiativeDeletedId() {
|
|
75525
|
+
return this._initiativeDeleted?.id;
|
|
75526
|
+
}
|
|
75527
|
+
/** Triggered when an initiative is updated */
|
|
75528
|
+
get initiativeUpdated() {
|
|
75529
|
+
return new InitiativeQuery(this._request).fetch(this._initiativeUpdated.id);
|
|
75530
|
+
}
|
|
75531
|
+
/** The ID of triggered when an initiative is updated */
|
|
75532
|
+
get initiativeUpdatedId() {
|
|
75533
|
+
return this._initiativeUpdated?.id;
|
|
75534
|
+
}
|
|
75535
|
+
/** Triggered when an issue is archived */
|
|
75536
|
+
get issueArchived() {
|
|
75537
|
+
return new IssueQuery(this._request).fetch(this._issueArchived.id);
|
|
75538
|
+
}
|
|
75539
|
+
/** The ID of triggered when an issue is archived */
|
|
75540
|
+
get issueArchivedId() {
|
|
75541
|
+
return this._issueArchived?.id;
|
|
75542
|
+
}
|
|
75543
|
+
/** Triggered when an issue is created */
|
|
75544
|
+
get issueCreated() {
|
|
75545
|
+
return new IssueQuery(this._request).fetch(this._issueCreated.id);
|
|
75546
|
+
}
|
|
75547
|
+
/** The ID of triggered when an issue is created */
|
|
75548
|
+
get issueCreatedId() {
|
|
75549
|
+
return this._issueCreated?.id;
|
|
75550
|
+
}
|
|
75551
|
+
/** Triggered when an issue label is created */
|
|
75552
|
+
get issueLabelCreated() {
|
|
75553
|
+
return new IssueLabelQuery(this._request).fetch(this._issueLabelCreated.id);
|
|
75554
|
+
}
|
|
75555
|
+
/** The ID of triggered when an issue label is created */
|
|
75556
|
+
get issueLabelCreatedId() {
|
|
75557
|
+
return this._issueLabelCreated?.id;
|
|
75558
|
+
}
|
|
75559
|
+
/** Triggered when an issue label is deleted */
|
|
75560
|
+
get issueLabelDeleted() {
|
|
75561
|
+
return new IssueLabelQuery(this._request).fetch(this._issueLabelDeleted.id);
|
|
75562
|
+
}
|
|
75563
|
+
/** The ID of triggered when an issue label is deleted */
|
|
75564
|
+
get issueLabelDeletedId() {
|
|
75565
|
+
return this._issueLabelDeleted?.id;
|
|
75566
|
+
}
|
|
75567
|
+
/** Triggered when an issue label is updated */
|
|
75568
|
+
get issueLabelUpdated() {
|
|
75569
|
+
return new IssueLabelQuery(this._request).fetch(this._issueLabelUpdated.id);
|
|
75570
|
+
}
|
|
75571
|
+
/** The ID of triggered when an issue label is updated */
|
|
75572
|
+
get issueLabelUpdatedId() {
|
|
75573
|
+
return this._issueLabelUpdated?.id;
|
|
75574
|
+
}
|
|
75575
|
+
/** Triggered when an issue relation is created */
|
|
75576
|
+
get issueRelationCreated() {
|
|
75577
|
+
return new IssueRelationQuery(this._request).fetch(this._issueRelationCreated.id);
|
|
75578
|
+
}
|
|
75579
|
+
/** The ID of triggered when an issue relation is created */
|
|
75580
|
+
get issueRelationCreatedId() {
|
|
75581
|
+
return this._issueRelationCreated?.id;
|
|
75582
|
+
}
|
|
75583
|
+
/** Triggered when an issue relation is deleted */
|
|
75584
|
+
get issueRelationDeleted() {
|
|
75585
|
+
return new IssueRelationQuery(this._request).fetch(this._issueRelationDeleted.id);
|
|
75586
|
+
}
|
|
75587
|
+
/** The ID of triggered when an issue relation is deleted */
|
|
75588
|
+
get issueRelationDeletedId() {
|
|
75589
|
+
return this._issueRelationDeleted?.id;
|
|
75590
|
+
}
|
|
75591
|
+
/** Triggered when an issue relation is updated */
|
|
75592
|
+
get issueRelationUpdated() {
|
|
75593
|
+
return new IssueRelationQuery(this._request).fetch(this._issueRelationUpdated.id);
|
|
75594
|
+
}
|
|
75595
|
+
/** The ID of triggered when an issue relation is updated */
|
|
75596
|
+
get issueRelationUpdatedId() {
|
|
75597
|
+
return this._issueRelationUpdated?.id;
|
|
75598
|
+
}
|
|
75599
|
+
/** Triggered when a an issue is unarchived */
|
|
75600
|
+
get issueUnarchived() {
|
|
75601
|
+
return new IssueQuery(this._request).fetch(this._issueUnarchived.id);
|
|
75602
|
+
}
|
|
75603
|
+
/** The ID of triggered when a an issue is unarchived */
|
|
75604
|
+
get issueUnarchivedId() {
|
|
75605
|
+
return this._issueUnarchived?.id;
|
|
75606
|
+
}
|
|
75607
|
+
/** Triggered when an issue is updated */
|
|
75608
|
+
get issueUpdated() {
|
|
75609
|
+
return new IssueQuery(this._request).fetch(this._issueUpdated.id);
|
|
75610
|
+
}
|
|
75611
|
+
/** The ID of triggered when an issue is updated */
|
|
75612
|
+
get issueUpdatedId() {
|
|
75613
|
+
return this._issueUpdated?.id;
|
|
75614
|
+
}
|
|
75615
|
+
/** Triggered when an organization is updated */
|
|
75616
|
+
get organizationUpdated() {
|
|
75617
|
+
return new OrganizationQuery(this._request).fetch();
|
|
75618
|
+
}
|
|
75619
|
+
/** Triggered when a project is archived */
|
|
75620
|
+
get projectArchived() {
|
|
75621
|
+
return new ProjectQuery(this._request).fetch(this._projectArchived.id);
|
|
75622
|
+
}
|
|
75623
|
+
/** The ID of triggered when a project is archived */
|
|
75624
|
+
get projectArchivedId() {
|
|
75625
|
+
return this._projectArchived?.id;
|
|
75626
|
+
}
|
|
75627
|
+
/** Triggered when a project is created */
|
|
75628
|
+
get projectCreated() {
|
|
75629
|
+
return new ProjectQuery(this._request).fetch(this._projectCreated.id);
|
|
75630
|
+
}
|
|
75631
|
+
/** The ID of triggered when a project is created */
|
|
75632
|
+
get projectCreatedId() {
|
|
75633
|
+
return this._projectCreated?.id;
|
|
75634
|
+
}
|
|
75635
|
+
/** Triggered when a a project is unarchived */
|
|
75636
|
+
get projectUnarchived() {
|
|
75637
|
+
return new ProjectQuery(this._request).fetch(this._projectUnarchived.id);
|
|
75638
|
+
}
|
|
75639
|
+
/** The ID of triggered when a a project is unarchived */
|
|
75640
|
+
get projectUnarchivedId() {
|
|
75641
|
+
return this._projectUnarchived?.id;
|
|
75642
|
+
}
|
|
75643
|
+
/** Triggered when a project update is created */
|
|
75644
|
+
get projectUpdateCreated() {
|
|
75645
|
+
return new ProjectUpdateQuery(this._request).fetch(this._projectUpdateCreated.id);
|
|
75646
|
+
}
|
|
75647
|
+
/** The ID of triggered when a project update is created */
|
|
75648
|
+
get projectUpdateCreatedId() {
|
|
75649
|
+
return this._projectUpdateCreated?.id;
|
|
75650
|
+
}
|
|
75651
|
+
/** Triggered when a project update is deleted */
|
|
75652
|
+
get projectUpdateDeleted() {
|
|
75653
|
+
return new ProjectUpdateQuery(this._request).fetch(this._projectUpdateDeleted.id);
|
|
75654
|
+
}
|
|
75655
|
+
/** The ID of triggered when a project update is deleted */
|
|
75656
|
+
get projectUpdateDeletedId() {
|
|
75657
|
+
return this._projectUpdateDeleted?.id;
|
|
75658
|
+
}
|
|
75659
|
+
/** Triggered when a project update is updated */
|
|
75660
|
+
get projectUpdateUpdated() {
|
|
75661
|
+
return new ProjectUpdateQuery(this._request).fetch(this._projectUpdateUpdated.id);
|
|
75662
|
+
}
|
|
75663
|
+
/** The ID of triggered when a project update is updated */
|
|
75664
|
+
get projectUpdateUpdatedId() {
|
|
75665
|
+
return this._projectUpdateUpdated?.id;
|
|
75666
|
+
}
|
|
75667
|
+
/** Triggered when a project is updated */
|
|
75668
|
+
get projectUpdated() {
|
|
75669
|
+
return new ProjectQuery(this._request).fetch(this._projectUpdated.id);
|
|
75670
|
+
}
|
|
75671
|
+
/** The ID of triggered when a project is updated */
|
|
75672
|
+
get projectUpdatedId() {
|
|
75673
|
+
return this._projectUpdated?.id;
|
|
75674
|
+
}
|
|
75675
|
+
/** Triggered when a roadmap is created */
|
|
75676
|
+
get roadmapCreated() {
|
|
75677
|
+
return new RoadmapQuery(this._request).fetch(this._roadmapCreated.id);
|
|
75678
|
+
}
|
|
75679
|
+
/** The ID of triggered when a roadmap is created */
|
|
75680
|
+
get roadmapCreatedId() {
|
|
75681
|
+
return this._roadmapCreated?.id;
|
|
75682
|
+
}
|
|
75683
|
+
/** Triggered when a roadmap is deleted */
|
|
75684
|
+
get roadmapDeleted() {
|
|
75685
|
+
return new RoadmapQuery(this._request).fetch(this._roadmapDeleted.id);
|
|
75686
|
+
}
|
|
75687
|
+
/** The ID of triggered when a roadmap is deleted */
|
|
75688
|
+
get roadmapDeletedId() {
|
|
75689
|
+
return this._roadmapDeleted?.id;
|
|
75690
|
+
}
|
|
75691
|
+
/** Triggered when a roadmap is updated */
|
|
75692
|
+
get roadmapUpdated() {
|
|
75693
|
+
return new RoadmapQuery(this._request).fetch(this._roadmapUpdated.id);
|
|
75694
|
+
}
|
|
75695
|
+
/** The ID of triggered when a roadmap is updated */
|
|
75696
|
+
get roadmapUpdatedId() {
|
|
75697
|
+
return this._roadmapUpdated?.id;
|
|
75698
|
+
}
|
|
75699
|
+
/** Triggered when a team is created */
|
|
75700
|
+
get teamCreated() {
|
|
75701
|
+
return new TeamQuery(this._request).fetch(this._teamCreated.id);
|
|
75702
|
+
}
|
|
75703
|
+
/** The ID of triggered when a team is created */
|
|
75704
|
+
get teamCreatedId() {
|
|
75705
|
+
return this._teamCreated?.id;
|
|
75706
|
+
}
|
|
75707
|
+
/** Triggered when a team is deleted */
|
|
75708
|
+
get teamDeleted() {
|
|
75709
|
+
return new TeamQuery(this._request).fetch(this._teamDeleted.id);
|
|
75710
|
+
}
|
|
75711
|
+
/** The ID of triggered when a team is deleted */
|
|
75712
|
+
get teamDeletedId() {
|
|
75713
|
+
return this._teamDeleted?.id;
|
|
75714
|
+
}
|
|
75715
|
+
/** Triggered when a team membership is created */
|
|
75716
|
+
get teamMembershipCreated() {
|
|
75717
|
+
return new TeamMembershipQuery(this._request).fetch(this._teamMembershipCreated.id);
|
|
75718
|
+
}
|
|
75719
|
+
/** The ID of triggered when a team membership is created */
|
|
75720
|
+
get teamMembershipCreatedId() {
|
|
75721
|
+
return this._teamMembershipCreated?.id;
|
|
75722
|
+
}
|
|
75723
|
+
/** Triggered when a team membership is deleted */
|
|
75724
|
+
get teamMembershipDeleted() {
|
|
75725
|
+
return new TeamMembershipQuery(this._request).fetch(this._teamMembershipDeleted.id);
|
|
75726
|
+
}
|
|
75727
|
+
/** The ID of triggered when a team membership is deleted */
|
|
75728
|
+
get teamMembershipDeletedId() {
|
|
75729
|
+
return this._teamMembershipDeleted?.id;
|
|
75730
|
+
}
|
|
75731
|
+
/** Triggered when a team membership is updated */
|
|
75732
|
+
get teamMembershipUpdated() {
|
|
75733
|
+
return new TeamMembershipQuery(this._request).fetch(this._teamMembershipUpdated.id);
|
|
75734
|
+
}
|
|
75735
|
+
/** The ID of triggered when a team membership is updated */
|
|
75736
|
+
get teamMembershipUpdatedId() {
|
|
75737
|
+
return this._teamMembershipUpdated?.id;
|
|
75738
|
+
}
|
|
75739
|
+
/** Triggered when a team is updated */
|
|
75740
|
+
get teamUpdated() {
|
|
75741
|
+
return new TeamQuery(this._request).fetch(this._teamUpdated.id);
|
|
75742
|
+
}
|
|
75743
|
+
/** The ID of triggered when a team is updated */
|
|
75744
|
+
get teamUpdatedId() {
|
|
75745
|
+
return this._teamUpdated?.id;
|
|
75746
|
+
}
|
|
75747
|
+
/** Triggered when an user is created */
|
|
75748
|
+
get userCreated() {
|
|
75749
|
+
return new UserQuery(this._request).fetch(this._userCreated.id);
|
|
75750
|
+
}
|
|
75751
|
+
/** The ID of triggered when an user is created */
|
|
75752
|
+
get userCreatedId() {
|
|
75753
|
+
return this._userCreated?.id;
|
|
75754
|
+
}
|
|
75755
|
+
/** Triggered when an user is updated */
|
|
75756
|
+
get userUpdated() {
|
|
75757
|
+
return new UserQuery(this._request).fetch(this._userUpdated.id);
|
|
75758
|
+
}
|
|
75759
|
+
/** The ID of triggered when an user is updated */
|
|
75760
|
+
get userUpdatedId() {
|
|
75761
|
+
return this._userUpdated?.id;
|
|
75762
|
+
}
|
|
75763
|
+
/** Triggered when a workflow state is archived */
|
|
75764
|
+
get workflowStateArchived() {
|
|
75765
|
+
return new WorkflowStateQuery(this._request).fetch(this._workflowStateArchived.id);
|
|
75766
|
+
}
|
|
75767
|
+
/** The ID of triggered when a workflow state is archived */
|
|
75768
|
+
get workflowStateArchivedId() {
|
|
75769
|
+
return this._workflowStateArchived?.id;
|
|
75770
|
+
}
|
|
75771
|
+
/** Triggered when a workflow state is created */
|
|
75772
|
+
get workflowStateCreated() {
|
|
75773
|
+
return new WorkflowStateQuery(this._request).fetch(this._workflowStateCreated.id);
|
|
75774
|
+
}
|
|
75775
|
+
/** The ID of triggered when a workflow state is created */
|
|
75776
|
+
get workflowStateCreatedId() {
|
|
75777
|
+
return this._workflowStateCreated?.id;
|
|
75778
|
+
}
|
|
75779
|
+
/** Triggered when a workflow state is updated */
|
|
75780
|
+
get workflowStateUpdated() {
|
|
75781
|
+
return new WorkflowStateQuery(this._request).fetch(this._workflowStateUpdated.id);
|
|
75782
|
+
}
|
|
75783
|
+
/** The ID of triggered when a workflow state is updated */
|
|
75784
|
+
get workflowStateUpdatedId() {
|
|
75785
|
+
return this._workflowStateUpdated?.id;
|
|
75786
|
+
}
|
|
75787
|
+
};
|
|
75788
|
+
/**
|
|
74098
75789
|
* SuccessPayload model
|
|
74099
75790
|
*
|
|
74100
75791
|
* @param request - function to call the graphql client
|
|
@@ -95077,5 +96768,5 @@ var LinearClient = class extends LinearSdk {
|
|
|
95077
96768
|
const LinearWebhooks = LinearWebhookClient;
|
|
95078
96769
|
|
|
95079
96770
|
//#endregion
|
|
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 };
|
|
96771
|
+
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, AiPromptProgressStatus, AiPromptRules, AiPromptType, 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, DocumentContentDraft, 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, Subscription, 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 };
|
|
95081
96772
|
//# sourceMappingURL=index.mjs.map
|