@linear/sdk 65.1.0 → 65.2.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/README.md +3 -1
- package/dist/_generated_documents.d.ts +455 -2
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +79 -1
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.min.js +1 -1
- package/dist/index-cjs.min.js.map +1 -1
- package/dist/index-es.min.js +1 -1
- package/dist/index-es.min.js.map +1 -1
- package/dist/index-umd.min.js +1 -1
- package/dist/index-umd.min.js.map +1 -1
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ The Linear Client uses custom [GraphQL Code Generator](https://graphql-code-gene
|
|
|
44
44
|
|
|
45
45
|
### Structure
|
|
46
46
|
|
|
47
|
-
This monorepo uses `yarn workspaces`
|
|
47
|
+
This monorepo uses `yarn workspaces` to manage and publish packages.
|
|
48
48
|
|
|
49
49
|
Generated code uses file prefix `_generated` and should never be manually updated.
|
|
50
50
|
|
|
@@ -57,6 +57,8 @@ Open source packages:
|
|
|
57
57
|
|
|
58
58
|
### Get Started
|
|
59
59
|
|
|
60
|
+
Make sure you have Node 18+ and Corepack enabled (`corepack enable`).
|
|
61
|
+
|
|
60
62
|
```shell
|
|
61
63
|
# install dependencies
|
|
62
64
|
yarn
|
|
@@ -6240,6 +6240,8 @@ export declare type Issue = Node & {
|
|
|
6240
6240
|
recurringIssueTemplate?: Maybe<Template>;
|
|
6241
6241
|
/** Relations associated with this issue. */
|
|
6242
6242
|
relations: IssueRelationConnection;
|
|
6243
|
+
/** [Internal] Id of the releases associated with this issue. */
|
|
6244
|
+
releaseIds: Array<Scalars["String"]>;
|
|
6243
6245
|
/** The time at which the issue's SLA will breach. */
|
|
6244
6246
|
slaBreachesAt?: Maybe<Scalars["DateTime"]>;
|
|
6245
6247
|
/** The time at which the issue's SLA will enter high risk state. */
|
|
@@ -7820,6 +7822,8 @@ export declare type IssueSearchResult = Node & {
|
|
|
7820
7822
|
recurringIssueTemplate?: Maybe<Template>;
|
|
7821
7823
|
/** Relations associated with this issue. */
|
|
7822
7824
|
relations: IssueRelationConnection;
|
|
7825
|
+
/** [Internal] Id of the releases associated with this issue. */
|
|
7826
|
+
releaseIds: Array<Scalars["String"]>;
|
|
7823
7827
|
/** The time at which the issue's SLA will breach. */
|
|
7824
7828
|
slaBreachesAt?: Maybe<Scalars["DateTime"]>;
|
|
7825
7829
|
/** The time at which the issue's SLA will enter high risk state. */
|
|
@@ -9195,6 +9199,32 @@ export declare type Mutation = {
|
|
|
9195
9199
|
reactionDelete: DeletePayload;
|
|
9196
9200
|
/** Manually update Google Sheets data. */
|
|
9197
9201
|
refreshGoogleSheetsData: IntegrationPayload;
|
|
9202
|
+
/** [ALPHA] Archives a release. */
|
|
9203
|
+
releaseArchive: ReleaseArchivePayload;
|
|
9204
|
+
/** [ALPHA] Creates a new release. */
|
|
9205
|
+
releaseCreate: ReleasePayload;
|
|
9206
|
+
/** [ALPHA] Archives a release pipeline. */
|
|
9207
|
+
releasePipelineArchive: ReleasePipelineArchivePayload;
|
|
9208
|
+
/** [ALPHA] Creates a new release pipeline. */
|
|
9209
|
+
releasePipelineCreate: ReleasePipelinePayload;
|
|
9210
|
+
/** [ALPHA] Deletes a release pipeline. */
|
|
9211
|
+
releasePipelineDelete: DeletePayload;
|
|
9212
|
+
/** [ALPHA] Unarchives a release pipeline. */
|
|
9213
|
+
releasePipelineUnarchive: ReleasePipelineArchivePayload;
|
|
9214
|
+
/** [ALPHA] Updates a release pipeline. */
|
|
9215
|
+
releasePipelineUpdate: ReleasePipelinePayload;
|
|
9216
|
+
/** [ALPHA] Archives a release stage. */
|
|
9217
|
+
releaseStageArchive: ReleaseStageArchivePayload;
|
|
9218
|
+
/** [ALPHA] Creates a new release stage. */
|
|
9219
|
+
releaseStageCreate: ReleaseStagePayload;
|
|
9220
|
+
/** [ALPHA] Unarchives a release stage. */
|
|
9221
|
+
releaseStageUnarchive: ReleaseStageArchivePayload;
|
|
9222
|
+
/** [ALPHA] Updates a release stage. */
|
|
9223
|
+
releaseStageUpdate: ReleaseStagePayload;
|
|
9224
|
+
/** [ALPHA] Unarchives a release. */
|
|
9225
|
+
releaseUnarchive: ReleaseArchivePayload;
|
|
9226
|
+
/** [ALPHA] Updates a release. */
|
|
9227
|
+
releaseUpdate: ReleasePayload;
|
|
9198
9228
|
/** Re-send an organization invite. */
|
|
9199
9229
|
resendOrganizationInvite: DeletePayload;
|
|
9200
9230
|
/** Re-send an organization invite tied to an email address. */
|
|
@@ -10311,6 +10341,48 @@ export declare type MutationRefreshGoogleSheetsDataArgs = {
|
|
|
10311
10341
|
id: Scalars["String"];
|
|
10312
10342
|
type?: InputMaybe<Scalars["String"]>;
|
|
10313
10343
|
};
|
|
10344
|
+
export declare type MutationReleaseArchiveArgs = {
|
|
10345
|
+
id: Scalars["String"];
|
|
10346
|
+
};
|
|
10347
|
+
export declare type MutationReleaseCreateArgs = {
|
|
10348
|
+
input: ReleaseCreateInput;
|
|
10349
|
+
};
|
|
10350
|
+
export declare type MutationReleasePipelineArchiveArgs = {
|
|
10351
|
+
id: Scalars["String"];
|
|
10352
|
+
};
|
|
10353
|
+
export declare type MutationReleasePipelineCreateArgs = {
|
|
10354
|
+
input: ReleasePipelineCreateInput;
|
|
10355
|
+
};
|
|
10356
|
+
export declare type MutationReleasePipelineDeleteArgs = {
|
|
10357
|
+
id: Scalars["String"];
|
|
10358
|
+
};
|
|
10359
|
+
export declare type MutationReleasePipelineUnarchiveArgs = {
|
|
10360
|
+
id: Scalars["String"];
|
|
10361
|
+
};
|
|
10362
|
+
export declare type MutationReleasePipelineUpdateArgs = {
|
|
10363
|
+
id: Scalars["String"];
|
|
10364
|
+
input: ReleasePipelineUpdateInput;
|
|
10365
|
+
};
|
|
10366
|
+
export declare type MutationReleaseStageArchiveArgs = {
|
|
10367
|
+
id: Scalars["String"];
|
|
10368
|
+
};
|
|
10369
|
+
export declare type MutationReleaseStageCreateArgs = {
|
|
10370
|
+
input: ReleaseStageCreateInput;
|
|
10371
|
+
};
|
|
10372
|
+
export declare type MutationReleaseStageUnarchiveArgs = {
|
|
10373
|
+
id: Scalars["String"];
|
|
10374
|
+
};
|
|
10375
|
+
export declare type MutationReleaseStageUpdateArgs = {
|
|
10376
|
+
id: Scalars["String"];
|
|
10377
|
+
input: ReleaseStageUpdateInput;
|
|
10378
|
+
};
|
|
10379
|
+
export declare type MutationReleaseUnarchiveArgs = {
|
|
10380
|
+
id: Scalars["String"];
|
|
10381
|
+
};
|
|
10382
|
+
export declare type MutationReleaseUpdateArgs = {
|
|
10383
|
+
id: Scalars["String"];
|
|
10384
|
+
input: ReleaseUpdateInput;
|
|
10385
|
+
};
|
|
10314
10386
|
export declare type MutationResendOrganizationInviteArgs = {
|
|
10315
10387
|
id: Scalars["String"];
|
|
10316
10388
|
};
|
|
@@ -13117,6 +13189,10 @@ export declare type ProjectCreateInput = {
|
|
|
13117
13189
|
targetDateResolution?: InputMaybe<DateResolutionType>;
|
|
13118
13190
|
/** The identifiers of the teams this project is associated with. */
|
|
13119
13191
|
teamIds: Array<Scalars["String"]>;
|
|
13192
|
+
/** The ID of the template to apply when creating the project. */
|
|
13193
|
+
templateId?: InputMaybe<Scalars["String"]>;
|
|
13194
|
+
/** When set to true, the default project template of the first team provided will be applied. If templateId is provided, this will be ignored. */
|
|
13195
|
+
useDefaultTemplate?: InputMaybe<Scalars["Boolean"]>;
|
|
13120
13196
|
};
|
|
13121
13197
|
/** Project creation date sorting options. */
|
|
13122
13198
|
export declare type ProjectCreatedAtSort = {
|
|
@@ -14954,6 +15030,15 @@ export declare type PullRequestNotification = Entity & Node & Notification & {
|
|
|
14954
15030
|
/** The user that received the notification. */
|
|
14955
15031
|
user: User;
|
|
14956
15032
|
};
|
|
15033
|
+
/** Input for referencing a pull request by repository and number. */
|
|
15034
|
+
export declare type PullRequestReferenceInput = {
|
|
15035
|
+
/** The pull request number. */
|
|
15036
|
+
number: Scalars["Float"];
|
|
15037
|
+
/** The name of the repository. */
|
|
15038
|
+
repositoryName: Scalars["String"];
|
|
15039
|
+
/** The owner of the repository (e.g., organization or user name). */
|
|
15040
|
+
repositoryOwner: Scalars["String"];
|
|
15041
|
+
};
|
|
14957
15042
|
export declare enum PullRequestReviewTool {
|
|
14958
15043
|
Graphite = "graphite",
|
|
14959
15044
|
Source = "source"
|
|
@@ -15230,6 +15315,18 @@ export declare type Query = {
|
|
|
15230
15315
|
pushSubscriptionTest: PushSubscriptionTestPayload;
|
|
15231
15316
|
/** The status of the rate limiter. */
|
|
15232
15317
|
rateLimitStatus: RateLimitPayload;
|
|
15318
|
+
/** [ALPHA] One specific release. */
|
|
15319
|
+
release: Release;
|
|
15320
|
+
/** [ALPHA] One specific release pipeline. */
|
|
15321
|
+
releasePipeline: ReleasePipeline;
|
|
15322
|
+
/** [ALPHA] All release pipelines. */
|
|
15323
|
+
releasePipelines: ReleasePipelineConnection;
|
|
15324
|
+
/** [ALPHA] One specific release stage. */
|
|
15325
|
+
releaseStage: ReleaseStage;
|
|
15326
|
+
/** [ALPHA] All release stages. */
|
|
15327
|
+
releaseStages: ReleaseStageConnection;
|
|
15328
|
+
/** [ALPHA] All releases. */
|
|
15329
|
+
releases: ReleaseConnection;
|
|
15233
15330
|
/**
|
|
15234
15331
|
* One specific roadmap.
|
|
15235
15332
|
* @deprecated Roadmaps are deprecated, use initiatives instead.
|
|
@@ -15809,6 +15906,39 @@ export declare type QueryPushSubscriptionTestArgs = {
|
|
|
15809
15906
|
sendStrategy?: InputMaybe<SendStrategy>;
|
|
15810
15907
|
targetMobile?: InputMaybe<Scalars["Boolean"]>;
|
|
15811
15908
|
};
|
|
15909
|
+
export declare type QueryReleaseArgs = {
|
|
15910
|
+
id: Scalars["String"];
|
|
15911
|
+
};
|
|
15912
|
+
export declare type QueryReleasePipelineArgs = {
|
|
15913
|
+
id: Scalars["String"];
|
|
15914
|
+
};
|
|
15915
|
+
export declare type QueryReleasePipelinesArgs = {
|
|
15916
|
+
after?: InputMaybe<Scalars["String"]>;
|
|
15917
|
+
before?: InputMaybe<Scalars["String"]>;
|
|
15918
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
15919
|
+
includeArchived?: InputMaybe<Scalars["Boolean"]>;
|
|
15920
|
+
last?: InputMaybe<Scalars["Int"]>;
|
|
15921
|
+
orderBy?: InputMaybe<PaginationOrderBy>;
|
|
15922
|
+
};
|
|
15923
|
+
export declare type QueryReleaseStageArgs = {
|
|
15924
|
+
id: Scalars["String"];
|
|
15925
|
+
};
|
|
15926
|
+
export declare type QueryReleaseStagesArgs = {
|
|
15927
|
+
after?: InputMaybe<Scalars["String"]>;
|
|
15928
|
+
before?: InputMaybe<Scalars["String"]>;
|
|
15929
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
15930
|
+
includeArchived?: InputMaybe<Scalars["Boolean"]>;
|
|
15931
|
+
last?: InputMaybe<Scalars["Int"]>;
|
|
15932
|
+
orderBy?: InputMaybe<PaginationOrderBy>;
|
|
15933
|
+
};
|
|
15934
|
+
export declare type QueryReleasesArgs = {
|
|
15935
|
+
after?: InputMaybe<Scalars["String"]>;
|
|
15936
|
+
before?: InputMaybe<Scalars["String"]>;
|
|
15937
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
15938
|
+
includeArchived?: InputMaybe<Scalars["Boolean"]>;
|
|
15939
|
+
last?: InputMaybe<Scalars["Int"]>;
|
|
15940
|
+
orderBy?: InputMaybe<PaginationOrderBy>;
|
|
15941
|
+
};
|
|
15812
15942
|
export declare type QueryRoadmapArgs = {
|
|
15813
15943
|
id: Scalars["String"];
|
|
15814
15944
|
};
|
|
@@ -16133,6 +16263,41 @@ export declare type RelationExistsComparator = {
|
|
|
16133
16263
|
/** Not equals constraint. */
|
|
16134
16264
|
neq?: InputMaybe<Scalars["Boolean"]>;
|
|
16135
16265
|
};
|
|
16266
|
+
/** [Internal] A release. */
|
|
16267
|
+
export declare type Release = Node & {
|
|
16268
|
+
__typename?: "Release";
|
|
16269
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
|
16270
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
|
16271
|
+
/** The commit SHA associated with this release. */
|
|
16272
|
+
commitSha?: Maybe<Scalars["String"]>;
|
|
16273
|
+
/** The time at which the entity was created. */
|
|
16274
|
+
createdAt: Scalars["DateTime"];
|
|
16275
|
+
/** The unique identifier of the entity. */
|
|
16276
|
+
id: Scalars["ID"];
|
|
16277
|
+
/** The name of the release. */
|
|
16278
|
+
name: Scalars["String"];
|
|
16279
|
+
/** The pipeline this release belongs to. */
|
|
16280
|
+
pipeline: ReleasePipeline;
|
|
16281
|
+
/** The current stage of the release. */
|
|
16282
|
+
stage: ReleaseStage;
|
|
16283
|
+
/**
|
|
16284
|
+
* The last time at which the entity was meaningfully updated. This is the same as the creation time if the entity hasn't
|
|
16285
|
+
* been updated after creation.
|
|
16286
|
+
*/
|
|
16287
|
+
updatedAt: Scalars["DateTime"];
|
|
16288
|
+
/** The version of the release. */
|
|
16289
|
+
version?: Maybe<Scalars["String"]>;
|
|
16290
|
+
};
|
|
16291
|
+
/** A generic payload return from entity archive mutations. */
|
|
16292
|
+
export declare type ReleaseArchivePayload = ArchivePayload & {
|
|
16293
|
+
__typename?: "ReleaseArchivePayload";
|
|
16294
|
+
/** The archived/unarchived entity. Null if entity was deleted. */
|
|
16295
|
+
entity?: Maybe<Release>;
|
|
16296
|
+
/** The identifier of the last sync operation. */
|
|
16297
|
+
lastSyncId: Scalars["Float"];
|
|
16298
|
+
/** Whether the operation was successful. */
|
|
16299
|
+
success: Scalars["Boolean"];
|
|
16300
|
+
};
|
|
16136
16301
|
/** Features release channel. */
|
|
16137
16302
|
export declare enum ReleaseChannel {
|
|
16138
16303
|
Beta = "beta",
|
|
@@ -16142,6 +16307,252 @@ export declare enum ReleaseChannel {
|
|
|
16142
16307
|
PrivateBeta = "privateBeta",
|
|
16143
16308
|
Public = "public"
|
|
16144
16309
|
}
|
|
16310
|
+
export declare type ReleaseConnection = {
|
|
16311
|
+
__typename?: "ReleaseConnection";
|
|
16312
|
+
edges: Array<ReleaseEdge>;
|
|
16313
|
+
nodes: Array<Release>;
|
|
16314
|
+
pageInfo: PageInfo;
|
|
16315
|
+
};
|
|
16316
|
+
export declare type ReleaseCreateInput = {
|
|
16317
|
+
/** The commit SHA associated with this release. */
|
|
16318
|
+
commitSha?: InputMaybe<Scalars["String"]>;
|
|
16319
|
+
/** Debug information for release creation diagnostics. */
|
|
16320
|
+
debugSink?: InputMaybe<ReleaseDebugSinkInput>;
|
|
16321
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
|
16322
|
+
id?: InputMaybe<Scalars["String"]>;
|
|
16323
|
+
/** Issue identifiers (e.g. ENG-123) to associate with this release. */
|
|
16324
|
+
issueIdentifiers?: InputMaybe<Array<Scalars["String"]>>;
|
|
16325
|
+
/** The name of the release. */
|
|
16326
|
+
name: Scalars["String"];
|
|
16327
|
+
/** The identifier of the pipeline this release belongs to. */
|
|
16328
|
+
pipelineId: Scalars["String"];
|
|
16329
|
+
/** Pull request references to look up. Issues linked to found PRs will be associated with this release. */
|
|
16330
|
+
pullRequestReferences?: InputMaybe<Array<PullRequestReferenceInput>>;
|
|
16331
|
+
/** The current stage of the release. Defaults to the first 'planned' stage. */
|
|
16332
|
+
stageId?: InputMaybe<Scalars["String"]>;
|
|
16333
|
+
/** The version of the release. */
|
|
16334
|
+
version?: InputMaybe<Scalars["String"]>;
|
|
16335
|
+
};
|
|
16336
|
+
/** Debug sink for release creation diagnostics. */
|
|
16337
|
+
export declare type ReleaseDebugSinkInput = {
|
|
16338
|
+
/** List of commit SHAs that were inspected. */
|
|
16339
|
+
inspectedShas: Array<Scalars["String"]>;
|
|
16340
|
+
/** Map of issue identifiers to their source information. */
|
|
16341
|
+
issues: Scalars["JSONObject"];
|
|
16342
|
+
/** Pull request debug information. */
|
|
16343
|
+
pullRequests: Array<Scalars["JSONObject"]>;
|
|
16344
|
+
};
|
|
16345
|
+
export declare type ReleaseEdge = {
|
|
16346
|
+
__typename?: "ReleaseEdge";
|
|
16347
|
+
/** Used in `before` and `after` args */
|
|
16348
|
+
cursor: Scalars["String"];
|
|
16349
|
+
node: Release;
|
|
16350
|
+
};
|
|
16351
|
+
export declare type ReleasePayload = {
|
|
16352
|
+
__typename?: "ReleasePayload";
|
|
16353
|
+
/** The identifier of the last sync operation. */
|
|
16354
|
+
lastSyncId: Scalars["Float"];
|
|
16355
|
+
/** The release that was created or updated. */
|
|
16356
|
+
release: Release;
|
|
16357
|
+
/** Whether the operation was successful. */
|
|
16358
|
+
success: Scalars["Boolean"];
|
|
16359
|
+
};
|
|
16360
|
+
/** [Internal] A release pipeline. */
|
|
16361
|
+
export declare type ReleasePipeline = Node & {
|
|
16362
|
+
__typename?: "ReleasePipeline";
|
|
16363
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
|
16364
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
|
16365
|
+
/** The time at which the entity was created. */
|
|
16366
|
+
createdAt: Scalars["DateTime"];
|
|
16367
|
+
/** The unique identifier of the entity. */
|
|
16368
|
+
id: Scalars["ID"];
|
|
16369
|
+
/** The name of the pipeline. */
|
|
16370
|
+
name: Scalars["String"];
|
|
16371
|
+
/** [ALPHA] Releases associated with this pipeline. */
|
|
16372
|
+
releases: ReleaseConnection;
|
|
16373
|
+
/** The pipeline's unique slug identifier. */
|
|
16374
|
+
slugId: Scalars["String"];
|
|
16375
|
+
/** [ALPHA] Stages associated with this pipeline. */
|
|
16376
|
+
stages: ReleaseStageConnection;
|
|
16377
|
+
/**
|
|
16378
|
+
* The last time at which the entity was meaningfully updated. This is the same as the creation time if the entity hasn't
|
|
16379
|
+
* been updated after creation.
|
|
16380
|
+
*/
|
|
16381
|
+
updatedAt: Scalars["DateTime"];
|
|
16382
|
+
};
|
|
16383
|
+
/** [Internal] A release pipeline. */
|
|
16384
|
+
export declare type ReleasePipelineReleasesArgs = {
|
|
16385
|
+
after?: InputMaybe<Scalars["String"]>;
|
|
16386
|
+
before?: InputMaybe<Scalars["String"]>;
|
|
16387
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
16388
|
+
includeArchived?: InputMaybe<Scalars["Boolean"]>;
|
|
16389
|
+
last?: InputMaybe<Scalars["Int"]>;
|
|
16390
|
+
orderBy?: InputMaybe<PaginationOrderBy>;
|
|
16391
|
+
};
|
|
16392
|
+
/** [Internal] A release pipeline. */
|
|
16393
|
+
export declare type ReleasePipelineStagesArgs = {
|
|
16394
|
+
after?: InputMaybe<Scalars["String"]>;
|
|
16395
|
+
before?: InputMaybe<Scalars["String"]>;
|
|
16396
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
16397
|
+
includeArchived?: InputMaybe<Scalars["Boolean"]>;
|
|
16398
|
+
last?: InputMaybe<Scalars["Int"]>;
|
|
16399
|
+
orderBy?: InputMaybe<PaginationOrderBy>;
|
|
16400
|
+
};
|
|
16401
|
+
/** A generic payload return from entity archive mutations. */
|
|
16402
|
+
export declare type ReleasePipelineArchivePayload = ArchivePayload & {
|
|
16403
|
+
__typename?: "ReleasePipelineArchivePayload";
|
|
16404
|
+
/** The archived/unarchived entity. Null if entity was deleted. */
|
|
16405
|
+
entity?: Maybe<ReleasePipeline>;
|
|
16406
|
+
/** The identifier of the last sync operation. */
|
|
16407
|
+
lastSyncId: Scalars["Float"];
|
|
16408
|
+
/** Whether the operation was successful. */
|
|
16409
|
+
success: Scalars["Boolean"];
|
|
16410
|
+
};
|
|
16411
|
+
export declare type ReleasePipelineConnection = {
|
|
16412
|
+
__typename?: "ReleasePipelineConnection";
|
|
16413
|
+
edges: Array<ReleasePipelineEdge>;
|
|
16414
|
+
nodes: Array<ReleasePipeline>;
|
|
16415
|
+
pageInfo: PageInfo;
|
|
16416
|
+
};
|
|
16417
|
+
export declare type ReleasePipelineCreateInput = {
|
|
16418
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
|
16419
|
+
id?: InputMaybe<Scalars["String"]>;
|
|
16420
|
+
/** The name of the pipeline. */
|
|
16421
|
+
name: Scalars["String"];
|
|
16422
|
+
/** The pipeline's unique slug identifier. If not provided, it will be auto-generated. */
|
|
16423
|
+
slugId?: InputMaybe<Scalars["String"]>;
|
|
16424
|
+
};
|
|
16425
|
+
export declare type ReleasePipelineEdge = {
|
|
16426
|
+
__typename?: "ReleasePipelineEdge";
|
|
16427
|
+
/** Used in `before` and `after` args */
|
|
16428
|
+
cursor: Scalars["String"];
|
|
16429
|
+
node: ReleasePipeline;
|
|
16430
|
+
};
|
|
16431
|
+
export declare type ReleasePipelinePayload = {
|
|
16432
|
+
__typename?: "ReleasePipelinePayload";
|
|
16433
|
+
/** The identifier of the last sync operation. */
|
|
16434
|
+
lastSyncId: Scalars["Float"];
|
|
16435
|
+
/** The release pipeline that was created or updated. */
|
|
16436
|
+
releasePipeline: ReleasePipeline;
|
|
16437
|
+
/** Whether the operation was successful. */
|
|
16438
|
+
success: Scalars["Boolean"];
|
|
16439
|
+
};
|
|
16440
|
+
export declare type ReleasePipelineUpdateInput = {
|
|
16441
|
+
/** The name of the pipeline. */
|
|
16442
|
+
name?: InputMaybe<Scalars["String"]>;
|
|
16443
|
+
/** The pipeline's unique slug identifier. */
|
|
16444
|
+
slugId?: InputMaybe<Scalars["String"]>;
|
|
16445
|
+
};
|
|
16446
|
+
/** [Internal] A release stage. */
|
|
16447
|
+
export declare type ReleaseStage = Node & {
|
|
16448
|
+
__typename?: "ReleaseStage";
|
|
16449
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
|
16450
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
|
16451
|
+
/** The UI color of the stage as a HEX string. */
|
|
16452
|
+
color: Scalars["String"];
|
|
16453
|
+
/** The time at which the entity was created. */
|
|
16454
|
+
createdAt: Scalars["DateTime"];
|
|
16455
|
+
/** The unique identifier of the entity. */
|
|
16456
|
+
id: Scalars["ID"];
|
|
16457
|
+
/** The name of the stage. */
|
|
16458
|
+
name: Scalars["String"];
|
|
16459
|
+
/** The pipeline this stage belongs to. */
|
|
16460
|
+
pipeline: ReleasePipeline;
|
|
16461
|
+
/** The position of the stage. */
|
|
16462
|
+
position: Scalars["Float"];
|
|
16463
|
+
/** [ALPHA] Releases associated with this stage. */
|
|
16464
|
+
releases: ReleaseConnection;
|
|
16465
|
+
/** The type of the stage. */
|
|
16466
|
+
type: ReleaseStageType;
|
|
16467
|
+
/**
|
|
16468
|
+
* The last time at which the entity was meaningfully updated. This is the same as the creation time if the entity hasn't
|
|
16469
|
+
* been updated after creation.
|
|
16470
|
+
*/
|
|
16471
|
+
updatedAt: Scalars["DateTime"];
|
|
16472
|
+
};
|
|
16473
|
+
/** [Internal] A release stage. */
|
|
16474
|
+
export declare type ReleaseStageReleasesArgs = {
|
|
16475
|
+
after?: InputMaybe<Scalars["String"]>;
|
|
16476
|
+
before?: InputMaybe<Scalars["String"]>;
|
|
16477
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
16478
|
+
includeArchived?: InputMaybe<Scalars["Boolean"]>;
|
|
16479
|
+
last?: InputMaybe<Scalars["Int"]>;
|
|
16480
|
+
orderBy?: InputMaybe<PaginationOrderBy>;
|
|
16481
|
+
};
|
|
16482
|
+
/** A generic payload return from entity archive mutations. */
|
|
16483
|
+
export declare type ReleaseStageArchivePayload = ArchivePayload & {
|
|
16484
|
+
__typename?: "ReleaseStageArchivePayload";
|
|
16485
|
+
/** The archived/unarchived entity. Null if entity was deleted. */
|
|
16486
|
+
entity?: Maybe<ReleaseStage>;
|
|
16487
|
+
/** The identifier of the last sync operation. */
|
|
16488
|
+
lastSyncId: Scalars["Float"];
|
|
16489
|
+
/** Whether the operation was successful. */
|
|
16490
|
+
success: Scalars["Boolean"];
|
|
16491
|
+
};
|
|
16492
|
+
export declare type ReleaseStageConnection = {
|
|
16493
|
+
__typename?: "ReleaseStageConnection";
|
|
16494
|
+
edges: Array<ReleaseStageEdge>;
|
|
16495
|
+
nodes: Array<ReleaseStage>;
|
|
16496
|
+
pageInfo: PageInfo;
|
|
16497
|
+
};
|
|
16498
|
+
export declare type ReleaseStageCreateInput = {
|
|
16499
|
+
/** The UI color of the stage as a HEX string. */
|
|
16500
|
+
color: Scalars["String"];
|
|
16501
|
+
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
|
16502
|
+
id?: InputMaybe<Scalars["String"]>;
|
|
16503
|
+
/** The name of the stage. */
|
|
16504
|
+
name: Scalars["String"];
|
|
16505
|
+
/** The identifier of the pipeline this stage belongs to. */
|
|
16506
|
+
pipelineId: Scalars["String"];
|
|
16507
|
+
/** The position of the stage. */
|
|
16508
|
+
position: Scalars["Float"];
|
|
16509
|
+
/** The type of the stage. */
|
|
16510
|
+
type: ReleaseStageType;
|
|
16511
|
+
};
|
|
16512
|
+
export declare type ReleaseStageEdge = {
|
|
16513
|
+
__typename?: "ReleaseStageEdge";
|
|
16514
|
+
/** Used in `before` and `after` args */
|
|
16515
|
+
cursor: Scalars["String"];
|
|
16516
|
+
node: ReleaseStage;
|
|
16517
|
+
};
|
|
16518
|
+
export declare type ReleaseStagePayload = {
|
|
16519
|
+
__typename?: "ReleaseStagePayload";
|
|
16520
|
+
/** The identifier of the last sync operation. */
|
|
16521
|
+
lastSyncId: Scalars["Float"];
|
|
16522
|
+
/** The release stage that was created or updated. */
|
|
16523
|
+
releaseStage: ReleaseStage;
|
|
16524
|
+
/** Whether the operation was successful. */
|
|
16525
|
+
success: Scalars["Boolean"];
|
|
16526
|
+
};
|
|
16527
|
+
/** A type of release stage. */
|
|
16528
|
+
export declare enum ReleaseStageType {
|
|
16529
|
+
Canceled = "canceled",
|
|
16530
|
+
Completed = "completed",
|
|
16531
|
+
Planned = "planned",
|
|
16532
|
+
Started = "started"
|
|
16533
|
+
}
|
|
16534
|
+
export declare type ReleaseStageUpdateInput = {
|
|
16535
|
+
/** The UI color of the stage as a HEX string. */
|
|
16536
|
+
color?: InputMaybe<Scalars["String"]>;
|
|
16537
|
+
/** The name of the stage. */
|
|
16538
|
+
name?: InputMaybe<Scalars["String"]>;
|
|
16539
|
+
/** The position of the stage. */
|
|
16540
|
+
position?: InputMaybe<Scalars["Float"]>;
|
|
16541
|
+
/** The type of the stage. */
|
|
16542
|
+
type?: InputMaybe<ReleaseStageType>;
|
|
16543
|
+
};
|
|
16544
|
+
export declare type ReleaseUpdateInput = {
|
|
16545
|
+
/** The commit SHA associated with this release. */
|
|
16546
|
+
commitSha?: InputMaybe<Scalars["String"]>;
|
|
16547
|
+
/** The name of the release. */
|
|
16548
|
+
name?: InputMaybe<Scalars["String"]>;
|
|
16549
|
+
/** The identifier of the pipeline this release belongs to. */
|
|
16550
|
+
pipelineId?: InputMaybe<Scalars["String"]>;
|
|
16551
|
+
/** The current stage of the release. */
|
|
16552
|
+
stageId?: InputMaybe<Scalars["String"]>;
|
|
16553
|
+
/** The version of the release. */
|
|
16554
|
+
version?: InputMaybe<Scalars["String"]>;
|
|
16555
|
+
};
|
|
16145
16556
|
export declare type RepositorySuggestion = {
|
|
16146
16557
|
__typename?: "RepositorySuggestion";
|
|
16147
16558
|
/** Confidence score from 0.0 to 1.0. */
|
|
@@ -20019,6 +20430,15 @@ export declare type ProjectUpdateArchivePayloadFragment = {
|
|
|
20019
20430
|
__typename?: "ProjectUpdate";
|
|
20020
20431
|
} & Pick<ProjectUpdate, "id">>;
|
|
20021
20432
|
};
|
|
20433
|
+
export declare type ReleaseArchivePayloadFragment = {
|
|
20434
|
+
__typename: "ReleaseArchivePayload";
|
|
20435
|
+
} & Pick<ReleaseArchivePayload, "lastSyncId" | "success">;
|
|
20436
|
+
export declare type ReleasePipelineArchivePayloadFragment = {
|
|
20437
|
+
__typename: "ReleasePipelineArchivePayload";
|
|
20438
|
+
} & Pick<ReleasePipelineArchivePayload, "lastSyncId" | "success">;
|
|
20439
|
+
export declare type ReleaseStageArchivePayloadFragment = {
|
|
20440
|
+
__typename: "ReleaseStageArchivePayload";
|
|
20441
|
+
} & Pick<ReleaseStageArchivePayload, "lastSyncId" | "success">;
|
|
20022
20442
|
export declare type RoadmapArchivePayloadFragment = {
|
|
20023
20443
|
__typename: "RoadmapArchivePayload";
|
|
20024
20444
|
} & Pick<RoadmapArchivePayload, "lastSyncId" | "success"> & {
|
|
@@ -20544,6 +20964,15 @@ declare type ArchivePayload_ProjectUpdateArchivePayload_Fragment = {
|
|
|
20544
20964
|
__typename?: "ProjectUpdate";
|
|
20545
20965
|
} & Pick<ProjectUpdate, "id">>;
|
|
20546
20966
|
};
|
|
20967
|
+
declare type ArchivePayload_ReleaseArchivePayload_Fragment = {
|
|
20968
|
+
__typename: "ReleaseArchivePayload";
|
|
20969
|
+
} & Pick<ReleaseArchivePayload, "lastSyncId" | "success">;
|
|
20970
|
+
declare type ArchivePayload_ReleasePipelineArchivePayload_Fragment = {
|
|
20971
|
+
__typename: "ReleasePipelineArchivePayload";
|
|
20972
|
+
} & Pick<ReleasePipelineArchivePayload, "lastSyncId" | "success">;
|
|
20973
|
+
declare type ArchivePayload_ReleaseStageArchivePayload_Fragment = {
|
|
20974
|
+
__typename: "ReleaseStageArchivePayload";
|
|
20975
|
+
} & Pick<ReleaseStageArchivePayload, "lastSyncId" | "success">;
|
|
20547
20976
|
declare type ArchivePayload_RoadmapArchivePayload_Fragment = {
|
|
20548
20977
|
__typename: "RoadmapArchivePayload";
|
|
20549
20978
|
} & Pick<RoadmapArchivePayload, "lastSyncId" | "success"> & {
|
|
@@ -20565,7 +20994,7 @@ declare type ArchivePayload_WorkflowStateArchivePayload_Fragment = {
|
|
|
20565
20994
|
__typename?: "WorkflowState";
|
|
20566
20995
|
} & Pick<WorkflowState, "id">>;
|
|
20567
20996
|
};
|
|
20568
|
-
export declare type ArchivePayloadFragment = ArchivePayload_CustomerNeedArchivePayload_Fragment | ArchivePayload_CycleArchivePayload_Fragment | ArchivePayload_DeletePayload_Fragment | ArchivePayload_DocumentArchivePayload_Fragment | ArchivePayload_InitiativeArchivePayload_Fragment | ArchivePayload_InitiativeUpdateArchivePayload_Fragment | ArchivePayload_IssueArchivePayload_Fragment | ArchivePayload_NotificationArchivePayload_Fragment | ArchivePayload_ProjectArchivePayload_Fragment | ArchivePayload_ProjectStatusArchivePayload_Fragment | ArchivePayload_ProjectUpdateArchivePayload_Fragment | ArchivePayload_RoadmapArchivePayload_Fragment | ArchivePayload_TeamArchivePayload_Fragment | ArchivePayload_WorkflowStateArchivePayload_Fragment;
|
|
20997
|
+
export declare type ArchivePayloadFragment = ArchivePayload_CustomerNeedArchivePayload_Fragment | ArchivePayload_CycleArchivePayload_Fragment | ArchivePayload_DeletePayload_Fragment | ArchivePayload_DocumentArchivePayload_Fragment | ArchivePayload_InitiativeArchivePayload_Fragment | ArchivePayload_InitiativeUpdateArchivePayload_Fragment | ArchivePayload_IssueArchivePayload_Fragment | ArchivePayload_NotificationArchivePayload_Fragment | ArchivePayload_ProjectArchivePayload_Fragment | ArchivePayload_ProjectStatusArchivePayload_Fragment | ArchivePayload_ProjectUpdateArchivePayload_Fragment | ArchivePayload_ReleaseArchivePayload_Fragment | ArchivePayload_ReleasePipelineArchivePayload_Fragment | ArchivePayload_ReleaseStageArchivePayload_Fragment | ArchivePayload_RoadmapArchivePayload_Fragment | ArchivePayload_TeamArchivePayload_Fragment | ArchivePayload_WorkflowStateArchivePayload_Fragment;
|
|
20569
20998
|
export declare type DeletePayloadFragment = {
|
|
20570
20999
|
__typename: "DeletePayload";
|
|
20571
21000
|
} & Pick<DeletePayload, "entityId" | "lastSyncId" | "success">;
|
|
@@ -25823,6 +26252,15 @@ declare type Node_PushSubscription_Fragment = {
|
|
|
25823
26252
|
declare type Node_Reaction_Fragment = {
|
|
25824
26253
|
__typename: "Reaction";
|
|
25825
26254
|
} & Pick<Reaction, "id">;
|
|
26255
|
+
declare type Node_Release_Fragment = {
|
|
26256
|
+
__typename: "Release";
|
|
26257
|
+
} & Pick<Release, "id">;
|
|
26258
|
+
declare type Node_ReleasePipeline_Fragment = {
|
|
26259
|
+
__typename: "ReleasePipeline";
|
|
26260
|
+
} & Pick<ReleasePipeline, "id">;
|
|
26261
|
+
declare type Node_ReleaseStage_Fragment = {
|
|
26262
|
+
__typename: "ReleaseStage";
|
|
26263
|
+
} & Pick<ReleaseStage, "id">;
|
|
25826
26264
|
declare type Node_Roadmap_Fragment = {
|
|
25827
26265
|
__typename: "Roadmap";
|
|
25828
26266
|
} & Pick<Roadmap, "id">;
|
|
@@ -25871,7 +26309,7 @@ declare type Node_Webhook_Fragment = {
|
|
|
25871
26309
|
declare type Node_WorkflowState_Fragment = {
|
|
25872
26310
|
__typename: "WorkflowState";
|
|
25873
26311
|
} & Pick<WorkflowState, "id">;
|
|
25874
|
-
export declare type NodeFragment = Node_AgentActivity_Fragment | Node_AgentSession_Fragment | Node_AiPromptRules_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_CustomView_Fragment | Node_CustomViewNotificationSubscription_Fragment | Node_Customer_Fragment | Node_CustomerNeed_Fragment | Node_CustomerNeedNotification_Fragment | Node_CustomerNotification_Fragment | Node_CustomerNotificationSubscription_Fragment | Node_CustomerStatus_Fragment | Node_CustomerTier_Fragment | Node_Cycle_Fragment | Node_CycleNotificationSubscription_Fragment | Node_Dashboard_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentNotification_Fragment | Node_DocumentSearchResult_Fragment | Node_Draft_Fragment | Node_EmailIntakeAddress_Fragment | Node_Emoji_Fragment | Node_EntityExternalLink_Fragment | Node_ExternalUser_Fragment | Node_Facet_Fragment | Node_Favorite_Fragment | Node_FeedItem_Fragment | Node_GitAutomationState_Fragment | Node_GitAutomationTargetBranch_Fragment | Node_IdentityProvider_Fragment | Node_Initiative_Fragment | Node_InitiativeHistory_Fragment | Node_InitiativeNotification_Fragment | Node_InitiativeNotificationSubscription_Fragment | Node_InitiativeRelation_Fragment | Node_InitiativeToProject_Fragment | Node_InitiativeUpdate_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_IssueSearchResult_Fragment | Node_IssueSuggestion_Fragment | Node_LabelNotificationSubscription_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Post_Fragment | Node_PostNotification_Fragment | Node_Project_Fragment | Node_ProjectAttachment_Fragment | Node_ProjectHistory_Fragment | Node_ProjectLabel_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectRelation_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectStatus_Fragment | Node_ProjectUpdate_Fragment | Node_PullRequest_Fragment | Node_PullRequestNotification_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_SemanticSearchResult_Fragment | Node_SesDomainIdentity_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_TimeSchedule_Fragment | Node_TriageResponsibility_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowState_Fragment;
|
|
26312
|
+
export declare type NodeFragment = Node_AgentActivity_Fragment | Node_AgentSession_Fragment | Node_AiPromptRules_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_CustomView_Fragment | Node_CustomViewNotificationSubscription_Fragment | Node_Customer_Fragment | Node_CustomerNeed_Fragment | Node_CustomerNeedNotification_Fragment | Node_CustomerNotification_Fragment | Node_CustomerNotificationSubscription_Fragment | Node_CustomerStatus_Fragment | Node_CustomerTier_Fragment | Node_Cycle_Fragment | Node_CycleNotificationSubscription_Fragment | Node_Dashboard_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentNotification_Fragment | Node_DocumentSearchResult_Fragment | Node_Draft_Fragment | Node_EmailIntakeAddress_Fragment | Node_Emoji_Fragment | Node_EntityExternalLink_Fragment | Node_ExternalUser_Fragment | Node_Facet_Fragment | Node_Favorite_Fragment | Node_FeedItem_Fragment | Node_GitAutomationState_Fragment | Node_GitAutomationTargetBranch_Fragment | Node_IdentityProvider_Fragment | Node_Initiative_Fragment | Node_InitiativeHistory_Fragment | Node_InitiativeNotification_Fragment | Node_InitiativeNotificationSubscription_Fragment | Node_InitiativeRelation_Fragment | Node_InitiativeToProject_Fragment | Node_InitiativeUpdate_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_IssueSearchResult_Fragment | Node_IssueSuggestion_Fragment | Node_LabelNotificationSubscription_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Post_Fragment | Node_PostNotification_Fragment | Node_Project_Fragment | Node_ProjectAttachment_Fragment | Node_ProjectHistory_Fragment | Node_ProjectLabel_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectRelation_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectStatus_Fragment | Node_ProjectUpdate_Fragment | Node_PullRequest_Fragment | Node_PullRequestNotification_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Release_Fragment | Node_ReleasePipeline_Fragment | Node_ReleaseStage_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_SemanticSearchResult_Fragment | Node_SesDomainIdentity_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_TimeSchedule_Fragment | Node_TriageResponsibility_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowState_Fragment;
|
|
25875
26313
|
export declare type NotificationBatchActionPayloadFragment = {
|
|
25876
26314
|
__typename: "NotificationBatchActionPayload";
|
|
25877
26315
|
} & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
|
|
@@ -28183,6 +28621,15 @@ export declare type ReactionPayloadFragment = {
|
|
|
28183
28621
|
} & Pick<User, "id">>;
|
|
28184
28622
|
};
|
|
28185
28623
|
};
|
|
28624
|
+
export declare type ReleasePayloadFragment = {
|
|
28625
|
+
__typename: "ReleasePayload";
|
|
28626
|
+
} & Pick<ReleasePayload, "lastSyncId" | "success">;
|
|
28627
|
+
export declare type ReleasePipelinePayloadFragment = {
|
|
28628
|
+
__typename: "ReleasePipelinePayload";
|
|
28629
|
+
} & Pick<ReleasePipelinePayload, "lastSyncId" | "success">;
|
|
28630
|
+
export declare type ReleaseStagePayloadFragment = {
|
|
28631
|
+
__typename: "ReleaseStagePayload";
|
|
28632
|
+
} & Pick<ReleaseStagePayload, "lastSyncId" | "success">;
|
|
28186
28633
|
export declare type RepositorySuggestionFragment = {
|
|
28187
28634
|
__typename: "RepositorySuggestion";
|
|
28188
28635
|
} & Pick<RepositorySuggestion, "confidence" | "hostname" | "repositoryFullName">;
|
|
@@ -50496,6 +50943,9 @@ export declare const NotificationArchivePayloadFragmentDoc: DocumentNode<Notific
|
|
|
50496
50943
|
export declare const ProjectArchivePayloadFragmentDoc: DocumentNode<ProjectArchivePayloadFragment, unknown>;
|
|
50497
50944
|
export declare const ProjectStatusArchivePayloadFragmentDoc: DocumentNode<ProjectStatusArchivePayloadFragment, unknown>;
|
|
50498
50945
|
export declare const ProjectUpdateArchivePayloadFragmentDoc: DocumentNode<ProjectUpdateArchivePayloadFragment, unknown>;
|
|
50946
|
+
export declare const ReleaseArchivePayloadFragmentDoc: DocumentNode<ReleaseArchivePayloadFragment, unknown>;
|
|
50947
|
+
export declare const ReleasePipelineArchivePayloadFragmentDoc: DocumentNode<ReleasePipelineArchivePayloadFragment, unknown>;
|
|
50948
|
+
export declare const ReleaseStageArchivePayloadFragmentDoc: DocumentNode<ReleaseStageArchivePayloadFragment, unknown>;
|
|
50499
50949
|
export declare const RoadmapArchivePayloadFragmentDoc: DocumentNode<RoadmapArchivePayloadFragment, unknown>;
|
|
50500
50950
|
export declare const TeamArchivePayloadFragmentDoc: DocumentNode<TeamArchivePayloadFragment, unknown>;
|
|
50501
50951
|
export declare const WorkflowStateArchivePayloadFragmentDoc: DocumentNode<WorkflowStateArchivePayloadFragment, unknown>;
|
|
@@ -50808,6 +51258,9 @@ export declare const PushSubscriptionTestPayloadFragmentDoc: DocumentNode<PushSu
|
|
|
50808
51258
|
export declare const RateLimitResultPayloadFragmentDoc: DocumentNode<RateLimitResultPayloadFragment, unknown>;
|
|
50809
51259
|
export declare const RateLimitPayloadFragmentDoc: DocumentNode<RateLimitPayloadFragment, unknown>;
|
|
50810
51260
|
export declare const ReactionPayloadFragmentDoc: DocumentNode<ReactionPayloadFragment, unknown>;
|
|
51261
|
+
export declare const ReleasePayloadFragmentDoc: DocumentNode<ReleasePayloadFragment, unknown>;
|
|
51262
|
+
export declare const ReleasePipelinePayloadFragmentDoc: DocumentNode<ReleasePipelinePayloadFragment, unknown>;
|
|
51263
|
+
export declare const ReleaseStagePayloadFragmentDoc: DocumentNode<ReleaseStagePayloadFragment, unknown>;
|
|
50811
51264
|
export declare const RepositorySuggestionFragmentDoc: DocumentNode<RepositorySuggestionFragment, unknown>;
|
|
50812
51265
|
export declare const RepositorySuggestionsPayloadFragmentDoc: DocumentNode<RepositorySuggestionsPayloadFragment, unknown>;
|
|
50813
51266
|
export declare const RoadmapFragmentDoc: DocumentNode<RoadmapFragment, unknown>;
|