@linear/sdk 65.0.0 → 65.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_generated_documents.d.ts +136 -10
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +76 -0
- 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 +1 -1
|
@@ -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. */
|
|
@@ -6264,6 +6264,8 @@ export declare type Issue = Node & {
|
|
|
6264
6264
|
startedTriageAt?: Maybe<Scalars["DateTime"]>;
|
|
6265
6265
|
/** The workflow state that the issue is associated with. */
|
|
6266
6266
|
state: WorkflowState;
|
|
6267
|
+
/** [ALPHA] The issue's workflow states over time. */
|
|
6268
|
+
stateHistory: IssueStateSpanConnection;
|
|
6267
6269
|
/** The order of the item in the sub-issue list. Only set if the issue has a parent. */
|
|
6268
6270
|
subIssueSortOrder?: Maybe<Scalars["Float"]>;
|
|
6269
6271
|
/** Users who are subscribed to the issue. */
|
|
@@ -6407,6 +6409,13 @@ export declare type IssueRelationsArgs = {
|
|
|
6407
6409
|
orderBy?: InputMaybe<PaginationOrderBy>;
|
|
6408
6410
|
};
|
|
6409
6411
|
/** An issue. */
|
|
6412
|
+
export declare type IssueStateHistoryArgs = {
|
|
6413
|
+
after?: InputMaybe<Scalars["String"]>;
|
|
6414
|
+
before?: InputMaybe<Scalars["String"]>;
|
|
6415
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
6416
|
+
last?: InputMaybe<Scalars["Int"]>;
|
|
6417
|
+
};
|
|
6418
|
+
/** An issue. */
|
|
6410
6419
|
export declare type IssueSubscribersArgs = {
|
|
6411
6420
|
after?: InputMaybe<Scalars["String"]>;
|
|
6412
6421
|
before?: InputMaybe<Scalars["String"]>;
|
|
@@ -7835,6 +7844,8 @@ export declare type IssueSearchResult = Node & {
|
|
|
7835
7844
|
startedTriageAt?: Maybe<Scalars["DateTime"]>;
|
|
7836
7845
|
/** The workflow state that the issue is associated with. */
|
|
7837
7846
|
state: WorkflowState;
|
|
7847
|
+
/** [ALPHA] The issue's workflow states over time. */
|
|
7848
|
+
stateHistory: IssueStateSpanConnection;
|
|
7838
7849
|
/** The order of the item in the sub-issue list. Only set if the issue has a parent. */
|
|
7839
7850
|
subIssueSortOrder?: Maybe<Scalars["Float"]>;
|
|
7840
7851
|
/** Users who are subscribed to the issue. */
|
|
@@ -7965,6 +7976,12 @@ export declare type IssueSearchResultRelationsArgs = {
|
|
|
7965
7976
|
last?: InputMaybe<Scalars["Int"]>;
|
|
7966
7977
|
orderBy?: InputMaybe<PaginationOrderBy>;
|
|
7967
7978
|
};
|
|
7979
|
+
export declare type IssueSearchResultStateHistoryArgs = {
|
|
7980
|
+
after?: InputMaybe<Scalars["String"]>;
|
|
7981
|
+
before?: InputMaybe<Scalars["String"]>;
|
|
7982
|
+
first?: InputMaybe<Scalars["Int"]>;
|
|
7983
|
+
last?: InputMaybe<Scalars["Int"]>;
|
|
7984
|
+
};
|
|
7968
7985
|
export declare type IssueSearchResultSubscribersArgs = {
|
|
7969
7986
|
after?: InputMaybe<Scalars["String"]>;
|
|
7970
7987
|
before?: InputMaybe<Scalars["String"]>;
|
|
@@ -8058,6 +8075,32 @@ export declare type IssueSortInput = {
|
|
|
8058
8075
|
/** Sort by workflow state type */
|
|
8059
8076
|
workflowState?: InputMaybe<WorkflowStateSort>;
|
|
8060
8077
|
};
|
|
8078
|
+
/** A continuous period of time during which an issue remained in a specific workflow state. */
|
|
8079
|
+
export declare type IssueStateSpan = {
|
|
8080
|
+
__typename?: "IssueStateSpan";
|
|
8081
|
+
/** The timestamp when the issue left this state. Null if the issue is currently in this state. */
|
|
8082
|
+
endedAt?: Maybe<Scalars["DateTime"]>;
|
|
8083
|
+
/** The unique identifier of the state span. */
|
|
8084
|
+
id: Scalars["ID"];
|
|
8085
|
+
/** The timestamp when the issue entered this state. */
|
|
8086
|
+
startedAt: Scalars["DateTime"];
|
|
8087
|
+
/** The workflow state for this span. */
|
|
8088
|
+
state?: Maybe<WorkflowState>;
|
|
8089
|
+
/** The workflow state identifier for this span. */
|
|
8090
|
+
stateId: Scalars["ID"];
|
|
8091
|
+
};
|
|
8092
|
+
export declare type IssueStateSpanConnection = {
|
|
8093
|
+
__typename?: "IssueStateSpanConnection";
|
|
8094
|
+
edges: Array<IssueStateSpanEdge>;
|
|
8095
|
+
nodes: Array<IssueStateSpan>;
|
|
8096
|
+
pageInfo: PageInfo;
|
|
8097
|
+
};
|
|
8098
|
+
export declare type IssueStateSpanEdge = {
|
|
8099
|
+
__typename?: "IssueStateSpanEdge";
|
|
8100
|
+
/** Used in `before` and `after` args */
|
|
8101
|
+
cursor: Scalars["String"];
|
|
8102
|
+
node: IssueStateSpan;
|
|
8103
|
+
};
|
|
8061
8104
|
/** Payload for a terminal issue status change notification. */
|
|
8062
8105
|
export declare type IssueStatusChangedNotificationWebhookPayload = {
|
|
8063
8106
|
__typename?: "IssueStatusChangedNotificationWebhookPayload";
|
|
@@ -8926,6 +8969,8 @@ export declare type Mutation = {
|
|
|
8926
8969
|
integrationSlackPost: SlackChannelConnectPayload;
|
|
8927
8970
|
/** Slack integration for project notifications. */
|
|
8928
8971
|
integrationSlackProjectPost: SlackChannelConnectPayload;
|
|
8972
|
+
/** [Internal] Enables Linear Agent Slack workflow access for a Slack integration. */
|
|
8973
|
+
integrationSlackWorkflowAccessUpdate: IntegrationPayload;
|
|
8929
8974
|
/** Creates a new integrationTemplate join. */
|
|
8930
8975
|
integrationTemplateCreate: IntegrationTemplatePayload;
|
|
8931
8976
|
/** Deletes a integrationTemplate. */
|
|
@@ -9873,6 +9918,10 @@ export declare type MutationIntegrationSlackProjectPostArgs = {
|
|
|
9873
9918
|
redirectUri: Scalars["String"];
|
|
9874
9919
|
service: Scalars["String"];
|
|
9875
9920
|
};
|
|
9921
|
+
export declare type MutationIntegrationSlackWorkflowAccessUpdateArgs = {
|
|
9922
|
+
enabled: Scalars["Boolean"];
|
|
9923
|
+
integrationId: Scalars["String"];
|
|
9924
|
+
};
|
|
9876
9925
|
export declare type MutationIntegrationTemplateCreateArgs = {
|
|
9877
9926
|
input: IntegrationTemplateCreateInput;
|
|
9878
9927
|
};
|
|
@@ -11305,6 +11354,8 @@ export declare type NullableProjectMilestoneFilter = {
|
|
|
11305
11354
|
null?: InputMaybe<Scalars["Boolean"]>;
|
|
11306
11355
|
/** Compound filters, one of which need to be matched by the project milestone. */
|
|
11307
11356
|
or?: InputMaybe<Array<NullableProjectMilestoneFilter>>;
|
|
11357
|
+
/** Filters that the project milestone's project must satisfy. */
|
|
11358
|
+
project?: InputMaybe<NullableProjectFilter>;
|
|
11308
11359
|
/** Comparator for the project milestone target date. */
|
|
11309
11360
|
targetDate?: InputMaybe<NullableDateComparator>;
|
|
11310
11361
|
/** Comparator for the updated at date. */
|
|
@@ -13269,6 +13320,18 @@ export declare type ProjectLabelProjectsArgs = {
|
|
|
13269
13320
|
orderBy?: InputMaybe<PaginationOrderBy>;
|
|
13270
13321
|
sort?: InputMaybe<Array<ProjectSortInput>>;
|
|
13271
13322
|
};
|
|
13323
|
+
/** Certain properties of a project label. */
|
|
13324
|
+
export declare type ProjectLabelChildWebhookPayload = {
|
|
13325
|
+
__typename?: "ProjectLabelChildWebhookPayload";
|
|
13326
|
+
/** The color of the project label. */
|
|
13327
|
+
color: Scalars["String"];
|
|
13328
|
+
/** The ID of the project label. */
|
|
13329
|
+
id: Scalars["String"];
|
|
13330
|
+
/** The name of the project label. */
|
|
13331
|
+
name: Scalars["String"];
|
|
13332
|
+
/** The parent ID of the project label. */
|
|
13333
|
+
parentId?: Maybe<Scalars["String"]>;
|
|
13334
|
+
};
|
|
13272
13335
|
/** Project label filtering options. */
|
|
13273
13336
|
export declare type ProjectLabelCollectionFilter = {
|
|
13274
13337
|
/** Compound filters, all of which need to be matched by the label. */
|
|
@@ -13370,6 +13433,30 @@ export declare type ProjectLabelUpdateInput = {
|
|
|
13370
13433
|
/** When the label was retired. */
|
|
13371
13434
|
retiredAt?: InputMaybe<Scalars["DateTime"]>;
|
|
13372
13435
|
};
|
|
13436
|
+
/** Payload for a project label webhook. */
|
|
13437
|
+
export declare type ProjectLabelWebhookPayload = {
|
|
13438
|
+
__typename?: "ProjectLabelWebhookPayload";
|
|
13439
|
+
/** The time at which the entity was archived. */
|
|
13440
|
+
archivedAt?: Maybe<Scalars["String"]>;
|
|
13441
|
+
/** The color of the project label. */
|
|
13442
|
+
color: Scalars["String"];
|
|
13443
|
+
/** The time at which the entity was created. */
|
|
13444
|
+
createdAt: Scalars["String"];
|
|
13445
|
+
/** The creator ID of the project label. */
|
|
13446
|
+
creatorId?: Maybe<Scalars["String"]>;
|
|
13447
|
+
/** The label's description. */
|
|
13448
|
+
description?: Maybe<Scalars["String"]>;
|
|
13449
|
+
/** The ID of the entity. */
|
|
13450
|
+
id: Scalars["String"];
|
|
13451
|
+
/** Whether the label is a group. */
|
|
13452
|
+
isGroup: Scalars["Boolean"];
|
|
13453
|
+
/** The name of the project label. */
|
|
13454
|
+
name: Scalars["String"];
|
|
13455
|
+
/** The parent ID of the project label. */
|
|
13456
|
+
parentId?: Maybe<Scalars["String"]>;
|
|
13457
|
+
/** The time at which the entity was updated. */
|
|
13458
|
+
updatedAt: Scalars["String"];
|
|
13459
|
+
};
|
|
13373
13460
|
/** Project lead sorting options. */
|
|
13374
13461
|
export declare type ProjectLeadSort = {
|
|
13375
13462
|
/** Whether nulls should be sorted first or last */
|
|
@@ -13459,6 +13546,8 @@ export declare type ProjectMilestoneCollectionFilter = {
|
|
|
13459
13546
|
name?: InputMaybe<NullableStringComparator>;
|
|
13460
13547
|
/** Compound filters, one of which need to be matched by the milestone. */
|
|
13461
13548
|
or?: InputMaybe<Array<ProjectMilestoneCollectionFilter>>;
|
|
13549
|
+
/** Filters that the project milestone's project must satisfy. */
|
|
13550
|
+
project?: InputMaybe<NullableProjectFilter>;
|
|
13462
13551
|
/** Filters that needs to be matched by some milestones. */
|
|
13463
13552
|
some?: InputMaybe<ProjectMilestoneFilter>;
|
|
13464
13553
|
/** Comparator for the project milestone target date. */
|
|
@@ -13506,6 +13595,8 @@ export declare type ProjectMilestoneFilter = {
|
|
|
13506
13595
|
name?: InputMaybe<NullableStringComparator>;
|
|
13507
13596
|
/** Compound filters, one of which need to be matched by the project milestone. */
|
|
13508
13597
|
or?: InputMaybe<Array<ProjectMilestoneFilter>>;
|
|
13598
|
+
/** Filters that the project milestone's project must satisfy. */
|
|
13599
|
+
project?: InputMaybe<NullableProjectFilter>;
|
|
13509
13600
|
/** Comparator for the project milestone target date. */
|
|
13510
13601
|
targetDate?: InputMaybe<NullableDateComparator>;
|
|
13511
13602
|
/** Comparator for the updated at date. */
|
|
@@ -16808,6 +16899,8 @@ export declare type Team = Node & {
|
|
|
16808
16899
|
aiDiscussionSummariesEnabled: Scalars["Boolean"];
|
|
16809
16900
|
/** Whether to enable resolved thread AI summaries. */
|
|
16810
16901
|
aiThreadSummariesEnabled: Scalars["Boolean"];
|
|
16902
|
+
/** Whether all members in the workspace can join the team. Only used for public teams. */
|
|
16903
|
+
allMembersCanJoin?: Maybe<Scalars["Boolean"]>;
|
|
16811
16904
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
|
16812
16905
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
|
16813
16906
|
/** Period after which automatically closed and completed issues are automatically archived in months. */
|
|
@@ -17416,6 +17509,8 @@ export declare type TeamUpdateInput = {
|
|
|
17416
17509
|
aiDiscussionSummariesEnabled?: InputMaybe<Scalars["Boolean"]>;
|
|
17417
17510
|
/** Whether to enable resolved thread AI summaries. */
|
|
17418
17511
|
aiThreadSummariesEnabled?: InputMaybe<Scalars["Boolean"]>;
|
|
17512
|
+
/** Whether all members in the workspace can join the team. Only used for public teams. */
|
|
17513
|
+
allMembersCanJoin?: InputMaybe<Scalars["Boolean"]>;
|
|
17419
17514
|
/** Period after which closed and completed issues are automatically archived, in months. */
|
|
17420
17515
|
autoArchivePeriod?: InputMaybe<Scalars["Float"]>;
|
|
17421
17516
|
/** Whether to automatically close all sub-issues when a parent issue in this team is closed. */
|
|
@@ -19071,6 +19166,13 @@ export declare type CommentFragment = {
|
|
|
19071
19166
|
export declare type SyncedExternalThreadFragment = {
|
|
19072
19167
|
__typename: "SyncedExternalThread";
|
|
19073
19168
|
} & Pick<SyncedExternalThread, "name" | "displayName" | "url" | "subType" | "type" | "isPersonalIntegrationRequired" | "isPersonalIntegrationConnected" | "isConnected" | "id">;
|
|
19169
|
+
export declare type IssueStateSpanFragment = {
|
|
19170
|
+
__typename: "IssueStateSpan";
|
|
19171
|
+
} & Pick<IssueStateSpan, "startedAt" | "endedAt" | "id" | "stateId"> & {
|
|
19172
|
+
state?: Maybe<{
|
|
19173
|
+
__typename?: "WorkflowState";
|
|
19174
|
+
} & Pick<WorkflowState, "id">>;
|
|
19175
|
+
};
|
|
19074
19176
|
export declare type EmojiFragment = {
|
|
19075
19177
|
__typename: "Emoji";
|
|
19076
19178
|
} & Pick<Emoji, "url" | "name" | "updatedAt" | "source" | "archivedAt" | "createdAt" | "id"> & {
|
|
@@ -22299,7 +22401,7 @@ export declare type AuthOrganizationFragment = {
|
|
|
22299
22401
|
} & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "releaseChannel" | "logoUrl" | "name" | "urlKey" | "region" | "deletionRequestedAt" | "createdAt" | "id" | "samlEnabled" | "scimEnabled" | "enabled" | "userCount">;
|
|
22300
22402
|
export declare type TeamFragment = {
|
|
22301
22403
|
__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"> & {
|
|
22404
|
+
} & 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
22405
|
integrationsSettings?: Maybe<{
|
|
22304
22406
|
__typename?: "IntegrationsSettings";
|
|
22305
22407
|
} & Pick<IntegrationsSettings, "id">>;
|
|
@@ -22426,6 +22528,9 @@ export declare type DocumentChildWebhookPayloadFragment = {
|
|
|
22426
22528
|
__typename: "ProjectChildWebhookPayload";
|
|
22427
22529
|
} & Pick<ProjectChildWebhookPayload, "id" | "url" | "name">>;
|
|
22428
22530
|
};
|
|
22531
|
+
export declare type ProjectLabelChildWebhookPayloadFragment = {
|
|
22532
|
+
__typename: "ProjectLabelChildWebhookPayload";
|
|
22533
|
+
} & Pick<ProjectLabelChildWebhookPayload, "id" | "color" | "name" | "parentId">;
|
|
22429
22534
|
export declare type ProjectMilestoneChildWebhookPayloadFragment = {
|
|
22430
22535
|
__typename: "ProjectMilestoneChildWebhookPayload";
|
|
22431
22536
|
} & Pick<ProjectMilestoneChildWebhookPayload, "id" | "name" | "targetDate">;
|
|
@@ -23033,6 +23138,9 @@ export declare type CycleWebhookPayloadFragment = {
|
|
|
23033
23138
|
export declare type DocumentWebhookPayloadFragment = {
|
|
23034
23139
|
__typename: "DocumentWebhookPayload";
|
|
23035
23140
|
} & Pick<DocumentWebhookPayload, "trashed" | "id" | "initiativeId" | "lastAppliedTemplateId" | "projectId" | "resourceFolderId" | "creatorId" | "updatedById" | "subscriberIds" | "color" | "content" | "description" | "slugId" | "icon" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "updatedAt" | "title">;
|
|
23141
|
+
export declare type ProjectLabelWebhookPayloadFragment = {
|
|
23142
|
+
__typename: "ProjectLabelWebhookPayload";
|
|
23143
|
+
} & Pick<ProjectLabelWebhookPayload, "id" | "color" | "creatorId" | "description" | "name" | "parentId" | "archivedAt" | "createdAt" | "updatedAt" | "isGroup">;
|
|
23036
23144
|
export declare type ProjectUpdateWebhookPayloadFragment = {
|
|
23037
23145
|
__typename: "ProjectUpdateWebhookPayload";
|
|
23038
23146
|
} & Pick<ProjectUpdateWebhookPayload, "id" | "url" | "bodyData" | "body" | "editedAt" | "health" | "projectId" | "reactionData" | "slugId" | "archivedAt" | "createdAt" | "updatedAt" | "userId"> & {
|
|
@@ -25407,6 +25515,20 @@ export declare type IssueSearchResultFragment = {
|
|
|
25407
25515
|
__typename?: "WorkflowState";
|
|
25408
25516
|
} & Pick<WorkflowState, "id">;
|
|
25409
25517
|
};
|
|
25518
|
+
export declare type IssueStateSpanConnectionFragment = {
|
|
25519
|
+
__typename: "IssueStateSpanConnection";
|
|
25520
|
+
} & {
|
|
25521
|
+
nodes: Array<{
|
|
25522
|
+
__typename: "IssueStateSpan";
|
|
25523
|
+
} & Pick<IssueStateSpan, "startedAt" | "endedAt" | "id" | "stateId"> & {
|
|
25524
|
+
state?: Maybe<{
|
|
25525
|
+
__typename?: "WorkflowState";
|
|
25526
|
+
} & Pick<WorkflowState, "id">>;
|
|
25527
|
+
}>;
|
|
25528
|
+
pageInfo: {
|
|
25529
|
+
__typename: "PageInfo";
|
|
25530
|
+
} & Pick<PageInfo, "startCursor" | "endCursor" | "hasPreviousPage" | "hasNextPage">;
|
|
25531
|
+
};
|
|
25410
25532
|
export declare type IssueSuggestionFragment = {
|
|
25411
25533
|
__typename: "IssueSuggestion";
|
|
25412
25534
|
} & Pick<IssueSuggestion, "updatedAt" | "archivedAt" | "createdAt" | "id" | "dismissalReason" | "issueId" | "state" | "stateChangedAt" | "suggestedIssueId" | "suggestedLabelId" | "suggestedUserId" | "type"> & {
|
|
@@ -28137,7 +28259,7 @@ export declare type TeamConnectionFragment = {
|
|
|
28137
28259
|
} & {
|
|
28138
28260
|
nodes: Array<{
|
|
28139
28261
|
__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"> & {
|
|
28262
|
+
} & 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
28263
|
integrationsSettings?: Maybe<{
|
|
28142
28264
|
__typename?: "IntegrationsSettings";
|
|
28143
28265
|
} & Pick<IntegrationsSettings, "id">>;
|
|
@@ -28449,7 +28571,7 @@ export declare type AdministrableTeamsQuery = {
|
|
|
28449
28571
|
} & {
|
|
28450
28572
|
nodes: Array<{
|
|
28451
28573
|
__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"> & {
|
|
28574
|
+
} & 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
28575
|
integrationsSettings?: Maybe<{
|
|
28454
28576
|
__typename?: "IntegrationsSettings";
|
|
28455
28577
|
} & Pick<IntegrationsSettings, "id">>;
|
|
@@ -36737,7 +36859,7 @@ export declare type Organization_TeamsQuery = {
|
|
|
36737
36859
|
} & {
|
|
36738
36860
|
nodes: Array<{
|
|
36739
36861
|
__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"> & {
|
|
36862
|
+
} & 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
36863
|
integrationsSettings?: Maybe<{
|
|
36742
36864
|
__typename?: "IntegrationsSettings";
|
|
36743
36865
|
} & Pick<IntegrationsSettings, "id">>;
|
|
@@ -37793,7 +37915,7 @@ export declare type Project_TeamsQuery = {
|
|
|
37793
37915
|
} & {
|
|
37794
37916
|
nodes: Array<{
|
|
37795
37917
|
__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"> & {
|
|
37918
|
+
} & 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
37919
|
integrationsSettings?: Maybe<{
|
|
37798
37920
|
__typename?: "IntegrationsSettings";
|
|
37799
37921
|
} & Pick<IntegrationsSettings, "id">>;
|
|
@@ -39232,7 +39354,7 @@ export declare type TeamQuery = {
|
|
|
39232
39354
|
} & {
|
|
39233
39355
|
team: {
|
|
39234
39356
|
__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"> & {
|
|
39357
|
+
} & 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
39358
|
integrationsSettings?: Maybe<{
|
|
39237
39359
|
__typename?: "IntegrationsSettings";
|
|
39238
39360
|
} & Pick<IntegrationsSettings, "id">>;
|
|
@@ -39831,7 +39953,7 @@ export declare type TeamsQuery = {
|
|
|
39831
39953
|
} & {
|
|
39832
39954
|
nodes: Array<{
|
|
39833
39955
|
__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"> & {
|
|
39956
|
+
} & 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
39957
|
integrationsSettings?: Maybe<{
|
|
39836
39958
|
__typename?: "IntegrationsSettings";
|
|
39837
39959
|
} & Pick<IntegrationsSettings, "id">>;
|
|
@@ -40535,7 +40657,7 @@ export declare type User_TeamsQuery = {
|
|
|
40535
40657
|
} & {
|
|
40536
40658
|
nodes: Array<{
|
|
40537
40659
|
__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"> & {
|
|
40660
|
+
} & 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
40661
|
integrationsSettings?: Maybe<{
|
|
40540
40662
|
__typename?: "IntegrationsSettings";
|
|
40541
40663
|
} & Pick<IntegrationsSettings, "id">>;
|
|
@@ -41919,7 +42041,7 @@ export declare type Viewer_TeamsQuery = {
|
|
|
41919
42041
|
} & {
|
|
41920
42042
|
nodes: Array<{
|
|
41921
42043
|
__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"> & {
|
|
42044
|
+
} & 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
42045
|
integrationsSettings?: Maybe<{
|
|
41924
42046
|
__typename?: "IntegrationsSettings";
|
|
41925
42047
|
} & Pick<IntegrationsSettings, "id">>;
|
|
@@ -50394,6 +50516,7 @@ export declare const OrganizationFragmentDoc: DocumentNode<OrganizationFragment,
|
|
|
50394
50516
|
export declare const AuthenticationSessionResponseFragmentDoc: DocumentNode<AuthenticationSessionResponseFragment, unknown>;
|
|
50395
50517
|
export declare const BaseWebhookPayloadFragmentDoc: DocumentNode<BaseWebhookPayloadFragment, unknown>;
|
|
50396
50518
|
export declare const CustomerNeedChildWebhookPayloadFragmentDoc: DocumentNode<CustomerNeedChildWebhookPayloadFragment, unknown>;
|
|
50519
|
+
export declare const ProjectLabelChildWebhookPayloadFragmentDoc: DocumentNode<ProjectLabelChildWebhookPayloadFragment, unknown>;
|
|
50397
50520
|
export declare const IntegrationChildWebhookPayloadFragmentDoc: DocumentNode<IntegrationChildWebhookPayloadFragment, unknown>;
|
|
50398
50521
|
export declare const IdentityProviderFragmentDoc: DocumentNode<IdentityProviderFragment, unknown>;
|
|
50399
50522
|
export declare const OrganizationDomainFragmentDoc: DocumentNode<OrganizationDomainFragment, unknown>;
|
|
@@ -50426,6 +50549,7 @@ export declare const CustomerTierChildWebhookPayloadFragmentDoc: DocumentNode<Cu
|
|
|
50426
50549
|
export declare const CustomerWebhookPayloadFragmentDoc: DocumentNode<CustomerWebhookPayloadFragment, unknown>;
|
|
50427
50550
|
export declare const CycleWebhookPayloadFragmentDoc: DocumentNode<CycleWebhookPayloadFragment, unknown>;
|
|
50428
50551
|
export declare const DocumentWebhookPayloadFragmentDoc: DocumentNode<DocumentWebhookPayloadFragment, unknown>;
|
|
50552
|
+
export declare const ProjectLabelWebhookPayloadFragmentDoc: DocumentNode<ProjectLabelWebhookPayloadFragment, unknown>;
|
|
50429
50553
|
export declare const ProjectUpdateWebhookPayloadFragmentDoc: DocumentNode<ProjectUpdateWebhookPayloadFragment, unknown>;
|
|
50430
50554
|
export declare const ProjectMilestoneChildWebhookPayloadFragmentDoc: DocumentNode<ProjectMilestoneChildWebhookPayloadFragment, unknown>;
|
|
50431
50555
|
export declare const ProjectStatusChildWebhookPayloadFragmentDoc: DocumentNode<ProjectStatusChildWebhookPayloadFragment, unknown>;
|
|
@@ -50626,6 +50750,8 @@ export declare const IssueRelationConnectionFragmentDoc: DocumentNode<IssueRelat
|
|
|
50626
50750
|
export declare const IssueRelationPayloadFragmentDoc: DocumentNode<IssueRelationPayloadFragment, unknown>;
|
|
50627
50751
|
export declare const IssueSearchResultFragmentDoc: DocumentNode<IssueSearchResultFragment, unknown>;
|
|
50628
50752
|
export declare const IssueSearchPayloadFragmentDoc: DocumentNode<IssueSearchPayloadFragment, unknown>;
|
|
50753
|
+
export declare const IssueStateSpanFragmentDoc: DocumentNode<IssueStateSpanFragment, unknown>;
|
|
50754
|
+
export declare const IssueStateSpanConnectionFragmentDoc: DocumentNode<IssueStateSpanConnectionFragment, unknown>;
|
|
50629
50755
|
export declare const IssueSuggestionMetadataFragmentDoc: DocumentNode<IssueSuggestionMetadataFragment, unknown>;
|
|
50630
50756
|
export declare const IssueSuggestionFragmentDoc: DocumentNode<IssueSuggestionFragment, unknown>;
|
|
50631
50757
|
export declare const IssueSuggestionConnectionFragmentDoc: DocumentNode<IssueSuggestionConnectionFragment, unknown>;
|