@linear/sdk 17.0.1 → 18.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_generated_documents.d.ts +213 -64
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +126 -26
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/client.d.ts +8 -1
- package/dist/client.d.ts.map +1 -1
- package/dist/index-cjs.js +416 -155
- package/dist/index-cjs.js.map +1 -1
- package/dist/index-cjs.min.js +1 -1
- package/dist/index-cjs.min.js.br +0 -0
- package/dist/index-cjs.min.js.gz +0 -0
- package/dist/index-cjs.min.js.map +1 -1
- package/dist/index-es.js +412 -155
- package/dist/index-es.js.map +1 -1
- package/dist/index-es.min.js +1 -1
- package/dist/index-es.min.js.br +0 -0
- package/dist/index-es.min.js.gz +0 -0
- package/dist/index-es.min.js.map +1 -1
- package/dist/index-umd.js +417 -156
- package/dist/index-umd.js.map +1 -1
- package/dist/index-umd.min.js +1 -1
- package/dist/index-umd.min.js.br +0 -0
- package/dist/index-umd.min.js.gz +0 -0
- package/dist/index-umd.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index-es.js
CHANGED
@@ -83680,6 +83680,7 @@ var ViewType;
|
|
83680
83680
|
ViewType["Inbox"] = "inbox";
|
83681
83681
|
ViewType["Initiative"] = "initiative";
|
83682
83682
|
ViewType["Initiatives"] = "initiatives";
|
83683
|
+
ViewType["IssueIdentifiers"] = "issueIdentifiers";
|
83683
83684
|
ViewType["Label"] = "label";
|
83684
83685
|
ViewType["MyIssues"] = "myIssues";
|
83685
83686
|
ViewType["MyIssuesActivity"] = "myIssuesActivity";
|
@@ -85099,6 +85100,100 @@ const UserNotificationSubscriptionFragmentDoc = {
|
|
85099
85100
|
},
|
85100
85101
|
],
|
85101
85102
|
};
|
85103
|
+
const AuthOrganizationFragmentDoc = {
|
85104
|
+
kind: "Document",
|
85105
|
+
definitions: [
|
85106
|
+
{
|
85107
|
+
kind: "FragmentDefinition",
|
85108
|
+
name: { kind: "Name", value: "AuthOrganization" },
|
85109
|
+
typeCondition: { kind: "NamedType", name: { kind: "Name", value: "AuthOrganization" } },
|
85110
|
+
selectionSet: {
|
85111
|
+
kind: "SelectionSet",
|
85112
|
+
selections: [
|
85113
|
+
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
85114
|
+
{ kind: "Field", name: { kind: "Name", value: "allowedAuthServices" } },
|
85115
|
+
{ kind: "Field", name: { kind: "Name", value: "previousUrlKeys" } },
|
85116
|
+
{ kind: "Field", name: { kind: "Name", value: "serviceId" } },
|
85117
|
+
{ kind: "Field", name: { kind: "Name", value: "logoUrl" } },
|
85118
|
+
{ kind: "Field", name: { kind: "Name", value: "name" } },
|
85119
|
+
{ kind: "Field", name: { kind: "Name", value: "urlKey" } },
|
85120
|
+
{ kind: "Field", name: { kind: "Name", value: "region" } },
|
85121
|
+
{ kind: "Field", name: { kind: "Name", value: "deletionRequestedAt" } },
|
85122
|
+
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
85123
|
+
{ kind: "Field", name: { kind: "Name", value: "samlEnabled" } },
|
85124
|
+
{ kind: "Field", name: { kind: "Name", value: "scimEnabled" } },
|
85125
|
+
{ kind: "Field", name: { kind: "Name", value: "userCount" } },
|
85126
|
+
],
|
85127
|
+
},
|
85128
|
+
},
|
85129
|
+
],
|
85130
|
+
};
|
85131
|
+
const AuthUserFragmentDoc = {
|
85132
|
+
kind: "Document",
|
85133
|
+
definitions: [
|
85134
|
+
{
|
85135
|
+
kind: "FragmentDefinition",
|
85136
|
+
name: { kind: "Name", value: "AuthUser" },
|
85137
|
+
typeCondition: { kind: "NamedType", name: { kind: "Name", value: "AuthUser" } },
|
85138
|
+
selectionSet: {
|
85139
|
+
kind: "SelectionSet",
|
85140
|
+
selections: [
|
85141
|
+
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
85142
|
+
{ kind: "Field", name: { kind: "Name", value: "avatarUrl" } },
|
85143
|
+
{
|
85144
|
+
kind: "Field",
|
85145
|
+
name: { kind: "Name", value: "organization" },
|
85146
|
+
selectionSet: {
|
85147
|
+
kind: "SelectionSet",
|
85148
|
+
selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "AuthOrganization" } }],
|
85149
|
+
},
|
85150
|
+
},
|
85151
|
+
{ kind: "Field", name: { kind: "Name", value: "displayName" } },
|
85152
|
+
{ kind: "Field", name: { kind: "Name", value: "email" } },
|
85153
|
+
{ kind: "Field", name: { kind: "Name", value: "name" } },
|
85154
|
+
{ kind: "Field", name: { kind: "Name", value: "userAccountId" } },
|
85155
|
+
{ kind: "Field", name: { kind: "Name", value: "active" } },
|
85156
|
+
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
85157
|
+
],
|
85158
|
+
},
|
85159
|
+
},
|
85160
|
+
],
|
85161
|
+
};
|
85162
|
+
const AuthEmailIntakeAddressFragmentDoc = {
|
85163
|
+
kind: "Document",
|
85164
|
+
definitions: [
|
85165
|
+
{
|
85166
|
+
kind: "FragmentDefinition",
|
85167
|
+
name: { kind: "Name", value: "AuthEmailIntakeAddress" },
|
85168
|
+
typeCondition: { kind: "NamedType", name: { kind: "Name", value: "AuthEmailIntakeAddress" } },
|
85169
|
+
selectionSet: {
|
85170
|
+
kind: "SelectionSet",
|
85171
|
+
selections: [
|
85172
|
+
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
85173
|
+
{
|
85174
|
+
kind: "Field",
|
85175
|
+
name: { kind: "Name", value: "organization" },
|
85176
|
+
selectionSet: {
|
85177
|
+
kind: "SelectionSet",
|
85178
|
+
selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "AuthOrganization" } }],
|
85179
|
+
},
|
85180
|
+
},
|
85181
|
+
{
|
85182
|
+
kind: "Field",
|
85183
|
+
name: { kind: "Name", value: "creator" },
|
85184
|
+
selectionSet: {
|
85185
|
+
kind: "SelectionSet",
|
85186
|
+
selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "AuthUser" } }],
|
85187
|
+
},
|
85188
|
+
},
|
85189
|
+
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
85190
|
+
{ kind: "Field", name: { kind: "Name", value: "address" } },
|
85191
|
+
{ kind: "Field", name: { kind: "Name", value: "enabled" } },
|
85192
|
+
],
|
85193
|
+
},
|
85194
|
+
},
|
85195
|
+
],
|
85196
|
+
};
|
85102
85197
|
const AuthOrganizationInviteFragmentDoc = {
|
85103
85198
|
kind: "Document",
|
85104
85199
|
definitions: [
|
@@ -85429,6 +85524,25 @@ const ApplicationFragmentDoc = {
|
|
85429
85524
|
},
|
85430
85525
|
],
|
85431
85526
|
};
|
85527
|
+
const SharedSlackSettingsFragmentDoc = {
|
85528
|
+
kind: "Document",
|
85529
|
+
definitions: [
|
85530
|
+
{
|
85531
|
+
kind: "FragmentDefinition",
|
85532
|
+
name: { kind: "Name", value: "SharedSlackSettings" },
|
85533
|
+
typeCondition: { kind: "NamedType", name: { kind: "Name", value: "SharedSlackSettings" } },
|
85534
|
+
selectionSet: {
|
85535
|
+
kind: "SelectionSet",
|
85536
|
+
selections: [
|
85537
|
+
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
85538
|
+
{ kind: "Field", name: { kind: "Name", value: "enterpriseName" } },
|
85539
|
+
{ kind: "Field", name: { kind: "Name", value: "teamId" } },
|
85540
|
+
{ kind: "Field", name: { kind: "Name", value: "teamName" } },
|
85541
|
+
],
|
85542
|
+
},
|
85543
|
+
},
|
85544
|
+
],
|
85545
|
+
};
|
85432
85546
|
const FrontSettingsFragmentDoc = {
|
85433
85547
|
kind: "Document",
|
85434
85548
|
definitions: [
|
@@ -85768,6 +85882,9 @@ const SlackSettingsFragmentDoc = {
|
|
85768
85882
|
kind: "SelectionSet",
|
85769
85883
|
selections: [
|
85770
85884
|
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
85885
|
+
{ kind: "Field", name: { kind: "Name", value: "enterpriseName" } },
|
85886
|
+
{ kind: "Field", name: { kind: "Name", value: "teamId" } },
|
85887
|
+
{ kind: "Field", name: { kind: "Name", value: "teamName" } },
|
85771
85888
|
{ kind: "Field", name: { kind: "Name", value: "linkOnIssueIdMention" } },
|
85772
85889
|
],
|
85773
85890
|
},
|
@@ -85836,6 +85953,9 @@ const SlackAsksSettingsFragmentDoc = {
|
|
85836
85953
|
kind: "SelectionSet",
|
85837
85954
|
selections: [
|
85838
85955
|
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
85956
|
+
{ kind: "Field", name: { kind: "Name", value: "enterpriseName" } },
|
85957
|
+
{ kind: "Field", name: { kind: "Name", value: "teamId" } },
|
85958
|
+
{ kind: "Field", name: { kind: "Name", value: "teamName" } },
|
85839
85959
|
{
|
85840
85960
|
kind: "Field",
|
85841
85961
|
name: { kind: "Name", value: "slackChannelMapping" },
|
@@ -86553,64 +86673,6 @@ const AuthOauthClientFragmentDoc = {
|
|
86553
86673
|
},
|
86554
86674
|
],
|
86555
86675
|
};
|
86556
|
-
const AuthOrganizationFragmentDoc = {
|
86557
|
-
kind: "Document",
|
86558
|
-
definitions: [
|
86559
|
-
{
|
86560
|
-
kind: "FragmentDefinition",
|
86561
|
-
name: { kind: "Name", value: "AuthOrganization" },
|
86562
|
-
typeCondition: { kind: "NamedType", name: { kind: "Name", value: "AuthOrganization" } },
|
86563
|
-
selectionSet: {
|
86564
|
-
kind: "SelectionSet",
|
86565
|
-
selections: [
|
86566
|
-
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
86567
|
-
{ kind: "Field", name: { kind: "Name", value: "allowedAuthServices" } },
|
86568
|
-
{ kind: "Field", name: { kind: "Name", value: "previousUrlKeys" } },
|
86569
|
-
{ kind: "Field", name: { kind: "Name", value: "serviceId" } },
|
86570
|
-
{ kind: "Field", name: { kind: "Name", value: "logoUrl" } },
|
86571
|
-
{ kind: "Field", name: { kind: "Name", value: "name" } },
|
86572
|
-
{ kind: "Field", name: { kind: "Name", value: "urlKey" } },
|
86573
|
-
{ kind: "Field", name: { kind: "Name", value: "deletionRequestedAt" } },
|
86574
|
-
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
86575
|
-
{ kind: "Field", name: { kind: "Name", value: "samlEnabled" } },
|
86576
|
-
{ kind: "Field", name: { kind: "Name", value: "scimEnabled" } },
|
86577
|
-
{ kind: "Field", name: { kind: "Name", value: "userCount" } },
|
86578
|
-
],
|
86579
|
-
},
|
86580
|
-
},
|
86581
|
-
],
|
86582
|
-
};
|
86583
|
-
const AuthUserFragmentDoc = {
|
86584
|
-
kind: "Document",
|
86585
|
-
definitions: [
|
86586
|
-
{
|
86587
|
-
kind: "FragmentDefinition",
|
86588
|
-
name: { kind: "Name", value: "AuthUser" },
|
86589
|
-
typeCondition: { kind: "NamedType", name: { kind: "Name", value: "AuthUser" } },
|
86590
|
-
selectionSet: {
|
86591
|
-
kind: "SelectionSet",
|
86592
|
-
selections: [
|
86593
|
-
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
86594
|
-
{ kind: "Field", name: { kind: "Name", value: "avatarUrl" } },
|
86595
|
-
{
|
86596
|
-
kind: "Field",
|
86597
|
-
name: { kind: "Name", value: "organization" },
|
86598
|
-
selectionSet: {
|
86599
|
-
kind: "SelectionSet",
|
86600
|
-
selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "AuthOrganization" } }],
|
86601
|
-
},
|
86602
|
-
},
|
86603
|
-
{ kind: "Field", name: { kind: "Name", value: "displayName" } },
|
86604
|
-
{ kind: "Field", name: { kind: "Name", value: "email" } },
|
86605
|
-
{ kind: "Field", name: { kind: "Name", value: "name" } },
|
86606
|
-
{ kind: "Field", name: { kind: "Name", value: "userAccountId" } },
|
86607
|
-
{ kind: "Field", name: { kind: "Name", value: "active" } },
|
86608
|
-
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
86609
|
-
],
|
86610
|
-
},
|
86611
|
-
},
|
86612
|
-
],
|
86613
|
-
};
|
86614
86676
|
const OauthTokenFragmentDoc = {
|
86615
86677
|
kind: "Document",
|
86616
86678
|
definitions: [
|
@@ -87359,6 +87421,7 @@ const DocumentFragmentDoc = {
|
|
87359
87421
|
selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }],
|
87360
87422
|
},
|
87361
87423
|
},
|
87424
|
+
{ kind: "Field", name: { kind: "Name", value: "hiddenAt" } },
|
87362
87425
|
{ kind: "Field", name: { kind: "Name", value: "archivedAt" } },
|
87363
87426
|
{ kind: "Field", name: { kind: "Name", value: "createdAt" } },
|
87364
87427
|
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
@@ -87541,6 +87604,7 @@ const DocumentSearchResultFragmentDoc = {
|
|
87541
87604
|
selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }],
|
87542
87605
|
},
|
87543
87606
|
},
|
87607
|
+
{ kind: "Field", name: { kind: "Name", value: "hiddenAt" } },
|
87544
87608
|
{ kind: "Field", name: { kind: "Name", value: "archivedAt" } },
|
87545
87609
|
{ kind: "Field", name: { kind: "Name", value: "createdAt" } },
|
87546
87610
|
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
@@ -88648,6 +88712,14 @@ const IssueFragmentDoc = {
|
|
88648
88712
|
selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "ActorBot" } }],
|
88649
88713
|
},
|
88650
88714
|
},
|
88715
|
+
{
|
88716
|
+
kind: "Field",
|
88717
|
+
name: { kind: "Name", value: "sourceComment" },
|
88718
|
+
selectionSet: {
|
88719
|
+
kind: "SelectionSet",
|
88720
|
+
selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }],
|
88721
|
+
},
|
88722
|
+
},
|
88651
88723
|
{
|
88652
88724
|
kind: "Field",
|
88653
88725
|
name: { kind: "Name", value: "cycle" },
|
@@ -89484,6 +89556,14 @@ const IssueSearchResultFragmentDoc = {
|
|
89484
89556
|
selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "ActorBot" } }],
|
89485
89557
|
},
|
89486
89558
|
},
|
89559
|
+
{
|
89560
|
+
kind: "Field",
|
89561
|
+
name: { kind: "Name", value: "sourceComment" },
|
89562
|
+
selectionSet: {
|
89563
|
+
kind: "SelectionSet",
|
89564
|
+
selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }],
|
89565
|
+
},
|
89566
|
+
},
|
89487
89567
|
{
|
89488
89568
|
kind: "Field",
|
89489
89569
|
name: { kind: "Name", value: "cycle" },
|
@@ -90063,6 +90143,7 @@ const OrganizationInviteFullDetailsPayloadFragmentDoc = {
|
|
90063
90143
|
kind: "SelectionSet",
|
90064
90144
|
selections: [
|
90065
90145
|
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
90146
|
+
{ kind: "Field", name: { kind: "Name", value: "allowedAuthServices" } },
|
90066
90147
|
{ kind: "Field", name: { kind: "Name", value: "organizationId" } },
|
90067
90148
|
{ kind: "Field", name: { kind: "Name", value: "organizationName" } },
|
90068
90149
|
{ kind: "Field", name: { kind: "Name", value: "email" } },
|
@@ -90076,6 +90157,28 @@ const OrganizationInviteFullDetailsPayloadFragmentDoc = {
|
|
90076
90157
|
},
|
90077
90158
|
],
|
90078
90159
|
};
|
90160
|
+
const OrganizationInviteLinkDetailsPayloadFragmentDoc = {
|
90161
|
+
kind: "Document",
|
90162
|
+
definitions: [
|
90163
|
+
{
|
90164
|
+
kind: "FragmentDefinition",
|
90165
|
+
name: { kind: "Name", value: "OrganizationInviteLinkDetailsPayload" },
|
90166
|
+
typeCondition: { kind: "NamedType", name: { kind: "Name", value: "OrganizationInviteLinkDetailsPayload" } },
|
90167
|
+
selectionSet: {
|
90168
|
+
kind: "SelectionSet",
|
90169
|
+
selections: [
|
90170
|
+
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
90171
|
+
{ kind: "Field", name: { kind: "Name", value: "allowedAuthServices" } },
|
90172
|
+
{ kind: "Field", name: { kind: "Name", value: "organizationId" } },
|
90173
|
+
{ kind: "Field", name: { kind: "Name", value: "organizationName" } },
|
90174
|
+
{ kind: "Field", name: { kind: "Name", value: "organizationRegion" } },
|
90175
|
+
{ kind: "Field", name: { kind: "Name", value: "organizationUrlKey" } },
|
90176
|
+
{ kind: "Field", name: { kind: "Name", value: "organizationLogoUrl" } },
|
90177
|
+
],
|
90178
|
+
},
|
90179
|
+
},
|
90180
|
+
],
|
90181
|
+
};
|
90079
90182
|
const OrganizationInvitePayloadFragmentDoc = {
|
90080
90183
|
kind: "Document",
|
90081
90184
|
definitions: [
|
@@ -90120,6 +90223,24 @@ const OrganizationPayloadFragmentDoc = {
|
|
90120
90223
|
},
|
90121
90224
|
],
|
90122
90225
|
};
|
90226
|
+
const OrganizationRegionResponseFragmentDoc = {
|
90227
|
+
kind: "Document",
|
90228
|
+
definitions: [
|
90229
|
+
{
|
90230
|
+
kind: "FragmentDefinition",
|
90231
|
+
name: { kind: "Name", value: "OrganizationRegionResponse" },
|
90232
|
+
typeCondition: { kind: "NamedType", name: { kind: "Name", value: "OrganizationRegionResponse" } },
|
90233
|
+
selectionSet: {
|
90234
|
+
kind: "SelectionSet",
|
90235
|
+
selections: [
|
90236
|
+
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
90237
|
+
{ kind: "Field", name: { kind: "Name", value: "region" } },
|
90238
|
+
{ kind: "Field", name: { kind: "Name", value: "success" } },
|
90239
|
+
],
|
90240
|
+
},
|
90241
|
+
},
|
90242
|
+
],
|
90243
|
+
};
|
90123
90244
|
const OrganizationStartPlusTrialPayloadFragmentDoc = {
|
90124
90245
|
kind: "Document",
|
90125
90246
|
definitions: [
|
@@ -90206,7 +90327,6 @@ const ProjectFragmentDoc = {
|
|
90206
90327
|
{ kind: "Field", name: { kind: "Name", value: "projectUpdateRemindersPausedUntilAt" } },
|
90207
90328
|
{ kind: "Field", name: { kind: "Name", value: "scopeHistory" } },
|
90208
90329
|
{ kind: "Field", name: { kind: "Name", value: "issueCountHistory" } },
|
90209
|
-
{ kind: "Field", name: { kind: "Name", value: "state" } },
|
90210
90330
|
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
90211
90331
|
{
|
90212
90332
|
kind: "Field",
|
@@ -90216,9 +90336,18 @@ const ProjectFragmentDoc = {
|
|
90216
90336
|
selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }],
|
90217
90337
|
},
|
90218
90338
|
},
|
90339
|
+
{
|
90340
|
+
kind: "Field",
|
90341
|
+
name: { kind: "Name", value: "favorite" },
|
90342
|
+
selectionSet: {
|
90343
|
+
kind: "SelectionSet",
|
90344
|
+
selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }],
|
90345
|
+
},
|
90346
|
+
},
|
90219
90347
|
{ kind: "Field", name: { kind: "Name", value: "slackIssueComments" } },
|
90220
90348
|
{ kind: "Field", name: { kind: "Name", value: "slackNewIssue" } },
|
90221
90349
|
{ kind: "Field", name: { kind: "Name", value: "slackIssueStatuses" } },
|
90350
|
+
{ kind: "Field", name: { kind: "Name", value: "state" } },
|
90222
90351
|
],
|
90223
90352
|
},
|
90224
90353
|
},
|
@@ -90556,7 +90685,6 @@ const ProjectSearchResultFragmentDoc = {
|
|
90556
90685
|
{ kind: "Field", name: { kind: "Name", value: "projectUpdateRemindersPausedUntilAt" } },
|
90557
90686
|
{ kind: "Field", name: { kind: "Name", value: "scopeHistory" } },
|
90558
90687
|
{ kind: "Field", name: { kind: "Name", value: "issueCountHistory" } },
|
90559
|
-
{ kind: "Field", name: { kind: "Name", value: "state" } },
|
90560
90688
|
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
90561
90689
|
{
|
90562
90690
|
kind: "Field",
|
@@ -90566,9 +90694,18 @@ const ProjectSearchResultFragmentDoc = {
|
|
90566
90694
|
selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }],
|
90567
90695
|
},
|
90568
90696
|
},
|
90697
|
+
{
|
90698
|
+
kind: "Field",
|
90699
|
+
name: { kind: "Name", value: "favorite" },
|
90700
|
+
selectionSet: {
|
90701
|
+
kind: "SelectionSet",
|
90702
|
+
selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }],
|
90703
|
+
},
|
90704
|
+
},
|
90569
90705
|
{ kind: "Field", name: { kind: "Name", value: "slackIssueComments" } },
|
90570
90706
|
{ kind: "Field", name: { kind: "Name", value: "slackNewIssue" } },
|
90571
90707
|
{ kind: "Field", name: { kind: "Name", value: "slackIssueStatuses" } },
|
90708
|
+
{ kind: "Field", name: { kind: "Name", value: "state" } },
|
90572
90709
|
],
|
90573
90710
|
},
|
90574
90711
|
},
|
@@ -100747,6 +100884,44 @@ const OrganizationInvitesDocument = {
|
|
100747
100884
|
...PageInfoFragmentDoc.definitions,
|
100748
100885
|
],
|
100749
100886
|
};
|
100887
|
+
const OrganizationRegionDocument = {
|
100888
|
+
kind: "Document",
|
100889
|
+
definitions: [
|
100890
|
+
{
|
100891
|
+
kind: "OperationDefinition",
|
100892
|
+
operation: "query",
|
100893
|
+
name: { kind: "Name", value: "organizationRegion" },
|
100894
|
+
variableDefinitions: [
|
100895
|
+
{
|
100896
|
+
kind: "VariableDefinition",
|
100897
|
+
variable: { kind: "Variable", name: { kind: "Name", value: "id" } },
|
100898
|
+
type: { kind: "NonNullType", type: { kind: "NamedType", name: { kind: "Name", value: "String" } } },
|
100899
|
+
},
|
100900
|
+
],
|
100901
|
+
selectionSet: {
|
100902
|
+
kind: "SelectionSet",
|
100903
|
+
selections: [
|
100904
|
+
{
|
100905
|
+
kind: "Field",
|
100906
|
+
name: { kind: "Name", value: "organizationRegion" },
|
100907
|
+
arguments: [
|
100908
|
+
{
|
100909
|
+
kind: "Argument",
|
100910
|
+
name: { kind: "Name", value: "id" },
|
100911
|
+
value: { kind: "Variable", name: { kind: "Name", value: "id" } },
|
100912
|
+
},
|
100913
|
+
],
|
100914
|
+
selectionSet: {
|
100915
|
+
kind: "SelectionSet",
|
100916
|
+
selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "OrganizationRegionResponse" } }],
|
100917
|
+
},
|
100918
|
+
},
|
100919
|
+
],
|
100920
|
+
},
|
100921
|
+
},
|
100922
|
+
...OrganizationRegionResponseFragmentDoc.definitions,
|
100923
|
+
],
|
100924
|
+
};
|
100750
100925
|
const ProjectDocument = {
|
100751
100926
|
kind: "Document",
|
100752
100927
|
definitions: [
|
@@ -107958,44 +108133,6 @@ const AttachmentLinkZendeskDocument = {
|
|
107958
108133
|
...AttachmentPayloadFragmentDoc.definitions,
|
107959
108134
|
],
|
107960
108135
|
};
|
107961
|
-
const AttachmentUnsyncSlackDocument = {
|
107962
|
-
kind: "Document",
|
107963
|
-
definitions: [
|
107964
|
-
{
|
107965
|
-
kind: "OperationDefinition",
|
107966
|
-
operation: "mutation",
|
107967
|
-
name: { kind: "Name", value: "attachmentUnsyncSlack" },
|
107968
|
-
variableDefinitions: [
|
107969
|
-
{
|
107970
|
-
kind: "VariableDefinition",
|
107971
|
-
variable: { kind: "Variable", name: { kind: "Name", value: "id" } },
|
107972
|
-
type: { kind: "NonNullType", type: { kind: "NamedType", name: { kind: "Name", value: "String" } } },
|
107973
|
-
},
|
107974
|
-
],
|
107975
|
-
selectionSet: {
|
107976
|
-
kind: "SelectionSet",
|
107977
|
-
selections: [
|
107978
|
-
{
|
107979
|
-
kind: "Field",
|
107980
|
-
name: { kind: "Name", value: "attachmentUnsyncSlack" },
|
107981
|
-
arguments: [
|
107982
|
-
{
|
107983
|
-
kind: "Argument",
|
107984
|
-
name: { kind: "Name", value: "id" },
|
107985
|
-
value: { kind: "Variable", name: { kind: "Name", value: "id" } },
|
107986
|
-
},
|
107987
|
-
],
|
107988
|
-
selectionSet: {
|
107989
|
-
kind: "SelectionSet",
|
107990
|
-
selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "AttachmentPayload" } }],
|
107991
|
-
},
|
107992
|
-
},
|
107993
|
-
],
|
107994
|
-
},
|
107995
|
-
},
|
107996
|
-
...AttachmentPayloadFragmentDoc.definitions,
|
107997
|
-
],
|
107998
|
-
};
|
107999
108136
|
const UpdateAttachmentDocument = {
|
108000
108137
|
kind: "Document",
|
108001
108138
|
definitions: [
|
@@ -116691,6 +116828,9 @@ var _generated_documents = /*#__PURE__*/Object.freeze({
|
|
116691
116828
|
TeamNotificationSubscriptionFragmentDoc: TeamNotificationSubscriptionFragmentDoc,
|
116692
116829
|
UserAccountFragmentDoc: UserAccountFragmentDoc,
|
116693
116830
|
UserNotificationSubscriptionFragmentDoc: UserNotificationSubscriptionFragmentDoc,
|
116831
|
+
AuthOrganizationFragmentDoc: AuthOrganizationFragmentDoc,
|
116832
|
+
AuthUserFragmentDoc: AuthUserFragmentDoc,
|
116833
|
+
AuthEmailIntakeAddressFragmentDoc: AuthEmailIntakeAddressFragmentDoc,
|
116694
116834
|
AuthOrganizationInviteFragmentDoc: AuthOrganizationInviteFragmentDoc,
|
116695
116835
|
PaidSubscriptionFragmentDoc: PaidSubscriptionFragmentDoc,
|
116696
116836
|
OrganizationFragmentDoc: OrganizationFragmentDoc,
|
@@ -116703,6 +116843,7 @@ var _generated_documents = /*#__PURE__*/Object.freeze({
|
|
116703
116843
|
GithubOAuthTokenPayloadFragmentDoc: GithubOAuthTokenPayloadFragmentDoc,
|
116704
116844
|
UserAuthorizedApplicationFragmentDoc: UserAuthorizedApplicationFragmentDoc,
|
116705
116845
|
ApplicationFragmentDoc: ApplicationFragmentDoc,
|
116846
|
+
SharedSlackSettingsFragmentDoc: SharedSlackSettingsFragmentDoc,
|
116706
116847
|
FrontSettingsFragmentDoc: FrontSettingsFragmentDoc,
|
116707
116848
|
TeamRepoMappingFragmentDoc: TeamRepoMappingFragmentDoc,
|
116708
116849
|
GitHubRepoFragmentDoc: GitHubRepoFragmentDoc,
|
@@ -116744,8 +116885,6 @@ var _generated_documents = /*#__PURE__*/Object.freeze({
|
|
116744
116885
|
AuthApiKeyPayloadFragmentDoc: AuthApiKeyPayloadFragmentDoc,
|
116745
116886
|
AuthIntegrationFragmentDoc: AuthIntegrationFragmentDoc,
|
116746
116887
|
AuthOauthClientFragmentDoc: AuthOauthClientFragmentDoc,
|
116747
|
-
AuthOrganizationFragmentDoc: AuthOrganizationFragmentDoc,
|
116748
|
-
AuthUserFragmentDoc: AuthUserFragmentDoc,
|
116749
116888
|
OauthTokenFragmentDoc: OauthTokenFragmentDoc,
|
116750
116889
|
AuthOauthClientWithTokensFragmentDoc: AuthOauthClientWithTokensFragmentDoc,
|
116751
116890
|
AuthOrganizationDomainFragmentDoc: AuthOrganizationDomainFragmentDoc,
|
@@ -116845,8 +116984,10 @@ var _generated_documents = /*#__PURE__*/Object.freeze({
|
|
116845
116984
|
OrganizationInviteFragmentDoc: OrganizationInviteFragmentDoc,
|
116846
116985
|
OrganizationInviteConnectionFragmentDoc: OrganizationInviteConnectionFragmentDoc,
|
116847
116986
|
OrganizationInviteFullDetailsPayloadFragmentDoc: OrganizationInviteFullDetailsPayloadFragmentDoc,
|
116987
|
+
OrganizationInviteLinkDetailsPayloadFragmentDoc: OrganizationInviteLinkDetailsPayloadFragmentDoc,
|
116848
116988
|
OrganizationInvitePayloadFragmentDoc: OrganizationInvitePayloadFragmentDoc,
|
116849
116989
|
OrganizationPayloadFragmentDoc: OrganizationPayloadFragmentDoc,
|
116990
|
+
OrganizationRegionResponseFragmentDoc: OrganizationRegionResponseFragmentDoc,
|
116850
116991
|
OrganizationStartPlusTrialPayloadFragmentDoc: OrganizationStartPlusTrialPayloadFragmentDoc,
|
116851
116992
|
ProjectFragmentDoc: ProjectFragmentDoc,
|
116852
116993
|
ProjectConnectionFragmentDoc: ProjectConnectionFragmentDoc,
|
@@ -117023,6 +117164,7 @@ var _generated_documents = /*#__PURE__*/Object.freeze({
|
|
117023
117164
|
OrganizationExistsDocument: OrganizationExistsDocument,
|
117024
117165
|
OrganizationInviteDocument: OrganizationInviteDocument,
|
117025
117166
|
OrganizationInvitesDocument: OrganizationInvitesDocument,
|
117167
|
+
OrganizationRegionDocument: OrganizationRegionDocument,
|
117026
117168
|
ProjectDocument: ProjectDocument,
|
117027
117169
|
Project_DocumentsDocument: Project_DocumentsDocument,
|
117028
117170
|
Project_IssuesDocument: Project_IssuesDocument,
|
@@ -117106,7 +117248,6 @@ var _generated_documents = /*#__PURE__*/Object.freeze({
|
|
117106
117248
|
AttachmentLinkSlackDocument: AttachmentLinkSlackDocument,
|
117107
117249
|
AttachmentLinkUrlDocument: AttachmentLinkUrlDocument,
|
117108
117250
|
AttachmentLinkZendeskDocument: AttachmentLinkZendeskDocument,
|
117109
|
-
AttachmentUnsyncSlackDocument: AttachmentUnsyncSlackDocument,
|
117110
117251
|
UpdateAttachmentDocument: UpdateAttachmentDocument,
|
117111
117252
|
CreateCommentDocument: CreateCommentDocument,
|
117112
117253
|
DeleteCommentDocument: DeleteCommentDocument,
|
@@ -117764,6 +117905,22 @@ class AuthApiKeyPayload extends Request {
|
|
117764
117905
|
this.authApiKey = new AuthApiKey(request, data.authApiKey);
|
117765
117906
|
}
|
117766
117907
|
}
|
117908
|
+
/**
|
117909
|
+
* An email address that can be used for submitting issues.
|
117910
|
+
*
|
117911
|
+
* @param request - function to call the graphql client
|
117912
|
+
* @param data - L.AuthEmailIntakeAddressFragment response data
|
117913
|
+
*/
|
117914
|
+
class AuthEmailIntakeAddress extends Request {
|
117915
|
+
constructor(request, data) {
|
117916
|
+
super(request);
|
117917
|
+
this.address = data.address;
|
117918
|
+
this.enabled = data.enabled;
|
117919
|
+
this.id = data.id;
|
117920
|
+
this.creator = data.creator ? new AuthUser(request, data.creator) : undefined;
|
117921
|
+
this.organization = new AuthOrganization(request, data.organization);
|
117922
|
+
}
|
117923
|
+
}
|
117767
117924
|
/**
|
117768
117925
|
* AuthIntegration model
|
117769
117926
|
*
|
@@ -117868,6 +118025,7 @@ class AuthOrganization extends Request {
|
|
117868
118025
|
this.logoUrl = (_b = data.logoUrl) !== null && _b !== void 0 ? _b : undefined;
|
117869
118026
|
this.name = data.name;
|
117870
118027
|
this.previousUrlKeys = data.previousUrlKeys;
|
118028
|
+
this.region = data.region;
|
117871
118029
|
this.samlEnabled = data.samlEnabled;
|
117872
118030
|
this.scimEnabled = data.scimEnabled;
|
117873
118031
|
this.serviceId = data.serviceId;
|
@@ -118594,20 +118752,21 @@ class DeletePayload extends Request {
|
|
118594
118752
|
*/
|
118595
118753
|
class Document extends Request {
|
118596
118754
|
constructor(request, data) {
|
118597
|
-
var _a, _b, _c, _d, _e, _f, _g;
|
118755
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
118598
118756
|
super(request);
|
118599
118757
|
this.archivedAt = (_a = parseDate(data.archivedAt)) !== null && _a !== void 0 ? _a : undefined;
|
118600
118758
|
this.color = (_b = data.color) !== null && _b !== void 0 ? _b : undefined;
|
118601
118759
|
this.content = (_c = data.content) !== null && _c !== void 0 ? _c : undefined;
|
118602
118760
|
this.createdAt = (_d = parseDate(data.createdAt)) !== null && _d !== void 0 ? _d : new Date();
|
118603
|
-
this.
|
118761
|
+
this.hiddenAt = (_e = parseDate(data.hiddenAt)) !== null && _e !== void 0 ? _e : undefined;
|
118762
|
+
this.icon = (_f = data.icon) !== null && _f !== void 0 ? _f : undefined;
|
118604
118763
|
this.id = data.id;
|
118605
118764
|
this.slugId = data.slugId;
|
118606
118765
|
this.sortOrder = data.sortOrder;
|
118607
118766
|
this.title = data.title;
|
118608
|
-
this.updatedAt = (
|
118767
|
+
this.updatedAt = (_g = parseDate(data.updatedAt)) !== null && _g !== void 0 ? _g : new Date();
|
118609
118768
|
this._creator = data.creator;
|
118610
|
-
this._lastAppliedTemplate = (
|
118769
|
+
this._lastAppliedTemplate = (_h = data.lastAppliedTemplate) !== null && _h !== void 0 ? _h : undefined;
|
118611
118770
|
this._project = data.project;
|
118612
118771
|
this._updatedBy = data.updatedBy;
|
118613
118772
|
}
|
@@ -118789,21 +118948,22 @@ class DocumentSearchPayload extends Request {
|
|
118789
118948
|
*/
|
118790
118949
|
class DocumentSearchResult extends Request {
|
118791
118950
|
constructor(request, data) {
|
118792
|
-
var _a, _b, _c, _d, _e, _f, _g;
|
118951
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
118793
118952
|
super(request);
|
118794
118953
|
this.archivedAt = (_a = parseDate(data.archivedAt)) !== null && _a !== void 0 ? _a : undefined;
|
118795
118954
|
this.color = (_b = data.color) !== null && _b !== void 0 ? _b : undefined;
|
118796
118955
|
this.content = (_c = data.content) !== null && _c !== void 0 ? _c : undefined;
|
118797
118956
|
this.createdAt = (_d = parseDate(data.createdAt)) !== null && _d !== void 0 ? _d : new Date();
|
118798
|
-
this.
|
118957
|
+
this.hiddenAt = (_e = parseDate(data.hiddenAt)) !== null && _e !== void 0 ? _e : undefined;
|
118958
|
+
this.icon = (_f = data.icon) !== null && _f !== void 0 ? _f : undefined;
|
118799
118959
|
this.id = data.id;
|
118800
118960
|
this.metadata = data.metadata;
|
118801
118961
|
this.slugId = data.slugId;
|
118802
118962
|
this.sortOrder = data.sortOrder;
|
118803
118963
|
this.title = data.title;
|
118804
|
-
this.updatedAt = (
|
118964
|
+
this.updatedAt = (_g = parseDate(data.updatedAt)) !== null && _g !== void 0 ? _g : new Date();
|
118805
118965
|
this._creator = data.creator;
|
118806
|
-
this._lastAppliedTemplate = (
|
118966
|
+
this._lastAppliedTemplate = (_h = data.lastAppliedTemplate) !== null && _h !== void 0 ? _h : undefined;
|
118807
118967
|
this._project = data.project;
|
118808
118968
|
this._updatedBy = data.updatedBy;
|
118809
118969
|
}
|
@@ -119791,7 +119951,7 @@ class IntercomSettings extends Request {
|
|
119791
119951
|
*/
|
119792
119952
|
class Issue extends Request {
|
119793
119953
|
constructor(request, data) {
|
119794
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1;
|
119954
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2;
|
119795
119955
|
super(request);
|
119796
119956
|
this.archivedAt = (_a = parseDate(data.archivedAt)) !== null && _a !== void 0 ? _a : undefined;
|
119797
119957
|
this.autoArchivedAt = (_b = parseDate(data.autoArchivedAt)) !== null && _b !== void 0 ? _b : undefined;
|
@@ -119833,6 +119993,7 @@ class Issue extends Request {
|
|
119833
119993
|
this._project = (_z = data.project) !== null && _z !== void 0 ? _z : undefined;
|
119834
119994
|
this._projectMilestone = (_0 = data.projectMilestone) !== null && _0 !== void 0 ? _0 : undefined;
|
119835
119995
|
this._snoozedBy = (_1 = data.snoozedBy) !== null && _1 !== void 0 ? _1 : undefined;
|
119996
|
+
this._sourceComment = (_2 = data.sourceComment) !== null && _2 !== void 0 ? _2 : undefined;
|
119836
119997
|
this._state = data.state;
|
119837
119998
|
this._team = data.team;
|
119838
119999
|
}
|
@@ -119892,6 +120053,11 @@ class Issue extends Request {
|
|
119892
120053
|
var _a, _b;
|
119893
120054
|
return ((_a = this._snoozedBy) === null || _a === void 0 ? void 0 : _a.id) ? new UserQuery(this._request).fetch((_b = this._snoozedBy) === null || _b === void 0 ? void 0 : _b.id) : undefined;
|
119894
120055
|
}
|
120056
|
+
/** The comment that this issue was created from. */
|
120057
|
+
get sourceComment() {
|
120058
|
+
var _a, _b;
|
120059
|
+
return ((_a = this._sourceComment) === null || _a === void 0 ? void 0 : _a.id) ? new CommentQuery(this._request).fetch({ id: (_b = this._sourceComment) === null || _b === void 0 ? void 0 : _b.id }) : undefined;
|
120060
|
+
}
|
119895
120061
|
/** The workflow state that the issue is associated with. */
|
119896
120062
|
get state() {
|
119897
120063
|
return new WorkflowStateQuery(this._request).fetch(this._state.id);
|
@@ -120537,7 +120703,7 @@ class IssueSearchPayload extends Request {
|
|
120537
120703
|
*/
|
120538
120704
|
class IssueSearchResult extends Request {
|
120539
120705
|
constructor(request, data) {
|
120540
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1;
|
120706
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2;
|
120541
120707
|
super(request);
|
120542
120708
|
this.archivedAt = (_a = parseDate(data.archivedAt)) !== null && _a !== void 0 ? _a : undefined;
|
120543
120709
|
this.autoArchivedAt = (_b = parseDate(data.autoArchivedAt)) !== null && _b !== void 0 ? _b : undefined;
|
@@ -120580,6 +120746,7 @@ class IssueSearchResult extends Request {
|
|
120580
120746
|
this._project = (_z = data.project) !== null && _z !== void 0 ? _z : undefined;
|
120581
120747
|
this._projectMilestone = (_0 = data.projectMilestone) !== null && _0 !== void 0 ? _0 : undefined;
|
120582
120748
|
this._snoozedBy = (_1 = data.snoozedBy) !== null && _1 !== void 0 ? _1 : undefined;
|
120749
|
+
this._sourceComment = (_2 = data.sourceComment) !== null && _2 !== void 0 ? _2 : undefined;
|
120583
120750
|
this._state = data.state;
|
120584
120751
|
this._team = data.team;
|
120585
120752
|
}
|
@@ -120639,6 +120806,11 @@ class IssueSearchResult extends Request {
|
|
120639
120806
|
var _a, _b;
|
120640
120807
|
return ((_a = this._snoozedBy) === null || _a === void 0 ? void 0 : _a.id) ? new UserQuery(this._request).fetch((_b = this._snoozedBy) === null || _b === void 0 ? void 0 : _b.id) : undefined;
|
120641
120808
|
}
|
120809
|
+
/** The comment that this issue was created from. */
|
120810
|
+
get sourceComment() {
|
120811
|
+
var _a, _b;
|
120812
|
+
return ((_a = this._sourceComment) === null || _a === void 0 ? void 0 : _a.id) ? new CommentQuery(this._request).fetch({ id: (_b = this._sourceComment) === null || _b === void 0 ? void 0 : _b.id }) : undefined;
|
120813
|
+
}
|
120642
120814
|
/** The workflow state that the issue is associated with. */
|
120643
120815
|
get state() {
|
120644
120816
|
return new WorkflowStateQuery(this._request).fetch(this._state.id);
|
@@ -121390,6 +121562,7 @@ class OrganizationInviteFullDetailsPayload extends Request {
|
|
121390
121562
|
var _a, _b;
|
121391
121563
|
super(request);
|
121392
121564
|
this.accepted = data.accepted;
|
121565
|
+
this.allowedAuthServices = data.allowedAuthServices;
|
121393
121566
|
this.createdAt = (_a = parseDate(data.createdAt)) !== null && _a !== void 0 ? _a : new Date();
|
121394
121567
|
this.email = data.email;
|
121395
121568
|
this.expired = data.expired;
|
@@ -121399,6 +121572,24 @@ class OrganizationInviteFullDetailsPayload extends Request {
|
|
121399
121572
|
this.organizationName = data.organizationName;
|
121400
121573
|
}
|
121401
121574
|
}
|
121575
|
+
/**
|
121576
|
+
* OrganizationInviteLinkDetailsPayload model
|
121577
|
+
*
|
121578
|
+
* @param request - function to call the graphql client
|
121579
|
+
* @param data - L.OrganizationInviteLinkDetailsPayloadFragment response data
|
121580
|
+
*/
|
121581
|
+
class OrganizationInviteLinkDetailsPayload extends Request {
|
121582
|
+
constructor(request, data) {
|
121583
|
+
var _a, _b, _c, _d, _e;
|
121584
|
+
super(request);
|
121585
|
+
this.allowedAuthServices = data.allowedAuthServices;
|
121586
|
+
this.organizationId = (_a = data.organizationId) !== null && _a !== void 0 ? _a : undefined;
|
121587
|
+
this.organizationLogoUrl = (_b = data.organizationLogoUrl) !== null && _b !== void 0 ? _b : undefined;
|
121588
|
+
this.organizationName = (_c = data.organizationName) !== null && _c !== void 0 ? _c : undefined;
|
121589
|
+
this.organizationRegion = (_d = data.organizationRegion) !== null && _d !== void 0 ? _d : undefined;
|
121590
|
+
this.organizationUrlKey = (_e = data.organizationUrlKey) !== null && _e !== void 0 ? _e : undefined;
|
121591
|
+
}
|
121592
|
+
}
|
121402
121593
|
/**
|
121403
121594
|
* OrganizationInvitePayload model
|
121404
121595
|
*
|
@@ -121434,6 +121625,20 @@ class OrganizationPayload extends Request {
|
|
121434
121625
|
return new OrganizationQuery(this._request).fetch();
|
121435
121626
|
}
|
121436
121627
|
}
|
121628
|
+
/**
|
121629
|
+
* OrganizationRegionResponse model
|
121630
|
+
*
|
121631
|
+
* @param request - function to call the graphql client
|
121632
|
+
* @param data - L.OrganizationRegionResponseFragment response data
|
121633
|
+
*/
|
121634
|
+
class OrganizationRegionResponse extends Request {
|
121635
|
+
constructor(request, data) {
|
121636
|
+
var _a;
|
121637
|
+
super(request);
|
121638
|
+
this.region = (_a = data.region) !== null && _a !== void 0 ? _a : undefined;
|
121639
|
+
this.success = data.success;
|
121640
|
+
}
|
121641
|
+
}
|
121437
121642
|
/**
|
121438
121643
|
* OrganizationStartPlusTrialPayload model
|
121439
121644
|
*
|
@@ -121517,7 +121722,7 @@ class PaidSubscription extends Request {
|
|
121517
121722
|
*/
|
121518
121723
|
class Project extends Request {
|
121519
121724
|
constructor(request, data) {
|
121520
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t;
|
121725
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u;
|
121521
121726
|
super(request);
|
121522
121727
|
this.archivedAt = (_a = parseDate(data.archivedAt)) !== null && _a !== void 0 ? _a : undefined;
|
121523
121728
|
this.autoArchivedAt = (_b = parseDate(data.autoArchivedAt)) !== null && _b !== void 0 ? _b : undefined;
|
@@ -121552,9 +121757,10 @@ class Project extends Request {
|
|
121552
121757
|
this.url = data.url;
|
121553
121758
|
this._convertedFromIssue = (_p = data.convertedFromIssue) !== null && _p !== void 0 ? _p : undefined;
|
121554
121759
|
this._creator = (_q = data.creator) !== null && _q !== void 0 ? _q : undefined;
|
121555
|
-
this.
|
121556
|
-
this.
|
121557
|
-
this.
|
121760
|
+
this._favorite = (_r = data.favorite) !== null && _r !== void 0 ? _r : undefined;
|
121761
|
+
this._integrationsSettings = (_s = data.integrationsSettings) !== null && _s !== void 0 ? _s : undefined;
|
121762
|
+
this._lastAppliedTemplate = (_t = data.lastAppliedTemplate) !== null && _t !== void 0 ? _t : undefined;
|
121763
|
+
this._lead = (_u = data.lead) !== null && _u !== void 0 ? _u : undefined;
|
121558
121764
|
}
|
121559
121765
|
/** The project was created based on this issue. */
|
121560
121766
|
get convertedFromIssue() {
|
@@ -121566,6 +121772,11 @@ class Project extends Request {
|
|
121566
121772
|
var _a, _b;
|
121567
121773
|
return ((_a = this._creator) === null || _a === void 0 ? void 0 : _a.id) ? new UserQuery(this._request).fetch((_b = this._creator) === null || _b === void 0 ? void 0 : _b.id) : undefined;
|
121568
121774
|
}
|
121775
|
+
/** The user's favorite associated with this project. */
|
121776
|
+
get favorite() {
|
121777
|
+
var _a, _b;
|
121778
|
+
return ((_a = this._favorite) === null || _a === void 0 ? void 0 : _a.id) ? new FavoriteQuery(this._request).fetch((_b = this._favorite) === null || _b === void 0 ? void 0 : _b.id) : undefined;
|
121779
|
+
}
|
121569
121780
|
/** Settings for all integrations associated with that project. */
|
121570
121781
|
get integrationsSettings() {
|
121571
121782
|
var _a, _b;
|
@@ -121974,7 +122185,7 @@ class ProjectSearchPayload extends Request {
|
|
121974
122185
|
*/
|
121975
122186
|
class ProjectSearchResult extends Request {
|
121976
122187
|
constructor(request, data) {
|
121977
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t;
|
122188
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u;
|
121978
122189
|
super(request);
|
121979
122190
|
this.archivedAt = (_a = parseDate(data.archivedAt)) !== null && _a !== void 0 ? _a : undefined;
|
121980
122191
|
this.autoArchivedAt = (_b = parseDate(data.autoArchivedAt)) !== null && _b !== void 0 ? _b : undefined;
|
@@ -122010,9 +122221,10 @@ class ProjectSearchResult extends Request {
|
|
122010
122221
|
this.url = data.url;
|
122011
122222
|
this._convertedFromIssue = (_p = data.convertedFromIssue) !== null && _p !== void 0 ? _p : undefined;
|
122012
122223
|
this._creator = (_q = data.creator) !== null && _q !== void 0 ? _q : undefined;
|
122013
|
-
this.
|
122014
|
-
this.
|
122015
|
-
this.
|
122224
|
+
this._favorite = (_r = data.favorite) !== null && _r !== void 0 ? _r : undefined;
|
122225
|
+
this._integrationsSettings = (_s = data.integrationsSettings) !== null && _s !== void 0 ? _s : undefined;
|
122226
|
+
this._lastAppliedTemplate = (_t = data.lastAppliedTemplate) !== null && _t !== void 0 ? _t : undefined;
|
122227
|
+
this._lead = (_u = data.lead) !== null && _u !== void 0 ? _u : undefined;
|
122016
122228
|
}
|
122017
122229
|
/** The project was created based on this issue. */
|
122018
122230
|
get convertedFromIssue() {
|
@@ -122024,6 +122236,11 @@ class ProjectSearchResult extends Request {
|
|
122024
122236
|
var _a, _b;
|
122025
122237
|
return ((_a = this._creator) === null || _a === void 0 ? void 0 : _a.id) ? new UserQuery(this._request).fetch((_b = this._creator) === null || _b === void 0 ? void 0 : _b.id) : undefined;
|
122026
122238
|
}
|
122239
|
+
/** The user's favorite associated with this project. */
|
122240
|
+
get favorite() {
|
122241
|
+
var _a, _b;
|
122242
|
+
return ((_a = this._favorite) === null || _a === void 0 ? void 0 : _a.id) ? new FavoriteQuery(this._request).fetch((_b = this._favorite) === null || _b === void 0 ? void 0 : _b.id) : undefined;
|
122243
|
+
}
|
122027
122244
|
/** Settings for all integrations associated with that project. */
|
122028
122245
|
get integrationsSettings() {
|
122029
122246
|
var _a, _b;
|
@@ -122586,6 +122803,21 @@ class SentrySettings extends Request {
|
|
122586
122803
|
this.organizationSlug = data.organizationSlug;
|
122587
122804
|
}
|
122588
122805
|
}
|
122806
|
+
/**
|
122807
|
+
* Shared Slack integration settings.
|
122808
|
+
*
|
122809
|
+
* @param request - function to call the graphql client
|
122810
|
+
* @param data - L.SharedSlackSettingsFragment response data
|
122811
|
+
*/
|
122812
|
+
class SharedSlackSettings extends Request {
|
122813
|
+
constructor(request, data) {
|
122814
|
+
var _a, _b, _c;
|
122815
|
+
super(request);
|
122816
|
+
this.enterpriseName = (_a = data.enterpriseName) !== null && _a !== void 0 ? _a : undefined;
|
122817
|
+
this.teamId = (_b = data.teamId) !== null && _b !== void 0 ? _b : undefined;
|
122818
|
+
this.teamName = (_c = data.teamName) !== null && _c !== void 0 ? _c : undefined;
|
122819
|
+
}
|
122820
|
+
}
|
122589
122821
|
/**
|
122590
122822
|
* Slack Asks specific settings.
|
122591
122823
|
*
|
@@ -122594,7 +122826,11 @@ class SentrySettings extends Request {
|
|
122594
122826
|
*/
|
122595
122827
|
class SlackAsksSettings extends Request {
|
122596
122828
|
constructor(request, data) {
|
122829
|
+
var _a, _b, _c;
|
122597
122830
|
super(request);
|
122831
|
+
this.enterpriseName = (_a = data.enterpriseName) !== null && _a !== void 0 ? _a : undefined;
|
122832
|
+
this.teamId = (_b = data.teamId) !== null && _b !== void 0 ? _b : undefined;
|
122833
|
+
this.teamName = (_c = data.teamName) !== null && _c !== void 0 ? _c : undefined;
|
122598
122834
|
this.slackChannelMapping = data.slackChannelMapping
|
122599
122835
|
? data.slackChannelMapping.map(node => new SlackChannelNameMapping(request, node))
|
122600
122836
|
: undefined;
|
@@ -122680,8 +122916,12 @@ class SlackPostSettings extends Request {
|
|
122680
122916
|
*/
|
122681
122917
|
class SlackSettings extends Request {
|
122682
122918
|
constructor(request, data) {
|
122919
|
+
var _a, _b, _c;
|
122683
122920
|
super(request);
|
122921
|
+
this.enterpriseName = (_a = data.enterpriseName) !== null && _a !== void 0 ? _a : undefined;
|
122684
122922
|
this.linkOnIssueIdMention = data.linkOnIssueIdMention;
|
122923
|
+
this.teamId = (_b = data.teamId) !== null && _b !== void 0 ? _b : undefined;
|
122924
|
+
this.teamName = (_c = data.teamName) !== null && _c !== void 0 ? _c : undefined;
|
122685
122925
|
}
|
122686
122926
|
}
|
122687
122927
|
/**
|
@@ -125384,6 +125624,31 @@ class OrganizationInvitesQuery extends Request {
|
|
125384
125624
|
});
|
125385
125625
|
}
|
125386
125626
|
}
|
125627
|
+
/**
|
125628
|
+
* A fetchable OrganizationRegion Query
|
125629
|
+
*
|
125630
|
+
* @param request - function to call the graphql client
|
125631
|
+
*/
|
125632
|
+
class OrganizationRegionQuery extends Request {
|
125633
|
+
constructor(request) {
|
125634
|
+
super(request);
|
125635
|
+
}
|
125636
|
+
/**
|
125637
|
+
* Call the OrganizationRegion query and return a OrganizationRegionResponse
|
125638
|
+
*
|
125639
|
+
* @param id - required id to pass to organizationRegion
|
125640
|
+
* @returns parsed response from OrganizationRegionQuery
|
125641
|
+
*/
|
125642
|
+
fetch(id) {
|
125643
|
+
return __awaiter(this, void 0, void 0, function* () {
|
125644
|
+
const response = yield this._request(OrganizationRegionDocument, {
|
125645
|
+
id,
|
125646
|
+
});
|
125647
|
+
const data = response.organizationRegion;
|
125648
|
+
return new OrganizationRegionResponse(this._request, data);
|
125649
|
+
});
|
125650
|
+
}
|
125651
|
+
}
|
125387
125652
|
/**
|
125388
125653
|
* A fetchable Project Query
|
125389
125654
|
*
|
@@ -126669,31 +126934,6 @@ class AttachmentLinkZendeskMutation extends Request {
|
|
126669
126934
|
});
|
126670
126935
|
}
|
126671
126936
|
}
|
126672
|
-
/**
|
126673
|
-
* A fetchable AttachmentUnsyncSlack Mutation
|
126674
|
-
*
|
126675
|
-
* @param request - function to call the graphql client
|
126676
|
-
*/
|
126677
|
-
class AttachmentUnsyncSlackMutation extends Request {
|
126678
|
-
constructor(request) {
|
126679
|
-
super(request);
|
126680
|
-
}
|
126681
|
-
/**
|
126682
|
-
* Call the AttachmentUnsyncSlack mutation and return a AttachmentPayload
|
126683
|
-
*
|
126684
|
-
* @param id - required id to pass to attachmentUnsyncSlack
|
126685
|
-
* @returns parsed response from AttachmentUnsyncSlackMutation
|
126686
|
-
*/
|
126687
|
-
fetch(id) {
|
126688
|
-
return __awaiter(this, void 0, void 0, function* () {
|
126689
|
-
const response = yield this._request(AttachmentUnsyncSlackDocument, {
|
126690
|
-
id,
|
126691
|
-
});
|
126692
|
-
const data = response.attachmentUnsyncSlack;
|
126693
|
-
return new AttachmentPayload(this._request, data);
|
126694
|
-
});
|
126695
|
-
}
|
126696
|
-
}
|
126697
126937
|
/**
|
126698
126938
|
* A fetchable UpdateAttachment Mutation
|
126699
126939
|
*
|
@@ -134011,6 +134251,15 @@ class LinearSdk extends Request {
|
|
134011
134251
|
organizationInvites(variables) {
|
134012
134252
|
return new OrganizationInvitesQuery(this._request).fetch(variables);
|
134013
134253
|
}
|
134254
|
+
/**
|
134255
|
+
* Fetch the region for the organization.
|
134256
|
+
*
|
134257
|
+
* @param id - required id to pass to organizationRegion
|
134258
|
+
* @returns OrganizationRegionResponse
|
134259
|
+
*/
|
134260
|
+
organizationRegion(id) {
|
134261
|
+
return new OrganizationRegionQuery(this._request).fetch(id);
|
134262
|
+
}
|
134014
134263
|
/**
|
134015
134264
|
* One specific project.
|
134016
134265
|
*
|
@@ -134504,15 +134753,6 @@ class LinearSdk extends Request {
|
|
134504
134753
|
attachmentLinkZendesk(issueId, ticketId, variables) {
|
134505
134754
|
return new AttachmentLinkZendeskMutation(this._request).fetch(issueId, ticketId, variables);
|
134506
134755
|
}
|
134507
|
-
/**
|
134508
|
-
* [DEPRECATED] Unsyncs an existing synced Slack attachment.
|
134509
|
-
*
|
134510
|
-
* @param id - required id to pass to attachmentUnsyncSlack
|
134511
|
-
* @returns AttachmentPayload
|
134512
|
-
*/
|
134513
|
-
attachmentUnsyncSlack(id) {
|
134514
|
-
return new AttachmentUnsyncSlackMutation(this._request).fetch(id);
|
134515
|
-
}
|
134516
134756
|
/**
|
134517
134757
|
* Updates an existing issue attachment.
|
134518
134758
|
*
|
@@ -134748,7 +134988,7 @@ class LinearSdk extends Request {
|
|
134748
134988
|
return new EmailTokenUserAccountAuthMutation(this._request).fetch(input);
|
134749
134989
|
}
|
134750
134990
|
/**
|
134751
|
-
* Unsubscribes the user from one type of
|
134991
|
+
* Unsubscribes the user from one type of email.
|
134752
134992
|
*
|
134753
134993
|
* @param input - required input to pass to emailUnsubscribe
|
134754
134994
|
* @returns EmailUnsubscribePayload
|
@@ -136345,6 +136585,23 @@ class LinearClient extends LinearSdk {
|
|
136345
136585
|
this.options = parsedOptions;
|
136346
136586
|
this.client = graphQLClient;
|
136347
136587
|
}
|
136588
|
+
/**
|
136589
|
+
* Helper to paginate over all pages of a given connection query.
|
136590
|
+
* @param fn The query to paginate
|
136591
|
+
* @param args The arguments to pass to the query
|
136592
|
+
*/
|
136593
|
+
paginate(fn, args) {
|
136594
|
+
return __awaiter(this, void 0, void 0, function* () {
|
136595
|
+
const boundFn = fn.bind(this);
|
136596
|
+
let connection = (yield boundFn(args));
|
136597
|
+
const nodes = connection.nodes;
|
136598
|
+
while (connection.pageInfo.hasNextPage) {
|
136599
|
+
connection = (yield boundFn(Object.assign(Object.assign({}, args), { after: connection.pageInfo.endCursor })));
|
136600
|
+
nodes.push(...connection.nodes);
|
136601
|
+
}
|
136602
|
+
return nodes;
|
136603
|
+
});
|
136604
|
+
}
|
136348
136605
|
}
|
136349
136606
|
|
136350
136607
|
const LINEAR_WEBHOOK_SIGNATURE_HEADER = "linear-signature";
|
@@ -136382,5 +136639,5 @@ class LinearWebhooks {
|
|
136382
136639
|
}
|
136383
136640
|
}
|
136384
136641
|
|
136385
|
-
export { ActorBot, AdministrableTeamsQuery, AirbyteIntegrationConnectMutation, ApiKey, ApiKeyConnection, ApiKeyPayload, ApiKeysQuery, Application, ApplicationInfoQuery, ApplicationWithAuthorizationQuery, ArchiveAttachmentMutation, ArchiveCycleMutation, ArchiveIntegrationMutation, ArchiveIssueMutation, ArchiveNotificationMutation, ArchivePayload, ArchiveProjectMutation, ArchiveResponse, ArchiveRoadmapMutation, ArchiveWorkflowStateMutation, AsksChannelConnectPayload, Attachment, AttachmentArchivePayload, AttachmentConnection, AttachmentIssueQuery, AttachmentIssue_AttachmentsQuery, AttachmentIssue_BotActorQuery, AttachmentIssue_ChildrenQuery, AttachmentIssue_CommentsQuery, AttachmentIssue_HistoryQuery, AttachmentIssue_InverseRelationsQuery, AttachmentIssue_LabelsQuery, AttachmentIssue_RelationsQuery, AttachmentIssue_SubscribersQuery, AttachmentLinkDiscordMutation, AttachmentLinkFrontMutation, AttachmentLinkGitHubIssueMutation, AttachmentLinkGitHubPrMutation, AttachmentLinkGitLabMrMutation, AttachmentLinkIntercomMutation, AttachmentLinkJiraIssueMutation, AttachmentLinkSlackMutation, AttachmentLinkUrlMutation, AttachmentLinkZendeskMutation, AttachmentPayload, AttachmentQuery, AttachmentSourcesPayload, AttachmentUnsyncSlackMutation, AttachmentsForUrlQuery, AttachmentsQuery, AuditEntriesQuery, AuditEntry, AuditEntryConnection, AuditEntryType, AuditEntryTypesQuery, AuthApiKey, AuthApiKeyPayload, AuthIntegration, AuthOauthClient, AuthOauthClientWithMemberships, AuthOauthClientWithScope, AuthOauthClientWithTokens, AuthOrganization, AuthOrganizationDomain, AuthOrganizationInvite, AuthResolverResponse, AuthSuccessPayload, AuthUser, AuthenticationLinearError, AuthenticationSession, AuthenticationSessionResponse, AuthenticationSessionsQuery, AuthorizedApplicationBase, AvailableUsersQuery, BootstrapLinearError, Comment, CommentConnection, CommentPayload, CommentQuery, CommentResolveMutation, CommentUnresolveMutation, Comment_BotActorQuery, Comment_ChildrenQuery, Comment_DocumentContentQuery, CommentsQuery, Company, CompanyConnection, Connection, ContactPayload, CreateApiKeyMutation, CreateAttachmentMutation, CreateCommentMutation, CreateContactMutation, CreateCsvExportReportMutation, CreateCsvExportReportPayload, CreateCustomViewMutation, CreateCycleMutation, CreateDocumentMutation, CreateEmailIntakeAddressMutation, CreateEmojiMutation, CreateFavoriteMutation, CreateGitAutomationStateMutation, CreateGitAutomationTargetBranchMutation, CreateIntegrationGithubCommitMutation, CreateIntegrationTemplateMutation, CreateIntegrationsSettingsMutation, CreateIssueLabelMutation, CreateIssueMutation, CreateIssueRelationMutation, CreateNotificationSubscriptionMutation, CreateOrJoinOrganizationResponse, CreateOrganizationFromOnboardingMutation, CreateOrganizationInviteMutation, CreateProjectLinkMutation, CreateProjectMilestoneMutation, CreateProjectMutation, CreateProjectUpdateInteractionMutation, CreateProjectUpdateMutation, CreateProjectUpdateReminderMutation, CreatePushSubscriptionMutation, CreateReactionMutation, CreateRoadmapMutation, CreateRoadmapToProjectMutation, CreateTeamMembershipMutation, CreateTeamMutation, CreateTemplateMutation, CreateViewPreferencesMutation, CreateWebhookMutation, CreateWorkflowStateMutation, CustomView, CustomViewConnection, CustomViewHasSubscribersPayload, CustomViewHasSubscribersQuery, CustomViewNotificationSubscription, CustomViewPayload, CustomViewQuery, CustomViewSuggestionPayload, CustomView_IssuesQuery, CustomViewsQuery, Cycle, CycleArchivePayload, CycleConnection, CycleNotificationSubscription, CyclePayload, CycleQuery, CycleShiftAllMutation, Cycle_IssuesQuery, Cycle_UncompletedIssuesUponCloseQuery, CyclesQuery, DeleteApiKeyMutation, DeleteAttachmentMutation, DeleteCommentMutation, DeleteCustomViewMutation, DeleteDocumentMutation, DeleteEmailIntakeAddressMutation, DeleteEmojiMutation, DeleteFavoriteMutation, DeleteGitAutomationStateMutation, DeleteGitAutomationTargetBranchMutation, DeleteIntegrationIntercomMutation, DeleteIntegrationMutation, DeleteIntegrationTemplateMutation, DeleteIssueImportMutation, DeleteIssueLabelMutation, DeleteIssueMutation, DeleteIssueRelationMutation, DeleteNotificationSubscriptionMutation, DeleteOrganizationCancelMutation, DeleteOrganizationDomainMutation, DeleteOrganizationInviteMutation, DeleteOrganizationMutation, DeletePayload, DeleteProjectLinkMutation, DeleteProjectMilestoneMutation, DeleteProjectMutation, DeleteProjectUpdateMutation, DeletePushSubscriptionMutation, DeleteReactionMutation, DeleteRoadmapMutation, DeleteRoadmapToProjectMutation, DeleteTeamCyclesMutation, DeleteTeamKeyMutation, DeleteTeamMembershipMutation, DeleteTeamMutation, DeleteTemplateMutation, DeleteViewPreferencesMutation, DeleteWebhookMutation, Document, DocumentConnection, DocumentContent, DocumentContentHistory, DocumentContentHistoryPayload, DocumentContentHistoryQuery, DocumentContentHistoryType, DocumentPayload, DocumentQuery, DocumentSearchPayload, DocumentSearchResult, DocumentSearchResultConnection, DocumentsQuery, EmailIntakeAddress, EmailIntakeAddressPayload, EmailIntakeAddressRotateMutation, EmailTokenUserAccountAuthMutation, EmailUnsubscribeMutation, EmailUnsubscribePayload, EmailUserAccountAuthChallengeMutation, EmailUserAccountAuthChallengeResponse, Emoji, EmojiConnection, EmojiPayload, EmojiQuery, EmojisQuery, Entity, ExternalUser, ExternalUserConnection, ExternalUserQuery, ExternalUsersQuery, Favorite, FavoriteConnection, FavoritePayload, FavoriteQuery, Favorite_ChildrenQuery, FavoritesQuery, FeatureNotAccessibleLinearError, FileUploadMutation, ForbiddenLinearError, FrontAttachmentPayload, FrontSettings, GitAutomationState, GitAutomationStateConnection, GitAutomationStatePayload, GitAutomationTargetBranch, GitAutomationTargetBranchPayload, GitHubCommitIntegrationPayload, GitHubPersonalSettings, GitHubRepo, GitHubSettings, GitLabSettings, GithubOAuthTokenPayload, GithubOrg, GithubRepo, GoogleSheetsSettings, GoogleUserAccountAuthMutation, GraphQLClientError, GraphqlLinearError, ImageUploadFromUrlMutation, ImageUploadFromUrlPayload, ImportFileUploadMutation, InitiativeArchivePayload, Integration, IntegrationAsksConnectChannelMutation, IntegrationConnection, IntegrationDiscordMutation, IntegrationFigmaMutation, IntegrationFrontMutation, IntegrationGitHubPersonalMutation, IntegrationGithubConnectMutation, IntegrationGitlabConnectMutation, IntegrationGoogleSheetsMutation, IntegrationHasScopesPayload, IntegrationHasScopesQuery, IntegrationIntercomMutation, IntegrationJiraPersonalMutation, IntegrationLoomMutation, IntegrationPayload, IntegrationQuery, IntegrationRequestMutation, IntegrationRequestPayload, IntegrationSentryConnectMutation, IntegrationSettings, IntegrationSlackAsksMutation, IntegrationSlackImportEmojisMutation, IntegrationSlackMutation, IntegrationSlackOrgProjectUpdatesPostMutation, IntegrationSlackPersonalMutation, IntegrationSlackPostMutation, IntegrationSlackProjectPostMutation, IntegrationTemplate, IntegrationTemplateConnection, IntegrationTemplatePayload, IntegrationTemplateQuery, IntegrationTemplatesQuery, IntegrationUpdateSlackMutation, IntegrationZendeskMutation, IntegrationsQuery, IntegrationsSettings, IntegrationsSettingsConnection, IntegrationsSettingsPayload, IntegrationsSettingsQuery, IntercomSettings, InternalLinearError, InvalidInputLinearError, Issue, IssueAddLabelMutation, IssueArchivePayload, IssueBatchPayload, IssueConnection, IssueFigmaFileKeySearchQuery, IssueFilterSuggestionPayload, IssueFilterSuggestionQuery, IssueHistory, IssueHistoryConnection, IssueImport, IssueImportCheckCsvQuery, IssueImportCheckPayload, IssueImportCreateAsanaMutation, IssueImportCreateClubhouseMutation, IssueImportCreateCsvJiraMutation, IssueImportCreateGithubMutation, IssueImportCreateJiraMutation, IssueImportDeletePayload, IssueImportFinishGithubOAuthQuery, IssueImportPayload, IssueImportProcessMutation, IssueLabel, IssueLabelConnection, IssueLabelPayload, IssueLabelQuery, IssueLabel_ChildrenQuery, IssueLabel_IssuesQuery, IssueLabelsQuery, IssueNotification, IssuePayload, IssuePriorityValue, IssuePriorityValuesQuery, IssueQuery, IssueRelation, IssueRelationConnection, IssueRelationHistoryPayload, IssueRelationPayload, IssueRelationQuery, IssueRelationsQuery, IssueReminderMutation, IssueRemoveLabelMutation, IssueSearchPayload, IssueSearchQuery, IssueSearchResult, IssueSearchResultConnection, IssueSubscribeMutation, IssueUnsubscribeMutation, IssueVcsBranchSearchQuery, IssueVcsBranchSearch_AttachmentsQuery, IssueVcsBranchSearch_BotActorQuery, IssueVcsBranchSearch_ChildrenQuery, IssueVcsBranchSearch_CommentsQuery, IssueVcsBranchSearch_HistoryQuery, IssueVcsBranchSearch_InverseRelationsQuery, IssueVcsBranchSearch_LabelsQuery, IssueVcsBranchSearch_RelationsQuery, IssueVcsBranchSearch_SubscribersQuery, Issue_AttachmentsQuery, Issue_BotActorQuery, Issue_ChildrenQuery, Issue_CommentsQuery, Issue_HistoryQuery, Issue_InverseRelationsQuery, Issue_LabelsQuery, Issue_RelationsQuery, Issue_SubscribersQuery, IssuesQuery, JiraLinearMapping, JiraPersonalSettings, JiraProjectData, JiraSettings, JoinOrganizationFromOnboardingMutation, LINEAR_WEBHOOK_SIGNATURE_HEADER, LINEAR_WEBHOOK_TS_FIELD, LabelNotificationSubscription, LeaveOrganizationMutation, LinearClient, LinearConnection, _generated_documents as LinearDocument, LinearError, LinearErrorType, LinearGraphQLClient, LinearGraphQLError, LinearSdk, LinearWebhooks, LockTimeoutLinearError, LogoutAllSessionsMutation, LogoutMutation, LogoutOtherSessionsMutation, LogoutResponse, LogoutSessionMutation, NetworkLinearError, Node, Notification, NotificationArchiveAllMutation, NotificationArchivePayload, NotificationBatchActionPayload, NotificationConnection, NotificationMarkReadAllMutation, NotificationMarkUnreadAllMutation, NotificationPayload, NotificationQuery, NotificationSnoozeAllMutation, NotificationSubscription, NotificationSubscriptionConnection, NotificationSubscriptionPayload, NotificationSubscriptionQuery, NotificationSubscriptionsQuery, NotificationUnsnoozeAllMutation, NotificationsQuery, NotionSettings, OauthClient, OauthClientApproval, OauthClientApprovalNotification, OauthClientConnection, OauthToken, OpsgenieSettings, Organization, OrganizationCancelDeletePayload, OrganizationDeleteChallengeMutation, OrganizationDeletePayload, OrganizationDomain, OrganizationExistsPayload, OrganizationExistsQuery, OrganizationInvite, OrganizationInviteConnection, OrganizationInviteFullDetailsPayload, OrganizationInvitePayload, OrganizationInviteQuery, OrganizationInvitesQuery, OrganizationPayload, OrganizationQuery, OrganizationStartPlusTrialMutation, OrganizationStartPlusTrialPayload, Organization_IntegrationsQuery, Organization_LabelsQuery, Organization_SubscriptionQuery, Organization_TeamsQuery, Organization_TemplatesQuery, Organization_UsersQuery, OtherLinearError, PageInfo, PagerDutySettings, PaidSubscription, Project, ProjectArchivePayload, ProjectConnection, ProjectFilterSuggestionPayload, ProjectFilterSuggestionQuery, ProjectLink, ProjectLinkConnection, ProjectLinkPayload, ProjectLinkQuery, ProjectLinksQuery, ProjectMilestone, ProjectMilestoneConnection, ProjectMilestonePayload, ProjectMilestoneQuery, ProjectMilestone_IssuesQuery, ProjectMilestonesQuery, ProjectNotification, ProjectNotificationSubscription, ProjectPayload, ProjectQuery, ProjectSearchPayload, ProjectSearchResult, ProjectSearchResultConnection, ProjectUpdate, ProjectUpdateConnection, ProjectUpdateInteraction, ProjectUpdateInteractionConnection, ProjectUpdateInteractionPayload, ProjectUpdateInteractionQuery, ProjectUpdateInteractionsQuery, ProjectUpdateMarkAsReadMutation, ProjectUpdatePayload, ProjectUpdateQuery, ProjectUpdateReminderPayload, ProjectUpdateWithInteractionPayload, ProjectUpdatesQuery, Project_DocumentsQuery, Project_IssuesQuery, Project_LinksQuery, Project_MembersQuery, Project_ProjectMilestonesQuery, Project_ProjectUpdatesQuery, Project_TeamsQuery, ProjectsQuery, PushSubscription, PushSubscriptionConnection, PushSubscriptionPayload, PushSubscriptionTestPayload, PushSubscriptionTestQuery, RateLimitPayload, RateLimitResultPayload, RateLimitStatusQuery, RatelimitedLinearError, Reaction, ReactionConnection, ReactionPayload, RefreshGoogleSheetsDataMutation, Request, ResendOrganizationInviteMutation, Roadmap, RoadmapArchivePayload, RoadmapConnection, RoadmapPayload, RoadmapQuery, RoadmapToProject, RoadmapToProjectConnection, RoadmapToProjectPayload, RoadmapToProjectQuery, RoadmapToProjectsQuery, Roadmap_ProjectsQuery, RoadmapsQuery, SamlTokenUserAccountAuthMutation, SearchDocumentsQuery, SearchDocuments_ArchivePayloadQuery, SearchIssuesQuery, SearchIssues_ArchivePayloadQuery, SearchProjectsQuery, SearchProjects_ArchivePayloadQuery, SentrySettings, SlackAsksSettings, SlackAsksTeamSettings, SlackChannelConnectPayload, SlackChannelNameMapping, SlackPostSettings, SlackSettings, SsoUrlFromEmailQuery, SsoUrlFromEmailResponse, SuspendUserMutation, SynchronizedPayload, Team, TeamArchivePayload, TeamConnection, TeamMembership, TeamMembershipConnection, TeamMembershipPayload, TeamMembershipQuery, TeamMembershipsQuery, TeamNotificationSubscription, TeamPayload, TeamQuery, TeamRepoMapping, 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, TriageResponsibility, TriageResponsibilityConnection, TriageResponsibilityManualSelection, TriageResponsibilityPayload, UnarchiveIssueMutation, UnarchiveNotificationMutation, UnarchiveProjectMutation, UnarchiveRoadmapMutation, UnarchiveTeamMutation, UnknownLinearError, UnsuspendUserMutation, UpdateAttachmentMutation, UpdateCommentMutation, UpdateCustomViewMutation, UpdateCycleMutation, UpdateDocumentMutation, UpdateEmailIntakeAddressMutation, UpdateFavoriteMutation, UpdateGitAutomationStateMutation, UpdateGitAutomationTargetBranchMutation, UpdateIntegrationIntercomSettingsMutation, UpdateIntegrationsSettingsMutation, UpdateIssueBatchMutation, UpdateIssueImportMutation, UpdateIssueLabelMutation, UpdateIssueMutation, UpdateIssueRelationMutation, UpdateNotificationMutation, UpdateNotificationSubscriptionMutation, UpdateOrganizationInviteMutation, UpdateOrganizationMutation, UpdateProjectLinkMutation, UpdateProjectMilestoneMutation, UpdateProjectMutation, UpdateProjectUpdateMutation, UpdateRoadmapMutation, UpdateRoadmapToProjectMutation, UpdateTeamMembershipMutation, UpdateTeamMutation, UpdateTemplateMutation, UpdateUserFlagMutation, UpdateUserMutation, UpdateUserSettingsMutation, UpdateViewPreferencesMutation, UpdateWebhookMutation, UpdateWorkflowStateMutation, UploadFile, UploadFileHeader, UploadPayload, User, UserAccount, UserAdminPayload, UserAuthorizedApplication, UserConnection, UserDemoteAdminMutation, UserDemoteMemberMutation, UserDiscordConnectMutation, UserExternalUserDisconnectMutation, UserLinearError, UserNotificationSubscription, UserPayload, UserPromoteAdminMutation, UserPromoteMemberMutation, UserQuery, UserSettings, UserSettingsFlagIncrementMutation, UserSettingsFlagPayload, UserSettingsFlagsResetMutation, UserSettingsFlagsResetPayload, UserSettingsPayload, UserSettingsQuery, User_AssignedIssuesQuery, User_CreatedIssuesQuery, User_TeamMembershipsQuery, User_TeamsQuery, UsersQuery, ViewPreferences, ViewPreferencesPayload, ViewerQuery, Viewer_AssignedIssuesQuery, Viewer_CreatedIssuesQuery, Viewer_TeamMembershipsQuery, Viewer_TeamsQuery, Webhook, WebhookConnection, WebhookPayload, WebhookQuery, WebhooksQuery, WorkflowCronJobDefinition, WorkflowCronJobDefinitionConnection, WorkflowDefinition, WorkflowDefinitionConnection, WorkflowState, WorkflowStateArchivePayload, WorkflowStateConnection, WorkflowStatePayload, WorkflowStateQuery, WorkflowState_IssuesQuery, WorkflowStatesQuery, ZendeskSettings, parseLinearError };
|
136642
|
+
export { ActorBot, AdministrableTeamsQuery, AirbyteIntegrationConnectMutation, ApiKey, ApiKeyConnection, ApiKeyPayload, ApiKeysQuery, Application, ApplicationInfoQuery, ApplicationWithAuthorizationQuery, ArchiveAttachmentMutation, ArchiveCycleMutation, ArchiveIntegrationMutation, ArchiveIssueMutation, ArchiveNotificationMutation, ArchivePayload, ArchiveProjectMutation, ArchiveResponse, ArchiveRoadmapMutation, ArchiveWorkflowStateMutation, AsksChannelConnectPayload, Attachment, AttachmentArchivePayload, AttachmentConnection, AttachmentIssueQuery, AttachmentIssue_AttachmentsQuery, AttachmentIssue_BotActorQuery, AttachmentIssue_ChildrenQuery, AttachmentIssue_CommentsQuery, AttachmentIssue_HistoryQuery, AttachmentIssue_InverseRelationsQuery, AttachmentIssue_LabelsQuery, AttachmentIssue_RelationsQuery, AttachmentIssue_SubscribersQuery, AttachmentLinkDiscordMutation, AttachmentLinkFrontMutation, AttachmentLinkGitHubIssueMutation, AttachmentLinkGitHubPrMutation, AttachmentLinkGitLabMrMutation, AttachmentLinkIntercomMutation, AttachmentLinkJiraIssueMutation, AttachmentLinkSlackMutation, AttachmentLinkUrlMutation, AttachmentLinkZendeskMutation, AttachmentPayload, AttachmentQuery, AttachmentSourcesPayload, AttachmentsForUrlQuery, AttachmentsQuery, AuditEntriesQuery, AuditEntry, AuditEntryConnection, AuditEntryType, AuditEntryTypesQuery, AuthApiKey, AuthApiKeyPayload, AuthEmailIntakeAddress, AuthIntegration, AuthOauthClient, AuthOauthClientWithMemberships, AuthOauthClientWithScope, AuthOauthClientWithTokens, AuthOrganization, AuthOrganizationDomain, AuthOrganizationInvite, AuthResolverResponse, AuthSuccessPayload, AuthUser, AuthenticationLinearError, AuthenticationSession, AuthenticationSessionResponse, AuthenticationSessionsQuery, AuthorizedApplicationBase, AvailableUsersQuery, BootstrapLinearError, Comment, CommentConnection, CommentPayload, CommentQuery, CommentResolveMutation, CommentUnresolveMutation, Comment_BotActorQuery, Comment_ChildrenQuery, Comment_DocumentContentQuery, CommentsQuery, Company, CompanyConnection, Connection, ContactPayload, CreateApiKeyMutation, CreateAttachmentMutation, CreateCommentMutation, CreateContactMutation, CreateCsvExportReportMutation, CreateCsvExportReportPayload, CreateCustomViewMutation, CreateCycleMutation, CreateDocumentMutation, CreateEmailIntakeAddressMutation, CreateEmojiMutation, CreateFavoriteMutation, CreateGitAutomationStateMutation, CreateGitAutomationTargetBranchMutation, CreateIntegrationGithubCommitMutation, CreateIntegrationTemplateMutation, CreateIntegrationsSettingsMutation, CreateIssueLabelMutation, CreateIssueMutation, CreateIssueRelationMutation, CreateNotificationSubscriptionMutation, CreateOrJoinOrganizationResponse, CreateOrganizationFromOnboardingMutation, CreateOrganizationInviteMutation, CreateProjectLinkMutation, CreateProjectMilestoneMutation, CreateProjectMutation, CreateProjectUpdateInteractionMutation, CreateProjectUpdateMutation, CreateProjectUpdateReminderMutation, CreatePushSubscriptionMutation, CreateReactionMutation, CreateRoadmapMutation, CreateRoadmapToProjectMutation, CreateTeamMembershipMutation, CreateTeamMutation, CreateTemplateMutation, CreateViewPreferencesMutation, CreateWebhookMutation, CreateWorkflowStateMutation, CustomView, CustomViewConnection, CustomViewHasSubscribersPayload, CustomViewHasSubscribersQuery, CustomViewNotificationSubscription, CustomViewPayload, CustomViewQuery, CustomViewSuggestionPayload, CustomView_IssuesQuery, CustomViewsQuery, Cycle, CycleArchivePayload, CycleConnection, CycleNotificationSubscription, CyclePayload, CycleQuery, CycleShiftAllMutation, Cycle_IssuesQuery, Cycle_UncompletedIssuesUponCloseQuery, CyclesQuery, DeleteApiKeyMutation, DeleteAttachmentMutation, DeleteCommentMutation, DeleteCustomViewMutation, DeleteDocumentMutation, DeleteEmailIntakeAddressMutation, DeleteEmojiMutation, DeleteFavoriteMutation, DeleteGitAutomationStateMutation, DeleteGitAutomationTargetBranchMutation, DeleteIntegrationIntercomMutation, DeleteIntegrationMutation, DeleteIntegrationTemplateMutation, DeleteIssueImportMutation, DeleteIssueLabelMutation, DeleteIssueMutation, DeleteIssueRelationMutation, DeleteNotificationSubscriptionMutation, DeleteOrganizationCancelMutation, DeleteOrganizationDomainMutation, DeleteOrganizationInviteMutation, DeleteOrganizationMutation, DeletePayload, DeleteProjectLinkMutation, DeleteProjectMilestoneMutation, DeleteProjectMutation, DeleteProjectUpdateMutation, DeletePushSubscriptionMutation, DeleteReactionMutation, DeleteRoadmapMutation, DeleteRoadmapToProjectMutation, DeleteTeamCyclesMutation, DeleteTeamKeyMutation, DeleteTeamMembershipMutation, DeleteTeamMutation, DeleteTemplateMutation, DeleteViewPreferencesMutation, DeleteWebhookMutation, Document, DocumentConnection, DocumentContent, DocumentContentHistory, DocumentContentHistoryPayload, DocumentContentHistoryQuery, DocumentContentHistoryType, DocumentPayload, DocumentQuery, DocumentSearchPayload, DocumentSearchResult, DocumentSearchResultConnection, DocumentsQuery, EmailIntakeAddress, EmailIntakeAddressPayload, EmailIntakeAddressRotateMutation, EmailTokenUserAccountAuthMutation, EmailUnsubscribeMutation, EmailUnsubscribePayload, EmailUserAccountAuthChallengeMutation, EmailUserAccountAuthChallengeResponse, Emoji, EmojiConnection, EmojiPayload, EmojiQuery, EmojisQuery, Entity, ExternalUser, ExternalUserConnection, ExternalUserQuery, ExternalUsersQuery, Favorite, FavoriteConnection, FavoritePayload, FavoriteQuery, Favorite_ChildrenQuery, FavoritesQuery, FeatureNotAccessibleLinearError, FileUploadMutation, ForbiddenLinearError, FrontAttachmentPayload, FrontSettings, GitAutomationState, GitAutomationStateConnection, GitAutomationStatePayload, GitAutomationTargetBranch, GitAutomationTargetBranchPayload, GitHubCommitIntegrationPayload, GitHubPersonalSettings, GitHubRepo, GitHubSettings, GitLabSettings, GithubOAuthTokenPayload, GithubOrg, GithubRepo, GoogleSheetsSettings, GoogleUserAccountAuthMutation, GraphQLClientError, GraphqlLinearError, ImageUploadFromUrlMutation, ImageUploadFromUrlPayload, ImportFileUploadMutation, InitiativeArchivePayload, Integration, IntegrationAsksConnectChannelMutation, IntegrationConnection, IntegrationDiscordMutation, IntegrationFigmaMutation, IntegrationFrontMutation, IntegrationGitHubPersonalMutation, IntegrationGithubConnectMutation, IntegrationGitlabConnectMutation, IntegrationGoogleSheetsMutation, IntegrationHasScopesPayload, IntegrationHasScopesQuery, IntegrationIntercomMutation, IntegrationJiraPersonalMutation, IntegrationLoomMutation, IntegrationPayload, IntegrationQuery, IntegrationRequestMutation, IntegrationRequestPayload, IntegrationSentryConnectMutation, IntegrationSettings, IntegrationSlackAsksMutation, IntegrationSlackImportEmojisMutation, IntegrationSlackMutation, IntegrationSlackOrgProjectUpdatesPostMutation, IntegrationSlackPersonalMutation, IntegrationSlackPostMutation, IntegrationSlackProjectPostMutation, IntegrationTemplate, IntegrationTemplateConnection, IntegrationTemplatePayload, IntegrationTemplateQuery, IntegrationTemplatesQuery, IntegrationUpdateSlackMutation, IntegrationZendeskMutation, IntegrationsQuery, IntegrationsSettings, IntegrationsSettingsConnection, IntegrationsSettingsPayload, IntegrationsSettingsQuery, IntercomSettings, InternalLinearError, InvalidInputLinearError, Issue, IssueAddLabelMutation, IssueArchivePayload, IssueBatchPayload, IssueConnection, IssueFigmaFileKeySearchQuery, IssueFilterSuggestionPayload, IssueFilterSuggestionQuery, IssueHistory, IssueHistoryConnection, IssueImport, IssueImportCheckCsvQuery, IssueImportCheckPayload, IssueImportCreateAsanaMutation, IssueImportCreateClubhouseMutation, IssueImportCreateCsvJiraMutation, IssueImportCreateGithubMutation, IssueImportCreateJiraMutation, IssueImportDeletePayload, IssueImportFinishGithubOAuthQuery, IssueImportPayload, IssueImportProcessMutation, IssueLabel, IssueLabelConnection, IssueLabelPayload, IssueLabelQuery, IssueLabel_ChildrenQuery, IssueLabel_IssuesQuery, IssueLabelsQuery, IssueNotification, IssuePayload, IssuePriorityValue, IssuePriorityValuesQuery, IssueQuery, IssueRelation, IssueRelationConnection, IssueRelationHistoryPayload, IssueRelationPayload, IssueRelationQuery, IssueRelationsQuery, IssueReminderMutation, IssueRemoveLabelMutation, IssueSearchPayload, IssueSearchQuery, IssueSearchResult, IssueSearchResultConnection, IssueSubscribeMutation, IssueUnsubscribeMutation, IssueVcsBranchSearchQuery, IssueVcsBranchSearch_AttachmentsQuery, IssueVcsBranchSearch_BotActorQuery, IssueVcsBranchSearch_ChildrenQuery, IssueVcsBranchSearch_CommentsQuery, IssueVcsBranchSearch_HistoryQuery, IssueVcsBranchSearch_InverseRelationsQuery, IssueVcsBranchSearch_LabelsQuery, IssueVcsBranchSearch_RelationsQuery, IssueVcsBranchSearch_SubscribersQuery, Issue_AttachmentsQuery, Issue_BotActorQuery, Issue_ChildrenQuery, Issue_CommentsQuery, Issue_HistoryQuery, Issue_InverseRelationsQuery, Issue_LabelsQuery, Issue_RelationsQuery, Issue_SubscribersQuery, IssuesQuery, JiraLinearMapping, JiraPersonalSettings, JiraProjectData, JiraSettings, JoinOrganizationFromOnboardingMutation, LINEAR_WEBHOOK_SIGNATURE_HEADER, LINEAR_WEBHOOK_TS_FIELD, LabelNotificationSubscription, LeaveOrganizationMutation, LinearClient, LinearConnection, _generated_documents as LinearDocument, LinearError, LinearErrorType, LinearGraphQLClient, LinearGraphQLError, LinearSdk, LinearWebhooks, LockTimeoutLinearError, LogoutAllSessionsMutation, LogoutMutation, LogoutOtherSessionsMutation, LogoutResponse, LogoutSessionMutation, NetworkLinearError, Node, Notification, NotificationArchiveAllMutation, NotificationArchivePayload, NotificationBatchActionPayload, NotificationConnection, NotificationMarkReadAllMutation, NotificationMarkUnreadAllMutation, NotificationPayload, NotificationQuery, NotificationSnoozeAllMutation, NotificationSubscription, NotificationSubscriptionConnection, NotificationSubscriptionPayload, NotificationSubscriptionQuery, NotificationSubscriptionsQuery, NotificationUnsnoozeAllMutation, NotificationsQuery, NotionSettings, OauthClient, OauthClientApproval, OauthClientApprovalNotification, OauthClientConnection, OauthToken, OpsgenieSettings, Organization, OrganizationCancelDeletePayload, OrganizationDeleteChallengeMutation, OrganizationDeletePayload, OrganizationDomain, OrganizationExistsPayload, OrganizationExistsQuery, OrganizationInvite, OrganizationInviteConnection, OrganizationInviteFullDetailsPayload, OrganizationInviteLinkDetailsPayload, OrganizationInvitePayload, OrganizationInviteQuery, OrganizationInvitesQuery, OrganizationPayload, OrganizationQuery, OrganizationRegionQuery, OrganizationRegionResponse, OrganizationStartPlusTrialMutation, OrganizationStartPlusTrialPayload, Organization_IntegrationsQuery, Organization_LabelsQuery, Organization_SubscriptionQuery, Organization_TeamsQuery, Organization_TemplatesQuery, Organization_UsersQuery, OtherLinearError, PageInfo, PagerDutySettings, PaidSubscription, Project, ProjectArchivePayload, ProjectConnection, ProjectFilterSuggestionPayload, ProjectFilterSuggestionQuery, ProjectLink, ProjectLinkConnection, ProjectLinkPayload, ProjectLinkQuery, ProjectLinksQuery, ProjectMilestone, ProjectMilestoneConnection, ProjectMilestonePayload, ProjectMilestoneQuery, ProjectMilestone_IssuesQuery, ProjectMilestonesQuery, ProjectNotification, ProjectNotificationSubscription, ProjectPayload, ProjectQuery, ProjectSearchPayload, ProjectSearchResult, ProjectSearchResultConnection, ProjectUpdate, ProjectUpdateConnection, ProjectUpdateInteraction, ProjectUpdateInteractionConnection, ProjectUpdateInteractionPayload, ProjectUpdateInteractionQuery, ProjectUpdateInteractionsQuery, ProjectUpdateMarkAsReadMutation, ProjectUpdatePayload, ProjectUpdateQuery, ProjectUpdateReminderPayload, ProjectUpdateWithInteractionPayload, ProjectUpdatesQuery, Project_DocumentsQuery, Project_IssuesQuery, Project_LinksQuery, Project_MembersQuery, Project_ProjectMilestonesQuery, Project_ProjectUpdatesQuery, Project_TeamsQuery, ProjectsQuery, PushSubscription, PushSubscriptionConnection, PushSubscriptionPayload, PushSubscriptionTestPayload, PushSubscriptionTestQuery, RateLimitPayload, RateLimitResultPayload, RateLimitStatusQuery, RatelimitedLinearError, Reaction, ReactionConnection, ReactionPayload, RefreshGoogleSheetsDataMutation, Request, ResendOrganizationInviteMutation, Roadmap, RoadmapArchivePayload, RoadmapConnection, RoadmapPayload, RoadmapQuery, RoadmapToProject, RoadmapToProjectConnection, RoadmapToProjectPayload, RoadmapToProjectQuery, RoadmapToProjectsQuery, Roadmap_ProjectsQuery, RoadmapsQuery, SamlTokenUserAccountAuthMutation, SearchDocumentsQuery, SearchDocuments_ArchivePayloadQuery, SearchIssuesQuery, SearchIssues_ArchivePayloadQuery, SearchProjectsQuery, SearchProjects_ArchivePayloadQuery, SentrySettings, SharedSlackSettings, SlackAsksSettings, SlackAsksTeamSettings, SlackChannelConnectPayload, SlackChannelNameMapping, SlackPostSettings, SlackSettings, SsoUrlFromEmailQuery, SsoUrlFromEmailResponse, SuspendUserMutation, SynchronizedPayload, Team, TeamArchivePayload, TeamConnection, TeamMembership, TeamMembershipConnection, TeamMembershipPayload, TeamMembershipQuery, TeamMembershipsQuery, TeamNotificationSubscription, TeamPayload, TeamQuery, TeamRepoMapping, 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, TriageResponsibility, TriageResponsibilityConnection, TriageResponsibilityManualSelection, TriageResponsibilityPayload, UnarchiveIssueMutation, UnarchiveNotificationMutation, UnarchiveProjectMutation, UnarchiveRoadmapMutation, UnarchiveTeamMutation, UnknownLinearError, UnsuspendUserMutation, UpdateAttachmentMutation, UpdateCommentMutation, UpdateCustomViewMutation, UpdateCycleMutation, UpdateDocumentMutation, UpdateEmailIntakeAddressMutation, UpdateFavoriteMutation, UpdateGitAutomationStateMutation, UpdateGitAutomationTargetBranchMutation, UpdateIntegrationIntercomSettingsMutation, UpdateIntegrationsSettingsMutation, UpdateIssueBatchMutation, UpdateIssueImportMutation, UpdateIssueLabelMutation, UpdateIssueMutation, UpdateIssueRelationMutation, UpdateNotificationMutation, UpdateNotificationSubscriptionMutation, UpdateOrganizationInviteMutation, UpdateOrganizationMutation, UpdateProjectLinkMutation, UpdateProjectMilestoneMutation, UpdateProjectMutation, UpdateProjectUpdateMutation, UpdateRoadmapMutation, UpdateRoadmapToProjectMutation, UpdateTeamMembershipMutation, UpdateTeamMutation, UpdateTemplateMutation, UpdateUserFlagMutation, UpdateUserMutation, UpdateUserSettingsMutation, UpdateViewPreferencesMutation, UpdateWebhookMutation, UpdateWorkflowStateMutation, UploadFile, UploadFileHeader, UploadPayload, User, UserAccount, UserAdminPayload, UserAuthorizedApplication, UserConnection, UserDemoteAdminMutation, UserDemoteMemberMutation, UserDiscordConnectMutation, UserExternalUserDisconnectMutation, UserLinearError, UserNotificationSubscription, UserPayload, UserPromoteAdminMutation, UserPromoteMemberMutation, UserQuery, UserSettings, UserSettingsFlagIncrementMutation, UserSettingsFlagPayload, UserSettingsFlagsResetMutation, UserSettingsFlagsResetPayload, UserSettingsPayload, UserSettingsQuery, User_AssignedIssuesQuery, User_CreatedIssuesQuery, User_TeamMembershipsQuery, User_TeamsQuery, UsersQuery, ViewPreferences, ViewPreferencesPayload, ViewerQuery, Viewer_AssignedIssuesQuery, Viewer_CreatedIssuesQuery, Viewer_TeamMembershipsQuery, Viewer_TeamsQuery, Webhook, WebhookConnection, WebhookPayload, WebhookQuery, WebhooksQuery, WorkflowCronJobDefinition, WorkflowCronJobDefinitionConnection, WorkflowDefinition, WorkflowDefinitionConnection, WorkflowState, WorkflowStateArchivePayload, WorkflowStateConnection, WorkflowStatePayload, WorkflowStateQuery, WorkflowState_IssuesQuery, WorkflowStatesQuery, ZendeskSettings, parseLinearError };
|
136386
136643
|
//# sourceMappingURL=index-es.js.map
|