@linear/sdk 2.2.0 → 2.3.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/CHANGELOG.md +30 -0
- package/dist/_generated_documents.d.ts +2 -252
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +0 -178
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.js +0 -493
- 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 +1 -486
- 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 +1 -494
- 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/CHANGELOG.md
CHANGED
@@ -1,5 +1,35 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 2.3.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- 927d073: feat(schema): [breaking] Type 'CommitPayload' was removed (CommitPayload)
|
8
|
+
|
9
|
+
feat(schema): [breaking] Type 'IntegrationResource' was removed (IntegrationResource)
|
10
|
+
|
11
|
+
feat(schema): [breaking] Type 'IntegrationResourceConnection' was removed (IntegrationResourceConnection)
|
12
|
+
|
13
|
+
feat(schema): [breaking] Type 'IntegrationResourceData' was removed (IntegrationResourceData)
|
14
|
+
|
15
|
+
feat(schema): [breaking] Type 'IntegrationResourceEdge' was removed (IntegrationResourceEdge)
|
16
|
+
|
17
|
+
feat(schema): [breaking] Type 'PullRequestPayload' was removed (PullRequestPayload)
|
18
|
+
|
19
|
+
feat(schema): [breaking] Type 'PullRequestReview' was removed (PullRequestReview)
|
20
|
+
|
21
|
+
feat(schema): [breaking] Type 'SentryIssuePayload' was removed (SentryIssuePayload)
|
22
|
+
|
23
|
+
feat(schema): [breaking] Field 'integrationResources' (deprecated) was removed from object type 'Issue' (Issue.integrationResources)
|
24
|
+
|
25
|
+
feat(schema): [breaking] Field 'integrationResourceArchive' (deprecated) was removed from object type 'Mutation' (Mutation.integrationResourceArchive)
|
26
|
+
|
27
|
+
feat(schema): [breaking] Field 'integrationResource' (deprecated) was removed from object type 'Query' (Query.integrationResource)
|
28
|
+
|
29
|
+
feat(schema): [breaking] Field 'integrationResources' (deprecated) was removed from object type 'Query' (Query.integrationResources)
|
30
|
+
|
31
|
+
feat(schema): [non_breaking] Input field 'UpdateOrganizationInput.slaEnabled' description changed from 'Internal. Whether SLA's have been enabled for the organization.' to 'Internal. Whether SLAs have been enabled for the organization.' (UpdateOrganizationInput.slaEnabled)
|
32
|
+
|
3
33
|
## 2.2.0
|
4
34
|
|
5
35
|
### Minor Changes
|
@@ -516,17 +516,6 @@ export declare type CommentUpdateInput = {
|
|
516
516
|
/** The comment content as a Prosemirror document. */
|
517
517
|
bodyData?: Maybe<Scalars["JSON"]>;
|
518
518
|
};
|
519
|
-
/** GitHub's commit data */
|
520
|
-
export declare type CommitPayload = {
|
521
|
-
__typename?: "CommitPayload";
|
522
|
-
added: Array<Scalars["String"]>;
|
523
|
-
id: Scalars["String"];
|
524
|
-
message: Scalars["String"];
|
525
|
-
modified: Array<Scalars["String"]>;
|
526
|
-
removed: Array<Scalars["String"]>;
|
527
|
-
timestamp: Scalars["String"];
|
528
|
-
url: Scalars["String"];
|
529
|
-
};
|
530
519
|
export declare type ContactCreateInput = {
|
531
520
|
/** User's browser information. */
|
532
521
|
browser?: Maybe<Scalars["String"]>;
|
@@ -1432,58 +1421,6 @@ export declare type IntegrationRequestPayload = {
|
|
1432
1421
|
/** Whether the operation was successful. */
|
1433
1422
|
success: Scalars["Boolean"];
|
1434
1423
|
};
|
1435
|
-
/** An integration resource created by an external service. */
|
1436
|
-
export declare type IntegrationResource = Node & {
|
1437
|
-
__typename?: "IntegrationResource";
|
1438
|
-
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
1439
|
-
archivedAt?: Maybe<Scalars["DateTime"]>;
|
1440
|
-
/** The time at which the entity was created. */
|
1441
|
-
createdAt: Scalars["DateTime"];
|
1442
|
-
/** Detailed information about the external resource. */
|
1443
|
-
data: IntegrationResourceData;
|
1444
|
-
/** The unique identifier of the entity. */
|
1445
|
-
id: Scalars["ID"];
|
1446
|
-
/** The integration that the resource is associated with. */
|
1447
|
-
integration?: Maybe<Integration>;
|
1448
|
-
/** The issue that the resource is associated with. */
|
1449
|
-
issue: Issue;
|
1450
|
-
/** Pull request information for GitHub pull requests and GitLab merge requests. */
|
1451
|
-
pullRequest: PullRequestPayload;
|
1452
|
-
/** The external service resource ID. */
|
1453
|
-
resourceId: Scalars["String"];
|
1454
|
-
/** The integration's type. */
|
1455
|
-
resourceType: Scalars["String"];
|
1456
|
-
/**
|
1457
|
-
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
1458
|
-
* for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
|
1459
|
-
* been updated after creation.
|
1460
|
-
*/
|
1461
|
-
updatedAt: Scalars["DateTime"];
|
1462
|
-
};
|
1463
|
-
export declare type IntegrationResourceConnection = {
|
1464
|
-
__typename?: "IntegrationResourceConnection";
|
1465
|
-
edges: Array<IntegrationResourceEdge>;
|
1466
|
-
nodes: Array<IntegrationResource>;
|
1467
|
-
pageInfo: PageInfo;
|
1468
|
-
};
|
1469
|
-
/** Integration resource's payload */
|
1470
|
-
export declare type IntegrationResourceData = {
|
1471
|
-
__typename?: "IntegrationResourceData";
|
1472
|
-
/** The payload for an IntegrationResource of type 'githubCommit' */
|
1473
|
-
githubCommit?: Maybe<CommitPayload>;
|
1474
|
-
/** The payload for an IntegrationResource of type 'githubPullRequest' */
|
1475
|
-
githubPullRequest?: Maybe<PullRequestPayload>;
|
1476
|
-
/** The payload for an IntegrationResource of type 'gitlabMergeRequest' */
|
1477
|
-
gitlabMergeRequest?: Maybe<PullRequestPayload>;
|
1478
|
-
/** The payload for an IntegrationResource of type 'sentryIssue' */
|
1479
|
-
sentryIssue?: Maybe<SentryIssuePayload>;
|
1480
|
-
};
|
1481
|
-
export declare type IntegrationResourceEdge = {
|
1482
|
-
__typename?: "IntegrationResourceEdge";
|
1483
|
-
/** Used in `before` and `after` args */
|
1484
|
-
cursor: Scalars["String"];
|
1485
|
-
node: IntegrationResource;
|
1486
|
-
};
|
1487
1424
|
/** The integration resource's settings */
|
1488
1425
|
export declare type IntegrationSettings = {
|
1489
1426
|
__typename?: "IntegrationSettings";
|
@@ -1748,11 +1685,6 @@ export declare type Issue = Node & {
|
|
1748
1685
|
id: Scalars["ID"];
|
1749
1686
|
/** Issue's human readable identifier (e.g. ENG-123). */
|
1750
1687
|
identifier: Scalars["String"];
|
1751
|
-
/**
|
1752
|
-
* [DEPRECATED] Integration resources for this issue.
|
1753
|
-
* @deprecated This field will soon be deprecated, please use `attachments` instead
|
1754
|
-
*/
|
1755
|
-
integrationResources: IntegrationResourceConnection;
|
1756
1688
|
/** Inverse relations associated with this issue. */
|
1757
1689
|
inverseRelations: IssueRelationConnection;
|
1758
1690
|
/** Labels associated with this issue. */
|
@@ -1850,15 +1782,6 @@ export declare type IssueHistoryArgs = {
|
|
1850
1782
|
orderBy?: Maybe<PaginationOrderBy>;
|
1851
1783
|
};
|
1852
1784
|
/** An issue. */
|
1853
|
-
export declare type IssueIntegrationResourcesArgs = {
|
1854
|
-
after?: Maybe<Scalars["String"]>;
|
1855
|
-
before?: Maybe<Scalars["String"]>;
|
1856
|
-
first?: Maybe<Scalars["Int"]>;
|
1857
|
-
includeArchived?: Maybe<Scalars["Boolean"]>;
|
1858
|
-
last?: Maybe<Scalars["Int"]>;
|
1859
|
-
orderBy?: Maybe<PaginationOrderBy>;
|
1860
|
-
};
|
1861
|
-
/** An issue. */
|
1862
1785
|
export declare type IssueInverseRelationsArgs = {
|
1863
1786
|
after?: Maybe<Scalars["String"]>;
|
1864
1787
|
before?: Maybe<Scalars["String"]>;
|
@@ -2870,11 +2793,6 @@ export declare type Mutation = {
|
|
2870
2793
|
integrationLoom: IntegrationPayload;
|
2871
2794
|
/** Requests a currently unavailable integration. */
|
2872
2795
|
integrationRequest: IntegrationRequestPayload;
|
2873
|
-
/**
|
2874
|
-
* Archives an integration resource.
|
2875
|
-
* @deprecated This query will soon be deprecated, please use `attachmentArchive` instead
|
2876
|
-
*/
|
2877
|
-
integrationResourceArchive: ArchivePayload;
|
2878
2796
|
/** Integrates the organization with Sentry. */
|
2879
2797
|
integrationSentryConnect: IntegrationPayload;
|
2880
2798
|
/** [INTERNAL] Updates the integration. */
|
@@ -3305,9 +3223,6 @@ export declare type MutationIntegrationIntercomSettingsUpdateArgs = {
|
|
3305
3223
|
export declare type MutationIntegrationRequestArgs = {
|
3306
3224
|
input: IntegrationRequestInput;
|
3307
3225
|
};
|
3308
|
-
export declare type MutationIntegrationResourceArchiveArgs = {
|
3309
|
-
id: Scalars["String"];
|
3310
|
-
};
|
3311
3226
|
export declare type MutationIntegrationSentryConnectArgs = {
|
3312
3227
|
code: Scalars["String"];
|
3313
3228
|
installationId: Scalars["String"];
|
@@ -5315,43 +5230,6 @@ export declare type ProjectUpdateWithInteractionPayload = {
|
|
5315
5230
|
/** Whether the operation was successful. */
|
5316
5231
|
success: Scalars["Boolean"];
|
5317
5232
|
};
|
5318
|
-
/** Pull request data */
|
5319
|
-
export declare type PullRequestPayload = {
|
5320
|
-
__typename?: "PullRequestPayload";
|
5321
|
-
branch: Scalars["String"];
|
5322
|
-
closedAt: Scalars["String"];
|
5323
|
-
createdAt: Scalars["String"];
|
5324
|
-
draft: Scalars["Boolean"];
|
5325
|
-
id: Scalars["String"];
|
5326
|
-
mergedAt: Scalars["String"];
|
5327
|
-
number: Scalars["Float"];
|
5328
|
-
repoLogin: Scalars["String"];
|
5329
|
-
repoName: Scalars["String"];
|
5330
|
-
reviewers?: Maybe<Array<Scalars["String"]>>;
|
5331
|
-
reviews?: Maybe<Array<PullRequestReview>>;
|
5332
|
-
status: Scalars["String"];
|
5333
|
-
title: Scalars["String"];
|
5334
|
-
updatedAt: Scalars["String"];
|
5335
|
-
url: Scalars["String"];
|
5336
|
-
userId: Scalars["String"];
|
5337
|
-
userLogin: Scalars["String"];
|
5338
|
-
};
|
5339
|
-
/** Pull request review data */
|
5340
|
-
export declare type PullRequestReview = {
|
5341
|
-
__typename?: "PullRequestReview";
|
5342
|
-
/** The ID of the review. */
|
5343
|
-
id: Scalars["Float"];
|
5344
|
-
/** [Internal] The reviewer's avatar URL. */
|
5345
|
-
reviewerAvatarUrl?: Maybe<Scalars["String"]>;
|
5346
|
-
/** The user ID of the reviewer. */
|
5347
|
-
reviewerId: Scalars["Float"];
|
5348
|
-
/** The login of the reviewer. */
|
5349
|
-
reviewerLogin: Scalars["String"];
|
5350
|
-
/** The state of the review. */
|
5351
|
-
state: Scalars["String"];
|
5352
|
-
/** The timestamp of review submission. */
|
5353
|
-
submittedAt: Scalars["String"];
|
5354
|
-
};
|
5355
5233
|
/** A user's web browser push notification subscription. */
|
5356
5234
|
export declare type PushSubscription = Node & {
|
5357
5235
|
__typename?: "PushSubscription";
|
@@ -5477,16 +5355,6 @@ export declare type Query = {
|
|
5477
5355
|
figmaEmbedInfo: FigmaEmbedPayload;
|
5478
5356
|
/** One specific integration. */
|
5479
5357
|
integration: Integration;
|
5480
|
-
/**
|
5481
|
-
* One specific integration resource. (e.g. linked GitHub pull requests for an issue)
|
5482
|
-
* @deprecated This query will soon be deprecated, please use `attachment` instead
|
5483
|
-
*/
|
5484
|
-
integrationResource: IntegrationResource;
|
5485
|
-
/**
|
5486
|
-
* All integrations resources (e.g. linked GitHub pull requests for issues).
|
5487
|
-
* @deprecated This query will soon be deprecated, please use `attachments` instead
|
5488
|
-
*/
|
5489
|
-
integrationResources: IntegrationResourceConnection;
|
5490
5358
|
/** One specific integrationTemplate. */
|
5491
5359
|
integrationTemplate: IntegrationTemplate;
|
5492
5360
|
/** Template and integration connections. */
|
@@ -5746,17 +5614,6 @@ export declare type QueryFigmaEmbedInfoArgs = {
|
|
5746
5614
|
export declare type QueryIntegrationArgs = {
|
5747
5615
|
id: Scalars["String"];
|
5748
5616
|
};
|
5749
|
-
export declare type QueryIntegrationResourceArgs = {
|
5750
|
-
id: Scalars["String"];
|
5751
|
-
};
|
5752
|
-
export declare type QueryIntegrationResourcesArgs = {
|
5753
|
-
after?: Maybe<Scalars["String"]>;
|
5754
|
-
before?: Maybe<Scalars["String"]>;
|
5755
|
-
first?: Maybe<Scalars["Int"]>;
|
5756
|
-
includeArchived?: Maybe<Scalars["Boolean"]>;
|
5757
|
-
last?: Maybe<Scalars["Int"]>;
|
5758
|
-
orderBy?: Maybe<PaginationOrderBy>;
|
5759
|
-
};
|
5760
5617
|
export declare type QueryIntegrationTemplateArgs = {
|
5761
5618
|
id: Scalars["String"];
|
5762
5619
|
};
|
@@ -6305,32 +6162,6 @@ export declare type SamlConfigurationPayload = {
|
|
6305
6162
|
/** The algorithm of the Signing Certificate. Can be one of `sha1`, `sha256` (default), or `sha512`. */
|
6306
6163
|
ssoSignAlgo?: Maybe<Scalars["String"]>;
|
6307
6164
|
};
|
6308
|
-
/** Sentry issue data */
|
6309
|
-
export declare type SentryIssuePayload = {
|
6310
|
-
__typename?: "SentryIssuePayload";
|
6311
|
-
/** The Sentry identifier of the actor who created the issue. */
|
6312
|
-
actorId: Scalars["Float"];
|
6313
|
-
/** The name of the Sentry actor who created this issue. */
|
6314
|
-
actorName: Scalars["String"];
|
6315
|
-
/** The type of the actor who created the issue. */
|
6316
|
-
actorType: Scalars["String"];
|
6317
|
-
/** The date this issue was first seen. */
|
6318
|
-
firstSeen: Scalars["String"];
|
6319
|
-
/** The name of the first release version this issue appeared on, if available. */
|
6320
|
-
firstVersion?: Maybe<Scalars["String"]>;
|
6321
|
-
/** The Sentry identifier for the issue. */
|
6322
|
-
issueId: Scalars["String"];
|
6323
|
-
/** The title of the issue. */
|
6324
|
-
issueTitle: Scalars["String"];
|
6325
|
-
/** The Sentry identifier of the project this issue belongs to. */
|
6326
|
-
projectId: Scalars["Float"];
|
6327
|
-
/** The slug of the project this issue belongs to. */
|
6328
|
-
projectSlug: Scalars["String"];
|
6329
|
-
/** The shortId of the issue. */
|
6330
|
-
shortId: Scalars["String"];
|
6331
|
-
/** The description of the issue. */
|
6332
|
-
webUrl: Scalars["String"];
|
6333
|
-
};
|
6334
6165
|
/** Sentry specific settings. */
|
6335
6166
|
export declare type SentrySettings = {
|
6336
6167
|
__typename?: "SentrySettings";
|
@@ -7098,7 +6929,7 @@ export declare type UpdateOrganizationInput = {
|
|
7098
6929
|
reducedPersonalInformation?: Maybe<Scalars["Boolean"]>;
|
7099
6930
|
/** Whether the organization is using roadmap. */
|
7100
6931
|
roadmapEnabled?: Maybe<Scalars["Boolean"]>;
|
7101
|
-
/** Internal. Whether
|
6932
|
+
/** Internal. Whether SLAs have been enabled for the organization. */
|
7102
6933
|
slaEnabled?: Maybe<Scalars["Boolean"]>;
|
7103
6934
|
/** The URL key of the organization. */
|
7104
6935
|
urlKey?: Maybe<Scalars["String"]>;
|
@@ -8271,22 +8102,6 @@ export declare type ProjectLinkFragment = {
|
|
8271
8102
|
export declare type IssueImportFragment = {
|
8272
8103
|
__typename: "IssueImport";
|
8273
8104
|
} & Pick<IssueImport, "progress" | "teamName" | "mapping" | "creatorId" | "updatedAt" | "service" | "status" | "archivedAt" | "createdAt" | "id" | "error">;
|
8274
|
-
export declare type IntegrationResourceFragment = {
|
8275
|
-
__typename: "IntegrationResource";
|
8276
|
-
} & Pick<IntegrationResource, "resourceId" | "resourceType" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
|
8277
|
-
data: {
|
8278
|
-
__typename?: "IntegrationResourceData";
|
8279
|
-
} & IntegrationResourceDataFragment;
|
8280
|
-
pullRequest: {
|
8281
|
-
__typename?: "PullRequestPayload";
|
8282
|
-
} & PullRequestPayloadFragment;
|
8283
|
-
integration?: Maybe<{
|
8284
|
-
__typename?: "Integration";
|
8285
|
-
} & Pick<Integration, "id">>;
|
8286
|
-
issue: {
|
8287
|
-
__typename?: "Issue";
|
8288
|
-
} & Pick<Issue, "id">;
|
8289
|
-
};
|
8290
8105
|
export declare type IntegrationFragment = {
|
8291
8106
|
__typename: "Integration";
|
8292
8107
|
} & Pick<Integration, "service" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
|
@@ -8441,9 +8256,6 @@ export declare type GithubOAuthTokenPayloadFragment = {
|
|
8441
8256
|
__typename?: "GithubOrg";
|
8442
8257
|
} & GithubOrgFragment>>;
|
8443
8258
|
};
|
8444
|
-
export declare type CommitPayloadFragment = {
|
8445
|
-
__typename: "CommitPayload";
|
8446
|
-
} & Pick<CommitPayload, "added" | "id" | "message" | "modified" | "removed" | "timestamp" | "url">;
|
8447
8259
|
export declare type GoogleSheetsSettingsFragment = {
|
8448
8260
|
__typename: "GoogleSheetsSettings";
|
8449
8261
|
} & Pick<GoogleSheetsSettings, "sheetId" | "spreadsheetId" | "spreadsheetUrl" | "updatedIssuesAt">;
|
@@ -8457,22 +8269,6 @@ export declare type ProjectUpdateInteractionFragment = {
|
|
8457
8269
|
__typename?: "User";
|
8458
8270
|
} & Pick<User, "id">;
|
8459
8271
|
};
|
8460
|
-
export declare type IntegrationResourceDataFragment = {
|
8461
|
-
__typename: "IntegrationResourceData";
|
8462
|
-
} & {
|
8463
|
-
githubCommit?: Maybe<{
|
8464
|
-
__typename?: "CommitPayload";
|
8465
|
-
} & CommitPayloadFragment>;
|
8466
|
-
githubPullRequest?: Maybe<{
|
8467
|
-
__typename?: "PullRequestPayload";
|
8468
|
-
} & PullRequestPayloadFragment>;
|
8469
|
-
gitlabMergeRequest?: Maybe<{
|
8470
|
-
__typename?: "PullRequestPayload";
|
8471
|
-
} & PullRequestPayloadFragment>;
|
8472
|
-
sentryIssue?: Maybe<{
|
8473
|
-
__typename?: "SentryIssuePayload";
|
8474
|
-
} & SentryIssuePayloadFragment>;
|
8475
|
-
};
|
8476
8272
|
export declare type IntercomSettingsFragment = {
|
8477
8273
|
__typename: "IntercomSettings";
|
8478
8274
|
} & Pick<IntercomSettings, "automateTicketReopeningOnComment" | "automateTicketReopeningOnCancellation" | "automateTicketReopeningOnCompletion" | "sendNoteOnStatusChange" | "sendNoteOnComment">;
|
@@ -8591,16 +8387,6 @@ export declare type UserAuthorizedApplicationFragment = {
|
|
8591
8387
|
export declare type ApplicationFragment = {
|
8592
8388
|
__typename: "Application";
|
8593
8389
|
} & Pick<Application, "name" | "imageUrl" | "description" | "developer" | "id" | "clientId" | "developerUrl">;
|
8594
|
-
export declare type PullRequestPayloadFragment = {
|
8595
|
-
__typename: "PullRequestPayload";
|
8596
|
-
} & Pick<PullRequestPayload, "branch" | "closedAt" | "createdAt" | "draft" | "id" | "mergedAt" | "number" | "repoLogin" | "repoName" | "reviewers" | "status" | "title" | "updatedAt" | "url" | "userId" | "userLogin"> & {
|
8597
|
-
reviews?: Maybe<Array<{
|
8598
|
-
__typename?: "PullRequestReview";
|
8599
|
-
} & PullRequestReviewFragment>>;
|
8600
|
-
};
|
8601
|
-
export declare type PullRequestReviewFragment = {
|
8602
|
-
__typename: "PullRequestReview";
|
8603
|
-
} & Pick<PullRequestReview, "id" | "reviewerLogin" | "state" | "submittedAt" | "reviewerId">;
|
8604
8390
|
export declare type GithubOrgFragment = {
|
8605
8391
|
__typename: "GithubOrg";
|
8606
8392
|
} & Pick<GithubOrg, "id" | "login" | "name" | "isPersonal"> & {
|
@@ -8614,9 +8400,6 @@ export declare type GithubRepoFragment = {
|
|
8614
8400
|
export declare type OauthClientApprovalFragment = {
|
8615
8401
|
__typename: "OauthClientApproval";
|
8616
8402
|
} & Pick<OauthClientApproval, "updatedAt" | "requesterId" | "responderId" | "requestReason" | "denyReason" | "scopes" | "archivedAt" | "createdAt" | "id" | "oauthClientId">;
|
8617
|
-
export declare type SentryIssuePayloadFragment = {
|
8618
|
-
__typename: "SentryIssuePayload";
|
8619
|
-
} & Pick<SentryIssuePayload, "issueId" | "actorId" | "projectId" | "firstSeen" | "webUrl" | "actorName" | "firstVersion" | "shortId" | "projectSlug" | "issueTitle" | "actorType">;
|
8620
8403
|
export declare type SentrySettingsFragment = {
|
8621
8404
|
__typename: "SentrySettings";
|
8622
8405
|
} & Pick<SentrySettings, "organizationSlug">;
|
@@ -8974,16 +8757,6 @@ export declare type IntegrationPayloadFragment = {
|
|
8974
8757
|
export declare type IntegrationRequestPayloadFragment = {
|
8975
8758
|
__typename: "IntegrationRequestPayload";
|
8976
8759
|
} & Pick<IntegrationRequestPayload, "success">;
|
8977
|
-
export declare type IntegrationResourceConnectionFragment = {
|
8978
|
-
__typename: "IntegrationResourceConnection";
|
8979
|
-
} & {
|
8980
|
-
nodes: Array<{
|
8981
|
-
__typename?: "IntegrationResource";
|
8982
|
-
} & IntegrationResourceFragment>;
|
8983
|
-
pageInfo: {
|
8984
|
-
__typename?: "PageInfo";
|
8985
|
-
} & PageInfoFragment;
|
8986
|
-
};
|
8987
8760
|
export declare type IntegrationTemplateConnectionFragment = {
|
8988
8761
|
__typename: "IntegrationTemplateConnection";
|
8989
8762
|
} & {
|
@@ -9136,9 +8909,6 @@ declare type Node_Favorite_Fragment = {
|
|
9136
8909
|
declare type Node_Integration_Fragment = {
|
9137
8910
|
__typename: "Integration";
|
9138
8911
|
} & Pick<Integration, "id">;
|
9139
|
-
declare type Node_IntegrationResource_Fragment = {
|
9140
|
-
__typename: "IntegrationResource";
|
9141
|
-
} & Pick<IntegrationResource, "id">;
|
9142
8912
|
declare type Node_IntegrationTemplate_Fragment = {
|
9143
8913
|
__typename: "IntegrationTemplate";
|
9144
8914
|
} & Pick<IntegrationTemplate, "id">;
|
@@ -9253,7 +9023,7 @@ declare type Node_WorkflowDefinition_Fragment = {
|
|
9253
9023
|
declare type Node_WorkflowState_Fragment = {
|
9254
9024
|
__typename: "WorkflowState";
|
9255
9025
|
} & Pick<WorkflowState, "id">;
|
9256
|
-
export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_CustomView_Fragment | Node_Cycle_Fragment | Node_Document_Fragment | Node_Emoji_Fragment | Node_Favorite_Fragment | Node_Integration_Fragment |
|
9026
|
+
export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_CustomView_Fragment | Node_Cycle_Fragment | Node_Document_Fragment | Node_Emoji_Fragment | Node_Favorite_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_PersonalNote_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_User_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
|
9257
9027
|
export declare type NotificationConnectionFragment = {
|
9258
9028
|
__typename: "NotificationConnection";
|
9259
9029
|
} & {
|
@@ -10221,16 +9991,6 @@ export declare type IntegrationRequestMutation = {
|
|
10221
9991
|
__typename?: "IntegrationRequestPayload";
|
10222
9992
|
} & IntegrationRequestPayloadFragment;
|
10223
9993
|
};
|
10224
|
-
export declare type ArchiveIntegrationResourceMutationVariables = Exact<{
|
10225
|
-
id: Scalars["String"];
|
10226
|
-
}>;
|
10227
|
-
export declare type ArchiveIntegrationResourceMutation = {
|
10228
|
-
__typename?: "Mutation";
|
10229
|
-
} & {
|
10230
|
-
integrationResourceArchive: {
|
10231
|
-
__typename?: "ArchivePayload";
|
10232
|
-
} & ArchivePayloadFragment;
|
10233
|
-
};
|
10234
9994
|
export declare type IntegrationSentryConnectMutationVariables = Exact<{
|
10235
9995
|
code: Scalars["String"];
|
10236
9996
|
installationId: Scalars["String"];
|
@@ -13751,13 +13511,6 @@ export declare const IntegrationFragmentDoc: DocumentNode<IntegrationFragment, u
|
|
13751
13511
|
export declare const IntegrationConnectionFragmentDoc: DocumentNode<IntegrationConnectionFragment, unknown>;
|
13752
13512
|
export declare const IntegrationPayloadFragmentDoc: DocumentNode<IntegrationPayloadFragment, unknown>;
|
13753
13513
|
export declare const IntegrationRequestPayloadFragmentDoc: DocumentNode<IntegrationRequestPayloadFragment, unknown>;
|
13754
|
-
export declare const CommitPayloadFragmentDoc: DocumentNode<CommitPayloadFragment, unknown>;
|
13755
|
-
export declare const PullRequestReviewFragmentDoc: DocumentNode<PullRequestReviewFragment, unknown>;
|
13756
|
-
export declare const PullRequestPayloadFragmentDoc: DocumentNode<PullRequestPayloadFragment, unknown>;
|
13757
|
-
export declare const SentryIssuePayloadFragmentDoc: DocumentNode<SentryIssuePayloadFragment, unknown>;
|
13758
|
-
export declare const IntegrationResourceDataFragmentDoc: DocumentNode<IntegrationResourceDataFragment, unknown>;
|
13759
|
-
export declare const IntegrationResourceFragmentDoc: DocumentNode<IntegrationResourceFragment, unknown>;
|
13760
|
-
export declare const IntegrationResourceConnectionFragmentDoc: DocumentNode<IntegrationResourceConnectionFragment, unknown>;
|
13761
13514
|
export declare const IntegrationTemplateFragmentDoc: DocumentNode<IntegrationTemplateFragment, unknown>;
|
13762
13515
|
export declare const IntegrationTemplateConnectionFragmentDoc: DocumentNode<IntegrationTemplateConnectionFragment, unknown>;
|
13763
13516
|
export declare const IntegrationTemplatePayloadFragmentDoc: DocumentNode<IntegrationTemplatePayloadFragment, unknown>;
|
@@ -14048,9 +13801,6 @@ export declare const IntegrationLoomDocument: DocumentNode<IntegrationLoomMutati
|
|
14048
13801
|
export declare const IntegrationRequestDocument: DocumentNode<IntegrationRequestMutation, Exact<{
|
14049
13802
|
input: IntegrationRequestInput;
|
14050
13803
|
}>>;
|
14051
|
-
export declare const ArchiveIntegrationResourceDocument: DocumentNode<ArchiveIntegrationResourceMutation, Exact<{
|
14052
|
-
id: Scalars["String"];
|
14053
|
-
}>>;
|
14054
13804
|
export declare const IntegrationSentryConnectDocument: DocumentNode<IntegrationSentryConnectMutation, Exact<{
|
14055
13805
|
code: Scalars["String"];
|
14056
13806
|
installationId: Scalars["String"];
|