@linear/sdk 18.0.0 → 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 +142 -28
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +98 -3
- 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 +351 -88
- 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 +348 -89
- 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 +352 -89
- 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: [
|
@@ -85440,6 +85535,7 @@ const SharedSlackSettingsFragmentDoc = {
|
|
85440
85535
|
kind: "SelectionSet",
|
85441
85536
|
selections: [
|
85442
85537
|
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
85538
|
+
{ kind: "Field", name: { kind: "Name", value: "enterpriseName" } },
|
85443
85539
|
{ kind: "Field", name: { kind: "Name", value: "teamId" } },
|
85444
85540
|
{ kind: "Field", name: { kind: "Name", value: "teamName" } },
|
85445
85541
|
],
|
@@ -85786,6 +85882,7 @@ const SlackSettingsFragmentDoc = {
|
|
85786
85882
|
kind: "SelectionSet",
|
85787
85883
|
selections: [
|
85788
85884
|
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
85885
|
+
{ kind: "Field", name: { kind: "Name", value: "enterpriseName" } },
|
85789
85886
|
{ kind: "Field", name: { kind: "Name", value: "teamId" } },
|
85790
85887
|
{ kind: "Field", name: { kind: "Name", value: "teamName" } },
|
85791
85888
|
{ kind: "Field", name: { kind: "Name", value: "linkOnIssueIdMention" } },
|
@@ -85856,6 +85953,7 @@ const SlackAsksSettingsFragmentDoc = {
|
|
85856
85953
|
kind: "SelectionSet",
|
85857
85954
|
selections: [
|
85858
85955
|
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
85956
|
+
{ kind: "Field", name: { kind: "Name", value: "enterpriseName" } },
|
85859
85957
|
{ kind: "Field", name: { kind: "Name", value: "teamId" } },
|
85860
85958
|
{ kind: "Field", name: { kind: "Name", value: "teamName" } },
|
85861
85959
|
{
|
@@ -86575,64 +86673,6 @@ const AuthOauthClientFragmentDoc = {
|
|
86575
86673
|
},
|
86576
86674
|
],
|
86577
86675
|
};
|
86578
|
-
const AuthOrganizationFragmentDoc = {
|
86579
|
-
kind: "Document",
|
86580
|
-
definitions: [
|
86581
|
-
{
|
86582
|
-
kind: "FragmentDefinition",
|
86583
|
-
name: { kind: "Name", value: "AuthOrganization" },
|
86584
|
-
typeCondition: { kind: "NamedType", name: { kind: "Name", value: "AuthOrganization" } },
|
86585
|
-
selectionSet: {
|
86586
|
-
kind: "SelectionSet",
|
86587
|
-
selections: [
|
86588
|
-
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
86589
|
-
{ kind: "Field", name: { kind: "Name", value: "allowedAuthServices" } },
|
86590
|
-
{ kind: "Field", name: { kind: "Name", value: "previousUrlKeys" } },
|
86591
|
-
{ kind: "Field", name: { kind: "Name", value: "serviceId" } },
|
86592
|
-
{ kind: "Field", name: { kind: "Name", value: "logoUrl" } },
|
86593
|
-
{ kind: "Field", name: { kind: "Name", value: "name" } },
|
86594
|
-
{ kind: "Field", name: { kind: "Name", value: "urlKey" } },
|
86595
|
-
{ kind: "Field", name: { kind: "Name", value: "deletionRequestedAt" } },
|
86596
|
-
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
86597
|
-
{ kind: "Field", name: { kind: "Name", value: "samlEnabled" } },
|
86598
|
-
{ kind: "Field", name: { kind: "Name", value: "scimEnabled" } },
|
86599
|
-
{ kind: "Field", name: { kind: "Name", value: "userCount" } },
|
86600
|
-
],
|
86601
|
-
},
|
86602
|
-
},
|
86603
|
-
],
|
86604
|
-
};
|
86605
|
-
const AuthUserFragmentDoc = {
|
86606
|
-
kind: "Document",
|
86607
|
-
definitions: [
|
86608
|
-
{
|
86609
|
-
kind: "FragmentDefinition",
|
86610
|
-
name: { kind: "Name", value: "AuthUser" },
|
86611
|
-
typeCondition: { kind: "NamedType", name: { kind: "Name", value: "AuthUser" } },
|
86612
|
-
selectionSet: {
|
86613
|
-
kind: "SelectionSet",
|
86614
|
-
selections: [
|
86615
|
-
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
86616
|
-
{ kind: "Field", name: { kind: "Name", value: "avatarUrl" } },
|
86617
|
-
{
|
86618
|
-
kind: "Field",
|
86619
|
-
name: { kind: "Name", value: "organization" },
|
86620
|
-
selectionSet: {
|
86621
|
-
kind: "SelectionSet",
|
86622
|
-
selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "AuthOrganization" } }],
|
86623
|
-
},
|
86624
|
-
},
|
86625
|
-
{ kind: "Field", name: { kind: "Name", value: "displayName" } },
|
86626
|
-
{ kind: "Field", name: { kind: "Name", value: "email" } },
|
86627
|
-
{ kind: "Field", name: { kind: "Name", value: "name" } },
|
86628
|
-
{ kind: "Field", name: { kind: "Name", value: "userAccountId" } },
|
86629
|
-
{ kind: "Field", name: { kind: "Name", value: "active" } },
|
86630
|
-
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
86631
|
-
],
|
86632
|
-
},
|
86633
|
-
},
|
86634
|
-
],
|
86635
|
-
};
|
86636
86676
|
const OauthTokenFragmentDoc = {
|
86637
86677
|
kind: "Document",
|
86638
86678
|
definitions: [
|
@@ -87381,6 +87421,7 @@ const DocumentFragmentDoc = {
|
|
87381
87421
|
selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }],
|
87382
87422
|
},
|
87383
87423
|
},
|
87424
|
+
{ kind: "Field", name: { kind: "Name", value: "hiddenAt" } },
|
87384
87425
|
{ kind: "Field", name: { kind: "Name", value: "archivedAt" } },
|
87385
87426
|
{ kind: "Field", name: { kind: "Name", value: "createdAt" } },
|
87386
87427
|
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
@@ -87563,6 +87604,7 @@ const DocumentSearchResultFragmentDoc = {
|
|
87563
87604
|
selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }],
|
87564
87605
|
},
|
87565
87606
|
},
|
87607
|
+
{ kind: "Field", name: { kind: "Name", value: "hiddenAt" } },
|
87566
87608
|
{ kind: "Field", name: { kind: "Name", value: "archivedAt" } },
|
87567
87609
|
{ kind: "Field", name: { kind: "Name", value: "createdAt" } },
|
87568
87610
|
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
@@ -90101,6 +90143,7 @@ const OrganizationInviteFullDetailsPayloadFragmentDoc = {
|
|
90101
90143
|
kind: "SelectionSet",
|
90102
90144
|
selections: [
|
90103
90145
|
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
90146
|
+
{ kind: "Field", name: { kind: "Name", value: "allowedAuthServices" } },
|
90104
90147
|
{ kind: "Field", name: { kind: "Name", value: "organizationId" } },
|
90105
90148
|
{ kind: "Field", name: { kind: "Name", value: "organizationName" } },
|
90106
90149
|
{ kind: "Field", name: { kind: "Name", value: "email" } },
|
@@ -90114,6 +90157,28 @@ const OrganizationInviteFullDetailsPayloadFragmentDoc = {
|
|
90114
90157
|
},
|
90115
90158
|
],
|
90116
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
|
+
};
|
90117
90182
|
const OrganizationInvitePayloadFragmentDoc = {
|
90118
90183
|
kind: "Document",
|
90119
90184
|
definitions: [
|
@@ -90158,6 +90223,24 @@ const OrganizationPayloadFragmentDoc = {
|
|
90158
90223
|
},
|
90159
90224
|
],
|
90160
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
|
+
};
|
90161
90244
|
const OrganizationStartPlusTrialPayloadFragmentDoc = {
|
90162
90245
|
kind: "Document",
|
90163
90246
|
definitions: [
|
@@ -90244,7 +90327,6 @@ const ProjectFragmentDoc = {
|
|
90244
90327
|
{ kind: "Field", name: { kind: "Name", value: "projectUpdateRemindersPausedUntilAt" } },
|
90245
90328
|
{ kind: "Field", name: { kind: "Name", value: "scopeHistory" } },
|
90246
90329
|
{ kind: "Field", name: { kind: "Name", value: "issueCountHistory" } },
|
90247
|
-
{ kind: "Field", name: { kind: "Name", value: "state" } },
|
90248
90330
|
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
90249
90331
|
{
|
90250
90332
|
kind: "Field",
|
@@ -90254,9 +90336,18 @@ const ProjectFragmentDoc = {
|
|
90254
90336
|
selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }],
|
90255
90337
|
},
|
90256
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
|
+
},
|
90257
90347
|
{ kind: "Field", name: { kind: "Name", value: "slackIssueComments" } },
|
90258
90348
|
{ kind: "Field", name: { kind: "Name", value: "slackNewIssue" } },
|
90259
90349
|
{ kind: "Field", name: { kind: "Name", value: "slackIssueStatuses" } },
|
90350
|
+
{ kind: "Field", name: { kind: "Name", value: "state" } },
|
90260
90351
|
],
|
90261
90352
|
},
|
90262
90353
|
},
|
@@ -90594,7 +90685,6 @@ const ProjectSearchResultFragmentDoc = {
|
|
90594
90685
|
{ kind: "Field", name: { kind: "Name", value: "projectUpdateRemindersPausedUntilAt" } },
|
90595
90686
|
{ kind: "Field", name: { kind: "Name", value: "scopeHistory" } },
|
90596
90687
|
{ kind: "Field", name: { kind: "Name", value: "issueCountHistory" } },
|
90597
|
-
{ kind: "Field", name: { kind: "Name", value: "state" } },
|
90598
90688
|
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
90599
90689
|
{
|
90600
90690
|
kind: "Field",
|
@@ -90604,9 +90694,18 @@ const ProjectSearchResultFragmentDoc = {
|
|
90604
90694
|
selections: [{ kind: "Field", name: { kind: "Name", value: "id" } }],
|
90605
90695
|
},
|
90606
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
|
+
},
|
90607
90705
|
{ kind: "Field", name: { kind: "Name", value: "slackIssueComments" } },
|
90608
90706
|
{ kind: "Field", name: { kind: "Name", value: "slackNewIssue" } },
|
90609
90707
|
{ kind: "Field", name: { kind: "Name", value: "slackIssueStatuses" } },
|
90708
|
+
{ kind: "Field", name: { kind: "Name", value: "state" } },
|
90610
90709
|
],
|
90611
90710
|
},
|
90612
90711
|
},
|
@@ -100785,6 +100884,44 @@ const OrganizationInvitesDocument = {
|
|
100785
100884
|
...PageInfoFragmentDoc.definitions,
|
100786
100885
|
],
|
100787
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
|
+
};
|
100788
100925
|
const ProjectDocument = {
|
100789
100926
|
kind: "Document",
|
100790
100927
|
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,
|
@@ -116745,8 +116885,6 @@ var _generated_documents = /*#__PURE__*/Object.freeze({
|
|
116745
116885
|
AuthApiKeyPayloadFragmentDoc: AuthApiKeyPayloadFragmentDoc,
|
116746
116886
|
AuthIntegrationFragmentDoc: AuthIntegrationFragmentDoc,
|
116747
116887
|
AuthOauthClientFragmentDoc: AuthOauthClientFragmentDoc,
|
116748
|
-
AuthOrganizationFragmentDoc: AuthOrganizationFragmentDoc,
|
116749
|
-
AuthUserFragmentDoc: AuthUserFragmentDoc,
|
116750
116888
|
OauthTokenFragmentDoc: OauthTokenFragmentDoc,
|
116751
116889
|
AuthOauthClientWithTokensFragmentDoc: AuthOauthClientWithTokensFragmentDoc,
|
116752
116890
|
AuthOrganizationDomainFragmentDoc: AuthOrganizationDomainFragmentDoc,
|
@@ -116846,8 +116984,10 @@ var _generated_documents = /*#__PURE__*/Object.freeze({
|
|
116846
116984
|
OrganizationInviteFragmentDoc: OrganizationInviteFragmentDoc,
|
116847
116985
|
OrganizationInviteConnectionFragmentDoc: OrganizationInviteConnectionFragmentDoc,
|
116848
116986
|
OrganizationInviteFullDetailsPayloadFragmentDoc: OrganizationInviteFullDetailsPayloadFragmentDoc,
|
116987
|
+
OrganizationInviteLinkDetailsPayloadFragmentDoc: OrganizationInviteLinkDetailsPayloadFragmentDoc,
|
116849
116988
|
OrganizationInvitePayloadFragmentDoc: OrganizationInvitePayloadFragmentDoc,
|
116850
116989
|
OrganizationPayloadFragmentDoc: OrganizationPayloadFragmentDoc,
|
116990
|
+
OrganizationRegionResponseFragmentDoc: OrganizationRegionResponseFragmentDoc,
|
116851
116991
|
OrganizationStartPlusTrialPayloadFragmentDoc: OrganizationStartPlusTrialPayloadFragmentDoc,
|
116852
116992
|
ProjectFragmentDoc: ProjectFragmentDoc,
|
116853
116993
|
ProjectConnectionFragmentDoc: ProjectConnectionFragmentDoc,
|
@@ -117024,6 +117164,7 @@ var _generated_documents = /*#__PURE__*/Object.freeze({
|
|
117024
117164
|
OrganizationExistsDocument: OrganizationExistsDocument,
|
117025
117165
|
OrganizationInviteDocument: OrganizationInviteDocument,
|
117026
117166
|
OrganizationInvitesDocument: OrganizationInvitesDocument,
|
117167
|
+
OrganizationRegionDocument: OrganizationRegionDocument,
|
117027
117168
|
ProjectDocument: ProjectDocument,
|
117028
117169
|
Project_DocumentsDocument: Project_DocumentsDocument,
|
117029
117170
|
Project_IssuesDocument: Project_IssuesDocument,
|
@@ -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
|
}
|
@@ -121402,6 +121562,7 @@ class OrganizationInviteFullDetailsPayload extends Request {
|
|
121402
121562
|
var _a, _b;
|
121403
121563
|
super(request);
|
121404
121564
|
this.accepted = data.accepted;
|
121565
|
+
this.allowedAuthServices = data.allowedAuthServices;
|
121405
121566
|
this.createdAt = (_a = parseDate(data.createdAt)) !== null && _a !== void 0 ? _a : new Date();
|
121406
121567
|
this.email = data.email;
|
121407
121568
|
this.expired = data.expired;
|
@@ -121411,6 +121572,24 @@ class OrganizationInviteFullDetailsPayload extends Request {
|
|
121411
121572
|
this.organizationName = data.organizationName;
|
121412
121573
|
}
|
121413
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
|
+
}
|
121414
121593
|
/**
|
121415
121594
|
* OrganizationInvitePayload model
|
121416
121595
|
*
|
@@ -121446,6 +121625,20 @@ class OrganizationPayload extends Request {
|
|
121446
121625
|
return new OrganizationQuery(this._request).fetch();
|
121447
121626
|
}
|
121448
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
|
+
}
|
121449
121642
|
/**
|
121450
121643
|
* OrganizationStartPlusTrialPayload model
|
121451
121644
|
*
|
@@ -121529,7 +121722,7 @@ class PaidSubscription extends Request {
|
|
121529
121722
|
*/
|
121530
121723
|
class Project extends Request {
|
121531
121724
|
constructor(request, data) {
|
121532
|
-
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;
|
121533
121726
|
super(request);
|
121534
121727
|
this.archivedAt = (_a = parseDate(data.archivedAt)) !== null && _a !== void 0 ? _a : undefined;
|
121535
121728
|
this.autoArchivedAt = (_b = parseDate(data.autoArchivedAt)) !== null && _b !== void 0 ? _b : undefined;
|
@@ -121564,9 +121757,10 @@ class Project extends Request {
|
|
121564
121757
|
this.url = data.url;
|
121565
121758
|
this._convertedFromIssue = (_p = data.convertedFromIssue) !== null && _p !== void 0 ? _p : undefined;
|
121566
121759
|
this._creator = (_q = data.creator) !== null && _q !== void 0 ? _q : undefined;
|
121567
|
-
this.
|
121568
|
-
this.
|
121569
|
-
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;
|
121570
121764
|
}
|
121571
121765
|
/** The project was created based on this issue. */
|
121572
121766
|
get convertedFromIssue() {
|
@@ -121578,6 +121772,11 @@ class Project extends Request {
|
|
121578
121772
|
var _a, _b;
|
121579
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;
|
121580
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
|
+
}
|
121581
121780
|
/** Settings for all integrations associated with that project. */
|
121582
121781
|
get integrationsSettings() {
|
121583
121782
|
var _a, _b;
|
@@ -121986,7 +122185,7 @@ class ProjectSearchPayload extends Request {
|
|
121986
122185
|
*/
|
121987
122186
|
class ProjectSearchResult extends Request {
|
121988
122187
|
constructor(request, data) {
|
121989
|
-
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;
|
121990
122189
|
super(request);
|
121991
122190
|
this.archivedAt = (_a = parseDate(data.archivedAt)) !== null && _a !== void 0 ? _a : undefined;
|
121992
122191
|
this.autoArchivedAt = (_b = parseDate(data.autoArchivedAt)) !== null && _b !== void 0 ? _b : undefined;
|
@@ -122022,9 +122221,10 @@ class ProjectSearchResult extends Request {
|
|
122022
122221
|
this.url = data.url;
|
122023
122222
|
this._convertedFromIssue = (_p = data.convertedFromIssue) !== null && _p !== void 0 ? _p : undefined;
|
122024
122223
|
this._creator = (_q = data.creator) !== null && _q !== void 0 ? _q : undefined;
|
122025
|
-
this.
|
122026
|
-
this.
|
122027
|
-
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;
|
122028
122228
|
}
|
122029
122229
|
/** The project was created based on this issue. */
|
122030
122230
|
get convertedFromIssue() {
|
@@ -122036,6 +122236,11 @@ class ProjectSearchResult extends Request {
|
|
122036
122236
|
var _a, _b;
|
122037
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;
|
122038
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
|
+
}
|
122039
122244
|
/** Settings for all integrations associated with that project. */
|
122040
122245
|
get integrationsSettings() {
|
122041
122246
|
var _a, _b;
|
@@ -122606,10 +122811,11 @@ class SentrySettings extends Request {
|
|
122606
122811
|
*/
|
122607
122812
|
class SharedSlackSettings extends Request {
|
122608
122813
|
constructor(request, data) {
|
122609
|
-
var _a, _b;
|
122814
|
+
var _a, _b, _c;
|
122610
122815
|
super(request);
|
122611
|
-
this.
|
122612
|
-
this.
|
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;
|
122613
122819
|
}
|
122614
122820
|
}
|
122615
122821
|
/**
|
@@ -122620,10 +122826,11 @@ class SharedSlackSettings extends Request {
|
|
122620
122826
|
*/
|
122621
122827
|
class SlackAsksSettings extends Request {
|
122622
122828
|
constructor(request, data) {
|
122623
|
-
var _a, _b;
|
122829
|
+
var _a, _b, _c;
|
122624
122830
|
super(request);
|
122625
|
-
this.
|
122626
|
-
this.
|
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;
|
122627
122834
|
this.slackChannelMapping = data.slackChannelMapping
|
122628
122835
|
? data.slackChannelMapping.map(node => new SlackChannelNameMapping(request, node))
|
122629
122836
|
: undefined;
|
@@ -122709,11 +122916,12 @@ class SlackPostSettings extends Request {
|
|
122709
122916
|
*/
|
122710
122917
|
class SlackSettings extends Request {
|
122711
122918
|
constructor(request, data) {
|
122712
|
-
var _a, _b;
|
122919
|
+
var _a, _b, _c;
|
122713
122920
|
super(request);
|
122921
|
+
this.enterpriseName = (_a = data.enterpriseName) !== null && _a !== void 0 ? _a : undefined;
|
122714
122922
|
this.linkOnIssueIdMention = data.linkOnIssueIdMention;
|
122715
|
-
this.teamId = (
|
122716
|
-
this.teamName = (
|
122923
|
+
this.teamId = (_b = data.teamId) !== null && _b !== void 0 ? _b : undefined;
|
122924
|
+
this.teamName = (_c = data.teamName) !== null && _c !== void 0 ? _c : undefined;
|
122717
122925
|
}
|
122718
122926
|
}
|
122719
122927
|
/**
|
@@ -125416,6 +125624,31 @@ class OrganizationInvitesQuery extends Request {
|
|
125416
125624
|
});
|
125417
125625
|
}
|
125418
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
|
+
}
|
125419
125652
|
/**
|
125420
125653
|
* A fetchable Project Query
|
125421
125654
|
*
|
@@ -134018,6 +134251,15 @@ class LinearSdk extends Request {
|
|
134018
134251
|
organizationInvites(variables) {
|
134019
134252
|
return new OrganizationInvitesQuery(this._request).fetch(variables);
|
134020
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
|
+
}
|
134021
134263
|
/**
|
134022
134264
|
* One specific project.
|
134023
134265
|
*
|
@@ -134746,7 +134988,7 @@ class LinearSdk extends Request {
|
|
134746
134988
|
return new EmailTokenUserAccountAuthMutation(this._request).fetch(input);
|
134747
134989
|
}
|
134748
134990
|
/**
|
134749
|
-
* Unsubscribes the user from one type of
|
134991
|
+
* Unsubscribes the user from one type of email.
|
134750
134992
|
*
|
134751
134993
|
* @param input - required input to pass to emailUnsubscribe
|
134752
134994
|
* @returns EmailUnsubscribePayload
|
@@ -136343,6 +136585,23 @@ class LinearClient extends LinearSdk {
|
|
136343
136585
|
this.options = parsedOptions;
|
136344
136586
|
this.client = graphQLClient;
|
136345
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
|
+
}
|
136346
136605
|
}
|
136347
136606
|
|
136348
136607
|
const LINEAR_WEBHOOK_SIGNATURE_HEADER = "linear-signature";
|
@@ -136380,5 +136639,5 @@ class LinearWebhooks {
|
|
136380
136639
|
}
|
136381
136640
|
}
|
136382
136641
|
|
136383
|
-
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, 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, 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 };
|
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 };
|
136384
136643
|
//# sourceMappingURL=index-es.js.map
|