@forge/cli-shared 6.5.0-next.5 → 6.5.0-next.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/out/graphql/graphql-types.d.ts +273 -170
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +43 -23
- package/package.json +2 -2
|
@@ -167,7 +167,29 @@ export declare type ActionsAction = {
|
|
|
167
167
|
isConsequential: Scalars['Boolean']['output'];
|
|
168
168
|
name?: Maybe<Scalars['String']['output']>;
|
|
169
169
|
outputs?: Maybe<Array<ActionsActionTypeOutputTuple>>;
|
|
170
|
+
schema?: Maybe<ActionsActionConfiguration>;
|
|
170
171
|
target?: Maybe<ActionsTargetInputs>;
|
|
172
|
+
uiSchema?: Maybe<ActionsConfigurationUiSchema>;
|
|
173
|
+
};
|
|
174
|
+
export declare type ActionsActionConfiguration = {
|
|
175
|
+
__typename?: 'ActionsActionConfiguration';
|
|
176
|
+
properties?: Maybe<Array<ActionsActionConfigurationKeyValuePair>>;
|
|
177
|
+
type: Scalars['String']['output'];
|
|
178
|
+
};
|
|
179
|
+
export declare type ActionsActionConfigurationKeyValuePair = {
|
|
180
|
+
__typename?: 'ActionsActionConfigurationKeyValuePair';
|
|
181
|
+
key: Scalars['String']['output'];
|
|
182
|
+
value: ActionsActionConfigurationParameter;
|
|
183
|
+
};
|
|
184
|
+
export declare type ActionsActionConfigurationParameter = {
|
|
185
|
+
__typename?: 'ActionsActionConfigurationParameter';
|
|
186
|
+
default?: Maybe<Scalars['String']['output']>;
|
|
187
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
188
|
+
maximum?: Maybe<Scalars['Int']['output']>;
|
|
189
|
+
minimum?: Maybe<Scalars['Int']['output']>;
|
|
190
|
+
required: Scalars['Boolean']['output'];
|
|
191
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
192
|
+
type: Scalars['String']['output'];
|
|
171
193
|
};
|
|
172
194
|
export declare type ActionsActionInput = {
|
|
173
195
|
__typename?: 'ActionsActionInput';
|
|
@@ -233,6 +255,7 @@ export declare type ActionsActionableAppEdge = {
|
|
|
233
255
|
node?: Maybe<ActionsActionableApp>;
|
|
234
256
|
};
|
|
235
257
|
export declare type ActionsActionableAppsFilter = {
|
|
258
|
+
byActionId?: InputMaybe<Scalars['String']['input']>;
|
|
236
259
|
byActionType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
237
260
|
byActionVerb?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
238
261
|
byCapability?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -251,6 +274,20 @@ export declare enum ActionsAuthType {
|
|
|
251
274
|
export declare enum ActionsCapabilityType {
|
|
252
275
|
Automation = "AUTOMATION"
|
|
253
276
|
}
|
|
277
|
+
export declare enum ActionsConfigurationLayout {
|
|
278
|
+
VerticalLayout = "VerticalLayout"
|
|
279
|
+
}
|
|
280
|
+
export declare type ActionsConfigurationLayoutItem = {
|
|
281
|
+
__typename?: 'ActionsConfigurationLayoutItem';
|
|
282
|
+
options?: Maybe<Scalars['String']['output']>;
|
|
283
|
+
scope: Scalars['String']['output'];
|
|
284
|
+
type: Scalars['String']['output'];
|
|
285
|
+
};
|
|
286
|
+
export declare type ActionsConfigurationUiSchema = {
|
|
287
|
+
__typename?: 'ActionsConfigurationUiSchema';
|
|
288
|
+
elements?: Maybe<Array<Maybe<ActionsConfigurationLayoutItem>>>;
|
|
289
|
+
type: ActionsConfigurationLayout;
|
|
290
|
+
};
|
|
254
291
|
export declare type ActionsDescription = {
|
|
255
292
|
__typename?: 'ActionsDescription';
|
|
256
293
|
ai?: Maybe<Scalars['String']['output']>;
|
|
@@ -1489,7 +1526,6 @@ export declare type AppStorageSqlDatabaseMigration = {
|
|
|
1489
1526
|
};
|
|
1490
1527
|
export declare type AppStorageSqlDatabasePayload = {
|
|
1491
1528
|
__typename?: 'AppStorageSqlDatabasePayload';
|
|
1492
|
-
databaseSize: Scalars['Int']['output'];
|
|
1493
1529
|
migrations: Array<Maybe<AppStorageSqlDatabaseMigration>>;
|
|
1494
1530
|
tables: Array<Maybe<AppStorageSqlDatabaseTable>>;
|
|
1495
1531
|
};
|
|
@@ -18058,6 +18094,7 @@ export declare enum CustomMultiselectFieldInputComparators {
|
|
|
18058
18094
|
ContainAll = "CONTAIN_ALL",
|
|
18059
18095
|
ContainAny = "CONTAIN_ANY",
|
|
18060
18096
|
ContainNone = "CONTAIN_NONE",
|
|
18097
|
+
IsSet = "IS_SET",
|
|
18061
18098
|
NotSet = "NOT_SET"
|
|
18062
18099
|
}
|
|
18063
18100
|
export declare enum CustomNumberFieldInputComparators {
|
|
@@ -28176,10 +28213,8 @@ export declare type GraphStore = {
|
|
|
28176
28213
|
sprintRetrospectiveWhiteboard?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardConnection>;
|
|
28177
28214
|
sprintRetrospectiveWhiteboardInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
28178
28215
|
sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
28179
|
-
|
|
28180
|
-
|
|
28181
|
-
teamConnectedToJiraProject?: Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectConnection>;
|
|
28182
|
-
teamConnectedToJiraProjectInverse?: Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectInverseConnection>;
|
|
28216
|
+
teamConnectedToContainer?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerConnection>;
|
|
28217
|
+
teamConnectedToContainerInverse?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseConnection>;
|
|
28183
28218
|
teamOwnsComponent?: Maybe<GraphStoreSimplifiedTeamOwnsComponentConnection>;
|
|
28184
28219
|
teamOwnsComponentInverse?: Maybe<GraphStoreSimplifiedTeamOwnsComponentInverseConnection>;
|
|
28185
28220
|
teamWorksOnProject?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectConnection>;
|
|
@@ -28219,6 +28254,8 @@ export declare type GraphStore = {
|
|
|
28219
28254
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
28220
28255
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
28221
28256
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
28257
|
+
userViewedConfluencePage?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageConnection>;
|
|
28258
|
+
userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
|
|
28222
28259
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
28223
28260
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
28224
28261
|
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -30415,33 +30452,19 @@ export declare type GraphStoreSprintRetrospectiveWhiteboardRelationshipArgs = {
|
|
|
30415
30452
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30416
30453
|
id: Scalars['ID']['input'];
|
|
30417
30454
|
};
|
|
30418
|
-
export declare type
|
|
30455
|
+
export declare type GraphStoreTeamConnectedToContainerArgs = {
|
|
30419
30456
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30420
30457
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30421
30458
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30422
30459
|
id: Scalars['ID']['input'];
|
|
30423
|
-
sort?: InputMaybe<
|
|
30460
|
+
sort?: InputMaybe<GraphStoreTeamConnectedToContainerSortInput>;
|
|
30424
30461
|
};
|
|
30425
|
-
export declare type
|
|
30462
|
+
export declare type GraphStoreTeamConnectedToContainerInverseArgs = {
|
|
30426
30463
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30427
30464
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30428
30465
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30429
30466
|
id: Scalars['ID']['input'];
|
|
30430
|
-
sort?: InputMaybe<
|
|
30431
|
-
};
|
|
30432
|
-
export declare type GraphStoreTeamConnectedToJiraProjectArgs = {
|
|
30433
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
30434
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30435
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30436
|
-
id: Scalars['ID']['input'];
|
|
30437
|
-
sort?: InputMaybe<GraphStoreTeamConnectedToJiraProjectSortInput>;
|
|
30438
|
-
};
|
|
30439
|
-
export declare type GraphStoreTeamConnectedToJiraProjectInverseArgs = {
|
|
30440
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
30441
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30442
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30443
|
-
id: Scalars['ID']['input'];
|
|
30444
|
-
sort?: InputMaybe<GraphStoreTeamConnectedToJiraProjectSortInput>;
|
|
30467
|
+
sort?: InputMaybe<GraphStoreTeamConnectedToContainerSortInput>;
|
|
30445
30468
|
};
|
|
30446
30469
|
export declare type GraphStoreTeamOwnsComponentArgs = {
|
|
30447
30470
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -30694,6 +30717,20 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
30694
30717
|
id: Scalars['ID']['input'];
|
|
30695
30718
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
30696
30719
|
};
|
|
30720
|
+
export declare type GraphStoreUserViewedConfluencePageArgs = {
|
|
30721
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30722
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30723
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30724
|
+
id: Scalars['ID']['input'];
|
|
30725
|
+
sort?: InputMaybe<GraphStoreUserViewedConfluencePageSortInput>;
|
|
30726
|
+
};
|
|
30727
|
+
export declare type GraphStoreUserViewedConfluencePageInverseArgs = {
|
|
30728
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30729
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30730
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30731
|
+
id: Scalars['ID']['input'];
|
|
30732
|
+
sort?: InputMaybe<GraphStoreUserViewedConfluencePageSortInput>;
|
|
30733
|
+
};
|
|
30697
30734
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
30698
30735
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30699
30736
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31196,7 +31233,7 @@ export declare type GraphStoreBatchFocusAreaHasProjectEndNode = {
|
|
|
31196
31233
|
data?: Maybe<GraphStoreBatchFocusAreaHasProjectEndUnion>;
|
|
31197
31234
|
id: Scalars['ID']['output'];
|
|
31198
31235
|
};
|
|
31199
|
-
export declare type GraphStoreBatchFocusAreaHasProjectEndUnion = JiraIssue | MercuryJiraAlignEpic | TownsquareProject;
|
|
31236
|
+
export declare type GraphStoreBatchFocusAreaHasProjectEndUnion = JiraAlignAggProject | JiraIssue | MercuryJiraAlignEpic | TownsquareProject;
|
|
31200
31237
|
export declare type GraphStoreBatchFocusAreaHasProjectInnerConnection = {
|
|
31201
31238
|
__typename?: 'GraphStoreBatchFocusAreaHasProjectInnerConnection';
|
|
31202
31239
|
edges: Array<Maybe<GraphStoreBatchFocusAreaHasProjectInnerEdge>>;
|
|
@@ -31953,6 +31990,20 @@ export declare type GraphStoreCreateSprintRetrospectiveWhiteboardRelationshipInp
|
|
|
31953
31990
|
to: Scalars['ID']['input'];
|
|
31954
31991
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
31955
31992
|
};
|
|
31993
|
+
export declare type GraphStoreCreateTeamConnectedToContainerInput = {
|
|
31994
|
+
relationships: Array<GraphStoreCreateTeamConnectedToContainerRelationshipInput>;
|
|
31995
|
+
};
|
|
31996
|
+
export declare type GraphStoreCreateTeamConnectedToContainerPayload = Payload & {
|
|
31997
|
+
__typename?: 'GraphStoreCreateTeamConnectedToContainerPayload';
|
|
31998
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31999
|
+
success: Scalars['Boolean']['output'];
|
|
32000
|
+
};
|
|
32001
|
+
export declare type GraphStoreCreateTeamConnectedToContainerRelationshipInput = {
|
|
32002
|
+
from: Scalars['ID']['input'];
|
|
32003
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
32004
|
+
to: Scalars['ID']['input'];
|
|
32005
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
32006
|
+
};
|
|
31956
32007
|
export declare type GraphStoreCreateTestPerfhammerRelationshipInput = {
|
|
31957
32008
|
relationships: Array<GraphStoreCreateTestPerfhammerRelationshipRelationshipInput>;
|
|
31958
32009
|
};
|
|
@@ -32075,7 +32126,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
32075
32126
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
32076
32127
|
id: Scalars['ID']['output'];
|
|
32077
32128
|
};
|
|
32078
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalCommit | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
32129
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalCommit | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
32079
32130
|
export declare type GraphStoreCypherQueryNode = {
|
|
32080
32131
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
32081
32132
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -32086,7 +32137,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
32086
32137
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
32087
32138
|
id: Scalars['ID']['output'];
|
|
32088
32139
|
};
|
|
32089
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalCommit | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
32140
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalCommit | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
32090
32141
|
export declare type GraphStoreDateFilterInput = {
|
|
32091
32142
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
32092
32143
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -32312,6 +32363,19 @@ export declare type GraphStoreDeleteSprintRetrospectiveWhiteboardRelationshipInp
|
|
|
32312
32363
|
from: Scalars['ID']['input'];
|
|
32313
32364
|
to: Scalars['ID']['input'];
|
|
32314
32365
|
};
|
|
32366
|
+
export declare type GraphStoreDeleteTeamConnectedToContainerInput = {
|
|
32367
|
+
relationships: Array<GraphStoreDeleteTeamConnectedToContainerRelationshipInput>;
|
|
32368
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32369
|
+
};
|
|
32370
|
+
export declare type GraphStoreDeleteTeamConnectedToContainerPayload = Payload & {
|
|
32371
|
+
__typename?: 'GraphStoreDeleteTeamConnectedToContainerPayload';
|
|
32372
|
+
errors?: Maybe<Array<MutationError>>;
|
|
32373
|
+
success: Scalars['Boolean']['output'];
|
|
32374
|
+
};
|
|
32375
|
+
export declare type GraphStoreDeleteTeamConnectedToContainerRelationshipInput = {
|
|
32376
|
+
from: Scalars['ID']['input'];
|
|
32377
|
+
to: Scalars['ID']['input'];
|
|
32378
|
+
};
|
|
32315
32379
|
export declare type GraphStoreDeleteTestPerfhammerRelationshipInput = {
|
|
32316
32380
|
relationships: Array<GraphStoreDeleteTestPerfhammerRelationshipRelationshipInput>;
|
|
32317
32381
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36064,6 +36128,7 @@ export declare type GraphStoreMutation = {
|
|
|
36064
36128
|
createProjectHasVersion?: Maybe<GraphStoreCreateProjectHasVersionPayload>;
|
|
36065
36129
|
createSprintRetrospectivePage?: Maybe<GraphStoreCreateSprintRetrospectivePagePayload>;
|
|
36066
36130
|
createSprintRetrospectiveWhiteboard?: Maybe<GraphStoreCreateSprintRetrospectiveWhiteboardPayload>;
|
|
36131
|
+
createTeamConnectedToContainer?: Maybe<GraphStoreCreateTeamConnectedToContainerPayload>;
|
|
36067
36132
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
36068
36133
|
createTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
36069
36134
|
createUserHasRelevantProject?: Maybe<GraphStoreCreateUserHasRelevantProjectPayload>;
|
|
@@ -36086,6 +36151,7 @@ export declare type GraphStoreMutation = {
|
|
|
36086
36151
|
deleteProjectHasVersion?: Maybe<GraphStoreDeleteProjectHasVersionPayload>;
|
|
36087
36152
|
deleteSprintRetrospectivePage?: Maybe<GraphStoreDeleteSprintRetrospectivePagePayload>;
|
|
36088
36153
|
deleteSprintRetrospectiveWhiteboard?: Maybe<GraphStoreDeleteSprintRetrospectiveWhiteboardPayload>;
|
|
36154
|
+
deleteTeamConnectedToContainer?: Maybe<GraphStoreDeleteTeamConnectedToContainerPayload>;
|
|
36089
36155
|
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
36090
36156
|
deleteTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
36091
36157
|
deleteUserHasRelevantProject?: Maybe<GraphStoreDeleteUserHasRelevantProjectPayload>;
|
|
@@ -36143,6 +36209,9 @@ export declare type GraphStoreMutationCreateSprintRetrospectivePageArgs = {
|
|
|
36143
36209
|
export declare type GraphStoreMutationCreateSprintRetrospectiveWhiteboardArgs = {
|
|
36144
36210
|
input?: InputMaybe<GraphStoreCreateSprintRetrospectiveWhiteboardInput>;
|
|
36145
36211
|
};
|
|
36212
|
+
export declare type GraphStoreMutationCreateTeamConnectedToContainerArgs = {
|
|
36213
|
+
input?: InputMaybe<GraphStoreCreateTeamConnectedToContainerInput>;
|
|
36214
|
+
};
|
|
36146
36215
|
export declare type GraphStoreMutationCreateTestPerfhammerRelationshipArgs = {
|
|
36147
36216
|
input?: InputMaybe<GraphStoreCreateTestPerfhammerRelationshipInput>;
|
|
36148
36217
|
};
|
|
@@ -36209,6 +36278,9 @@ export declare type GraphStoreMutationDeleteSprintRetrospectivePageArgs = {
|
|
|
36209
36278
|
export declare type GraphStoreMutationDeleteSprintRetrospectiveWhiteboardArgs = {
|
|
36210
36279
|
input?: InputMaybe<GraphStoreDeleteSprintRetrospectiveWhiteboardInput>;
|
|
36211
36280
|
};
|
|
36281
|
+
export declare type GraphStoreMutationDeleteTeamConnectedToContainerArgs = {
|
|
36282
|
+
input?: InputMaybe<GraphStoreDeleteTeamConnectedToContainerInput>;
|
|
36283
|
+
};
|
|
36212
36284
|
export declare type GraphStoreMutationDeleteTestPerfhammerRelationshipArgs = {
|
|
36213
36285
|
input?: InputMaybe<GraphStoreDeleteTestPerfhammerRelationshipInput>;
|
|
36214
36286
|
};
|
|
@@ -37351,7 +37423,7 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
37351
37423
|
node?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseUnion>;
|
|
37352
37424
|
};
|
|
37353
37425
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
37354
|
-
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraIssue | MercuryJiraAlignEpic | TownsquareProject;
|
|
37426
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraAlignAggProject | JiraIssue | MercuryJiraAlignEpic | TownsquareProject;
|
|
37355
37427
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
37356
37428
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection';
|
|
37357
37429
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge>>>;
|
|
@@ -39306,70 +39378,38 @@ export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge = {
|
|
|
39306
39378
|
node?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion>;
|
|
39307
39379
|
};
|
|
39308
39380
|
export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion = ConfluenceWhiteboard;
|
|
39309
|
-
export declare type
|
|
39310
|
-
__typename?: '
|
|
39311
|
-
edges?: Maybe<Array<Maybe<
|
|
39381
|
+
export declare type GraphStoreSimplifiedTeamConnectedToContainerConnection = HasPageInfo & HasTotal & {
|
|
39382
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToContainerConnection';
|
|
39383
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamConnectedToContainerEdge>>>;
|
|
39312
39384
|
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39313
39385
|
pageInfo: PageInfo;
|
|
39314
39386
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39315
39387
|
};
|
|
39316
|
-
export declare type
|
|
39317
|
-
__typename?: '
|
|
39388
|
+
export declare type GraphStoreSimplifiedTeamConnectedToContainerEdge = {
|
|
39389
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToContainerEdge';
|
|
39318
39390
|
createdAt: Scalars['DateTime']['output'];
|
|
39319
39391
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
39320
39392
|
id: Scalars['ID']['output'];
|
|
39321
39393
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39322
|
-
node?: Maybe<
|
|
39394
|
+
node?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerUnion>;
|
|
39323
39395
|
};
|
|
39324
|
-
export declare type
|
|
39325
|
-
__typename?: '
|
|
39326
|
-
edges?: Maybe<Array<Maybe<
|
|
39396
|
+
export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseConnection = HasPageInfo & HasTotal & {
|
|
39397
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToContainerInverseConnection';
|
|
39398
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseEdge>>>;
|
|
39327
39399
|
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39328
39400
|
pageInfo: PageInfo;
|
|
39329
39401
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39330
39402
|
};
|
|
39331
|
-
export declare type
|
|
39332
|
-
__typename?: '
|
|
39403
|
+
export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseEdge = {
|
|
39404
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToContainerInverseEdge';
|
|
39333
39405
|
createdAt: Scalars['DateTime']['output'];
|
|
39334
39406
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
39335
39407
|
id: Scalars['ID']['output'];
|
|
39336
39408
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39337
|
-
node?: Maybe<
|
|
39409
|
+
node?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseUnion>;
|
|
39338
39410
|
};
|
|
39339
|
-
export declare type
|
|
39340
|
-
export declare type
|
|
39341
|
-
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectConnection = HasPageInfo & HasTotal & {
|
|
39342
|
-
__typename?: 'GraphStoreSimplifiedTeamConnectedToJiraProjectConnection';
|
|
39343
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectEdge>>>;
|
|
39344
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39345
|
-
pageInfo: PageInfo;
|
|
39346
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39347
|
-
};
|
|
39348
|
-
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectEdge = {
|
|
39349
|
-
__typename?: 'GraphStoreSimplifiedTeamConnectedToJiraProjectEdge';
|
|
39350
|
-
createdAt: Scalars['DateTime']['output'];
|
|
39351
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
39352
|
-
id: Scalars['ID']['output'];
|
|
39353
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
39354
|
-
node?: Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectUnion>;
|
|
39355
|
-
};
|
|
39356
|
-
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
39357
|
-
__typename?: 'GraphStoreSimplifiedTeamConnectedToJiraProjectInverseConnection';
|
|
39358
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectInverseEdge>>>;
|
|
39359
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39360
|
-
pageInfo: PageInfo;
|
|
39361
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39362
|
-
};
|
|
39363
|
-
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectInverseEdge = {
|
|
39364
|
-
__typename?: 'GraphStoreSimplifiedTeamConnectedToJiraProjectInverseEdge';
|
|
39365
|
-
createdAt: Scalars['DateTime']['output'];
|
|
39366
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
39367
|
-
id: Scalars['ID']['output'];
|
|
39368
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
39369
|
-
node?: Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectInverseUnion>;
|
|
39370
|
-
};
|
|
39371
|
-
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectInverseUnion = TeamV2;
|
|
39372
|
-
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectUnion = JiraProject;
|
|
39411
|
+
export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseUnion = TeamV2;
|
|
39412
|
+
export declare type GraphStoreSimplifiedTeamConnectedToContainerUnion = ConfluenceSpace | JiraProject;
|
|
39373
39413
|
export declare type GraphStoreSimplifiedTeamOwnsComponentConnection = HasPageInfo & {
|
|
39374
39414
|
__typename?: 'GraphStoreSimplifiedTeamOwnsComponentConnection';
|
|
39375
39415
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamOwnsComponentEdge>>>;
|
|
@@ -39768,6 +39808,34 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
39768
39808
|
};
|
|
39769
39809
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39770
39810
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails;
|
|
39811
|
+
export declare type GraphStoreSimplifiedUserViewedConfluencePageConnection = HasPageInfo & {
|
|
39812
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluencePageConnection';
|
|
39813
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedConfluencePageEdge>>>;
|
|
39814
|
+
pageInfo: PageInfo;
|
|
39815
|
+
};
|
|
39816
|
+
export declare type GraphStoreSimplifiedUserViewedConfluencePageEdge = {
|
|
39817
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluencePageEdge';
|
|
39818
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39819
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39820
|
+
id: Scalars['ID']['output'];
|
|
39821
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39822
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageUnion>;
|
|
39823
|
+
};
|
|
39824
|
+
export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseConnection = HasPageInfo & {
|
|
39825
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluencePageInverseConnection';
|
|
39826
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseEdge>>>;
|
|
39827
|
+
pageInfo: PageInfo;
|
|
39828
|
+
};
|
|
39829
|
+
export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseEdge = {
|
|
39830
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluencePageInverseEdge';
|
|
39831
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39832
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39833
|
+
id: Scalars['ID']['output'];
|
|
39834
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39835
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseUnion>;
|
|
39836
|
+
};
|
|
39837
|
+
export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39838
|
+
export declare type GraphStoreSimplifiedUserViewedConfluencePageUnion = ConfluencePage;
|
|
39771
39839
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
39772
39840
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
|
|
39773
39841
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseEdge>>>;
|
|
@@ -40394,13 +40462,7 @@ export declare type GraphStoreSprintRetrospectiveWhiteboardSortInput = {
|
|
|
40394
40462
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40395
40463
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40396
40464
|
};
|
|
40397
|
-
export declare type
|
|
40398
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40399
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40400
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40401
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40402
|
-
};
|
|
40403
|
-
export declare type GraphStoreTeamConnectedToJiraProjectSortInput = {
|
|
40465
|
+
export declare type GraphStoreTeamConnectedToContainerSortInput = {
|
|
40404
40466
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40405
40467
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40406
40468
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40469,6 +40531,9 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
40469
40531
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
40470
40532
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40471
40533
|
};
|
|
40534
|
+
export declare type GraphStoreUserViewedConfluencePageSortInput = {
|
|
40535
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40536
|
+
};
|
|
40472
40537
|
export declare type GraphStoreVersionAssociatedBranchSortInput = {
|
|
40473
40538
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40474
40539
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -48350,7 +48415,7 @@ export declare type JiraIssueGroupsByFieldIdArgs = {
|
|
|
48350
48415
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
48351
48416
|
};
|
|
48352
48417
|
export declare type JiraIssueHasChildrenArgs = {
|
|
48353
|
-
filterByProjectKeys?: InputMaybe<Array<Scalars['String']['input']
|
|
48418
|
+
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
48354
48419
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
48355
48420
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
48356
48421
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
@@ -49350,6 +49415,12 @@ export declare type JiraIssueSearchInput = {
|
|
|
49350
49415
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
49351
49416
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
49352
49417
|
};
|
|
49418
|
+
export declare enum JiraIssueSearchOperationScope {
|
|
49419
|
+
NinGlobal = "NIN_GLOBAL",
|
|
49420
|
+
NinGlobalShadowRequest = "NIN_GLOBAL_SHADOW_REQUEST",
|
|
49421
|
+
NinProject = "NIN_PROJECT",
|
|
49422
|
+
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST"
|
|
49423
|
+
}
|
|
49353
49424
|
export declare type JiraIssueSearchOptions = {
|
|
49354
49425
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
49355
49426
|
};
|
|
@@ -49373,6 +49444,9 @@ export declare type JiraIssueSearchResultContentIssuesArgs = {
|
|
|
49373
49444
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49374
49445
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49375
49446
|
};
|
|
49447
|
+
export declare type JiraIssueSearchScope = {
|
|
49448
|
+
operationScope?: InputMaybe<JiraIssueSearchOperationScope>;
|
|
49449
|
+
};
|
|
49376
49450
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
49377
49451
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49378
49452
|
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -50344,6 +50418,7 @@ export declare type JiraJqlVersionsUnreleasedArgs = {
|
|
|
50344
50418
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
50345
50419
|
};
|
|
50346
50420
|
export declare enum JiraJqlViewContext {
|
|
50421
|
+
FilterRefinement = "FILTER_REFINEMENT",
|
|
50347
50422
|
JswPlans = "JSW_PLANS",
|
|
50348
50423
|
Jwm = "JWM",
|
|
50349
50424
|
ShadowRequest = "SHADOW_REQUEST"
|
|
@@ -53979,6 +54054,7 @@ export declare type JiraQueryIssueSearchArgs = {
|
|
|
53979
54054
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
53980
54055
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
53981
54056
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54057
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
53982
54058
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
53983
54059
|
};
|
|
53984
54060
|
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
@@ -60628,15 +60704,13 @@ export declare type KnowledgeDiscoveryQueryApiSearchRelatedEntitiesArgs = {
|
|
|
60628
60704
|
};
|
|
60629
60705
|
export declare type KnowledgeDiscoveryQueryApiSearchTeamArgs = {
|
|
60630
60706
|
orgId: Scalars['String']['input'];
|
|
60631
|
-
siteId
|
|
60707
|
+
siteId: Scalars['String']['input'];
|
|
60632
60708
|
teamName: Scalars['String']['input'];
|
|
60633
|
-
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
60634
60709
|
};
|
|
60635
60710
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
60636
60711
|
locale: Scalars['String']['input'];
|
|
60637
60712
|
query: Scalars['String']['input'];
|
|
60638
|
-
siteId
|
|
60639
|
-
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
60713
|
+
siteId: Scalars['String']['input'];
|
|
60640
60714
|
};
|
|
60641
60715
|
export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
60642
60716
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -61730,7 +61804,9 @@ export declare type MarketplaceConsoleEditionPricingKnownError = MarketplaceCons
|
|
|
61730
61804
|
export declare type MarketplaceConsoleEditionResponse = MarketplaceConsoleEdition | MarketplaceConsoleEditionPricingKnownError;
|
|
61731
61805
|
export declare enum MarketplaceConsoleEditionType {
|
|
61732
61806
|
Advanced = "ADVANCED",
|
|
61733
|
-
|
|
61807
|
+
AdvancedMultiInstance = "ADVANCED_MULTI_INSTANCE",
|
|
61808
|
+
Standard = "STANDARD",
|
|
61809
|
+
StandardMultiInstance = "STANDARD_MULTI_INSTANCE"
|
|
61734
61810
|
}
|
|
61735
61811
|
export declare type MarketplaceConsoleEditionsActivation = {
|
|
61736
61812
|
__typename?: 'MarketplaceConsoleEditionsActivation';
|
|
@@ -61976,6 +62052,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
61976
62052
|
deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
|
|
61977
62053
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
61978
62054
|
makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
|
|
62055
|
+
updateAppDetails?: Maybe<MarketplaceConsoleUpdateAppDetailsResponse>;
|
|
61979
62056
|
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
61980
62057
|
};
|
|
61981
62058
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
@@ -62006,6 +62083,9 @@ export declare type MarketplaceConsoleMutationApiEditionsArgs = {
|
|
|
62006
62083
|
export declare type MarketplaceConsoleMutationApiMakeAppVersionPublicArgs = {
|
|
62007
62084
|
makeAppVersionPublicRequest: MarketplaceConsoleMakeAppVersionPublicRequest;
|
|
62008
62085
|
};
|
|
62086
|
+
export declare type MarketplaceConsoleMutationApiUpdateAppDetailsArgs = {
|
|
62087
|
+
updateAppDetailsRequest: MarketplaceConsoleUpdateAppDetailsRequest;
|
|
62088
|
+
};
|
|
62009
62089
|
export declare type MarketplaceConsoleMutationApiValidateArtifactUrlArgs = {
|
|
62010
62090
|
url: Scalars['String']['input'];
|
|
62011
62091
|
};
|
|
@@ -62315,6 +62395,52 @@ export declare type MarketplaceConsoleTokenDetails = {
|
|
|
62315
62395
|
links?: Maybe<Array<Maybe<MarketplaceConsolePrivateListingsLink>>>;
|
|
62316
62396
|
token: Scalars['String']['output'];
|
|
62317
62397
|
};
|
|
62398
|
+
export declare type MarketplaceConsoleUpdateAppDetailsRequest = {
|
|
62399
|
+
appKey: Scalars['ID']['input'];
|
|
62400
|
+
appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62401
|
+
bannerForUPMUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62402
|
+
buildsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62403
|
+
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62404
|
+
cloudHostingVisibility?: InputMaybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
62405
|
+
communityEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62406
|
+
currentCategories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62407
|
+
dataCenterHostingVisibility?: InputMaybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
62408
|
+
dataCenterReviewIssueKey?: InputMaybe<Scalars['String']['input']>;
|
|
62409
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
62410
|
+
forumsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62411
|
+
googleAnalytics4Id?: InputMaybe<Scalars['String']['input']>;
|
|
62412
|
+
googleAnalyticsId?: InputMaybe<Scalars['String']['input']>;
|
|
62413
|
+
issueTrackerUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62414
|
+
jsdEmbeddedDataKey?: InputMaybe<Scalars['String']['input']>;
|
|
62415
|
+
keywords?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62416
|
+
logoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62417
|
+
marketingLabels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62418
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
62419
|
+
privacyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62420
|
+
productId: Scalars['ID']['input'];
|
|
62421
|
+
segmentWriteKey?: InputMaybe<Scalars['String']['input']>;
|
|
62422
|
+
serverHostingVisibility?: InputMaybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
62423
|
+
sourceUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62424
|
+
status?: InputMaybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
62425
|
+
statusAfterApproval?: InputMaybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
62426
|
+
storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62427
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
62428
|
+
supportTicketSystemUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62429
|
+
tagLine?: InputMaybe<Scalars['String']['input']>;
|
|
62430
|
+
wikiUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62431
|
+
};
|
|
62432
|
+
export declare type MarketplaceConsoleUpdateAppDetailsRequestError = MarketplaceConsoleError & {
|
|
62433
|
+
__typename?: 'MarketplaceConsoleUpdateAppDetailsRequestError';
|
|
62434
|
+
id: Scalars['ID']['output'];
|
|
62435
|
+
message: Scalars['String']['output'];
|
|
62436
|
+
path?: Maybe<Scalars['String']['output']>;
|
|
62437
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
62438
|
+
};
|
|
62439
|
+
export declare type MarketplaceConsoleUpdateAppDetailsRequestKnownError = {
|
|
62440
|
+
__typename?: 'MarketplaceConsoleUpdateAppDetailsRequestKnownError';
|
|
62441
|
+
errors?: Maybe<Array<Maybe<MarketplaceConsoleUpdateAppDetailsRequestError>>>;
|
|
62442
|
+
};
|
|
62443
|
+
export declare type MarketplaceConsoleUpdateAppDetailsResponse = MarketplaceConsoleMutationVoidResponse | MarketplaceConsoleUpdateAppDetailsRequestKnownError;
|
|
62318
62444
|
export declare type MarketplaceConsoleUser = {
|
|
62319
62445
|
__typename?: 'MarketplaceConsoleUser';
|
|
62320
62446
|
atlassianAccountId: Scalars['ID']['output'];
|
|
@@ -65641,9 +65767,11 @@ export declare type MutationCreateContentTemplateLabelsArgs = {
|
|
|
65641
65767
|
};
|
|
65642
65768
|
export declare type MutationCreateCustomFilterArgs = {
|
|
65643
65769
|
input?: InputMaybe<CreateCustomFilterInput>;
|
|
65770
|
+
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65644
65771
|
};
|
|
65645
65772
|
export declare type MutationCreateCustomFilterV2Args = {
|
|
65646
65773
|
input?: InputMaybe<CreateCustomFilterInput>;
|
|
65774
|
+
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65647
65775
|
};
|
|
65648
65776
|
export declare type MutationCreateDevOpsServiceArgs = {
|
|
65649
65777
|
input: CreateDevOpsServiceInput;
|
|
@@ -65661,12 +65789,14 @@ export declare type MutationCreateDevOpsServiceRelationshipArgs = {
|
|
|
65661
65789
|
input: CreateDevOpsServiceRelationshipInput;
|
|
65662
65790
|
};
|
|
65663
65791
|
export declare type MutationCreateFooterCommentArgs = {
|
|
65792
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
65664
65793
|
input: CreateCommentInput;
|
|
65665
65794
|
};
|
|
65666
65795
|
export declare type MutationCreateHostedResourceUploadUrlArgs = {
|
|
65667
65796
|
input: CreateHostedResourceUploadUrlInput;
|
|
65668
65797
|
};
|
|
65669
65798
|
export declare type MutationCreateInlineCommentArgs = {
|
|
65799
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
65670
65800
|
input: CreateInlineCommentInput;
|
|
65671
65801
|
};
|
|
65672
65802
|
export declare type MutationCreateLivePageArgs = {
|
|
@@ -65774,6 +65904,7 @@ export declare type MutationDeleteContentTemplateLabelArgs = {
|
|
|
65774
65904
|
};
|
|
65775
65905
|
export declare type MutationDeleteCustomFilterArgs = {
|
|
65776
65906
|
input?: InputMaybe<DeleteCustomFilterInput>;
|
|
65907
|
+
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65777
65908
|
};
|
|
65778
65909
|
export declare type MutationDeleteDevOpsContainerRelationshipEntityPropertiesArgs = {
|
|
65779
65910
|
input: DeleteDevOpsContainerRelationshipEntityPropertiesInput;
|
|
@@ -65990,6 +66121,7 @@ export declare type MutationRankColumnArgs = {
|
|
|
65990
66121
|
};
|
|
65991
66122
|
export declare type MutationRankCustomFilterArgs = {
|
|
65992
66123
|
input?: InputMaybe<RankCustomFilterInput>;
|
|
66124
|
+
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65993
66125
|
};
|
|
65994
66126
|
export declare type MutationRateLimitTestArgs = {
|
|
65995
66127
|
input: InvokeExtensionInput;
|
|
@@ -66016,6 +66148,7 @@ export declare type MutationRemoveUserSpacePermissionsArgs = {
|
|
|
66016
66148
|
spacePermissionsInput: RemoveUserSpacePermissionsInput;
|
|
66017
66149
|
};
|
|
66018
66150
|
export declare type MutationReplyInlineCommentArgs = {
|
|
66151
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
66019
66152
|
input: ReplyInlineCommentInput;
|
|
66020
66153
|
};
|
|
66021
66154
|
export declare type MutationRequestPageAccessArgs = {
|
|
@@ -66083,6 +66216,7 @@ export declare type MutationSetEditorConversionSettingsArgs = {
|
|
|
66083
66216
|
};
|
|
66084
66217
|
export declare type MutationSetEstimationTypeArgs = {
|
|
66085
66218
|
input?: InputMaybe<SetEstimationTypeInput>;
|
|
66219
|
+
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66086
66220
|
};
|
|
66087
66221
|
export declare type MutationSetExternalAuthCredentialsArgs = {
|
|
66088
66222
|
input: SetExternalAuthCredentialsInput;
|
|
@@ -66202,9 +66336,11 @@ export declare type MutationUpdateCommentArgs = {
|
|
|
66202
66336
|
};
|
|
66203
66337
|
export declare type MutationUpdateCustomFilterArgs = {
|
|
66204
66338
|
input?: InputMaybe<UpdateCustomFilterInput>;
|
|
66339
|
+
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66205
66340
|
};
|
|
66206
66341
|
export declare type MutationUpdateCustomFilterV2Args = {
|
|
66207
66342
|
input?: InputMaybe<UpdateCustomFilterInput>;
|
|
66343
|
+
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66208
66344
|
};
|
|
66209
66345
|
export declare type MutationUpdateDevOpsContainerRelationshipEntityPropertiesArgs = {
|
|
66210
66346
|
input: UpdateDevOpsContainerRelationshipEntityPropertiesInput;
|
|
@@ -69343,6 +69479,7 @@ export declare type Query = {
|
|
|
69343
69479
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
69344
69480
|
jiraReleases?: Maybe<JiraReleases>;
|
|
69345
69481
|
jiraServers?: Maybe<JiraServersResult>;
|
|
69482
|
+
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
69346
69483
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
69347
69484
|
jsw?: Maybe<JswQuery>;
|
|
69348
69485
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -69741,6 +69878,7 @@ export declare type QueryCollabTokenArgs = {
|
|
|
69741
69878
|
export declare type QueryCommentsArgs = {
|
|
69742
69879
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69743
69880
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
69881
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
69744
69882
|
commentId?: InputMaybe<Scalars['ID']['input']>;
|
|
69745
69883
|
contentStatus?: InputMaybe<Array<InputMaybe<GraphQlContentStatus>>>;
|
|
69746
69884
|
depth?: InputMaybe<Depth>;
|
|
@@ -71317,6 +71455,10 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
71317
71455
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71318
71456
|
id: Scalars['ID']['input'];
|
|
71319
71457
|
};
|
|
71458
|
+
export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
71459
|
+
cloudId: Scalars['ID']['input'];
|
|
71460
|
+
idOrKey: Scalars['String']['input'];
|
|
71461
|
+
};
|
|
71320
71462
|
export declare type QueryKnowledgeBaseArgs = {
|
|
71321
71463
|
cloudId: Scalars['ID']['input'];
|
|
71322
71464
|
};
|
|
@@ -72272,6 +72414,10 @@ export declare type RadarUrlFieldValue = {
|
|
|
72272
72414
|
icon?: Maybe<Scalars['String']['output']>;
|
|
72273
72415
|
value?: Maybe<Scalars['String']['output']>;
|
|
72274
72416
|
};
|
|
72417
|
+
export declare type RadarUserContext = {
|
|
72418
|
+
__typename?: 'RadarUserContext';
|
|
72419
|
+
position?: Maybe<RadarPosition>;
|
|
72420
|
+
};
|
|
72275
72421
|
export declare type RadarWorker = Node & RadarEntity & {
|
|
72276
72422
|
__typename?: 'RadarWorker';
|
|
72277
72423
|
entityId: Scalars['ID']['output'];
|
|
@@ -72299,6 +72445,7 @@ export declare type RadarWorkspace = {
|
|
|
72299
72445
|
functions: Array<RadarFunction>;
|
|
72300
72446
|
id: Scalars['ID']['output'];
|
|
72301
72447
|
positionFields: Array<RadarFieldDefinition>;
|
|
72448
|
+
userContext?: Maybe<RadarUserContext>;
|
|
72302
72449
|
};
|
|
72303
72450
|
export declare type RankColumnInput = {
|
|
72304
72451
|
boardId: Scalars['ID']['input'];
|
|
@@ -74290,6 +74437,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
74290
74437
|
linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
|
|
74291
74438
|
owner?: Maybe<ThirdPartyUser>;
|
|
74292
74439
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
74440
|
+
providerId?: Maybe<Scalars['String']['output']>;
|
|
74293
74441
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
74294
74442
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
74295
74443
|
title: Scalars['String']['output'];
|
|
@@ -80012,6 +80160,7 @@ export declare type TrelloCardUpdated = {
|
|
|
80012
80160
|
id: Scalars['ID']['output'];
|
|
80013
80161
|
labels?: Maybe<TrelloLabelUpdatedConnection>;
|
|
80014
80162
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
80163
|
+
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
80015
80164
|
name?: Maybe<Scalars['String']['output']>;
|
|
80016
80165
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
80017
80166
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -80394,6 +80543,10 @@ export declare type TrelloMemberUpdated = {
|
|
|
80394
80543
|
boards?: Maybe<TrelloBoardConnectionUpdated>;
|
|
80395
80544
|
id?: Maybe<Scalars['ID']['output']>;
|
|
80396
80545
|
};
|
|
80546
|
+
export declare type TrelloMemberUpdatedConnection = {
|
|
80547
|
+
__typename?: 'TrelloMemberUpdatedConnection';
|
|
80548
|
+
nodes: Array<TrelloMember>;
|
|
80549
|
+
};
|
|
80397
80550
|
export declare type TrelloMemberWorkspaceConnection = {
|
|
80398
80551
|
__typename?: 'TrelloMemberWorkspaceConnection';
|
|
80399
80552
|
edges?: Maybe<Array<TrelloMemberWorkspaceEdge>>;
|
|
@@ -82993,6 +83146,15 @@ export declare type VirtualAgentGlobalStatisticsProjection = {
|
|
|
82993
83146
|
totalMatched?: Maybe<Scalars['Float']['output']>;
|
|
82994
83147
|
totalTraffic?: Maybe<Scalars['Int']['output']>;
|
|
82995
83148
|
};
|
|
83149
|
+
export declare type VirtualAgentIntent = Node & {
|
|
83150
|
+
__typename?: 'VirtualAgentIntent';
|
|
83151
|
+
confirmationMessage?: Maybe<Scalars['String']['output']>;
|
|
83152
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
83153
|
+
id: Scalars['ID']['output'];
|
|
83154
|
+
name: Scalars['String']['output'];
|
|
83155
|
+
status: VirtualAgentIntentStatus;
|
|
83156
|
+
suggestionButtonText?: Maybe<Scalars['String']['output']>;
|
|
83157
|
+
};
|
|
82996
83158
|
export declare type VirtualAgentIntentProjection = Node & {
|
|
82997
83159
|
__typename?: 'VirtualAgentIntentProjection';
|
|
82998
83160
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -83012,6 +83174,11 @@ export declare type VirtualAgentIntentProjectionTmp = Node & {
|
|
|
83012
83174
|
id: Scalars['ID']['output'];
|
|
83013
83175
|
name: Scalars['String']['output'];
|
|
83014
83176
|
};
|
|
83177
|
+
export declare type VirtualAgentIntentQuestion = Node & {
|
|
83178
|
+
__typename?: 'VirtualAgentIntentQuestion';
|
|
83179
|
+
id: Scalars['ID']['output'];
|
|
83180
|
+
text: Scalars['String']['output'];
|
|
83181
|
+
};
|
|
83015
83182
|
export declare type VirtualAgentIntentQuestionProjection = Node & {
|
|
83016
83183
|
__typename?: 'VirtualAgentIntentQuestionProjection';
|
|
83017
83184
|
id: Scalars['ID']['output'];
|
|
@@ -83064,6 +83231,10 @@ export declare type VirtualAgentIntentStatisticsProjection = {
|
|
|
83064
83231
|
totalTraffic?: Maybe<Scalars['Int']['output']>;
|
|
83065
83232
|
trafficPercentageOfAllAssisted?: Maybe<Scalars['Float']['output']>;
|
|
83066
83233
|
};
|
|
83234
|
+
export declare enum VirtualAgentIntentStatus {
|
|
83235
|
+
Live = "LIVE",
|
|
83236
|
+
TestOnly = "TEST_ONLY"
|
|
83237
|
+
}
|
|
83067
83238
|
export declare type VirtualAgentIntentTemplate = Node & {
|
|
83068
83239
|
__typename?: 'VirtualAgentIntentTemplate';
|
|
83069
83240
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -83162,6 +83333,10 @@ export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs =
|
|
|
83162
83333
|
export declare type VirtualAgentQueryApi = {
|
|
83163
83334
|
__typename?: 'VirtualAgentQueryApi';
|
|
83164
83335
|
availableToHelpCenter?: Maybe<Scalars['Boolean']['output']>;
|
|
83336
|
+
conversationsByIds?: Maybe<Array<Maybe<VirtualAgentConversation>>>;
|
|
83337
|
+
intentQuestionsByIds?: Maybe<Array<Maybe<VirtualAgentIntentQuestion>>>;
|
|
83338
|
+
intentTemplatesByIds?: Maybe<Array<Maybe<VirtualAgentIntentTemplate>>>;
|
|
83339
|
+
intentsByIds?: Maybe<Array<Maybe<VirtualAgentIntent>>>;
|
|
83165
83340
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
83166
83341
|
virtualAgentAvailability?: Maybe<Scalars['Boolean']['output']>;
|
|
83167
83342
|
virtualAgentEntitlements?: Maybe<VirtualAgentFeatures>;
|
|
@@ -83169,6 +83344,18 @@ export declare type VirtualAgentQueryApi = {
|
|
|
83169
83344
|
export declare type VirtualAgentQueryApiAvailableToHelpCenterArgs = {
|
|
83170
83345
|
helpCenterId: Scalars['ID']['input'];
|
|
83171
83346
|
};
|
|
83347
|
+
export declare type VirtualAgentQueryApiConversationsByIdsArgs = {
|
|
83348
|
+
ids: Array<Scalars['ID']['input']>;
|
|
83349
|
+
};
|
|
83350
|
+
export declare type VirtualAgentQueryApiIntentQuestionsByIdsArgs = {
|
|
83351
|
+
ids: Array<Scalars['ID']['input']>;
|
|
83352
|
+
};
|
|
83353
|
+
export declare type VirtualAgentQueryApiIntentTemplatesByIdsArgs = {
|
|
83354
|
+
ids: Array<Scalars['ID']['input']>;
|
|
83355
|
+
};
|
|
83356
|
+
export declare type VirtualAgentQueryApiIntentsByIdsArgs = {
|
|
83357
|
+
ids: Array<Scalars['ID']['input']>;
|
|
83358
|
+
};
|
|
83172
83359
|
export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
|
|
83173
83360
|
jiraProjectId: Scalars['ID']['input'];
|
|
83174
83361
|
requestTypeId: Scalars['String']['input'];
|
|
@@ -83392,18 +83579,11 @@ export declare type WhiteboardFeatures = {
|
|
|
83392
83579
|
};
|
|
83393
83580
|
export declare type WorkSuggestions = {
|
|
83394
83581
|
__typename?: 'WorkSuggestions';
|
|
83395
|
-
codeTabSuggestions: WorkSuggestionsCodeTabTaskConnection;
|
|
83396
83582
|
suggestionsByIssues?: Maybe<WorkSuggestionsByIssuesResponse>;
|
|
83397
83583
|
suggestionsByProjects?: Maybe<WorkSuggestionsByProjectsResponse>;
|
|
83398
83584
|
userProfileByCloudId?: Maybe<WorkSuggestionsUserProfile>;
|
|
83399
83585
|
workSuggestionsByContextAri: WorkSuggestionsConnection;
|
|
83400
83586
|
};
|
|
83401
|
-
export declare type WorkSuggestionsCodeTabSuggestionsArgs = {
|
|
83402
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
83403
|
-
cloudId: Scalars['ID']['input'];
|
|
83404
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83405
|
-
projectAri: Scalars['ID']['input'];
|
|
83406
|
-
};
|
|
83407
83587
|
export declare type WorkSuggestionsSuggestionsByIssuesArgs = {
|
|
83408
83588
|
cloudId: Scalars['ID']['input'];
|
|
83409
83589
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -83551,83 +83731,6 @@ export declare type WorkSuggestionsByProjectsResponseCompassSuggestionsArgs = {
|
|
|
83551
83731
|
export declare type WorkSuggestionsByProjectsResponseInactivePrSuggestionsArgs = {
|
|
83552
83732
|
input?: InputMaybe<WorkSuggestionsInput>;
|
|
83553
83733
|
};
|
|
83554
|
-
export declare type WorkSuggestionsCodeTabEdge = {
|
|
83555
|
-
__typename?: 'WorkSuggestionsCodeTabEdge';
|
|
83556
|
-
cursor: Scalars['String']['output'];
|
|
83557
|
-
node?: Maybe<WorkSuggestionsCodeTabTask>;
|
|
83558
|
-
};
|
|
83559
|
-
export declare type WorkSuggestionsCodeTabPullRequestDraftTask = WorkSuggestionsCodeTabTask & {
|
|
83560
|
-
__typename?: 'WorkSuggestionsCodeTabPullRequestDraftTask';
|
|
83561
|
-
approvalsCount: Scalars['Int']['output'];
|
|
83562
|
-
author?: Maybe<WorkSuggestionsUserDetail>;
|
|
83563
|
-
commentCount: Scalars['Int']['output'];
|
|
83564
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
83565
|
-
id: Scalars['String']['output'];
|
|
83566
|
-
lastUpdated: Scalars['String']['output'];
|
|
83567
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
83568
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
83569
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
83570
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
83571
|
-
title: Scalars['String']['output'];
|
|
83572
|
-
url: Scalars['String']['output'];
|
|
83573
|
-
};
|
|
83574
|
-
export declare type WorkSuggestionsCodeTabPullRequestNeedsWorkTask = WorkSuggestionsCodeTabTask & {
|
|
83575
|
-
__typename?: 'WorkSuggestionsCodeTabPullRequestNeedsWorkTask';
|
|
83576
|
-
commentCount: Scalars['Int']['output'];
|
|
83577
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
83578
|
-
id: Scalars['String']['output'];
|
|
83579
|
-
lastUpdated: Scalars['String']['output'];
|
|
83580
|
-
needsWorkCount: Scalars['Int']['output'];
|
|
83581
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
83582
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
83583
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
83584
|
-
reviewers?: Maybe<Array<Maybe<WorkSuggestionsUserDetail>>>;
|
|
83585
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
83586
|
-
title: Scalars['String']['output'];
|
|
83587
|
-
url: Scalars['String']['output'];
|
|
83588
|
-
};
|
|
83589
|
-
export declare type WorkSuggestionsCodeTabPullRequestReviewTask = WorkSuggestionsCodeTabTask & {
|
|
83590
|
-
__typename?: 'WorkSuggestionsCodeTabPullRequestReviewTask';
|
|
83591
|
-
approvalsCount: Scalars['Int']['output'];
|
|
83592
|
-
author?: Maybe<WorkSuggestionsUserDetail>;
|
|
83593
|
-
commentCount: Scalars['Int']['output'];
|
|
83594
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
83595
|
-
id: Scalars['String']['output'];
|
|
83596
|
-
lastUpdated: Scalars['String']['output'];
|
|
83597
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
83598
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
83599
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
83600
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
83601
|
-
title: Scalars['String']['output'];
|
|
83602
|
-
url: Scalars['String']['output'];
|
|
83603
|
-
};
|
|
83604
|
-
export declare type WorkSuggestionsCodeTabPullRequestStaleTask = WorkSuggestionsCodeTabTask & {
|
|
83605
|
-
__typename?: 'WorkSuggestionsCodeTabPullRequestStaleTask';
|
|
83606
|
-
approvalsCount: Scalars['Int']['output'];
|
|
83607
|
-
author?: Maybe<WorkSuggestionsUserDetail>;
|
|
83608
|
-
commentCount: Scalars['Int']['output'];
|
|
83609
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
83610
|
-
id: Scalars['String']['output'];
|
|
83611
|
-
lastUpdated: Scalars['String']['output'];
|
|
83612
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
83613
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
83614
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
83615
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
83616
|
-
title: Scalars['String']['output'];
|
|
83617
|
-
url: Scalars['String']['output'];
|
|
83618
|
-
};
|
|
83619
|
-
export declare type WorkSuggestionsCodeTabTask = {
|
|
83620
|
-
id: Scalars['String']['output'];
|
|
83621
|
-
title: Scalars['String']['output'];
|
|
83622
|
-
url: Scalars['String']['output'];
|
|
83623
|
-
};
|
|
83624
|
-
export declare type WorkSuggestionsCodeTabTaskConnection = {
|
|
83625
|
-
__typename?: 'WorkSuggestionsCodeTabTaskConnection';
|
|
83626
|
-
edges?: Maybe<Array<WorkSuggestionsCodeTabEdge>>;
|
|
83627
|
-
nodes?: Maybe<Array<Maybe<WorkSuggestionsCodeTabTask>>>;
|
|
83628
|
-
pageInfo: PageInfo;
|
|
83629
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
83630
|
-
};
|
|
83631
83734
|
export declare type WorkSuggestionsCommon = {
|
|
83632
83735
|
id: Scalars['String']['output'];
|
|
83633
83736
|
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|