@forge/cli-shared 6.6.2-next.5 → 6.6.2-next.7
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 +14 -0
- package/out/apps/app-config.d.ts +1 -1
- package/out/apps/app-config.d.ts.map +1 -1
- package/out/apps/app-config.js +3 -6
- package/out/config/config-file-section-reader.d.ts +2 -0
- package/out/config/config-file-section-reader.d.ts.map +1 -1
- package/out/config/config-file-section-reader.js +6 -0
- package/out/config/config-file.d.ts +10 -0
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +29 -1
- package/out/config/config-section.d.ts +4 -0
- package/out/config/config-section.d.ts.map +1 -1
- package/out/config/config-section.js +6 -0
- package/out/config/config.d.ts +5 -1
- package/out/config/config.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +269 -7
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +36 -18
- package/out/service/statsig-service.d.ts +2 -4
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +2 -3
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -0
- 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']>;
|
|
@@ -7782,6 +7789,7 @@ export declare type CompassScorecardCriteriaScore = {
|
|
|
7782
7789
|
dataSourceLastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
7783
7790
|
explanation?: Maybe<Scalars['String']['output']>;
|
|
7784
7791
|
maxScore: Scalars['Int']['output'];
|
|
7792
|
+
metadata?: Maybe<CompassScorecardCriterionScoreMetadata>;
|
|
7785
7793
|
score: Scalars['Int']['output'];
|
|
7786
7794
|
status?: Maybe<Scalars['String']['output']>;
|
|
7787
7795
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -7983,6 +7991,34 @@ export declare type CompassScorecardCriterionScore = {
|
|
|
7983
7991
|
explanation: Scalars['String']['output'];
|
|
7984
7992
|
scoreStatus: CompassScorecardCriterionScoreStatus;
|
|
7985
7993
|
};
|
|
7994
|
+
export declare type CompassScorecardCriterionScoreEventSimulation = {
|
|
7995
|
+
__typename?: 'CompassScorecardCriterionScoreEventSimulation';
|
|
7996
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
7997
|
+
metricValue?: Maybe<Scalars['Float']['output']>;
|
|
7998
|
+
scoreStatus?: Maybe<CompassScorecardCriterionScoreStatus>;
|
|
7999
|
+
};
|
|
8000
|
+
export declare type CompassScorecardCriterionScoreEventSimulationResult = CompassScorecardCriterionScoreEventSimulation | QueryError;
|
|
8001
|
+
export declare type CompassScorecardCriterionScoreMetadata = {
|
|
8002
|
+
__typename?: 'CompassScorecardCriterionScoreMetadata';
|
|
8003
|
+
events?: Maybe<CompassScorecardCriterionScoreMetadataEventConnection>;
|
|
8004
|
+
metricValue?: Maybe<CompassMetricValue>;
|
|
8005
|
+
};
|
|
8006
|
+
export declare type CompassScorecardCriterionScoreMetadataEventsArgs = {
|
|
8007
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
8008
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8009
|
+
};
|
|
8010
|
+
export declare type CompassScorecardCriterionScoreMetadataEventConnection = {
|
|
8011
|
+
__typename?: 'CompassScorecardCriterionScoreMetadataEventConnection';
|
|
8012
|
+
edges?: Maybe<Array<CompassScorecardCriterionScoreMetadataEventEdge>>;
|
|
8013
|
+
nodes?: Maybe<Array<CompassEvent>>;
|
|
8014
|
+
pageInfo?: Maybe<PageInfo>;
|
|
8015
|
+
};
|
|
8016
|
+
export declare type CompassScorecardCriterionScoreMetadataEventEdge = {
|
|
8017
|
+
__typename?: 'CompassScorecardCriterionScoreMetadataEventEdge';
|
|
8018
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
8019
|
+
node?: Maybe<CompassEvent>;
|
|
8020
|
+
simulation?: Maybe<CompassScorecardCriterionScoreEventSimulationResult>;
|
|
8021
|
+
};
|
|
7986
8022
|
export declare type CompassScorecardCriterionScoreStatistic = {
|
|
7987
8023
|
__typename?: 'CompassScorecardCriterionScoreStatistic';
|
|
7988
8024
|
criterionId: Scalars['ID']['output'];
|
|
@@ -9054,6 +9090,12 @@ export declare enum ConfluenceBodyRepresentation {
|
|
|
9054
9090
|
View = "VIEW",
|
|
9055
9091
|
WhiteboardDocFormat = "WHITEBOARD_DOC_FORMAT"
|
|
9056
9092
|
}
|
|
9093
|
+
export declare type ConfluenceBulkNestedConvertToLiveDocsPayload = {
|
|
9094
|
+
__typename?: 'ConfluenceBulkNestedConvertToLiveDocsPayload';
|
|
9095
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9096
|
+
success: Scalars['Boolean']['output'];
|
|
9097
|
+
taskId: Scalars['ID']['output'];
|
|
9098
|
+
};
|
|
9057
9099
|
export declare type ConfluenceCalendarJqlValidationResult = {
|
|
9058
9100
|
__typename?: 'ConfluenceCalendarJqlValidationResult';
|
|
9059
9101
|
errorMessages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -9157,6 +9199,7 @@ export declare type ConfluenceContent = {
|
|
|
9157
9199
|
contentTitleUpdate?: Maybe<ConfluenceContentTitleUpdate>;
|
|
9158
9200
|
contentType: ConfluenceSubscriptionContentType;
|
|
9159
9201
|
eventType: Scalars['String']['output'];
|
|
9202
|
+
id: Scalars['ID']['output'];
|
|
9160
9203
|
};
|
|
9161
9204
|
export declare type ConfluenceContentBody = {
|
|
9162
9205
|
__typename?: 'ConfluenceContentBody';
|
|
@@ -9218,6 +9261,7 @@ export declare type ConfluenceContentTitleEmoji = {
|
|
|
9218
9261
|
export declare type ConfluenceContentTitleUpdate = {
|
|
9219
9262
|
__typename?: 'ConfluenceContentTitleUpdate';
|
|
9220
9263
|
contentTitle: Scalars['String']['output'];
|
|
9264
|
+
id: Scalars['ID']['output'];
|
|
9221
9265
|
};
|
|
9222
9266
|
export declare enum ConfluenceContentType {
|
|
9223
9267
|
Attachment = "ATTACHMENT",
|
|
@@ -9388,6 +9432,15 @@ export declare type ConfluenceDeleteCommentPayload = {
|
|
|
9388
9432
|
errors?: Maybe<Array<MutationError>>;
|
|
9389
9433
|
success: Scalars['Boolean']['output'];
|
|
9390
9434
|
};
|
|
9435
|
+
export declare type ConfluenceDeleteCustomRoleInput = {
|
|
9436
|
+
roleId: Scalars['ID']['input'];
|
|
9437
|
+
};
|
|
9438
|
+
export declare type ConfluenceDeleteCustomRolePayload = Payload & {
|
|
9439
|
+
__typename?: 'ConfluenceDeleteCustomRolePayload';
|
|
9440
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9441
|
+
success: Scalars['Boolean']['output'];
|
|
9442
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
9443
|
+
};
|
|
9391
9444
|
export declare type ConfluenceDeleteDraftBlogPostInput = {
|
|
9392
9445
|
id: Scalars['ID']['input'];
|
|
9393
9446
|
};
|
|
@@ -9460,6 +9513,10 @@ export declare type ConfluenceDeleteSubCalendarSingleEventPayload = Payload & {
|
|
|
9460
9513
|
errors?: Maybe<Array<MutationError>>;
|
|
9461
9514
|
success: Scalars['Boolean']['output'];
|
|
9462
9515
|
};
|
|
9516
|
+
export declare type ConfluenceDeletedUser = {
|
|
9517
|
+
__typename?: 'ConfluenceDeletedUser';
|
|
9518
|
+
accountIds: Array<Maybe<Scalars['String']['output']>>;
|
|
9519
|
+
};
|
|
9463
9520
|
export declare type ConfluenceDraftContentNativeProperties = {
|
|
9464
9521
|
__typename?: 'ConfluenceDraftContentNativeProperties';
|
|
9465
9522
|
contentState?: Maybe<ConfluenceContentState>;
|
|
@@ -9473,6 +9530,13 @@ export declare type ConfluenceEditions = {
|
|
|
9473
9530
|
__typename?: 'ConfluenceEditions';
|
|
9474
9531
|
edition: ConfluenceEdition;
|
|
9475
9532
|
};
|
|
9533
|
+
export declare type ConfluenceEditorSettings = {
|
|
9534
|
+
__typename?: 'ConfluenceEditorSettings';
|
|
9535
|
+
toolbarDockingInitialPosition?: Maybe<Scalars['String']['output']>;
|
|
9536
|
+
};
|
|
9537
|
+
export declare type ConfluenceEditorSettingsInput = {
|
|
9538
|
+
toolbarDockingInitialPosition?: InputMaybe<Scalars['String']['input']>;
|
|
9539
|
+
};
|
|
9476
9540
|
export declare type ConfluenceEmbed = {
|
|
9477
9541
|
__typename?: 'ConfluenceEmbed';
|
|
9478
9542
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
@@ -17008,6 +17072,7 @@ export declare type ContentAnalyticsTotalViewsByPageItem = {
|
|
|
17008
17072
|
export declare type ContentAnalyticsUnreadComments = {
|
|
17009
17073
|
__typename?: 'ContentAnalyticsUnreadComments';
|
|
17010
17074
|
commentIds: Array<Scalars['ID']['output']>;
|
|
17075
|
+
unreadComments?: Maybe<Array<Maybe<Comment>>>;
|
|
17011
17076
|
};
|
|
17012
17077
|
export declare type ContentAnalyticsViewers = {
|
|
17013
17078
|
__typename?: 'ContentAnalyticsViewers';
|
|
@@ -17759,6 +17824,7 @@ export declare type ContentPlatformIpmComponentGsacButtonAndIpmComponentRemindMe
|
|
|
17759
17824
|
export declare type ContentPlatformIpmComponentLinkButton = {
|
|
17760
17825
|
__typename?: 'ContentPlatformIpmComponentLinkButton';
|
|
17761
17826
|
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
17827
|
+
buttonAppearance?: Maybe<Scalars['String']['output']>;
|
|
17762
17828
|
buttonText?: Maybe<Scalars['String']['output']>;
|
|
17763
17829
|
buttonUrl?: Maybe<Scalars['String']['output']>;
|
|
17764
17830
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -20104,6 +20170,17 @@ export declare type CustomerServiceEscalatableJiraProjectsConnection = {
|
|
|
20104
20170
|
edges: Array<CustomerServiceEscalatableJiraProjectEdge>;
|
|
20105
20171
|
pageInfo: PageInfo;
|
|
20106
20172
|
};
|
|
20173
|
+
export declare type CustomerServiceEscalateWorkItemInput = {
|
|
20174
|
+
escalationType?: InputMaybe<CustomerServiceEscalationType>;
|
|
20175
|
+
};
|
|
20176
|
+
export declare type CustomerServiceEscalateWorkItemPayload = Payload & {
|
|
20177
|
+
__typename?: 'CustomerServiceEscalateWorkItemPayload';
|
|
20178
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20179
|
+
success: Scalars['Boolean']['output'];
|
|
20180
|
+
};
|
|
20181
|
+
export declare enum CustomerServiceEscalationType {
|
|
20182
|
+
SupportEscalation = "SUPPORT_ESCALATION"
|
|
20183
|
+
}
|
|
20107
20184
|
export declare type CustomerServiceFilterInput = {
|
|
20108
20185
|
context: CustomerServiceContext;
|
|
20109
20186
|
};
|
|
@@ -20174,6 +20251,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
20174
20251
|
deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
20175
20252
|
deleteProduct?: Maybe<CustomerServiceProductDeletePayload>;
|
|
20176
20253
|
deleteTemplateForm?: Maybe<CustomerServiceTemplateFormDeletePayload>;
|
|
20254
|
+
escalateWorkItem?: Maybe<CustomerServiceEscalateWorkItemPayload>;
|
|
20177
20255
|
removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
|
|
20178
20256
|
updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
|
|
20179
20257
|
updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
|
|
@@ -20239,6 +20317,11 @@ export declare type CustomerServiceMutationApiDeleteProductArgs = {
|
|
|
20239
20317
|
export declare type CustomerServiceMutationApiDeleteTemplateFormArgs = {
|
|
20240
20318
|
input: CustomerServiceTemplateFormDeleteInput;
|
|
20241
20319
|
};
|
|
20320
|
+
export declare type CustomerServiceMutationApiEscalateWorkItemArgs = {
|
|
20321
|
+
input: CustomerServiceEscalateWorkItemInput;
|
|
20322
|
+
projectId: Scalars['ID']['input'];
|
|
20323
|
+
workItemId: Scalars['ID']['input'];
|
|
20324
|
+
};
|
|
20242
20325
|
export declare type CustomerServiceMutationApiRemoveEntitlementArgs = {
|
|
20243
20326
|
input: CustomerServiceEntitlementRemoveInput;
|
|
20244
20327
|
};
|
|
@@ -26440,6 +26523,19 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
26440
26523
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
26441
26524
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
26442
26525
|
};
|
|
26526
|
+
export declare type GlanceUserInsights = {
|
|
26527
|
+
__typename?: 'GlanceUserInsights';
|
|
26528
|
+
additional_data?: Maybe<Scalars['String']['output']>;
|
|
26529
|
+
created_at?: Maybe<Scalars['String']['output']>;
|
|
26530
|
+
data_freshness?: Maybe<Scalars['String']['output']>;
|
|
26531
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
26532
|
+
due_at?: Maybe<Scalars['String']['output']>;
|
|
26533
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
26534
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
26535
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
26536
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
26537
|
+
updated_at?: Maybe<Scalars['String']['output']>;
|
|
26538
|
+
};
|
|
26443
26539
|
export declare type GlobalCardCreateAdditionalFields = {
|
|
26444
26540
|
__typename?: 'GlobalCardCreateAdditionalFields';
|
|
26445
26541
|
boardIssueListKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -30174,8 +30270,12 @@ export declare type GraphStore = {
|
|
|
30174
30270
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
30175
30271
|
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
30176
30272
|
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
30273
|
+
branchInRepo?: Maybe<GraphStoreSimplifiedBranchInRepoConnection>;
|
|
30274
|
+
branchInRepoInverse?: Maybe<GraphStoreSimplifiedBranchInRepoInverseConnection>;
|
|
30177
30275
|
calendarHasLinkedDocument?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentConnection>;
|
|
30178
30276
|
calendarHasLinkedDocumentInverse?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection>;
|
|
30277
|
+
commitInRepo?: Maybe<GraphStoreSimplifiedCommitInRepoConnection>;
|
|
30278
|
+
commitInRepoInverse?: Maybe<GraphStoreSimplifiedCommitInRepoInverseConnection>;
|
|
30179
30279
|
componentAssociatedDocument?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentConnection>;
|
|
30180
30280
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
30181
30281
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
@@ -30348,6 +30448,7 @@ export declare type GraphStore = {
|
|
|
30348
30448
|
jiraEpicContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
30349
30449
|
jiraIssueBlockedByJiraIssue?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueConnection>;
|
|
30350
30450
|
jiraIssueBlockedByJiraIssueInverse?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseConnection>;
|
|
30451
|
+
jiraIssueToJiraPriority?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityConnection>;
|
|
30351
30452
|
jiraIssueToJiraPriorityInverse?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection>;
|
|
30352
30453
|
jiraProjectAssociatedAtlasGoal?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection>;
|
|
30353
30454
|
jiraProjectAssociatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseConnection>;
|
|
@@ -31056,6 +31157,20 @@ export declare type GraphStoreBoardBelongsToProjectInverseArgs = {
|
|
|
31056
31157
|
id: Scalars['ID']['input'];
|
|
31057
31158
|
sort?: InputMaybe<GraphStoreBoardBelongsToProjectSortInput>;
|
|
31058
31159
|
};
|
|
31160
|
+
export declare type GraphStoreBranchInRepoArgs = {
|
|
31161
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31162
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31163
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31164
|
+
id: Scalars['ID']['input'];
|
|
31165
|
+
sort?: InputMaybe<GraphStoreBranchInRepoSortInput>;
|
|
31166
|
+
};
|
|
31167
|
+
export declare type GraphStoreBranchInRepoInverseArgs = {
|
|
31168
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31169
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31170
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31171
|
+
id: Scalars['ID']['input'];
|
|
31172
|
+
sort?: InputMaybe<GraphStoreBranchInRepoSortInput>;
|
|
31173
|
+
};
|
|
31059
31174
|
export declare type GraphStoreCalendarHasLinkedDocumentArgs = {
|
|
31060
31175
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31061
31176
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31070,6 +31185,20 @@ export declare type GraphStoreCalendarHasLinkedDocumentInverseArgs = {
|
|
|
31070
31185
|
id: Scalars['ID']['input'];
|
|
31071
31186
|
sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
|
|
31072
31187
|
};
|
|
31188
|
+
export declare type GraphStoreCommitInRepoArgs = {
|
|
31189
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31190
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31191
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31192
|
+
id: Scalars['ID']['input'];
|
|
31193
|
+
sort?: InputMaybe<GraphStoreCommitInRepoSortInput>;
|
|
31194
|
+
};
|
|
31195
|
+
export declare type GraphStoreCommitInRepoInverseArgs = {
|
|
31196
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31197
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31198
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31199
|
+
id: Scalars['ID']['input'];
|
|
31200
|
+
sort?: InputMaybe<GraphStoreCommitInRepoSortInput>;
|
|
31201
|
+
};
|
|
31073
31202
|
export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
31074
31203
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31075
31204
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32170,6 +32299,13 @@ export declare type GraphStoreJiraIssueBlockedByJiraIssueInverseArgs = {
|
|
|
32170
32299
|
id: Scalars['ID']['input'];
|
|
32171
32300
|
sort?: InputMaybe<GraphStoreJiraIssueBlockedByJiraIssueSortInput>;
|
|
32172
32301
|
};
|
|
32302
|
+
export declare type GraphStoreJiraIssueToJiraPriorityArgs = {
|
|
32303
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32304
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32305
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32306
|
+
id: Scalars['ID']['input'];
|
|
32307
|
+
sort?: InputMaybe<GraphStoreJiraIssueToJiraPrioritySortInput>;
|
|
32308
|
+
};
|
|
32173
32309
|
export declare type GraphStoreJiraIssueToJiraPriorityInverseArgs = {
|
|
32174
32310
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32175
32311
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36039,9 +36175,15 @@ export declare type GraphStoreBoardBelongsToProjectSortInput = {
|
|
|
36039
36175
|
export declare type GraphStoreBooleanFilterInput = {
|
|
36040
36176
|
is?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36041
36177
|
};
|
|
36178
|
+
export declare type GraphStoreBranchInRepoSortInput = {
|
|
36179
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36180
|
+
};
|
|
36042
36181
|
export declare type GraphStoreCalendarHasLinkedDocumentSortInput = {
|
|
36043
36182
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36044
36183
|
};
|
|
36184
|
+
export declare type GraphStoreCommitInRepoSortInput = {
|
|
36185
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36186
|
+
};
|
|
36045
36187
|
export declare type GraphStoreComponentAssociatedDocumentSortInput = {
|
|
36046
36188
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36047
36189
|
};
|
|
@@ -36545,7 +36687,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
36545
36687
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
36546
36688
|
id: Scalars['ID']['output'];
|
|
36547
36689
|
};
|
|
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;
|
|
36690
|
+
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
36691
|
export declare type GraphStoreCypherQueryNode = {
|
|
36550
36692
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
36551
36693
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -36570,8 +36712,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
36570
36712
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
36571
36713
|
id: Scalars['ID']['output'];
|
|
36572
36714
|
};
|
|
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;
|
|
36715
|
+
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;
|
|
36716
|
+
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
36717
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
36576
36718
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
36577
36719
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -41947,6 +42089,34 @@ export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseEdge = {
|
|
|
41947
42089
|
};
|
|
41948
42090
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectInverseUnion = JiraBoard;
|
|
41949
42091
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectUnion = JiraProject;
|
|
42092
|
+
export declare type GraphStoreSimplifiedBranchInRepoConnection = HasPageInfo & {
|
|
42093
|
+
__typename?: 'GraphStoreSimplifiedBranchInRepoConnection';
|
|
42094
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBranchInRepoEdge>>>;
|
|
42095
|
+
pageInfo: PageInfo;
|
|
42096
|
+
};
|
|
42097
|
+
export declare type GraphStoreSimplifiedBranchInRepoEdge = {
|
|
42098
|
+
__typename?: 'GraphStoreSimplifiedBranchInRepoEdge';
|
|
42099
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42100
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42101
|
+
id: Scalars['ID']['output'];
|
|
42102
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42103
|
+
node?: Maybe<GraphStoreSimplifiedBranchInRepoUnion>;
|
|
42104
|
+
};
|
|
42105
|
+
export declare type GraphStoreSimplifiedBranchInRepoInverseConnection = HasPageInfo & {
|
|
42106
|
+
__typename?: 'GraphStoreSimplifiedBranchInRepoInverseConnection';
|
|
42107
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBranchInRepoInverseEdge>>>;
|
|
42108
|
+
pageInfo: PageInfo;
|
|
42109
|
+
};
|
|
42110
|
+
export declare type GraphStoreSimplifiedBranchInRepoInverseEdge = {
|
|
42111
|
+
__typename?: 'GraphStoreSimplifiedBranchInRepoInverseEdge';
|
|
42112
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42113
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42114
|
+
id: Scalars['ID']['output'];
|
|
42115
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42116
|
+
node?: Maybe<GraphStoreSimplifiedBranchInRepoInverseUnion>;
|
|
42117
|
+
};
|
|
42118
|
+
export declare type GraphStoreSimplifiedBranchInRepoInverseUnion = ExternalBranch;
|
|
42119
|
+
export declare type GraphStoreSimplifiedBranchInRepoUnion = DevOpsRepository | ExternalRepository;
|
|
41950
42120
|
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentConnection = HasPageInfo & {
|
|
41951
42121
|
__typename?: 'GraphStoreSimplifiedCalendarHasLinkedDocumentConnection';
|
|
41952
42122
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentEdge>>>;
|
|
@@ -41975,6 +42145,34 @@ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge = {
|
|
|
41975
42145
|
};
|
|
41976
42146
|
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion = ExternalCalendarEvent;
|
|
41977
42147
|
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
42148
|
+
export declare type GraphStoreSimplifiedCommitInRepoConnection = HasPageInfo & {
|
|
42149
|
+
__typename?: 'GraphStoreSimplifiedCommitInRepoConnection';
|
|
42150
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCommitInRepoEdge>>>;
|
|
42151
|
+
pageInfo: PageInfo;
|
|
42152
|
+
};
|
|
42153
|
+
export declare type GraphStoreSimplifiedCommitInRepoEdge = {
|
|
42154
|
+
__typename?: 'GraphStoreSimplifiedCommitInRepoEdge';
|
|
42155
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42156
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42157
|
+
id: Scalars['ID']['output'];
|
|
42158
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42159
|
+
node?: Maybe<GraphStoreSimplifiedCommitInRepoUnion>;
|
|
42160
|
+
};
|
|
42161
|
+
export declare type GraphStoreSimplifiedCommitInRepoInverseConnection = HasPageInfo & {
|
|
42162
|
+
__typename?: 'GraphStoreSimplifiedCommitInRepoInverseConnection';
|
|
42163
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCommitInRepoInverseEdge>>>;
|
|
42164
|
+
pageInfo: PageInfo;
|
|
42165
|
+
};
|
|
42166
|
+
export declare type GraphStoreSimplifiedCommitInRepoInverseEdge = {
|
|
42167
|
+
__typename?: 'GraphStoreSimplifiedCommitInRepoInverseEdge';
|
|
42168
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42169
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42170
|
+
id: Scalars['ID']['output'];
|
|
42171
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42172
|
+
node?: Maybe<GraphStoreSimplifiedCommitInRepoInverseUnion>;
|
|
42173
|
+
};
|
|
42174
|
+
export declare type GraphStoreSimplifiedCommitInRepoInverseUnion = ExternalCommit;
|
|
42175
|
+
export declare type GraphStoreSimplifiedCommitInRepoUnion = DevOpsRepository | ExternalRepository;
|
|
41978
42176
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentConnection = HasPageInfo & {
|
|
41979
42177
|
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentConnection';
|
|
41980
42178
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentAssociatedDocumentEdge>>>;
|
|
@@ -43439,6 +43637,19 @@ export declare type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseEdge =
|
|
|
43439
43637
|
};
|
|
43440
43638
|
export declare type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseUnion = JiraIssue;
|
|
43441
43639
|
export declare type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueUnion = JiraIssue;
|
|
43640
|
+
export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityConnection = HasPageInfo & {
|
|
43641
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueToJiraPriorityConnection';
|
|
43642
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityEdge>>>;
|
|
43643
|
+
pageInfo: PageInfo;
|
|
43644
|
+
};
|
|
43645
|
+
export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityEdge = {
|
|
43646
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueToJiraPriorityEdge';
|
|
43647
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43648
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43649
|
+
id: Scalars['ID']['output'];
|
|
43650
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43651
|
+
node?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityUnion>;
|
|
43652
|
+
};
|
|
43442
43653
|
export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection = HasPageInfo & {
|
|
43443
43654
|
__typename?: 'GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection';
|
|
43444
43655
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseEdge>>>;
|
|
@@ -43453,6 +43664,7 @@ export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityInverseEdge = {
|
|
|
43453
43664
|
node?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseUnion>;
|
|
43454
43665
|
};
|
|
43455
43666
|
export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityInverseUnion = JiraIssue;
|
|
43667
|
+
export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityUnion = JiraPriority;
|
|
43456
43668
|
export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection = HasPageInfo & HasTotal & {
|
|
43457
43669
|
__typename?: 'GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection';
|
|
43458
43670
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalEdge>>>;
|
|
@@ -53863,6 +54075,7 @@ export declare type JiraClearableNumberFieldInput = {
|
|
|
53863
54075
|
export declare type JiraCloneIssueInput = {
|
|
53864
54076
|
assignee?: InputMaybe<JiraUserInfoInput>;
|
|
53865
54077
|
includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54078
|
+
includeChildrenWithSubtasks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53866
54079
|
includeComments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53867
54080
|
includeLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53868
54081
|
includeSubtasksOrChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -57445,12 +57658,16 @@ export declare type JiraIssueExportInput = {
|
|
|
57445
57658
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
57446
57659
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
57447
57660
|
modified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57448
|
-
pagerStart?: InputMaybe<Scalars['Int']['input']>;
|
|
57449
57661
|
};
|
|
57450
57662
|
export declare type JiraIssueExportTask = {
|
|
57451
57663
|
__typename?: 'JiraIssueExportTask';
|
|
57452
57664
|
id?: Maybe<Scalars['String']['output']>;
|
|
57453
57665
|
};
|
|
57666
|
+
export declare type JiraIssueExportTaskCancellationResult = Payload & {
|
|
57667
|
+
__typename?: 'JiraIssueExportTaskCancellationResult';
|
|
57668
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57669
|
+
success: Scalars['Boolean']['output'];
|
|
57670
|
+
};
|
|
57454
57671
|
export declare type JiraIssueExportTaskCompleted = {
|
|
57455
57672
|
__typename?: 'JiraIssueExportTaskCompleted';
|
|
57456
57673
|
downloadResultUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -59826,6 +60043,7 @@ export declare type JiraMutation = {
|
|
|
59826
60043
|
renameNavigationItem?: Maybe<JiraRenameNavigationItemPayload>;
|
|
59827
60044
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
59828
60045
|
replaceSpreadsheetViewFieldSets?: Maybe<JiraSpreadsheetViewPayload>;
|
|
60046
|
+
requestCancelIssueExportTask?: Maybe<JiraIssueExportTaskCancellationResult>;
|
|
59829
60047
|
saveBusinessBoardSettings?: Maybe<JiraWorkManagementBoardSettingsPayload>;
|
|
59830
60048
|
saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
|
|
59831
60049
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
@@ -60232,6 +60450,10 @@ export declare type JiraMutationReplaceSpreadsheetViewFieldSetsArgs = {
|
|
|
60232
60450
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
60233
60451
|
id: Scalars['ID']['input'];
|
|
60234
60452
|
};
|
|
60453
|
+
export declare type JiraMutationRequestCancelIssueExportTaskArgs = {
|
|
60454
|
+
cloudId: Scalars['ID']['input'];
|
|
60455
|
+
taskId?: InputMaybe<Scalars['String']['input']>;
|
|
60456
|
+
};
|
|
60235
60457
|
export declare type JiraMutationSaveBusinessBoardSettingsArgs = {
|
|
60236
60458
|
input: JiraWorkManagementBoardSettingsInput;
|
|
60237
60459
|
};
|
|
@@ -73232,7 +73454,7 @@ export declare type MercuryCreateStrategicEventInput = {
|
|
|
73232
73454
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
73233
73455
|
name: Scalars['String']['input'];
|
|
73234
73456
|
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
73235
|
-
targetDate
|
|
73457
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
73236
73458
|
};
|
|
73237
73459
|
export declare type MercuryCreateStrategicEventPayload = Payload & {
|
|
73238
73460
|
__typename?: 'MercuryCreateStrategicEventPayload';
|
|
@@ -74126,6 +74348,7 @@ export declare type MercuryQueryApi = {
|
|
|
74126
74348
|
myPreference?: Maybe<MercuryPreference>;
|
|
74127
74349
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
74128
74350
|
portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
|
|
74351
|
+
searchFocusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
74129
74352
|
team?: Maybe<MercuryTeam>;
|
|
74130
74353
|
teams?: Maybe<MercuryTeamConnection>;
|
|
74131
74354
|
workspaceContext: MercuryWorkspaceContext;
|
|
@@ -74224,6 +74447,13 @@ export declare type MercuryQueryApiMyPreferencesArgs = {
|
|
|
74224
74447
|
export declare type MercuryQueryApiPortfoliosByArisArgs = {
|
|
74225
74448
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
74226
74449
|
};
|
|
74450
|
+
export declare type MercuryQueryApiSearchFocusAreaActivityHistoryArgs = {
|
|
74451
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
74452
|
+
cloudId: Scalars['ID']['input'];
|
|
74453
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74454
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
74455
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
|
|
74456
|
+
};
|
|
74227
74457
|
export declare type MercuryQueryApiTeamArgs = {
|
|
74228
74458
|
cloudId: Scalars['ID']['input'];
|
|
74229
74459
|
id: Scalars['ID']['input'];
|
|
@@ -75065,7 +75295,9 @@ export declare type Mutation = {
|
|
|
75065
75295
|
confluenceV2_createPage?: Maybe<ConfluenceV2CreatePagePayload>;
|
|
75066
75296
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
75067
75297
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
75298
|
+
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
75068
75299
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
75300
|
+
confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
|
|
75069
75301
|
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
75070
75302
|
confluence_deleteSubCalendarEvent?: Maybe<ConfluenceDeleteSubCalendarEventPayload>;
|
|
75071
75303
|
confluence_deleteSubCalendarHiddenEvents?: Maybe<ConfluenceDeleteSubCalendarHiddenEventsPayload>;
|
|
@@ -76016,10 +76248,18 @@ export declare type MutationConfluenceV2_DeletePageArgs = {
|
|
|
76016
76248
|
export declare type MutationConfluenceV2_UpdatePageArgs = {
|
|
76017
76249
|
input: ConfluenceV2UpdatePageInput;
|
|
76018
76250
|
};
|
|
76251
|
+
export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
76252
|
+
cloudId: Scalars['ID']['input'];
|
|
76253
|
+
input: Array<InputMaybe<NestedPageInput>>;
|
|
76254
|
+
};
|
|
76019
76255
|
export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
76020
76256
|
cloudId: Scalars['ID']['input'];
|
|
76021
76257
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
76022
76258
|
};
|
|
76259
|
+
export declare type MutationConfluence_DeleteCustomRoleArgs = {
|
|
76260
|
+
cloudId: Scalars['ID']['input'];
|
|
76261
|
+
input: ConfluenceDeleteCustomRoleInput;
|
|
76262
|
+
};
|
|
76023
76263
|
export declare type MutationConfluence_DeleteSubCalendarAllFutureEventsArgs = {
|
|
76024
76264
|
cloudId: Scalars['ID']['input'];
|
|
76025
76265
|
input?: InputMaybe<ConfluenceDeleteSubCalendarAllFutureEventsInput>;
|
|
@@ -77997,7 +78237,6 @@ export declare type PageInfo = {
|
|
|
77997
78237
|
export declare type PageInput = {
|
|
77998
78238
|
body?: InputMaybe<PageBodyInput>;
|
|
77999
78239
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
78000
|
-
restrictions?: InputMaybe<PageRestrictionsInput>;
|
|
78001
78240
|
status?: InputMaybe<PageStatusInput>;
|
|
78002
78241
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
78003
78242
|
};
|
|
@@ -79953,6 +80192,7 @@ export declare type Query = {
|
|
|
79953
80192
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
79954
80193
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
79955
80194
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
80195
|
+
confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
|
|
79956
80196
|
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
79957
80197
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
79958
80198
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -80091,6 +80331,7 @@ export declare type Query = {
|
|
|
80091
80331
|
getSmartContentFeature?: Maybe<SmartPageFeatures>;
|
|
80092
80332
|
getSmartFeatures?: Maybe<SmartFeaturesResponse>;
|
|
80093
80333
|
getSummary?: Maybe<SmartFeaturesContentSummary>;
|
|
80334
|
+
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
80094
80335
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
80095
80336
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
80096
80337
|
graphStore?: Maybe<GraphStore>;
|
|
@@ -80578,6 +80819,7 @@ export declare type QueryCollabContext_WorkspaceIsConnectedToWorkspaceArgs = {
|
|
|
80578
80819
|
id: Scalars['ID']['input'];
|
|
80579
80820
|
};
|
|
80580
80821
|
export declare type QueryCollabDraftArgs = {
|
|
80822
|
+
draftShareId?: InputMaybe<Scalars['String']['input']>;
|
|
80581
80823
|
format?: CollabFormat;
|
|
80582
80824
|
hydrateAdf?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80583
80825
|
id: Scalars['ID']['input'];
|
|
@@ -81555,6 +81797,10 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
81555
81797
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
81556
81798
|
cloudId: Scalars['ID']['input'];
|
|
81557
81799
|
};
|
|
81800
|
+
export declare type QueryConfluence_DeletedUserAccountIdsArgs = {
|
|
81801
|
+
cloudId: Scalars['ID']['input'];
|
|
81802
|
+
spaceKey: Scalars['String']['input'];
|
|
81803
|
+
};
|
|
81558
81804
|
export declare type QueryConfluence_EmptyArgs = {
|
|
81559
81805
|
id: Scalars['ID']['input'];
|
|
81560
81806
|
};
|
|
@@ -86422,14 +86668,28 @@ export declare type ShepherdAlertSnippet = {
|
|
|
86422
86668
|
__typename?: 'ShepherdAlertSnippet';
|
|
86423
86669
|
adf?: Maybe<Scalars['JSON']['output']>;
|
|
86424
86670
|
contentId: Scalars['ID']['output'];
|
|
86671
|
+
failureReason?: Maybe<ShepherdAlertSnippetRedactionFailureReason>;
|
|
86425
86672
|
field: Scalars['String']['output'];
|
|
86426
86673
|
redactable: Scalars['Boolean']['output'];
|
|
86427
86674
|
redactedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
86428
86675
|
redactionStatus: ShepherdAlertSnippetRedactionStatus;
|
|
86429
86676
|
snippetTextBlocks?: Maybe<Array<ShepherdAlertSnippetTextBlock>>;
|
|
86430
86677
|
};
|
|
86678
|
+
export declare enum ShepherdAlertSnippetRedactionFailureReason {
|
|
86679
|
+
ContainerId = "CONTAINER_ID",
|
|
86680
|
+
ContainerIdFormat = "CONTAINER_ID_FORMAT",
|
|
86681
|
+
EntityId = "ENTITY_ID",
|
|
86682
|
+
HashMismatch = "HASH_MISMATCH",
|
|
86683
|
+
InvalidAdfPointer = "INVALID_ADF_POINTER",
|
|
86684
|
+
InvalidPointer = "INVALID_POINTER",
|
|
86685
|
+
MaxFieldLength = "MAX_FIELD_LENGTH",
|
|
86686
|
+
OverlappingRequestsForContentItem = "OVERLAPPING_REQUESTS_FOR_CONTENT_ITEM",
|
|
86687
|
+
TooManyRequestsPerContentItem = "TOO_MANY_REQUESTS_PER_CONTENT_ITEM",
|
|
86688
|
+
Unknown = "UNKNOWN"
|
|
86689
|
+
}
|
|
86431
86690
|
export declare enum ShepherdAlertSnippetRedactionStatus {
|
|
86432
86691
|
Redacted = "REDACTED",
|
|
86692
|
+
RedactedHistoryScanFailed = "REDACTED_HISTORY_SCAN_FAILED",
|
|
86433
86693
|
RedactionFailed = "REDACTION_FAILED",
|
|
86434
86694
|
RedactionPending = "REDACTION_PENDING",
|
|
86435
86695
|
Unredacted = "UNREDACTED"
|
|
@@ -91952,7 +92212,7 @@ export declare type TrelloCreateCardPayload = Payload & {
|
|
|
91952
92212
|
};
|
|
91953
92213
|
export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
|
|
91954
92214
|
enabled: Scalars['Boolean']['input'];
|
|
91955
|
-
providerAccountId
|
|
92215
|
+
providerAccountId: Scalars['ID']['input'];
|
|
91956
92216
|
providerCalendarId: Scalars['ID']['input'];
|
|
91957
92217
|
type: TrelloSupportedPlannerProviders;
|
|
91958
92218
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -95071,6 +95331,7 @@ export declare type UserOnboardingState = {
|
|
|
95071
95331
|
};
|
|
95072
95332
|
export declare type UserPreferences = {
|
|
95073
95333
|
__typename?: 'UserPreferences';
|
|
95334
|
+
confluenceEditorSettings?: Maybe<ConfluenceEditorSettings>;
|
|
95074
95335
|
endOfPageRecommendationsOptInStatus: Scalars['String']['output'];
|
|
95075
95336
|
favouriteTemplateEntityIds: Array<Maybe<Scalars['String']['output']>>;
|
|
95076
95337
|
feedRecommendedUserSettingsDismissTimestamp: Scalars['String']['output'];
|
|
@@ -95120,6 +95381,7 @@ export declare type UserPreferencesSpaceViewsPersistenceArgs = {
|
|
|
95120
95381
|
export declare type UserPreferencesInput = {
|
|
95121
95382
|
addUserSpaceNotifiedChangeBoardingOfExternalCollab?: InputMaybe<Scalars['String']['input']>;
|
|
95122
95383
|
addUserSpaceNotifiedOfExternalCollab?: InputMaybe<Scalars['String']['input']>;
|
|
95384
|
+
confluenceEditorSettingsInput?: InputMaybe<ConfluenceEditorSettingsInput>;
|
|
95123
95385
|
endOfPageRecommendationsOptInStatus?: InputMaybe<Scalars['String']['input']>;
|
|
95124
95386
|
feedRecommendedUserSettingsDismissTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
95125
95387
|
feedTab?: InputMaybe<Scalars['String']['input']>;
|