@forge/cli-shared 6.6.2-next.6 → 6.6.2-next.8
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 +15 -0
- package/out/graphql/graphql-types.d.ts +292 -30
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +34 -25
- package/package.json +2 -2
|
@@ -163,6 +163,7 @@ export declare type ActionsAction = {
|
|
|
163
163
|
actionVerb?: Maybe<Scalars['String']['output']>;
|
|
164
164
|
actionVersion?: Maybe<Scalars['String']['output']>;
|
|
165
165
|
auth: Array<ActionsAuthType>;
|
|
166
|
+
connection?: Maybe<ActionsConnection>;
|
|
166
167
|
description?: Maybe<ActionsDescription>;
|
|
167
168
|
enabledCapabilities?: Maybe<Array<Maybe<ActionsCapabilityType>>>;
|
|
168
169
|
extensionAri?: Maybe<Scalars['String']['output']>;
|
|
@@ -203,6 +204,8 @@ export declare type ActionsActionInput = {
|
|
|
203
204
|
description?: Maybe<ActionsDescription>;
|
|
204
205
|
fetchAction?: Maybe<ActionsAction>;
|
|
205
206
|
items?: Maybe<ActionsActionInputItems>;
|
|
207
|
+
maximum?: Maybe<Scalars['Int']['output']>;
|
|
208
|
+
minimum?: Maybe<Scalars['Int']['output']>;
|
|
206
209
|
pattern?: Maybe<Scalars['String']['output']>;
|
|
207
210
|
required: Scalars['Boolean']['output'];
|
|
208
211
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -295,6 +298,10 @@ export declare type ActionsConfigurationUiSchema = {
|
|
|
295
298
|
elements?: Maybe<Array<Maybe<ActionsConfigurationLayoutItem>>>;
|
|
296
299
|
type: ActionsConfigurationLayout;
|
|
297
300
|
};
|
|
301
|
+
export declare type ActionsConnection = {
|
|
302
|
+
__typename?: 'ActionsConnection';
|
|
303
|
+
authUrl: Scalars['String']['output'];
|
|
304
|
+
};
|
|
298
305
|
export declare type ActionsDescription = {
|
|
299
306
|
__typename?: 'ActionsDescription';
|
|
300
307
|
ai?: Maybe<Scalars['String']['output']>;
|
|
@@ -1812,6 +1819,10 @@ export declare type AppStorageMutationDeleteAppStoredEntityArgs = {
|
|
|
1812
1819
|
export declare type AppStorageMutationSetAppStoredEntityArgs = {
|
|
1813
1820
|
input: SetAppStoredEntityMutationInput;
|
|
1814
1821
|
};
|
|
1822
|
+
export declare type AppStorageOrderByInput = {
|
|
1823
|
+
columnName: Scalars['String']['input'];
|
|
1824
|
+
direction: AppStorageSqlTableDataSortDirection;
|
|
1825
|
+
};
|
|
1815
1826
|
export declare type AppStorageSqlDatabaseColumn = {
|
|
1816
1827
|
__typename?: 'AppStorageSqlDatabaseColumn';
|
|
1817
1828
|
default: Scalars['String']['output'];
|
|
@@ -1841,6 +1852,27 @@ export declare type AppStorageSqlDatabaseTable = {
|
|
|
1841
1852
|
columns: Array<AppStorageSqlDatabaseColumn>;
|
|
1842
1853
|
name: Scalars['String']['output'];
|
|
1843
1854
|
};
|
|
1855
|
+
export declare type AppStorageSqlTableDataInput = {
|
|
1856
|
+
appId: Scalars['ID']['input'];
|
|
1857
|
+
installationId: Scalars['ID']['input'];
|
|
1858
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1859
|
+
orderBy?: InputMaybe<Array<AppStorageOrderByInput>>;
|
|
1860
|
+
tableName: Scalars['String']['input'];
|
|
1861
|
+
};
|
|
1862
|
+
export declare type AppStorageSqlTableDataPayload = {
|
|
1863
|
+
__typename?: 'AppStorageSqlTableDataPayload';
|
|
1864
|
+
columnNames: Array<Scalars['String']['output']>;
|
|
1865
|
+
filteredColumnNames: Array<Scalars['String']['output']>;
|
|
1866
|
+
rows: Array<AppStorageSqlTableDataRow>;
|
|
1867
|
+
};
|
|
1868
|
+
export declare type AppStorageSqlTableDataRow = {
|
|
1869
|
+
__typename?: 'AppStorageSqlTableDataRow';
|
|
1870
|
+
values: Array<Scalars['String']['output']>;
|
|
1871
|
+
};
|
|
1872
|
+
export declare enum AppStorageSqlTableDataSortDirection {
|
|
1873
|
+
Asc = "ASC",
|
|
1874
|
+
Desc = "DESC"
|
|
1875
|
+
}
|
|
1844
1876
|
export declare type AppStoredCustomEntity = {
|
|
1845
1877
|
__typename?: 'AppStoredCustomEntity';
|
|
1846
1878
|
entityName: Scalars['String']['output'];
|
|
@@ -7782,6 +7814,7 @@ export declare type CompassScorecardCriteriaScore = {
|
|
|
7782
7814
|
dataSourceLastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
7783
7815
|
explanation?: Maybe<Scalars['String']['output']>;
|
|
7784
7816
|
maxScore: Scalars['Int']['output'];
|
|
7817
|
+
metadata?: Maybe<CompassScorecardCriterionScoreMetadata>;
|
|
7785
7818
|
score: Scalars['Int']['output'];
|
|
7786
7819
|
status?: Maybe<Scalars['String']['output']>;
|
|
7787
7820
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -7983,6 +8016,34 @@ export declare type CompassScorecardCriterionScore = {
|
|
|
7983
8016
|
explanation: Scalars['String']['output'];
|
|
7984
8017
|
scoreStatus: CompassScorecardCriterionScoreStatus;
|
|
7985
8018
|
};
|
|
8019
|
+
export declare type CompassScorecardCriterionScoreEventSimulation = {
|
|
8020
|
+
__typename?: 'CompassScorecardCriterionScoreEventSimulation';
|
|
8021
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
8022
|
+
metricValue?: Maybe<Scalars['Float']['output']>;
|
|
8023
|
+
scoreStatus?: Maybe<CompassScorecardCriterionScoreStatus>;
|
|
8024
|
+
};
|
|
8025
|
+
export declare type CompassScorecardCriterionScoreEventSimulationResult = CompassScorecardCriterionScoreEventSimulation | QueryError;
|
|
8026
|
+
export declare type CompassScorecardCriterionScoreMetadata = {
|
|
8027
|
+
__typename?: 'CompassScorecardCriterionScoreMetadata';
|
|
8028
|
+
events?: Maybe<CompassScorecardCriterionScoreMetadataEventConnection>;
|
|
8029
|
+
metricValue?: Maybe<CompassMetricValue>;
|
|
8030
|
+
};
|
|
8031
|
+
export declare type CompassScorecardCriterionScoreMetadataEventsArgs = {
|
|
8032
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
8033
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8034
|
+
};
|
|
8035
|
+
export declare type CompassScorecardCriterionScoreMetadataEventConnection = {
|
|
8036
|
+
__typename?: 'CompassScorecardCriterionScoreMetadataEventConnection';
|
|
8037
|
+
edges?: Maybe<Array<CompassScorecardCriterionScoreMetadataEventEdge>>;
|
|
8038
|
+
nodes?: Maybe<Array<CompassEvent>>;
|
|
8039
|
+
pageInfo?: Maybe<PageInfo>;
|
|
8040
|
+
};
|
|
8041
|
+
export declare type CompassScorecardCriterionScoreMetadataEventEdge = {
|
|
8042
|
+
__typename?: 'CompassScorecardCriterionScoreMetadataEventEdge';
|
|
8043
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
8044
|
+
node?: Maybe<CompassEvent>;
|
|
8045
|
+
simulation?: Maybe<CompassScorecardCriterionScoreEventSimulationResult>;
|
|
8046
|
+
};
|
|
7986
8047
|
export declare type CompassScorecardCriterionScoreStatistic = {
|
|
7987
8048
|
__typename?: 'CompassScorecardCriterionScoreStatistic';
|
|
7988
8049
|
criterionId: Scalars['ID']['output'];
|
|
@@ -9054,6 +9115,12 @@ export declare enum ConfluenceBodyRepresentation {
|
|
|
9054
9115
|
View = "VIEW",
|
|
9055
9116
|
WhiteboardDocFormat = "WHITEBOARD_DOC_FORMAT"
|
|
9056
9117
|
}
|
|
9118
|
+
export declare type ConfluenceBulkNestedConvertToLiveDocsPayload = {
|
|
9119
|
+
__typename?: 'ConfluenceBulkNestedConvertToLiveDocsPayload';
|
|
9120
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9121
|
+
success: Scalars['Boolean']['output'];
|
|
9122
|
+
taskId: Scalars['ID']['output'];
|
|
9123
|
+
};
|
|
9057
9124
|
export declare type ConfluenceCalendarJqlValidationResult = {
|
|
9058
9125
|
__typename?: 'ConfluenceCalendarJqlValidationResult';
|
|
9059
9126
|
errorMessages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -9157,6 +9224,7 @@ export declare type ConfluenceContent = {
|
|
|
9157
9224
|
contentTitleUpdate?: Maybe<ConfluenceContentTitleUpdate>;
|
|
9158
9225
|
contentType: ConfluenceSubscriptionContentType;
|
|
9159
9226
|
eventType: Scalars['String']['output'];
|
|
9227
|
+
id: Scalars['ID']['output'];
|
|
9160
9228
|
};
|
|
9161
9229
|
export declare type ConfluenceContentBody = {
|
|
9162
9230
|
__typename?: 'ConfluenceContentBody';
|
|
@@ -9218,6 +9286,7 @@ export declare type ConfluenceContentTitleEmoji = {
|
|
|
9218
9286
|
export declare type ConfluenceContentTitleUpdate = {
|
|
9219
9287
|
__typename?: 'ConfluenceContentTitleUpdate';
|
|
9220
9288
|
contentTitle: Scalars['String']['output'];
|
|
9289
|
+
id: Scalars['ID']['output'];
|
|
9221
9290
|
};
|
|
9222
9291
|
export declare enum ConfluenceContentType {
|
|
9223
9292
|
Attachment = "ATTACHMENT",
|
|
@@ -9388,6 +9457,15 @@ export declare type ConfluenceDeleteCommentPayload = {
|
|
|
9388
9457
|
errors?: Maybe<Array<MutationError>>;
|
|
9389
9458
|
success: Scalars['Boolean']['output'];
|
|
9390
9459
|
};
|
|
9460
|
+
export declare type ConfluenceDeleteCustomRoleInput = {
|
|
9461
|
+
roleId: Scalars['ID']['input'];
|
|
9462
|
+
};
|
|
9463
|
+
export declare type ConfluenceDeleteCustomRolePayload = Payload & {
|
|
9464
|
+
__typename?: 'ConfluenceDeleteCustomRolePayload';
|
|
9465
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9466
|
+
success: Scalars['Boolean']['output'];
|
|
9467
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
9468
|
+
};
|
|
9391
9469
|
export declare type ConfluenceDeleteDraftBlogPostInput = {
|
|
9392
9470
|
id: Scalars['ID']['input'];
|
|
9393
9471
|
};
|
|
@@ -9460,6 +9538,10 @@ export declare type ConfluenceDeleteSubCalendarSingleEventPayload = Payload & {
|
|
|
9460
9538
|
errors?: Maybe<Array<MutationError>>;
|
|
9461
9539
|
success: Scalars['Boolean']['output'];
|
|
9462
9540
|
};
|
|
9541
|
+
export declare type ConfluenceDeletedUser = {
|
|
9542
|
+
__typename?: 'ConfluenceDeletedUser';
|
|
9543
|
+
accountIds: Array<Maybe<Scalars['String']['output']>>;
|
|
9544
|
+
};
|
|
9463
9545
|
export declare type ConfluenceDraftContentNativeProperties = {
|
|
9464
9546
|
__typename?: 'ConfluenceDraftContentNativeProperties';
|
|
9465
9547
|
contentState?: Maybe<ConfluenceContentState>;
|
|
@@ -9473,6 +9555,13 @@ export declare type ConfluenceEditions = {
|
|
|
9473
9555
|
__typename?: 'ConfluenceEditions';
|
|
9474
9556
|
edition: ConfluenceEdition;
|
|
9475
9557
|
};
|
|
9558
|
+
export declare type ConfluenceEditorSettings = {
|
|
9559
|
+
__typename?: 'ConfluenceEditorSettings';
|
|
9560
|
+
toolbarDockingInitialPosition?: Maybe<Scalars['String']['output']>;
|
|
9561
|
+
};
|
|
9562
|
+
export declare type ConfluenceEditorSettingsInput = {
|
|
9563
|
+
toolbarDockingInitialPosition?: InputMaybe<Scalars['String']['input']>;
|
|
9564
|
+
};
|
|
9476
9565
|
export declare type ConfluenceEmbed = {
|
|
9477
9566
|
__typename?: 'ConfluenceEmbed';
|
|
9478
9567
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
@@ -17008,6 +17097,7 @@ export declare type ContentAnalyticsTotalViewsByPageItem = {
|
|
|
17008
17097
|
export declare type ContentAnalyticsUnreadComments = {
|
|
17009
17098
|
__typename?: 'ContentAnalyticsUnreadComments';
|
|
17010
17099
|
commentIds: Array<Scalars['ID']['output']>;
|
|
17100
|
+
unreadComments?: Maybe<Array<Maybe<Comment>>>;
|
|
17011
17101
|
};
|
|
17012
17102
|
export declare type ContentAnalyticsViewers = {
|
|
17013
17103
|
__typename?: 'ContentAnalyticsViewers';
|
|
@@ -17759,6 +17849,7 @@ export declare type ContentPlatformIpmComponentGsacButtonAndIpmComponentRemindMe
|
|
|
17759
17849
|
export declare type ContentPlatformIpmComponentLinkButton = {
|
|
17760
17850
|
__typename?: 'ContentPlatformIpmComponentLinkButton';
|
|
17761
17851
|
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
17852
|
+
buttonAppearance?: Maybe<Scalars['String']['output']>;
|
|
17762
17853
|
buttonText?: Maybe<Scalars['String']['output']>;
|
|
17763
17854
|
buttonUrl?: Maybe<Scalars['String']['output']>;
|
|
17764
17855
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -20104,6 +20195,17 @@ export declare type CustomerServiceEscalatableJiraProjectsConnection = {
|
|
|
20104
20195
|
edges: Array<CustomerServiceEscalatableJiraProjectEdge>;
|
|
20105
20196
|
pageInfo: PageInfo;
|
|
20106
20197
|
};
|
|
20198
|
+
export declare type CustomerServiceEscalateWorkItemInput = {
|
|
20199
|
+
escalationType?: InputMaybe<CustomerServiceEscalationType>;
|
|
20200
|
+
};
|
|
20201
|
+
export declare type CustomerServiceEscalateWorkItemPayload = Payload & {
|
|
20202
|
+
__typename?: 'CustomerServiceEscalateWorkItemPayload';
|
|
20203
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20204
|
+
success: Scalars['Boolean']['output'];
|
|
20205
|
+
};
|
|
20206
|
+
export declare enum CustomerServiceEscalationType {
|
|
20207
|
+
SupportEscalation = "SUPPORT_ESCALATION"
|
|
20208
|
+
}
|
|
20107
20209
|
export declare type CustomerServiceFilterInput = {
|
|
20108
20210
|
context: CustomerServiceContext;
|
|
20109
20211
|
};
|
|
@@ -20174,6 +20276,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
20174
20276
|
deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
20175
20277
|
deleteProduct?: Maybe<CustomerServiceProductDeletePayload>;
|
|
20176
20278
|
deleteTemplateForm?: Maybe<CustomerServiceTemplateFormDeletePayload>;
|
|
20279
|
+
escalateWorkItem?: Maybe<CustomerServiceEscalateWorkItemPayload>;
|
|
20177
20280
|
removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
|
|
20178
20281
|
updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
|
|
20179
20282
|
updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
|
|
@@ -20239,6 +20342,11 @@ export declare type CustomerServiceMutationApiDeleteProductArgs = {
|
|
|
20239
20342
|
export declare type CustomerServiceMutationApiDeleteTemplateFormArgs = {
|
|
20240
20343
|
input: CustomerServiceTemplateFormDeleteInput;
|
|
20241
20344
|
};
|
|
20345
|
+
export declare type CustomerServiceMutationApiEscalateWorkItemArgs = {
|
|
20346
|
+
input: CustomerServiceEscalateWorkItemInput;
|
|
20347
|
+
projectId: Scalars['ID']['input'];
|
|
20348
|
+
workItemId: Scalars['ID']['input'];
|
|
20349
|
+
};
|
|
20242
20350
|
export declare type CustomerServiceMutationApiRemoveEntitlementArgs = {
|
|
20243
20351
|
input: CustomerServiceEntitlementRemoveInput;
|
|
20244
20352
|
};
|
|
@@ -26440,6 +26548,19 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
26440
26548
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
26441
26549
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
26442
26550
|
};
|
|
26551
|
+
export declare type GlanceUserInsights = {
|
|
26552
|
+
__typename?: 'GlanceUserInsights';
|
|
26553
|
+
additional_data?: Maybe<Scalars['String']['output']>;
|
|
26554
|
+
created_at?: Maybe<Scalars['String']['output']>;
|
|
26555
|
+
data_freshness?: Maybe<Scalars['String']['output']>;
|
|
26556
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
26557
|
+
due_at?: Maybe<Scalars['String']['output']>;
|
|
26558
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
26559
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
26560
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
26561
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
26562
|
+
updated_at?: Maybe<Scalars['String']['output']>;
|
|
26563
|
+
};
|
|
26443
26564
|
export declare type GlobalCardCreateAdditionalFields = {
|
|
26444
26565
|
__typename?: 'GlobalCardCreateAdditionalFields';
|
|
26445
26566
|
boardIssueListKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -30174,8 +30295,12 @@ export declare type GraphStore = {
|
|
|
30174
30295
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
30175
30296
|
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
30176
30297
|
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
30298
|
+
branchInRepo?: Maybe<GraphStoreSimplifiedBranchInRepoConnection>;
|
|
30299
|
+
branchInRepoInverse?: Maybe<GraphStoreSimplifiedBranchInRepoInverseConnection>;
|
|
30177
30300
|
calendarHasLinkedDocument?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentConnection>;
|
|
30178
30301
|
calendarHasLinkedDocumentInverse?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection>;
|
|
30302
|
+
commitInRepo?: Maybe<GraphStoreSimplifiedCommitInRepoConnection>;
|
|
30303
|
+
commitInRepoInverse?: Maybe<GraphStoreSimplifiedCommitInRepoInverseConnection>;
|
|
30179
30304
|
componentAssociatedDocument?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentConnection>;
|
|
30180
30305
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
30181
30306
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
@@ -30348,6 +30473,7 @@ export declare type GraphStore = {
|
|
|
30348
30473
|
jiraEpicContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
30349
30474
|
jiraIssueBlockedByJiraIssue?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueConnection>;
|
|
30350
30475
|
jiraIssueBlockedByJiraIssueInverse?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseConnection>;
|
|
30476
|
+
jiraIssueToJiraPriority?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityConnection>;
|
|
30351
30477
|
jiraIssueToJiraPriorityInverse?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection>;
|
|
30352
30478
|
jiraProjectAssociatedAtlasGoal?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection>;
|
|
30353
30479
|
jiraProjectAssociatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseConnection>;
|
|
@@ -31056,6 +31182,20 @@ export declare type GraphStoreBoardBelongsToProjectInverseArgs = {
|
|
|
31056
31182
|
id: Scalars['ID']['input'];
|
|
31057
31183
|
sort?: InputMaybe<GraphStoreBoardBelongsToProjectSortInput>;
|
|
31058
31184
|
};
|
|
31185
|
+
export declare type GraphStoreBranchInRepoArgs = {
|
|
31186
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31187
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31188
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31189
|
+
id: Scalars['ID']['input'];
|
|
31190
|
+
sort?: InputMaybe<GraphStoreBranchInRepoSortInput>;
|
|
31191
|
+
};
|
|
31192
|
+
export declare type GraphStoreBranchInRepoInverseArgs = {
|
|
31193
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31194
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31195
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31196
|
+
id: Scalars['ID']['input'];
|
|
31197
|
+
sort?: InputMaybe<GraphStoreBranchInRepoSortInput>;
|
|
31198
|
+
};
|
|
31059
31199
|
export declare type GraphStoreCalendarHasLinkedDocumentArgs = {
|
|
31060
31200
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31061
31201
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31070,6 +31210,20 @@ export declare type GraphStoreCalendarHasLinkedDocumentInverseArgs = {
|
|
|
31070
31210
|
id: Scalars['ID']['input'];
|
|
31071
31211
|
sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
|
|
31072
31212
|
};
|
|
31213
|
+
export declare type GraphStoreCommitInRepoArgs = {
|
|
31214
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31215
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31216
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31217
|
+
id: Scalars['ID']['input'];
|
|
31218
|
+
sort?: InputMaybe<GraphStoreCommitInRepoSortInput>;
|
|
31219
|
+
};
|
|
31220
|
+
export declare type GraphStoreCommitInRepoInverseArgs = {
|
|
31221
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31222
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31223
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31224
|
+
id: Scalars['ID']['input'];
|
|
31225
|
+
sort?: InputMaybe<GraphStoreCommitInRepoSortInput>;
|
|
31226
|
+
};
|
|
31073
31227
|
export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
31074
31228
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31075
31229
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32170,6 +32324,13 @@ export declare type GraphStoreJiraIssueBlockedByJiraIssueInverseArgs = {
|
|
|
32170
32324
|
id: Scalars['ID']['input'];
|
|
32171
32325
|
sort?: InputMaybe<GraphStoreJiraIssueBlockedByJiraIssueSortInput>;
|
|
32172
32326
|
};
|
|
32327
|
+
export declare type GraphStoreJiraIssueToJiraPriorityArgs = {
|
|
32328
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32329
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32330
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32331
|
+
id: Scalars['ID']['input'];
|
|
32332
|
+
sort?: InputMaybe<GraphStoreJiraIssueToJiraPrioritySortInput>;
|
|
32333
|
+
};
|
|
32173
32334
|
export declare type GraphStoreJiraIssueToJiraPriorityInverseArgs = {
|
|
32174
32335
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32175
32336
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36039,9 +36200,15 @@ export declare type GraphStoreBoardBelongsToProjectSortInput = {
|
|
|
36039
36200
|
export declare type GraphStoreBooleanFilterInput = {
|
|
36040
36201
|
is?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36041
36202
|
};
|
|
36203
|
+
export declare type GraphStoreBranchInRepoSortInput = {
|
|
36204
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36205
|
+
};
|
|
36042
36206
|
export declare type GraphStoreCalendarHasLinkedDocumentSortInput = {
|
|
36043
36207
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36044
36208
|
};
|
|
36209
|
+
export declare type GraphStoreCommitInRepoSortInput = {
|
|
36210
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36211
|
+
};
|
|
36045
36212
|
export declare type GraphStoreComponentAssociatedDocumentSortInput = {
|
|
36046
36213
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36047
36214
|
};
|
|
@@ -36545,7 +36712,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
36545
36712
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
36546
36713
|
id: Scalars['ID']['output'];
|
|
36547
36714
|
};
|
|
36548
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36715
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36549
36716
|
export declare type GraphStoreCypherQueryNode = {
|
|
36550
36717
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
36551
36718
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -36570,8 +36737,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
36570
36737
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
36571
36738
|
id: Scalars['ID']['output'];
|
|
36572
36739
|
};
|
|
36573
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36574
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36740
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36741
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36575
36742
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
36576
36743
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
36577
36744
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -41947,6 +42114,34 @@ export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseEdge = {
|
|
|
41947
42114
|
};
|
|
41948
42115
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseUnion = JiraBoard;
|
|
41949
42116
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectUnion = JiraProject;
|
|
42117
|
+
export declare type GraphStoreSimplifiedBranchInRepoConnection = HasPageInfo & {
|
|
42118
|
+
__typename?: 'GraphStoreSimplifiedBranchInRepoConnection';
|
|
42119
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBranchInRepoEdge>>>;
|
|
42120
|
+
pageInfo: PageInfo;
|
|
42121
|
+
};
|
|
42122
|
+
export declare type GraphStoreSimplifiedBranchInRepoEdge = {
|
|
42123
|
+
__typename?: 'GraphStoreSimplifiedBranchInRepoEdge';
|
|
42124
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42125
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42126
|
+
id: Scalars['ID']['output'];
|
|
42127
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42128
|
+
node?: Maybe<GraphStoreSimplifiedBranchInRepoUnion>;
|
|
42129
|
+
};
|
|
42130
|
+
export declare type GraphStoreSimplifiedBranchInRepoInverseConnection = HasPageInfo & {
|
|
42131
|
+
__typename?: 'GraphStoreSimplifiedBranchInRepoInverseConnection';
|
|
42132
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBranchInRepoInverseEdge>>>;
|
|
42133
|
+
pageInfo: PageInfo;
|
|
42134
|
+
};
|
|
42135
|
+
export declare type GraphStoreSimplifiedBranchInRepoInverseEdge = {
|
|
42136
|
+
__typename?: 'GraphStoreSimplifiedBranchInRepoInverseEdge';
|
|
42137
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42138
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42139
|
+
id: Scalars['ID']['output'];
|
|
42140
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42141
|
+
node?: Maybe<GraphStoreSimplifiedBranchInRepoInverseUnion>;
|
|
42142
|
+
};
|
|
42143
|
+
export declare type GraphStoreSimplifiedBranchInRepoInverseUnion = ExternalBranch;
|
|
42144
|
+
export declare type GraphStoreSimplifiedBranchInRepoUnion = DevOpsRepository | ExternalRepository;
|
|
41950
42145
|
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentConnection = HasPageInfo & {
|
|
41951
42146
|
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentConnection';
|
|
41952
42147
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentEdge>>>;
|
|
@@ -41975,6 +42170,34 @@ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge = {
|
|
|
41975
42170
|
};
|
|
41976
42171
|
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion = ExternalCalendarEvent;
|
|
41977
42172
|
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
42173
|
+
export declare type GraphStoreSimplifiedCommitInRepoConnection = HasPageInfo & {
|
|
42174
|
+
__typename?: 'GraphStoreSimplifiedCommitInRepoConnection';
|
|
42175
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCommitInRepoEdge>>>;
|
|
42176
|
+
pageInfo: PageInfo;
|
|
42177
|
+
};
|
|
42178
|
+
export declare type GraphStoreSimplifiedCommitInRepoEdge = {
|
|
42179
|
+
__typename?: 'GraphStoreSimplifiedCommitInRepoEdge';
|
|
42180
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42181
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42182
|
+
id: Scalars['ID']['output'];
|
|
42183
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42184
|
+
node?: Maybe<GraphStoreSimplifiedCommitInRepoUnion>;
|
|
42185
|
+
};
|
|
42186
|
+
export declare type GraphStoreSimplifiedCommitInRepoInverseConnection = HasPageInfo & {
|
|
42187
|
+
__typename?: 'GraphStoreSimplifiedCommitInRepoInverseConnection';
|
|
42188
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCommitInRepoInverseEdge>>>;
|
|
42189
|
+
pageInfo: PageInfo;
|
|
42190
|
+
};
|
|
42191
|
+
export declare type GraphStoreSimplifiedCommitInRepoInverseEdge = {
|
|
42192
|
+
__typename?: 'GraphStoreSimplifiedCommitInRepoInverseEdge';
|
|
42193
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42194
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42195
|
+
id: Scalars['ID']['output'];
|
|
42196
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42197
|
+
node?: Maybe<GraphStoreSimplifiedCommitInRepoInverseUnion>;
|
|
42198
|
+
};
|
|
42199
|
+
export declare type GraphStoreSimplifiedCommitInRepoInverseUnion = ExternalCommit;
|
|
42200
|
+
export declare type GraphStoreSimplifiedCommitInRepoUnion = DevOpsRepository | ExternalRepository;
|
|
41978
42201
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentConnection = HasPageInfo & {
|
|
41979
42202
|
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentConnection';
|
|
41980
42203
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentAssociatedDocumentEdge>>>;
|
|
@@ -43439,6 +43662,19 @@ export declare type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseEdge =
|
|
|
43439
43662
|
};
|
|
43440
43663
|
export declare type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseUnion = JiraIssue;
|
|
43441
43664
|
export declare type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueUnion = JiraIssue;
|
|
43665
|
+
export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityConnection = HasPageInfo & {
|
|
43666
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueToJiraPriorityConnection';
|
|
43667
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityEdge>>>;
|
|
43668
|
+
pageInfo: PageInfo;
|
|
43669
|
+
};
|
|
43670
|
+
export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityEdge = {
|
|
43671
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueToJiraPriorityEdge';
|
|
43672
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43673
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43674
|
+
id: Scalars['ID']['output'];
|
|
43675
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43676
|
+
node?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityUnion>;
|
|
43677
|
+
};
|
|
43442
43678
|
export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection = HasPageInfo & {
|
|
43443
43679
|
__typename?: 'GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection';
|
|
43444
43680
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseEdge>>>;
|
|
@@ -43453,6 +43689,7 @@ export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityInverseEdge = {
|
|
|
43453
43689
|
node?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseUnion>;
|
|
43454
43690
|
};
|
|
43455
43691
|
export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityInverseUnion = JiraIssue;
|
|
43692
|
+
export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityUnion = JiraPriority;
|
|
43456
43693
|
export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection = HasPageInfo & HasTotal & {
|
|
43457
43694
|
__typename?: 'GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection';
|
|
43458
43695
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalEdge>>>;
|
|
@@ -53863,6 +54100,7 @@ export declare type JiraClearableNumberFieldInput = {
|
|
|
53863
54100
|
export declare type JiraCloneIssueInput = {
|
|
53864
54101
|
assignee?: InputMaybe<JiraUserInfoInput>;
|
|
53865
54102
|
includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54103
|
+
includeChildrenWithSubtasks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53866
54104
|
includeComments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53867
54105
|
includeLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53868
54106
|
includeSubtasksOrChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -57445,12 +57683,16 @@ export declare type JiraIssueExportInput = {
|
|
|
57445
57683
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
57446
57684
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
57447
57685
|
modified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57448
|
-
pagerStart?: InputMaybe<Scalars['Int']['input']>;
|
|
57449
57686
|
};
|
|
57450
57687
|
export declare type JiraIssueExportTask = {
|
|
57451
57688
|
__typename?: 'JiraIssueExportTask';
|
|
57452
57689
|
id?: Maybe<Scalars['String']['output']>;
|
|
57453
57690
|
};
|
|
57691
|
+
export declare type JiraIssueExportTaskCancellationResult = Payload & {
|
|
57692
|
+
__typename?: 'JiraIssueExportTaskCancellationResult';
|
|
57693
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57694
|
+
success: Scalars['Boolean']['output'];
|
|
57695
|
+
};
|
|
57454
57696
|
export declare type JiraIssueExportTaskCompleted = {
|
|
57455
57697
|
__typename?: 'JiraIssueExportTaskCompleted';
|
|
57456
57698
|
downloadResultUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -59826,6 +60068,7 @@ export declare type JiraMutation = {
|
|
|
59826
60068
|
renameNavigationItem?: Maybe<JiraRenameNavigationItemPayload>;
|
|
59827
60069
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
59828
60070
|
replaceSpreadsheetViewFieldSets?: Maybe<JiraSpreadsheetViewPayload>;
|
|
60071
|
+
requestCancelIssueExportTask?: Maybe<JiraIssueExportTaskCancellationResult>;
|
|
59829
60072
|
saveBusinessBoardSettings?: Maybe<JiraWorkManagementBoardSettingsPayload>;
|
|
59830
60073
|
saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
|
|
59831
60074
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
@@ -60232,6 +60475,10 @@ export declare type JiraMutationReplaceSpreadsheetViewFieldSetsArgs = {
|
|
|
60232
60475
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
60233
60476
|
id: Scalars['ID']['input'];
|
|
60234
60477
|
};
|
|
60478
|
+
export declare type JiraMutationRequestCancelIssueExportTaskArgs = {
|
|
60479
|
+
cloudId: Scalars['ID']['input'];
|
|
60480
|
+
taskId?: InputMaybe<Scalars['String']['input']>;
|
|
60481
|
+
};
|
|
60235
60482
|
export declare type JiraMutationSaveBusinessBoardSettingsArgs = {
|
|
60236
60483
|
input: JiraWorkManagementBoardSettingsInput;
|
|
60237
60484
|
};
|
|
@@ -71149,13 +71396,6 @@ export declare enum MarketplaceConsoleAsvlLegacyVersionStatus {
|
|
|
71149
71396
|
Private = "PRIVATE",
|
|
71150
71397
|
Public = "PUBLIC"
|
|
71151
71398
|
}
|
|
71152
|
-
export declare type MarketplaceConsoleAppPrivateListingsPageInfo = {
|
|
71153
|
-
__typename?: 'MarketplaceConsoleAppPrivateListingsPageInfo';
|
|
71154
|
-
endCursor: Scalars['String']['output'];
|
|
71155
|
-
hasNextPage: Scalars['Boolean']['output'];
|
|
71156
|
-
hasPreviousPage: Scalars['Boolean']['output'];
|
|
71157
|
-
startCursor: Scalars['String']['output'];
|
|
71158
|
-
};
|
|
71159
71399
|
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
71160
71400
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
71161
71401
|
appKey: Scalars['ID']['output'];
|
|
@@ -71906,22 +72146,14 @@ export declare enum MarketplaceConsolePricingPlanStatus {
|
|
|
71906
72146
|
Live = "LIVE",
|
|
71907
72147
|
Pending = "PENDING"
|
|
71908
72148
|
}
|
|
71909
|
-
export declare type MarketplaceConsolePrivateListings = {
|
|
71910
|
-
__typename?: 'MarketplaceConsolePrivateListings';
|
|
71911
|
-
appSoftwareId: Scalars['ID']['output'];
|
|
71912
|
-
edges: Array<MarketplaceConsolePrivateListingsTokenDetails>;
|
|
71913
|
-
pageInfo: MarketplaceConsoleAppPrivateListingsPageInfo;
|
|
71914
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
71915
|
-
};
|
|
71916
72149
|
export declare type MarketplaceConsolePrivateListingsLink = {
|
|
71917
72150
|
__typename?: 'MarketplaceConsolePrivateListingsLink';
|
|
71918
|
-
|
|
72151
|
+
descriptor: Scalars['String']['output'];
|
|
71919
72152
|
versionNumber: Scalars['String']['output'];
|
|
71920
72153
|
};
|
|
71921
|
-
export declare type
|
|
71922
|
-
__typename?: '
|
|
71923
|
-
|
|
71924
|
-
node: MarketplaceConsoleTokenDetails;
|
|
72154
|
+
export declare type MarketplaceConsolePrivateListingsTokens = {
|
|
72155
|
+
__typename?: 'MarketplaceConsolePrivateListingsTokens';
|
|
72156
|
+
tokens: Array<Maybe<MarketplaceConsoleTokenDetails>>;
|
|
71925
72157
|
};
|
|
71926
72158
|
export declare type MarketplaceConsoleProduct = {
|
|
71927
72159
|
__typename?: 'MarketplaceConsoleProduct';
|
|
@@ -71994,7 +72226,7 @@ export declare type MarketplaceConsoleProductTags = {
|
|
|
71994
72226
|
};
|
|
71995
72227
|
export declare type MarketplaceConsoleQueryApi = {
|
|
71996
72228
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
71997
|
-
appPrivateListings?: Maybe<
|
|
72229
|
+
appPrivateListings?: Maybe<MarketplaceConsolePrivateListingsTokens>;
|
|
71998
72230
|
appSoftwareVersionByAppId?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
71999
72231
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
72000
72232
|
appSoftwareVersionsByAppId?: Maybe<Array<MarketplaceConsoleAppSoftwareVersion>>;
|
|
@@ -72019,9 +72251,8 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
72019
72251
|
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
72020
72252
|
};
|
|
72021
72253
|
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
72022
|
-
|
|
72254
|
+
appId: Scalars['ID']['input'];
|
|
72023
72255
|
appSoftwareId: Scalars['ID']['input'];
|
|
72024
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72025
72256
|
};
|
|
72026
72257
|
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionByAppIdArgs = {
|
|
72027
72258
|
appId: Scalars['ID']['input'];
|
|
@@ -72120,7 +72351,8 @@ export declare type MarketplaceConsoleTagsContent = {
|
|
|
72120
72351
|
export declare type MarketplaceConsoleTokenDetails = {
|
|
72121
72352
|
__typename?: 'MarketplaceConsoleTokenDetails';
|
|
72122
72353
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
72123
|
-
|
|
72354
|
+
instance?: Maybe<Scalars['String']['output']>;
|
|
72355
|
+
links: Array<Maybe<MarketplaceConsolePrivateListingsLink>>;
|
|
72124
72356
|
token: Scalars['String']['output'];
|
|
72125
72357
|
};
|
|
72126
72358
|
export declare type MarketplaceConsoleUpdateAppDetailsRequest = {
|
|
@@ -73232,7 +73464,7 @@ export declare type MercuryCreateStrategicEventInput = {
|
|
|
73232
73464
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
73233
73465
|
name: Scalars['String']['input'];
|
|
73234
73466
|
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
73235
|
-
targetDate
|
|
73467
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
73236
73468
|
};
|
|
73237
73469
|
export declare type MercuryCreateStrategicEventPayload = Payload & {
|
|
73238
73470
|
__typename?: 'MercuryCreateStrategicEventPayload';
|
|
@@ -74126,6 +74358,7 @@ export declare type MercuryQueryApi = {
|
|
|
74126
74358
|
myPreference?: Maybe<MercuryPreference>;
|
|
74127
74359
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
74128
74360
|
portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
|
|
74361
|
+
searchFocusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
74129
74362
|
team?: Maybe<MercuryTeam>;
|
|
74130
74363
|
teams?: Maybe<MercuryTeamConnection>;
|
|
74131
74364
|
workspaceContext: MercuryWorkspaceContext;
|
|
@@ -74224,6 +74457,13 @@ export declare type MercuryQueryApiMyPreferencesArgs = {
|
|
|
74224
74457
|
export declare type MercuryQueryApiPortfoliosByArisArgs = {
|
|
74225
74458
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
74226
74459
|
};
|
|
74460
|
+
export declare type MercuryQueryApiSearchFocusAreaActivityHistoryArgs = {
|
|
74461
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
74462
|
+
cloudId: Scalars['ID']['input'];
|
|
74463
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74464
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
74465
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
|
|
74466
|
+
};
|
|
74227
74467
|
export declare type MercuryQueryApiTeamArgs = {
|
|
74228
74468
|
cloudId: Scalars['ID']['input'];
|
|
74229
74469
|
id: Scalars['ID']['input'];
|
|
@@ -75065,7 +75305,9 @@ export declare type Mutation = {
|
|
|
75065
75305
|
confluenceV2_createPage?: Maybe<ConfluenceV2CreatePagePayload>;
|
|
75066
75306
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
75067
75307
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
75308
|
+
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
75068
75309
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
75310
|
+
confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
|
|
75069
75311
|
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
75070
75312
|
confluence_deleteSubCalendarEvent?: Maybe<ConfluenceDeleteSubCalendarEventPayload>;
|
|
75071
75313
|
confluence_deleteSubCalendarHiddenEvents?: Maybe<ConfluenceDeleteSubCalendarHiddenEventsPayload>;
|
|
@@ -76016,10 +76258,18 @@ export declare type MutationConfluenceV2_DeletePageArgs = {
|
|
|
76016
76258
|
export declare type MutationConfluenceV2_UpdatePageArgs = {
|
|
76017
76259
|
input: ConfluenceV2UpdatePageInput;
|
|
76018
76260
|
};
|
|
76261
|
+
export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
76262
|
+
cloudId: Scalars['ID']['input'];
|
|
76263
|
+
input: Array<InputMaybe<NestedPageInput>>;
|
|
76264
|
+
};
|
|
76019
76265
|
export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
76020
76266
|
cloudId: Scalars['ID']['input'];
|
|
76021
76267
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
76022
76268
|
};
|
|
76269
|
+
export declare type MutationConfluence_DeleteCustomRoleArgs = {
|
|
76270
|
+
cloudId: Scalars['ID']['input'];
|
|
76271
|
+
input: ConfluenceDeleteCustomRoleInput;
|
|
76272
|
+
};
|
|
76023
76273
|
export declare type MutationConfluence_DeleteSubCalendarAllFutureEventsArgs = {
|
|
76024
76274
|
cloudId: Scalars['ID']['input'];
|
|
76025
76275
|
input?: InputMaybe<ConfluenceDeleteSubCalendarAllFutureEventsInput>;
|
|
@@ -77997,7 +78247,6 @@ export declare type PageInfo = {
|
|
|
77997
78247
|
export declare type PageInput = {
|
|
77998
78248
|
body?: InputMaybe<PageBodyInput>;
|
|
77999
78249
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
78000
|
-
restrictions?: InputMaybe<PageRestrictionsInput>;
|
|
78001
78250
|
status?: InputMaybe<PageStatusInput>;
|
|
78002
78251
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
78003
78252
|
};
|
|
@@ -79702,6 +79951,7 @@ export declare type Query = {
|
|
|
79702
79951
|
appLogs?: Maybe<AppLogConnection>;
|
|
79703
79952
|
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
79704
79953
|
appStorage_sqlDatabase?: Maybe<AppStorageSqlDatabasePayload>;
|
|
79954
|
+
appStorage_sqlTableData?: Maybe<AppStorageSqlTableDataPayload>;
|
|
79705
79955
|
appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
|
|
79706
79956
|
appStoredCustomEntity?: Maybe<AppStoredCustomEntity>;
|
|
79707
79957
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
@@ -79953,6 +80203,7 @@ export declare type Query = {
|
|
|
79953
80203
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
79954
80204
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
79955
80205
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
80206
|
+
confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
|
|
79956
80207
|
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
79957
80208
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
79958
80209
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -80091,6 +80342,7 @@ export declare type Query = {
|
|
|
80091
80342
|
getSmartContentFeature?: Maybe<SmartPageFeatures>;
|
|
80092
80343
|
getSmartFeatures?: Maybe<SmartFeaturesResponse>;
|
|
80093
80344
|
getSummary?: Maybe<SmartFeaturesContentSummary>;
|
|
80345
|
+
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
80094
80346
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
80095
80347
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
80096
80348
|
graphStore?: Maybe<GraphStore>;
|
|
@@ -80476,6 +80728,9 @@ export declare type QueryAppLogsWithMetaDataArgs = {
|
|
|
80476
80728
|
export declare type QueryAppStorage_SqlDatabaseArgs = {
|
|
80477
80729
|
input: AppStorageSqlDatabaseInput;
|
|
80478
80730
|
};
|
|
80731
|
+
export declare type QueryAppStorage_SqlTableDataArgs = {
|
|
80732
|
+
input: AppStorageSqlTableDataInput;
|
|
80733
|
+
};
|
|
80479
80734
|
export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
80480
80735
|
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
80481
80736
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -80578,6 +80833,7 @@ export declare type QueryCollabContext_WorkspaceIsConnectedToWorkspaceArgs = {
|
|
|
80578
80833
|
id: Scalars['ID']['input'];
|
|
80579
80834
|
};
|
|
80580
80835
|
export declare type QueryCollabDraftArgs = {
|
|
80836
|
+
draftShareId?: InputMaybe<Scalars['String']['input']>;
|
|
80581
80837
|
format?: CollabFormat;
|
|
80582
80838
|
hydrateAdf?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80583
80839
|
id: Scalars['ID']['input'];
|
|
@@ -81555,6 +81811,10 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
81555
81811
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
81556
81812
|
cloudId: Scalars['ID']['input'];
|
|
81557
81813
|
};
|
|
81814
|
+
export declare type QueryConfluence_DeletedUserAccountIdsArgs = {
|
|
81815
|
+
cloudId: Scalars['ID']['input'];
|
|
81816
|
+
spaceKey: Scalars['String']['input'];
|
|
81817
|
+
};
|
|
81558
81818
|
export declare type QueryConfluence_EmptyArgs = {
|
|
81559
81819
|
id: Scalars['ID']['input'];
|
|
81560
81820
|
};
|
|
@@ -91966,7 +92226,7 @@ export declare type TrelloCreateCardPayload = Payload & {
|
|
|
91966
92226
|
};
|
|
91967
92227
|
export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
|
|
91968
92228
|
enabled: Scalars['Boolean']['input'];
|
|
91969
|
-
providerAccountId
|
|
92229
|
+
providerAccountId: Scalars['ID']['input'];
|
|
91970
92230
|
providerCalendarId: Scalars['ID']['input'];
|
|
91971
92231
|
type: TrelloSupportedPlannerProviders;
|
|
91972
92232
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -95085,6 +95345,7 @@ export declare type UserOnboardingState = {
|
|
|
95085
95345
|
};
|
|
95086
95346
|
export declare type UserPreferences = {
|
|
95087
95347
|
__typename?: 'UserPreferences';
|
|
95348
|
+
confluenceEditorSettings?: Maybe<ConfluenceEditorSettings>;
|
|
95088
95349
|
endOfPageRecommendationsOptInStatus: Scalars['String']['output'];
|
|
95089
95350
|
favouriteTemplateEntityIds: Array<Maybe<Scalars['String']['output']>>;
|
|
95090
95351
|
feedRecommendedUserSettingsDismissTimestamp: Scalars['String']['output'];
|
|
@@ -95134,6 +95395,7 @@ export declare type UserPreferencesSpaceViewsPersistenceArgs = {
|
|
|
95134
95395
|
export declare type UserPreferencesInput = {
|
|
95135
95396
|
addUserSpaceNotifiedChangeBoardingOfExternalCollab?: InputMaybe<Scalars['String']['input']>;
|
|
95136
95397
|
addUserSpaceNotifiedOfExternalCollab?: InputMaybe<Scalars['String']['input']>;
|
|
95398
|
+
confluenceEditorSettingsInput?: InputMaybe<ConfluenceEditorSettingsInput>;
|
|
95137
95399
|
endOfPageRecommendationsOptInStatus?: InputMaybe<Scalars['String']['input']>;
|
|
95138
95400
|
feedRecommendedUserSettingsDismissTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
95139
95401
|
feedTab?: InputMaybe<Scalars['String']['input']>;
|