@linear/sdk 65.0.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.
@@ -3085,7 +3085,7 @@ export declare type Dashboard = Node & {
3085
3085
  widgets: Scalars["JSONObject"];
3086
3086
  };
3087
3087
  /** Union type for all possible webhook entity data payloads */
3088
- export declare type DataWebhookPayload = AgentActivityWebhookPayload | AgentSessionWebhookPayload | AttachmentWebhookPayload | AuditEntryWebhookPayload | CommentWebhookPayload | CustomerNeedWebhookPayload | CustomerWebhookPayload | CycleWebhookPayload | DocumentWebhookPayload | InitiativeUpdateWebhookPayload | InitiativeWebhookPayload | IssueLabelWebhookPayload | IssueWebhookPayload | ProjectUpdateWebhookPayload | ProjectWebhookPayload | ReactionWebhookPayload | UserWebhookPayload;
3088
+ export declare type DataWebhookPayload = AgentActivityWebhookPayload | AgentSessionWebhookPayload | AttachmentWebhookPayload | AuditEntryWebhookPayload | CommentWebhookPayload | CustomerNeedWebhookPayload | CustomerWebhookPayload | CycleWebhookPayload | DocumentWebhookPayload | InitiativeUpdateWebhookPayload | InitiativeWebhookPayload | IssueLabelWebhookPayload | IssueWebhookPayload | ProjectLabelWebhookPayload | ProjectUpdateWebhookPayload | ProjectWebhookPayload | ReactionWebhookPayload | UserWebhookPayload;
3089
3089
  /** Comparator for dates. */
3090
3090
  export declare type DateComparator = {
3091
3091
  /** Equals constraint. */
@@ -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. */
@@ -6264,6 +6266,8 @@ export declare type Issue = Node & {
6264
6266
  startedTriageAt?: Maybe<Scalars["DateTime"]>;
6265
6267
  /** The workflow state that the issue is associated with. */
6266
6268
  state: WorkflowState;
6269
+ /** [ALPHA] The issue's workflow states over time. */
6270
+ stateHistory: IssueStateSpanConnection;
6267
6271
  /** The order of the item in the sub-issue list. Only set if the issue has a parent. */
6268
6272
  subIssueSortOrder?: Maybe<Scalars["Float"]>;
6269
6273
  /** Users who are subscribed to the issue. */
@@ -6407,6 +6411,13 @@ export declare type IssueRelationsArgs = {
6407
6411
  orderBy?: InputMaybe<PaginationOrderBy>;
6408
6412
  };
6409
6413
  /** An issue. */
6414
+ export declare type IssueStateHistoryArgs = {
6415
+ after?: InputMaybe<Scalars["String"]>;
6416
+ before?: InputMaybe<Scalars["String"]>;
6417
+ first?: InputMaybe<Scalars["Int"]>;
6418
+ last?: InputMaybe<Scalars["Int"]>;
6419
+ };
6420
+ /** An issue. */
6410
6421
  export declare type IssueSubscribersArgs = {
6411
6422
  after?: InputMaybe<Scalars["String"]>;
6412
6423
  before?: InputMaybe<Scalars["String"]>;
@@ -7811,6 +7822,8 @@ export declare type IssueSearchResult = Node & {
7811
7822
  recurringIssueTemplate?: Maybe<Template>;
7812
7823
  /** Relations associated with this issue. */
7813
7824
  relations: IssueRelationConnection;
7825
+ /** [Internal] Id of the releases associated with this issue. */
7826
+ releaseIds: Array<Scalars["String"]>;
7814
7827
  /** The time at which the issue's SLA will breach. */
7815
7828
  slaBreachesAt?: Maybe<Scalars["DateTime"]>;
7816
7829
  /** The time at which the issue's SLA will enter high risk state. */
@@ -7835,6 +7848,8 @@ export declare type IssueSearchResult = Node & {
7835
7848
  startedTriageAt?: Maybe<Scalars["DateTime"]>;
7836
7849
  /** The workflow state that the issue is associated with. */
7837
7850
  state: WorkflowState;
7851
+ /** [ALPHA] The issue's workflow states over time. */
7852
+ stateHistory: IssueStateSpanConnection;
7838
7853
  /** The order of the item in the sub-issue list. Only set if the issue has a parent. */
7839
7854
  subIssueSortOrder?: Maybe<Scalars["Float"]>;
7840
7855
  /** Users who are subscribed to the issue. */
@@ -7965,6 +7980,12 @@ export declare type IssueSearchResultRelationsArgs = {
7965
7980
  last?: InputMaybe<Scalars["Int"]>;
7966
7981
  orderBy?: InputMaybe<PaginationOrderBy>;
7967
7982
  };
7983
+ export declare type IssueSearchResultStateHistoryArgs = {
7984
+ after?: InputMaybe<Scalars["String"]>;
7985
+ before?: InputMaybe<Scalars["String"]>;
7986
+ first?: InputMaybe<Scalars["Int"]>;
7987
+ last?: InputMaybe<Scalars["Int"]>;
7988
+ };
7968
7989
  export declare type IssueSearchResultSubscribersArgs = {
7969
7990
  after?: InputMaybe<Scalars["String"]>;
7970
7991
  before?: InputMaybe<Scalars["String"]>;
@@ -8058,6 +8079,32 @@ export declare type IssueSortInput = {
8058
8079
  /** Sort by workflow state type */
8059
8080
  workflowState?: InputMaybe<WorkflowStateSort>;
8060
8081
  };
8082
+ /** A continuous period of time during which an issue remained in a specific workflow state. */
8083
+ export declare type IssueStateSpan = {
8084
+ __typename?: "IssueStateSpan";
8085
+ /** The timestamp when the issue left this state. Null if the issue is currently in this state. */
8086
+ endedAt?: Maybe<Scalars["DateTime"]>;
8087
+ /** The unique identifier of the state span. */
8088
+ id: Scalars["ID"];
8089
+ /** The timestamp when the issue entered this state. */
8090
+ startedAt: Scalars["DateTime"];
8091
+ /** The workflow state for this span. */
8092
+ state?: Maybe<WorkflowState>;
8093
+ /** The workflow state identifier for this span. */
8094
+ stateId: Scalars["ID"];
8095
+ };
8096
+ export declare type IssueStateSpanConnection = {
8097
+ __typename?: "IssueStateSpanConnection";
8098
+ edges: Array<IssueStateSpanEdge>;
8099
+ nodes: Array<IssueStateSpan>;
8100
+ pageInfo: PageInfo;
8101
+ };
8102
+ export declare type IssueStateSpanEdge = {
8103
+ __typename?: "IssueStateSpanEdge";
8104
+ /** Used in `before` and `after` args */
8105
+ cursor: Scalars["String"];
8106
+ node: IssueStateSpan;
8107
+ };
8061
8108
  /** Payload for a terminal issue status change notification. */
8062
8109
  export declare type IssueStatusChangedNotificationWebhookPayload = {
8063
8110
  __typename?: "IssueStatusChangedNotificationWebhookPayload";
@@ -8926,6 +8973,8 @@ export declare type Mutation = {
8926
8973
  integrationSlackPost: SlackChannelConnectPayload;
8927
8974
  /** Slack integration for project notifications. */
8928
8975
  integrationSlackProjectPost: SlackChannelConnectPayload;
8976
+ /** [Internal] Enables Linear Agent Slack workflow access for a Slack integration. */
8977
+ integrationSlackWorkflowAccessUpdate: IntegrationPayload;
8929
8978
  /** Creates a new integrationTemplate join. */
8930
8979
  integrationTemplateCreate: IntegrationTemplatePayload;
8931
8980
  /** Deletes a integrationTemplate. */
@@ -9150,6 +9199,32 @@ export declare type Mutation = {
9150
9199
  reactionDelete: DeletePayload;
9151
9200
  /** Manually update Google Sheets data. */
9152
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;
9153
9228
  /** Re-send an organization invite. */
9154
9229
  resendOrganizationInvite: DeletePayload;
9155
9230
  /** Re-send an organization invite tied to an email address. */
@@ -9873,6 +9948,10 @@ export declare type MutationIntegrationSlackProjectPostArgs = {
9873
9948
  redirectUri: Scalars["String"];
9874
9949
  service: Scalars["String"];
9875
9950
  };
9951
+ export declare type MutationIntegrationSlackWorkflowAccessUpdateArgs = {
9952
+ enabled: Scalars["Boolean"];
9953
+ integrationId: Scalars["String"];
9954
+ };
9876
9955
  export declare type MutationIntegrationTemplateCreateArgs = {
9877
9956
  input: IntegrationTemplateCreateInput;
9878
9957
  };
@@ -10262,6 +10341,48 @@ export declare type MutationRefreshGoogleSheetsDataArgs = {
10262
10341
  id: Scalars["String"];
10263
10342
  type?: InputMaybe<Scalars["String"]>;
10264
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
+ };
10265
10386
  export declare type MutationResendOrganizationInviteArgs = {
10266
10387
  id: Scalars["String"];
10267
10388
  };
@@ -11305,6 +11426,8 @@ export declare type NullableProjectMilestoneFilter = {
11305
11426
  null?: InputMaybe<Scalars["Boolean"]>;
11306
11427
  /** Compound filters, one of which need to be matched by the project milestone. */
11307
11428
  or?: InputMaybe<Array<NullableProjectMilestoneFilter>>;
11429
+ /** Filters that the project milestone's project must satisfy. */
11430
+ project?: InputMaybe<NullableProjectFilter>;
11308
11431
  /** Comparator for the project milestone target date. */
11309
11432
  targetDate?: InputMaybe<NullableDateComparator>;
11310
11433
  /** Comparator for the updated at date. */
@@ -13066,6 +13189,10 @@ export declare type ProjectCreateInput = {
13066
13189
  targetDateResolution?: InputMaybe<DateResolutionType>;
13067
13190
  /** The identifiers of the teams this project is associated with. */
13068
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"]>;
13069
13196
  };
13070
13197
  /** Project creation date sorting options. */
13071
13198
  export declare type ProjectCreatedAtSort = {
@@ -13269,6 +13396,18 @@ export declare type ProjectLabelProjectsArgs = {
13269
13396
  orderBy?: InputMaybe<PaginationOrderBy>;
13270
13397
  sort?: InputMaybe<Array<ProjectSortInput>>;
13271
13398
  };
13399
+ /** Certain properties of a project label. */
13400
+ export declare type ProjectLabelChildWebhookPayload = {
13401
+ __typename?: "ProjectLabelChildWebhookPayload";
13402
+ /** The color of the project label. */
13403
+ color: Scalars["String"];
13404
+ /** The ID of the project label. */
13405
+ id: Scalars["String"];
13406
+ /** The name of the project label. */
13407
+ name: Scalars["String"];
13408
+ /** The parent ID of the project label. */
13409
+ parentId?: Maybe<Scalars["String"]>;
13410
+ };
13272
13411
  /** Project label filtering options. */
13273
13412
  export declare type ProjectLabelCollectionFilter = {
13274
13413
  /** Compound filters, all of which need to be matched by the label. */
@@ -13370,6 +13509,30 @@ export declare type ProjectLabelUpdateInput = {
13370
13509
  /** When the label was retired. */
13371
13510
  retiredAt?: InputMaybe<Scalars["DateTime"]>;
13372
13511
  };
13512
+ /** Payload for a project label webhook. */
13513
+ export declare type ProjectLabelWebhookPayload = {
13514
+ __typename?: "ProjectLabelWebhookPayload";
13515
+ /** The time at which the entity was archived. */
13516
+ archivedAt?: Maybe<Scalars["String"]>;
13517
+ /** The color of the project label. */
13518
+ color: Scalars["String"];
13519
+ /** The time at which the entity was created. */
13520
+ createdAt: Scalars["String"];
13521
+ /** The creator ID of the project label. */
13522
+ creatorId?: Maybe<Scalars["String"]>;
13523
+ /** The label's description. */
13524
+ description?: Maybe<Scalars["String"]>;
13525
+ /** The ID of the entity. */
13526
+ id: Scalars["String"];
13527
+ /** Whether the label is a group. */
13528
+ isGroup: Scalars["Boolean"];
13529
+ /** The name of the project label. */
13530
+ name: Scalars["String"];
13531
+ /** The parent ID of the project label. */
13532
+ parentId?: Maybe<Scalars["String"]>;
13533
+ /** The time at which the entity was updated. */
13534
+ updatedAt: Scalars["String"];
13535
+ };
13373
13536
  /** Project lead sorting options. */
13374
13537
  export declare type ProjectLeadSort = {
13375
13538
  /** Whether nulls should be sorted first or last */
@@ -13459,6 +13622,8 @@ export declare type ProjectMilestoneCollectionFilter = {
13459
13622
  name?: InputMaybe<NullableStringComparator>;
13460
13623
  /** Compound filters, one of which need to be matched by the milestone. */
13461
13624
  or?: InputMaybe<Array<ProjectMilestoneCollectionFilter>>;
13625
+ /** Filters that the project milestone's project must satisfy. */
13626
+ project?: InputMaybe<NullableProjectFilter>;
13462
13627
  /** Filters that needs to be matched by some milestones. */
13463
13628
  some?: InputMaybe<ProjectMilestoneFilter>;
13464
13629
  /** Comparator for the project milestone target date. */
@@ -13506,6 +13671,8 @@ export declare type ProjectMilestoneFilter = {
13506
13671
  name?: InputMaybe<NullableStringComparator>;
13507
13672
  /** Compound filters, one of which need to be matched by the project milestone. */
13508
13673
  or?: InputMaybe<Array<ProjectMilestoneFilter>>;
13674
+ /** Filters that the project milestone's project must satisfy. */
13675
+ project?: InputMaybe<NullableProjectFilter>;
13509
13676
  /** Comparator for the project milestone target date. */
13510
13677
  targetDate?: InputMaybe<NullableDateComparator>;
13511
13678
  /** Comparator for the updated at date. */
@@ -14863,6 +15030,15 @@ export declare type PullRequestNotification = Entity & Node & Notification & {
14863
15030
  /** The user that received the notification. */
14864
15031
  user: User;
14865
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
+ };
14866
15042
  export declare enum PullRequestReviewTool {
14867
15043
  Graphite = "graphite",
14868
15044
  Source = "source"
@@ -15139,6 +15315,18 @@ export declare type Query = {
15139
15315
  pushSubscriptionTest: PushSubscriptionTestPayload;
15140
15316
  /** The status of the rate limiter. */
15141
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;
15142
15330
  /**
15143
15331
  * One specific roadmap.
15144
15332
  * @deprecated Roadmaps are deprecated, use initiatives instead.
@@ -15718,6 +15906,39 @@ export declare type QueryPushSubscriptionTestArgs = {
15718
15906
  sendStrategy?: InputMaybe<SendStrategy>;
15719
15907
  targetMobile?: InputMaybe<Scalars["Boolean"]>;
15720
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
+ };
15721
15942
  export declare type QueryRoadmapArgs = {
15722
15943
  id: Scalars["String"];
15723
15944
  };
@@ -16042,6 +16263,41 @@ export declare type RelationExistsComparator = {
16042
16263
  /** Not equals constraint. */
16043
16264
  neq?: InputMaybe<Scalars["Boolean"]>;
16044
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
+ };
16045
16301
  /** Features release channel. */
16046
16302
  export declare enum ReleaseChannel {
16047
16303
  Beta = "beta",
@@ -16051,6 +16307,252 @@ export declare enum ReleaseChannel {
16051
16307
  PrivateBeta = "privateBeta",
16052
16308
  Public = "public"
16053
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
+ };
16054
16556
  export declare type RepositorySuggestion = {
16055
16557
  __typename?: "RepositorySuggestion";
16056
16558
  /** Confidence score from 0.0 to 1.0. */
@@ -16808,6 +17310,8 @@ export declare type Team = Node & {
16808
17310
  aiDiscussionSummariesEnabled: Scalars["Boolean"];
16809
17311
  /** Whether to enable resolved thread AI summaries. */
16810
17312
  aiThreadSummariesEnabled: Scalars["Boolean"];
17313
+ /** Whether all members in the workspace can join the team. Only used for public teams. */
17314
+ allMembersCanJoin?: Maybe<Scalars["Boolean"]>;
16811
17315
  /** The time at which the entity was archived. Null if the entity has not been archived. */
16812
17316
  archivedAt?: Maybe<Scalars["DateTime"]>;
16813
17317
  /** Period after which automatically closed and completed issues are automatically archived in months. */
@@ -17416,6 +17920,8 @@ export declare type TeamUpdateInput = {
17416
17920
  aiDiscussionSummariesEnabled?: InputMaybe<Scalars["Boolean"]>;
17417
17921
  /** Whether to enable resolved thread AI summaries. */
17418
17922
  aiThreadSummariesEnabled?: InputMaybe<Scalars["Boolean"]>;
17923
+ /** Whether all members in the workspace can join the team. Only used for public teams. */
17924
+ allMembersCanJoin?: InputMaybe<Scalars["Boolean"]>;
17419
17925
  /** Period after which closed and completed issues are automatically archived, in months. */
17420
17926
  autoArchivePeriod?: InputMaybe<Scalars["Float"]>;
17421
17927
  /** Whether to automatically close all sub-issues when a parent issue in this team is closed. */
@@ -19071,6 +19577,13 @@ export declare type CommentFragment = {
19071
19577
  export declare type SyncedExternalThreadFragment = {
19072
19578
  __typename: "SyncedExternalThread";
19073
19579
  } & Pick<SyncedExternalThread, "name" | "displayName" | "url" | "subType" | "type" | "isPersonalIntegrationRequired" | "isPersonalIntegrationConnected" | "isConnected" | "id">;
19580
+ export declare type IssueStateSpanFragment = {
19581
+ __typename: "IssueStateSpan";
19582
+ } & Pick<IssueStateSpan, "startedAt" | "endedAt" | "id" | "stateId"> & {
19583
+ state?: Maybe<{
19584
+ __typename?: "WorkflowState";
19585
+ } & Pick<WorkflowState, "id">>;
19586
+ };
19074
19587
  export declare type EmojiFragment = {
19075
19588
  __typename: "Emoji";
19076
19589
  } & Pick<Emoji, "url" | "name" | "updatedAt" | "source" | "archivedAt" | "createdAt" | "id"> & {
@@ -19917,6 +20430,15 @@ export declare type ProjectUpdateArchivePayloadFragment = {
19917
20430
  __typename?: "ProjectUpdate";
19918
20431
  } & Pick<ProjectUpdate, "id">>;
19919
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">;
19920
20442
  export declare type RoadmapArchivePayloadFragment = {
19921
20443
  __typename: "RoadmapArchivePayload";
19922
20444
  } & Pick<RoadmapArchivePayload, "lastSyncId" | "success"> & {
@@ -20442,6 +20964,15 @@ declare type ArchivePayload_ProjectUpdateArchivePayload_Fragment = {
20442
20964
  __typename?: "ProjectUpdate";
20443
20965
  } & Pick<ProjectUpdate, "id">>;
20444
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">;
20445
20976
  declare type ArchivePayload_RoadmapArchivePayload_Fragment = {
20446
20977
  __typename: "RoadmapArchivePayload";
20447
20978
  } & Pick<RoadmapArchivePayload, "lastSyncId" | "success"> & {
@@ -20463,7 +20994,7 @@ declare type ArchivePayload_WorkflowStateArchivePayload_Fragment = {
20463
20994
  __typename?: "WorkflowState";
20464
20995
  } & Pick<WorkflowState, "id">>;
20465
20996
  };
20466
- 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;
20467
20998
  export declare type DeletePayloadFragment = {
20468
20999
  __typename: "DeletePayload";
20469
21000
  } & Pick<DeletePayload, "entityId" | "lastSyncId" | "success">;
@@ -22299,7 +22830,7 @@ export declare type AuthOrganizationFragment = {
22299
22830
  } & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "releaseChannel" | "logoUrl" | "name" | "urlKey" | "region" | "deletionRequestedAt" | "createdAt" | "id" | "samlEnabled" | "scimEnabled" | "enabled" | "userCount">;
22300
22831
  export declare type TeamFragment = {
22301
22832
  __typename: "Team";
22302
- } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
22833
+ } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "allMembersCanJoin" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
22303
22834
  integrationsSettings?: Maybe<{
22304
22835
  __typename?: "IntegrationsSettings";
22305
22836
  } & Pick<IntegrationsSettings, "id">>;
@@ -22426,6 +22957,9 @@ export declare type DocumentChildWebhookPayloadFragment = {
22426
22957
  __typename: "ProjectChildWebhookPayload";
22427
22958
  } & Pick<ProjectChildWebhookPayload, "id" | "url" | "name">>;
22428
22959
  };
22960
+ export declare type ProjectLabelChildWebhookPayloadFragment = {
22961
+ __typename: "ProjectLabelChildWebhookPayload";
22962
+ } & Pick<ProjectLabelChildWebhookPayload, "id" | "color" | "name" | "parentId">;
22429
22963
  export declare type ProjectMilestoneChildWebhookPayloadFragment = {
22430
22964
  __typename: "ProjectMilestoneChildWebhookPayload";
22431
22965
  } & Pick<ProjectMilestoneChildWebhookPayload, "id" | "name" | "targetDate">;
@@ -23033,6 +23567,9 @@ export declare type CycleWebhookPayloadFragment = {
23033
23567
  export declare type DocumentWebhookPayloadFragment = {
23034
23568
  __typename: "DocumentWebhookPayload";
23035
23569
  } & Pick<DocumentWebhookPayload, "trashed" | "id" | "initiativeId" | "lastAppliedTemplateId" | "projectId" | "resourceFolderId" | "creatorId" | "updatedById" | "subscriberIds" | "color" | "content" | "description" | "slugId" | "icon" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "updatedAt" | "title">;
23570
+ export declare type ProjectLabelWebhookPayloadFragment = {
23571
+ __typename: "ProjectLabelWebhookPayload";
23572
+ } & Pick<ProjectLabelWebhookPayload, "id" | "color" | "creatorId" | "description" | "name" | "parentId" | "archivedAt" | "createdAt" | "updatedAt" | "isGroup">;
23036
23573
  export declare type ProjectUpdateWebhookPayloadFragment = {
23037
23574
  __typename: "ProjectUpdateWebhookPayload";
23038
23575
  } & Pick<ProjectUpdateWebhookPayload, "id" | "url" | "bodyData" | "body" | "editedAt" | "health" | "projectId" | "reactionData" | "slugId" | "archivedAt" | "createdAt" | "updatedAt" | "userId"> & {
@@ -25407,6 +25944,20 @@ export declare type IssueSearchResultFragment = {
25407
25944
  __typename?: "WorkflowState";
25408
25945
  } & Pick<WorkflowState, "id">;
25409
25946
  };
25947
+ export declare type IssueStateSpanConnectionFragment = {
25948
+ __typename: "IssueStateSpanConnection";
25949
+ } & {
25950
+ nodes: Array<{
25951
+ __typename: "IssueStateSpan";
25952
+ } & Pick<IssueStateSpan, "startedAt" | "endedAt" | "id" | "stateId"> & {
25953
+ state?: Maybe<{
25954
+ __typename?: "WorkflowState";
25955
+ } & Pick<WorkflowState, "id">>;
25956
+ }>;
25957
+ pageInfo: {
25958
+ __typename: "PageInfo";
25959
+ } & Pick<PageInfo, "startCursor" | "endCursor" | "hasPreviousPage" | "hasNextPage">;
25960
+ };
25410
25961
  export declare type IssueSuggestionFragment = {
25411
25962
  __typename: "IssueSuggestion";
25412
25963
  } & Pick<IssueSuggestion, "updatedAt" | "archivedAt" | "createdAt" | "id" | "dismissalReason" | "issueId" | "state" | "stateChangedAt" | "suggestedIssueId" | "suggestedLabelId" | "suggestedUserId" | "type"> & {
@@ -25701,6 +26252,15 @@ declare type Node_PushSubscription_Fragment = {
25701
26252
  declare type Node_Reaction_Fragment = {
25702
26253
  __typename: "Reaction";
25703
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">;
25704
26264
  declare type Node_Roadmap_Fragment = {
25705
26265
  __typename: "Roadmap";
25706
26266
  } & Pick<Roadmap, "id">;
@@ -25749,7 +26309,7 @@ declare type Node_Webhook_Fragment = {
25749
26309
  declare type Node_WorkflowState_Fragment = {
25750
26310
  __typename: "WorkflowState";
25751
26311
  } & Pick<WorkflowState, "id">;
25752
- 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;
25753
26313
  export declare type NotificationBatchActionPayloadFragment = {
25754
26314
  __typename: "NotificationBatchActionPayload";
25755
26315
  } & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
@@ -28061,6 +28621,15 @@ export declare type ReactionPayloadFragment = {
28061
28621
  } & Pick<User, "id">>;
28062
28622
  };
28063
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">;
28064
28633
  export declare type RepositorySuggestionFragment = {
28065
28634
  __typename: "RepositorySuggestion";
28066
28635
  } & Pick<RepositorySuggestion, "confidence" | "hostname" | "repositoryFullName">;
@@ -28137,7 +28706,7 @@ export declare type TeamConnectionFragment = {
28137
28706
  } & {
28138
28707
  nodes: Array<{
28139
28708
  __typename: "Team";
28140
- } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
28709
+ } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "allMembersCanJoin" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
28141
28710
  integrationsSettings?: Maybe<{
28142
28711
  __typename?: "IntegrationsSettings";
28143
28712
  } & Pick<IntegrationsSettings, "id">>;
@@ -28449,7 +29018,7 @@ export declare type AdministrableTeamsQuery = {
28449
29018
  } & {
28450
29019
  nodes: Array<{
28451
29020
  __typename: "Team";
28452
- } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
29021
+ } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "allMembersCanJoin" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
28453
29022
  integrationsSettings?: Maybe<{
28454
29023
  __typename?: "IntegrationsSettings";
28455
29024
  } & Pick<IntegrationsSettings, "id">>;
@@ -36737,7 +37306,7 @@ export declare type Organization_TeamsQuery = {
36737
37306
  } & {
36738
37307
  nodes: Array<{
36739
37308
  __typename: "Team";
36740
- } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
37309
+ } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "allMembersCanJoin" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
36741
37310
  integrationsSettings?: Maybe<{
36742
37311
  __typename?: "IntegrationsSettings";
36743
37312
  } & Pick<IntegrationsSettings, "id">>;
@@ -37793,7 +38362,7 @@ export declare type Project_TeamsQuery = {
37793
38362
  } & {
37794
38363
  nodes: Array<{
37795
38364
  __typename: "Team";
37796
- } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
38365
+ } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "allMembersCanJoin" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
37797
38366
  integrationsSettings?: Maybe<{
37798
38367
  __typename?: "IntegrationsSettings";
37799
38368
  } & Pick<IntegrationsSettings, "id">>;
@@ -39232,7 +39801,7 @@ export declare type TeamQuery = {
39232
39801
  } & {
39233
39802
  team: {
39234
39803
  __typename: "Team";
39235
- } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
39804
+ } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "allMembersCanJoin" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
39236
39805
  integrationsSettings?: Maybe<{
39237
39806
  __typename?: "IntegrationsSettings";
39238
39807
  } & Pick<IntegrationsSettings, "id">>;
@@ -39831,7 +40400,7 @@ export declare type TeamsQuery = {
39831
40400
  } & {
39832
40401
  nodes: Array<{
39833
40402
  __typename: "Team";
39834
- } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
40403
+ } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "allMembersCanJoin" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
39835
40404
  integrationsSettings?: Maybe<{
39836
40405
  __typename?: "IntegrationsSettings";
39837
40406
  } & Pick<IntegrationsSettings, "id">>;
@@ -40535,7 +41104,7 @@ export declare type User_TeamsQuery = {
40535
41104
  } & {
40536
41105
  nodes: Array<{
40537
41106
  __typename: "Team";
40538
- } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
41107
+ } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "allMembersCanJoin" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
40539
41108
  integrationsSettings?: Maybe<{
40540
41109
  __typename?: "IntegrationsSettings";
40541
41110
  } & Pick<IntegrationsSettings, "id">>;
@@ -41919,7 +42488,7 @@ export declare type Viewer_TeamsQuery = {
41919
42488
  } & {
41920
42489
  nodes: Array<{
41921
42490
  __typename: "Team";
41922
- } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
42491
+ } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "securitySettings" | "scimGroupName" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "displayName" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "allMembersCanJoin" | "requirePriorityToLeaveTriage" | "autoCloseChildIssues" | "autoCloseParentIssues" | "scimManaged" | "private" | "inheritIssueEstimation" | "inheritWorkflowStatuses" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "aiDiscussionSummariesEnabled" | "aiThreadSummariesEnabled" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueOrderingNoPriorityFirst" | "issueSortOrderDefaultToBottom"> & {
41923
42492
  integrationsSettings?: Maybe<{
41924
42493
  __typename?: "IntegrationsSettings";
41925
42494
  } & Pick<IntegrationsSettings, "id">>;
@@ -50374,6 +50943,9 @@ export declare const NotificationArchivePayloadFragmentDoc: DocumentNode<Notific
50374
50943
  export declare const ProjectArchivePayloadFragmentDoc: DocumentNode<ProjectArchivePayloadFragment, unknown>;
50375
50944
  export declare const ProjectStatusArchivePayloadFragmentDoc: DocumentNode<ProjectStatusArchivePayloadFragment, unknown>;
50376
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>;
50377
50949
  export declare const RoadmapArchivePayloadFragmentDoc: DocumentNode<RoadmapArchivePayloadFragment, unknown>;
50378
50950
  export declare const TeamArchivePayloadFragmentDoc: DocumentNode<TeamArchivePayloadFragment, unknown>;
50379
50951
  export declare const WorkflowStateArchivePayloadFragmentDoc: DocumentNode<WorkflowStateArchivePayloadFragment, unknown>;
@@ -50394,6 +50966,7 @@ export declare const OrganizationFragmentDoc: DocumentNode<OrganizationFragment,
50394
50966
  export declare const AuthenticationSessionResponseFragmentDoc: DocumentNode<AuthenticationSessionResponseFragment, unknown>;
50395
50967
  export declare const BaseWebhookPayloadFragmentDoc: DocumentNode<BaseWebhookPayloadFragment, unknown>;
50396
50968
  export declare const CustomerNeedChildWebhookPayloadFragmentDoc: DocumentNode<CustomerNeedChildWebhookPayloadFragment, unknown>;
50969
+ export declare const ProjectLabelChildWebhookPayloadFragmentDoc: DocumentNode<ProjectLabelChildWebhookPayloadFragment, unknown>;
50397
50970
  export declare const IntegrationChildWebhookPayloadFragmentDoc: DocumentNode<IntegrationChildWebhookPayloadFragment, unknown>;
50398
50971
  export declare const IdentityProviderFragmentDoc: DocumentNode<IdentityProviderFragment, unknown>;
50399
50972
  export declare const OrganizationDomainFragmentDoc: DocumentNode<OrganizationDomainFragment, unknown>;
@@ -50426,6 +50999,7 @@ export declare const CustomerTierChildWebhookPayloadFragmentDoc: DocumentNode<Cu
50426
50999
  export declare const CustomerWebhookPayloadFragmentDoc: DocumentNode<CustomerWebhookPayloadFragment, unknown>;
50427
51000
  export declare const CycleWebhookPayloadFragmentDoc: DocumentNode<CycleWebhookPayloadFragment, unknown>;
50428
51001
  export declare const DocumentWebhookPayloadFragmentDoc: DocumentNode<DocumentWebhookPayloadFragment, unknown>;
51002
+ export declare const ProjectLabelWebhookPayloadFragmentDoc: DocumentNode<ProjectLabelWebhookPayloadFragment, unknown>;
50429
51003
  export declare const ProjectUpdateWebhookPayloadFragmentDoc: DocumentNode<ProjectUpdateWebhookPayloadFragment, unknown>;
50430
51004
  export declare const ProjectMilestoneChildWebhookPayloadFragmentDoc: DocumentNode<ProjectMilestoneChildWebhookPayloadFragment, unknown>;
50431
51005
  export declare const ProjectStatusChildWebhookPayloadFragmentDoc: DocumentNode<ProjectStatusChildWebhookPayloadFragment, unknown>;
@@ -50626,6 +51200,8 @@ export declare const IssueRelationConnectionFragmentDoc: DocumentNode<IssueRelat
50626
51200
  export declare const IssueRelationPayloadFragmentDoc: DocumentNode<IssueRelationPayloadFragment, unknown>;
50627
51201
  export declare const IssueSearchResultFragmentDoc: DocumentNode<IssueSearchResultFragment, unknown>;
50628
51202
  export declare const IssueSearchPayloadFragmentDoc: DocumentNode<IssueSearchPayloadFragment, unknown>;
51203
+ export declare const IssueStateSpanFragmentDoc: DocumentNode<IssueStateSpanFragment, unknown>;
51204
+ export declare const IssueStateSpanConnectionFragmentDoc: DocumentNode<IssueStateSpanConnectionFragment, unknown>;
50629
51205
  export declare const IssueSuggestionMetadataFragmentDoc: DocumentNode<IssueSuggestionMetadataFragment, unknown>;
50630
51206
  export declare const IssueSuggestionFragmentDoc: DocumentNode<IssueSuggestionFragment, unknown>;
50631
51207
  export declare const IssueSuggestionConnectionFragmentDoc: DocumentNode<IssueSuggestionConnectionFragment, unknown>;
@@ -50682,6 +51258,9 @@ export declare const PushSubscriptionTestPayloadFragmentDoc: DocumentNode<PushSu
50682
51258
  export declare const RateLimitResultPayloadFragmentDoc: DocumentNode<RateLimitResultPayloadFragment, unknown>;
50683
51259
  export declare const RateLimitPayloadFragmentDoc: DocumentNode<RateLimitPayloadFragment, unknown>;
50684
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>;
50685
51264
  export declare const RepositorySuggestionFragmentDoc: DocumentNode<RepositorySuggestionFragment, unknown>;
50686
51265
  export declare const RepositorySuggestionsPayloadFragmentDoc: DocumentNode<RepositorySuggestionsPayloadFragment, unknown>;
50687
51266
  export declare const RoadmapFragmentDoc: DocumentNode<RoadmapFragment, unknown>;