@forge/cli-shared 8.19.0-next.5 → 8.19.0-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 +18 -0
- package/out/graphql/graphql-types.d.ts +687 -65
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +110 -42
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -1
- package/package.json +2 -2
|
@@ -1152,6 +1152,7 @@ export declare type AvpCreateDashboardFromTemplateInput = {
|
|
|
1152
1152
|
cloudId: Scalars['ID']['input'];
|
|
1153
1153
|
dashboard: AvpDashboardTemplateInput;
|
|
1154
1154
|
dashboardPermissionType?: InputMaybe<AvpDashboardPermissionType>;
|
|
1155
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
1155
1156
|
workspaceId: Scalars['ID']['input'];
|
|
1156
1157
|
};
|
|
1157
1158
|
export declare type AvpCreateDashboardInput = {
|
|
@@ -1435,8 +1436,10 @@ export declare type AvpGetDashboardIdBySlugPayload = {
|
|
|
1435
1436
|
};
|
|
1436
1437
|
export declare type AvpGetDashboardTemplatesInput = {
|
|
1437
1438
|
cloudId: Scalars['ID']['input'];
|
|
1439
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
1438
1440
|
productKey?: InputMaybe<Scalars['String']['input']>;
|
|
1439
|
-
|
|
1441
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
1442
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
1440
1443
|
};
|
|
1441
1444
|
export declare type AvpHotTierFilterConfig = {
|
|
1442
1445
|
__typename?: 'AVPHotTierFilterConfig';
|
|
@@ -2654,6 +2657,29 @@ export declare type AdminAppModuleEdge = {
|
|
|
2654
2657
|
cursor: Scalars['String']['output'];
|
|
2655
2658
|
node: AdminAppModule;
|
|
2656
2659
|
};
|
|
2660
|
+
export declare enum AdminAppModulesErrorCode {
|
|
2661
|
+
InternalError = "INTERNAL_ERROR",
|
|
2662
|
+
InvalidIdentifier = "INVALID_IDENTIFIER",
|
|
2663
|
+
ManifestNotFound = "MANIFEST_NOT_FOUND"
|
|
2664
|
+
}
|
|
2665
|
+
export declare type AdminAppModulesErrorDetail = {
|
|
2666
|
+
__typename?: 'AdminAppModulesErrorDetail';
|
|
2667
|
+
code: AdminAppModulesErrorCode;
|
|
2668
|
+
message: Scalars['String']['output'];
|
|
2669
|
+
};
|
|
2670
|
+
export declare type AdminAppModulesForAppsError = {
|
|
2671
|
+
__typename?: 'AdminAppModulesForAppsError';
|
|
2672
|
+
error: AdminAppModulesErrorDetail;
|
|
2673
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2674
|
+
resourceOwner?: Maybe<Scalars['String']['output']>;
|
|
2675
|
+
};
|
|
2676
|
+
export declare type AdminAppModulesForAppsResult = AdminAppModulesForAppsError | AdminAppModulesForAppsSuccess;
|
|
2677
|
+
export declare type AdminAppModulesForAppsSuccess = {
|
|
2678
|
+
__typename?: 'AdminAppModulesForAppsSuccess';
|
|
2679
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2680
|
+
modules: Array<AdminAppModule>;
|
|
2681
|
+
resourceOwner?: Maybe<Scalars['String']['output']>;
|
|
2682
|
+
};
|
|
2657
2683
|
export declare type AdminAppModulesKey = {
|
|
2658
2684
|
ari?: InputMaybe<Scalars['ID']['input']>;
|
|
2659
2685
|
resourceOwner?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6765,6 +6791,7 @@ export declare type AgentWorkspaceTeamSchedules = {
|
|
|
6765
6791
|
export declare type AgentWorkspaceTeamSchedulesConnection = {
|
|
6766
6792
|
__typename?: 'AgentWorkspaceTeamSchedulesConnection';
|
|
6767
6793
|
edges: Array<AgentWorkspaceTeamSchedulesEdge>;
|
|
6794
|
+
hasAnyProjectSchedules: Scalars['Boolean']['output'];
|
|
6768
6795
|
initialFilters?: Maybe<AgentWorkspaceAppliedFilters>;
|
|
6769
6796
|
pageInfo: AgentWorkspaceTeamsPageInfo;
|
|
6770
6797
|
summary: AgentWorkspaceTeamSchedulesSummary;
|
|
@@ -11108,6 +11135,7 @@ export declare type AssetsExternalReference = {
|
|
|
11108
11135
|
export declare type AssetsExternalReferenceInput = {
|
|
11109
11136
|
ari?: InputMaybe<Scalars['ID']['input']>;
|
|
11110
11137
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
11138
|
+
typeId: Scalars['ID']['input'];
|
|
11111
11139
|
url: Scalars['String']['input'];
|
|
11112
11140
|
};
|
|
11113
11141
|
export declare type AssetsExternalReferenceTypeAttribute = AssetsObjectTypeAttribute & {
|
|
@@ -11604,6 +11632,21 @@ export declare type AssetsVerticalAsyncTaskPayload = Payload & {
|
|
|
11604
11632
|
success: Scalars['Boolean']['output'];
|
|
11605
11633
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
11606
11634
|
};
|
|
11635
|
+
export declare type AssetsVerticalAsyncTaskStatus = {
|
|
11636
|
+
__typename?: 'AssetsVerticalAsyncTaskStatus';
|
|
11637
|
+
id: Scalars['ID']['output'];
|
|
11638
|
+
status: AssetsVerticalAsyncTaskStatusEnum;
|
|
11639
|
+
type: AssetsVerticalAsyncTaskType;
|
|
11640
|
+
};
|
|
11641
|
+
export declare enum AssetsVerticalAsyncTaskStatusEnum {
|
|
11642
|
+
Completed = "COMPLETED",
|
|
11643
|
+
Failed = "FAILED",
|
|
11644
|
+
InProgress = "IN_PROGRESS",
|
|
11645
|
+
Queued = "QUEUED"
|
|
11646
|
+
}
|
|
11647
|
+
export declare enum AssetsVerticalAsyncTaskType {
|
|
11648
|
+
BundleInstantiation = "BUNDLE_INSTANTIATION"
|
|
11649
|
+
}
|
|
11607
11650
|
export declare type AssetsVerticalAuditInfo = {
|
|
11608
11651
|
__typename?: 'AssetsVerticalAuditInfo';
|
|
11609
11652
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -11827,6 +11870,20 @@ export declare type AssetsVerticalInsightCard = {
|
|
|
11827
11870
|
summary: Scalars['String']['output'];
|
|
11828
11871
|
title: Scalars['String']['output'];
|
|
11829
11872
|
};
|
|
11873
|
+
export declare type AssetsVerticalInsightDetail = {
|
|
11874
|
+
__typename?: 'AssetsVerticalInsightDetail';
|
|
11875
|
+
category: Scalars['String']['output'];
|
|
11876
|
+
dashboardId: Scalars['ID']['output'];
|
|
11877
|
+
description: Scalars['String']['output'];
|
|
11878
|
+
insightDefinitionId: Scalars['ID']['output'];
|
|
11879
|
+
insightSummary?: Maybe<Scalars['String']['output']>;
|
|
11880
|
+
name: Scalars['String']['output'];
|
|
11881
|
+
};
|
|
11882
|
+
export declare type AssetsVerticalInsightDetailsPayload = {
|
|
11883
|
+
__typename?: 'AssetsVerticalInsightDetailsPayload';
|
|
11884
|
+
insights: Array<AssetsVerticalInsightDetail>;
|
|
11885
|
+
};
|
|
11886
|
+
export declare type AssetsVerticalInsightDetailsResult = AssetsVerticalInsightDetailsPayload | QueryError;
|
|
11830
11887
|
export declare type AssetsVerticalInsightGenerationError = {
|
|
11831
11888
|
__typename?: 'AssetsVerticalInsightGenerationError';
|
|
11832
11889
|
code: Scalars['String']['output'];
|
|
@@ -11945,6 +12002,7 @@ export declare type AssetsVerticalObjectTypes = {
|
|
|
11945
12002
|
};
|
|
11946
12003
|
export declare type AssetsVerticalObjectTypesInput = {
|
|
11947
12004
|
category: AssetsVerticalObjectTypeCategory;
|
|
12005
|
+
verticalInstantiationCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
11948
12006
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
11949
12007
|
workspaceId: Scalars['ID']['input'];
|
|
11950
12008
|
};
|
|
@@ -18816,15 +18874,6 @@ export declare type CommerceExpMutationPayload = {
|
|
|
18816
18874
|
errors?: Maybe<Array<MutationError>>;
|
|
18817
18875
|
success: Scalars['Boolean']['output'];
|
|
18818
18876
|
};
|
|
18819
|
-
export declare type CommerceExpNextCycleChange = {
|
|
18820
|
-
__typename?: 'CommerceExpNextCycleChange';
|
|
18821
|
-
changeTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
18822
|
-
chargeDetails?: Maybe<CommerceExpChargeDetails>;
|
|
18823
|
-
orderItemId?: Maybe<Scalars['ID']['output']>;
|
|
18824
|
-
relatedQuote?: Maybe<CommerceExpCcpQuote>;
|
|
18825
|
-
subscriptionScheduleAction?: Maybe<CommerceExpSubscriptionScheduleAction>;
|
|
18826
|
-
transactionAccountId?: Maybe<Scalars['ID']['output']>;
|
|
18827
|
-
};
|
|
18828
18877
|
export declare type CommerceExpNode = {
|
|
18829
18878
|
id: Scalars['ID']['output'];
|
|
18830
18879
|
};
|
|
@@ -19793,7 +19842,6 @@ export declare enum CommerceExpSaleTransitionType {
|
|
|
19793
19842
|
export declare type CommerceExpScheduledChanges = {
|
|
19794
19843
|
__typename?: 'CommerceExpScheduledChanges';
|
|
19795
19844
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
19796
|
-
nextCycleChange?: Maybe<CommerceExpNextCycleChange>;
|
|
19797
19845
|
phases?: Maybe<Array<Maybe<CommerceExpPhase>>>;
|
|
19798
19846
|
transactionAccountId?: Maybe<Scalars['ID']['output']>;
|
|
19799
19847
|
};
|
|
@@ -41927,6 +41975,8 @@ export declare type ExternalDataTable = Node & {
|
|
|
41927
41975
|
__typename?: 'ExternalDataTable';
|
|
41928
41976
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
41929
41977
|
columns?: Maybe<Array<Maybe<ExternalDataTableColumn>>>;
|
|
41978
|
+
container?: Maybe<ExternalEntity>;
|
|
41979
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
41930
41980
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
41931
41981
|
createdBy?: Maybe<ExternalUser>;
|
|
41932
41982
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -41936,6 +41986,8 @@ export declare type ExternalDataTable = Node & {
|
|
|
41936
41986
|
lastUpdatedAt?: Maybe<Scalars['String']['output']>;
|
|
41937
41987
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
41938
41988
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
41989
|
+
parent?: Maybe<ExternalEntity>;
|
|
41990
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
41939
41991
|
provider?: Maybe<ExternalProvider>;
|
|
41940
41992
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
41941
41993
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -46008,7 +46060,6 @@ export declare type GraphIntegrationSkillItem = {
|
|
|
46008
46060
|
};
|
|
46009
46061
|
export declare type GraphIntegrationSkillMetadata = {
|
|
46010
46062
|
__typename?: 'GraphIntegrationSkillMetadata';
|
|
46011
|
-
products: Array<Scalars['String']['output']>;
|
|
46012
46063
|
tags: Array<Scalars['String']['output']>;
|
|
46013
46064
|
tools: Array<GraphIntegrationSkillTool>;
|
|
46014
46065
|
version: Scalars['String']['output'];
|
|
@@ -46031,6 +46082,7 @@ export declare type GraphIntegrationSkillUiMetadata = {
|
|
|
46031
46082
|
displayName: Scalars['String']['output'];
|
|
46032
46083
|
iconKey?: Maybe<Scalars['String']['output']>;
|
|
46033
46084
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
46085
|
+
products: Array<Scalars['String']['output']>;
|
|
46034
46086
|
};
|
|
46035
46087
|
export declare enum GraphIntegrationStatus {
|
|
46036
46088
|
Disabled = "DISABLED",
|
|
@@ -49018,6 +49070,8 @@ export declare type GraphStore = {
|
|
|
49018
49070
|
dynamicRelationshipAssetToUserInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection>;
|
|
49019
49071
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
49020
49072
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
49073
|
+
externalBranchHasExternalCommit?: Maybe<GraphStoreSimplifiedExternalBranchHasExternalCommitConnection>;
|
|
49074
|
+
externalBranchHasExternalCommitInverse?: Maybe<GraphStoreSimplifiedExternalBranchHasExternalCommitInverseConnection>;
|
|
49021
49075
|
externalCalendarEventHasChildExternalCalendarEvent?: Maybe<GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection>;
|
|
49022
49076
|
externalCalendarEventHasChildExternalCalendarEventInverse?: Maybe<GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseConnection>;
|
|
49023
49077
|
externalCalendarEventLinksExternalVideo?: Maybe<GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoConnection>;
|
|
@@ -49082,6 +49136,8 @@ export declare type GraphStore = {
|
|
|
49082
49136
|
externalPositionManagesExternalOrgInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseConnection>;
|
|
49083
49137
|
externalPositionManagesExternalPosition?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection>;
|
|
49084
49138
|
externalPositionManagesExternalPositionInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseConnection>;
|
|
49139
|
+
externalRepositoryHasExternalWorkItem?: Maybe<GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemConnection>;
|
|
49140
|
+
externalRepositoryHasExternalWorkItemInverse?: Maybe<GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseConnection>;
|
|
49085
49141
|
externalTeamWorksOnJiraWorkItemWorklog?: Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogConnection>;
|
|
49086
49142
|
externalTeamWorksOnJiraWorkItemWorklogInverse?: Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseConnection>;
|
|
49087
49143
|
externalVideoHasExternalSpace?: Maybe<GraphStoreSimplifiedExternalVideoHasExternalSpaceConnection>;
|
|
@@ -51722,6 +51778,22 @@ export declare type GraphStoreEntityIsRelatedToEntityInverseArgs = {
|
|
|
51722
51778
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51723
51779
|
sort?: InputMaybe<GraphStoreEntityIsRelatedToEntitySortInput>;
|
|
51724
51780
|
};
|
|
51781
|
+
export declare type GraphStoreExternalBranchHasExternalCommitArgs = {
|
|
51782
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51783
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51784
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51785
|
+
id: Scalars['ID']['input'];
|
|
51786
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51787
|
+
sort?: InputMaybe<GraphStoreExternalBranchHasExternalCommitSortInput>;
|
|
51788
|
+
};
|
|
51789
|
+
export declare type GraphStoreExternalBranchHasExternalCommitInverseArgs = {
|
|
51790
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51791
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51792
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51793
|
+
id: Scalars['ID']['input'];
|
|
51794
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51795
|
+
sort?: InputMaybe<GraphStoreExternalBranchHasExternalCommitSortInput>;
|
|
51796
|
+
};
|
|
51725
51797
|
export declare type GraphStoreExternalCalendarEventHasChildExternalCalendarEventArgs = {
|
|
51726
51798
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
51727
51799
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52234,6 +52306,22 @@ export declare type GraphStoreExternalPositionManagesExternalPositionInverseArgs
|
|
|
52234
52306
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52235
52307
|
sort?: InputMaybe<GraphStoreExternalPositionManagesExternalPositionSortInput>;
|
|
52236
52308
|
};
|
|
52309
|
+
export declare type GraphStoreExternalRepositoryHasExternalWorkItemArgs = {
|
|
52310
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52311
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52312
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52313
|
+
id: Scalars['ID']['input'];
|
|
52314
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52315
|
+
sort?: InputMaybe<GraphStoreExternalRepositoryHasExternalWorkItemSortInput>;
|
|
52316
|
+
};
|
|
52317
|
+
export declare type GraphStoreExternalRepositoryHasExternalWorkItemInverseArgs = {
|
|
52318
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52319
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52320
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52321
|
+
id: Scalars['ID']['input'];
|
|
52322
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52323
|
+
sort?: InputMaybe<GraphStoreExternalRepositoryHasExternalWorkItemSortInput>;
|
|
52324
|
+
};
|
|
52237
52325
|
export declare type GraphStoreExternalTeamWorksOnJiraWorkItemWorklogArgs = {
|
|
52238
52326
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52239
52327
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61708,6 +61796,9 @@ export declare type GraphStoreDynamicRelationshipAssetToUserSortInput = {
|
|
|
61708
61796
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
61709
61797
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61710
61798
|
};
|
|
61799
|
+
export declare type GraphStoreExternalBranchHasExternalCommitSortInput = {
|
|
61800
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61801
|
+
};
|
|
61711
61802
|
export declare type GraphStoreExternalCalendarEventHasChildExternalCalendarEventSortInput = {
|
|
61712
61803
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61713
61804
|
};
|
|
@@ -61810,6 +61901,9 @@ export declare type GraphStoreExternalPositionManagesExternalOrgSortInput = {
|
|
|
61810
61901
|
export declare type GraphStoreExternalPositionManagesExternalPositionSortInput = {
|
|
61811
61902
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61812
61903
|
};
|
|
61904
|
+
export declare type GraphStoreExternalRepositoryHasExternalWorkItemSortInput = {
|
|
61905
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61906
|
+
};
|
|
61813
61907
|
export declare type GraphStoreExternalTeamWorksOnJiraWorkItemWorklogSortInput = {
|
|
61814
61908
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61815
61909
|
};
|
|
@@ -69517,6 +69611,34 @@ export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseEdge = {
|
|
|
69517
69611
|
};
|
|
69518
69612
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
69519
69613
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityUnion = ConfluenceBlogPost | ConfluencePage;
|
|
69614
|
+
export declare type GraphStoreSimplifiedExternalBranchHasExternalCommitConnection = HasPageInfo & {
|
|
69615
|
+
__typename?: 'GraphStoreSimplifiedExternalBranchHasExternalCommitConnection';
|
|
69616
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalBranchHasExternalCommitEdge>>>;
|
|
69617
|
+
pageInfo: PageInfo;
|
|
69618
|
+
};
|
|
69619
|
+
export declare type GraphStoreSimplifiedExternalBranchHasExternalCommitEdge = {
|
|
69620
|
+
__typename?: 'GraphStoreSimplifiedExternalBranchHasExternalCommitEdge';
|
|
69621
|
+
createdAt: Scalars['DateTime']['output'];
|
|
69622
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
69623
|
+
id: Scalars['ID']['output'];
|
|
69624
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
69625
|
+
node?: Maybe<GraphStoreSimplifiedExternalBranchHasExternalCommitUnion>;
|
|
69626
|
+
};
|
|
69627
|
+
export declare type GraphStoreSimplifiedExternalBranchHasExternalCommitInverseConnection = HasPageInfo & {
|
|
69628
|
+
__typename?: 'GraphStoreSimplifiedExternalBranchHasExternalCommitInverseConnection';
|
|
69629
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalBranchHasExternalCommitInverseEdge>>>;
|
|
69630
|
+
pageInfo: PageInfo;
|
|
69631
|
+
};
|
|
69632
|
+
export declare type GraphStoreSimplifiedExternalBranchHasExternalCommitInverseEdge = {
|
|
69633
|
+
__typename?: 'GraphStoreSimplifiedExternalBranchHasExternalCommitInverseEdge';
|
|
69634
|
+
createdAt: Scalars['DateTime']['output'];
|
|
69635
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
69636
|
+
id: Scalars['ID']['output'];
|
|
69637
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
69638
|
+
node?: Maybe<GraphStoreSimplifiedExternalBranchHasExternalCommitInverseUnion>;
|
|
69639
|
+
};
|
|
69640
|
+
export declare type GraphStoreSimplifiedExternalBranchHasExternalCommitInverseUnion = ExternalBranch;
|
|
69641
|
+
export declare type GraphStoreSimplifiedExternalBranchHasExternalCommitUnion = ExternalCommit;
|
|
69520
69642
|
export declare type GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection = HasPageInfo & {
|
|
69521
69643
|
__typename?: 'GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection';
|
|
69522
69644
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventEdge>>>;
|
|
@@ -70421,6 +70543,34 @@ export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionI
|
|
|
70421
70543
|
};
|
|
70422
70544
|
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseUnion = ExternalPosition;
|
|
70423
70545
|
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionUnion = ExternalPosition;
|
|
70546
|
+
export declare type GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemConnection = HasPageInfo & {
|
|
70547
|
+
__typename?: 'GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemConnection';
|
|
70548
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemEdge>>>;
|
|
70549
|
+
pageInfo: PageInfo;
|
|
70550
|
+
};
|
|
70551
|
+
export declare type GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemEdge = {
|
|
70552
|
+
__typename?: 'GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemEdge';
|
|
70553
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70554
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70555
|
+
id: Scalars['ID']['output'];
|
|
70556
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70557
|
+
node?: Maybe<GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemUnion>;
|
|
70558
|
+
};
|
|
70559
|
+
export declare type GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseConnection = HasPageInfo & {
|
|
70560
|
+
__typename?: 'GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseConnection';
|
|
70561
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseEdge>>>;
|
|
70562
|
+
pageInfo: PageInfo;
|
|
70563
|
+
};
|
|
70564
|
+
export declare type GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseEdge = {
|
|
70565
|
+
__typename?: 'GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseEdge';
|
|
70566
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70567
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70568
|
+
id: Scalars['ID']['output'];
|
|
70569
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70570
|
+
node?: Maybe<GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseUnion>;
|
|
70571
|
+
};
|
|
70572
|
+
export declare type GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseUnion = DevOpsRepository | ExternalRepository;
|
|
70573
|
+
export declare type GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemUnion = ExternalWorkItem;
|
|
70424
70574
|
export declare type GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogConnection = HasPageInfo & {
|
|
70425
70575
|
__typename?: 'GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogConnection';
|
|
70426
70576
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogEdge>>>;
|
|
@@ -79891,6 +80041,8 @@ export declare type GraphStoreV2 = {
|
|
|
79891
80041
|
__typename?: 'GraphStoreV2';
|
|
79892
80042
|
assetTypeHasChildAssetType?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection>;
|
|
79893
80043
|
assetTypeHasChildAssetTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseConnection>;
|
|
80044
|
+
assetsObjectTypeHasChildAssetsObjectType?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeConnection>;
|
|
80045
|
+
assetsObjectTypeHasChildAssetsObjectTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseConnection>;
|
|
79894
80046
|
atlassianGoalHasAtlassianGoalUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection>;
|
|
79895
80047
|
atlassianGoalHasAtlassianGoalUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateInverseConnection>;
|
|
79896
80048
|
atlassianGoalHasAtlassianHomeTag?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianHomeTagConnection>;
|
|
@@ -80199,6 +80351,8 @@ export declare type GraphStoreV2 = {
|
|
|
80199
80351
|
cypherQueryV2: GraphStoreV2CypherQueryV2Connection;
|
|
80200
80352
|
entityLinksEntity?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityConnection>;
|
|
80201
80353
|
entityLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityInverseConnection>;
|
|
80354
|
+
externalBranchHasExternalCommit?: Maybe<GraphStoreV2SimplifiedExternalBranchHasExternalCommitConnection>;
|
|
80355
|
+
externalBranchHasExternalCommitInverse?: Maybe<GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseConnection>;
|
|
80202
80356
|
externalCalendarEventHasChildExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection>;
|
|
80203
80357
|
externalCalendarEventHasChildExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseConnection>;
|
|
80204
80358
|
externalCalendarEventLinksExternalVideo?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoConnection>;
|
|
@@ -80297,6 +80451,8 @@ export declare type GraphStoreV2 = {
|
|
|
80297
80451
|
externalRepositoryHasExternalCommitInverse?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalCommitInverseConnection>;
|
|
80298
80452
|
externalRepositoryHasExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalPullRequestConnection>;
|
|
80299
80453
|
externalRepositoryHasExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalPullRequestInverseConnection>;
|
|
80454
|
+
externalRepositoryHasExternalWorkItem?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemConnection>;
|
|
80455
|
+
externalRepositoryHasExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseConnection>;
|
|
80300
80456
|
externalSecurityContainerHasExternalVulnerability?: Maybe<GraphStoreV2SimplifiedExternalSecurityContainerHasExternalVulnerabilityConnection>;
|
|
80301
80457
|
externalSecurityContainerHasExternalVulnerabilityInverse?: Maybe<GraphStoreV2SimplifiedExternalSecurityContainerHasExternalVulnerabilityInverseConnection>;
|
|
80302
80458
|
externalServiceLinksExternalBranch?: Maybe<GraphStoreV2SimplifiedExternalServiceLinksExternalBranchConnection>;
|
|
@@ -80689,6 +80845,20 @@ export declare type GraphStoreV2AssetTypeHasChildAssetTypeInverseArgs = {
|
|
|
80689
80845
|
id: Scalars['ID']['input'];
|
|
80690
80846
|
sort?: InputMaybe<GraphStoreV2AssetTypeHasChildAssetTypeSortInput>;
|
|
80691
80847
|
};
|
|
80848
|
+
export declare type GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeArgs = {
|
|
80849
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80850
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80851
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80852
|
+
id: Scalars['ID']['input'];
|
|
80853
|
+
sort?: InputMaybe<GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput>;
|
|
80854
|
+
};
|
|
80855
|
+
export declare type GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeInverseArgs = {
|
|
80856
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80857
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80858
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80859
|
+
id: Scalars['ID']['input'];
|
|
80860
|
+
sort?: InputMaybe<GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput>;
|
|
80861
|
+
};
|
|
80692
80862
|
export declare type GraphStoreV2AtlassianGoalHasAtlassianGoalUpdateArgs = {
|
|
80693
80863
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80694
80864
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82854,6 +83024,20 @@ export declare type GraphStoreV2EntityLinksEntityInverseArgs = {
|
|
|
82854
83024
|
id: Scalars['ID']['input'];
|
|
82855
83025
|
sort?: InputMaybe<GraphStoreV2EntityLinksEntitySortInput>;
|
|
82856
83026
|
};
|
|
83027
|
+
export declare type GraphStoreV2ExternalBranchHasExternalCommitArgs = {
|
|
83028
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83029
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83030
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83031
|
+
id: Scalars['ID']['input'];
|
|
83032
|
+
sort?: InputMaybe<GraphStoreV2ExternalBranchHasExternalCommitSortInput>;
|
|
83033
|
+
};
|
|
83034
|
+
export declare type GraphStoreV2ExternalBranchHasExternalCommitInverseArgs = {
|
|
83035
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83036
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83037
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83038
|
+
id: Scalars['ID']['input'];
|
|
83039
|
+
sort?: InputMaybe<GraphStoreV2ExternalBranchHasExternalCommitSortInput>;
|
|
83040
|
+
};
|
|
82857
83041
|
export declare type GraphStoreV2ExternalCalendarEventHasChildExternalCalendarEventArgs = {
|
|
82858
83042
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82859
83043
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -83540,6 +83724,20 @@ export declare type GraphStoreV2ExternalRepositoryHasExternalPullRequestInverseA
|
|
|
83540
83724
|
id: Scalars['ID']['input'];
|
|
83541
83725
|
sort?: InputMaybe<GraphStoreV2ExternalRepositoryHasExternalPullRequestSortInput>;
|
|
83542
83726
|
};
|
|
83727
|
+
export declare type GraphStoreV2ExternalRepositoryHasExternalWorkItemArgs = {
|
|
83728
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83729
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83730
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83731
|
+
id: Scalars['ID']['input'];
|
|
83732
|
+
sort?: InputMaybe<GraphStoreV2ExternalRepositoryHasExternalWorkItemSortInput>;
|
|
83733
|
+
};
|
|
83734
|
+
export declare type GraphStoreV2ExternalRepositoryHasExternalWorkItemInverseArgs = {
|
|
83735
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83736
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83737
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83738
|
+
id: Scalars['ID']['input'];
|
|
83739
|
+
sort?: InputMaybe<GraphStoreV2ExternalRepositoryHasExternalWorkItemSortInput>;
|
|
83740
|
+
};
|
|
83543
83741
|
export declare type GraphStoreV2ExternalSecurityContainerHasExternalVulnerabilityArgs = {
|
|
83544
83742
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
83545
83743
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -86228,6 +86426,9 @@ export declare type GraphStoreV2TopicHasRelatedEntityInverseArgs = {
|
|
|
86228
86426
|
export declare type GraphStoreV2AssetTypeHasChildAssetTypeSortInput = {
|
|
86229
86427
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86230
86428
|
};
|
|
86429
|
+
export declare type GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput = {
|
|
86430
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86431
|
+
};
|
|
86231
86432
|
export declare type GraphStoreV2AtlassianGoalHasAtlassianGoalUpdateSortInput = {
|
|
86232
86433
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86233
86434
|
};
|
|
@@ -87762,6 +87963,9 @@ export declare type GraphStoreV2DeleteLoomVideoHasConfluencePagePayload = {
|
|
|
87762
87963
|
export declare type GraphStoreV2EntityLinksEntitySortInput = {
|
|
87763
87964
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87764
87965
|
};
|
|
87966
|
+
export declare type GraphStoreV2ExternalBranchHasExternalCommitSortInput = {
|
|
87967
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87968
|
+
};
|
|
87765
87969
|
export declare type GraphStoreV2ExternalCalendarEventHasChildExternalCalendarEventSortInput = {
|
|
87766
87970
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87767
87971
|
};
|
|
@@ -87924,6 +88128,9 @@ export declare type GraphStoreV2ExternalRepositoryHasExternalCommitSortInput = {
|
|
|
87924
88128
|
export declare type GraphStoreV2ExternalRepositoryHasExternalPullRequestSortInput = {
|
|
87925
88129
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87926
88130
|
};
|
|
88131
|
+
export declare type GraphStoreV2ExternalRepositoryHasExternalWorkItemSortInput = {
|
|
88132
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
88133
|
+
};
|
|
87927
88134
|
export declare type GraphStoreV2ExternalSecurityContainerHasExternalVulnerabilitySortInput = {
|
|
87928
88135
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87929
88136
|
};
|
|
@@ -89822,6 +90029,34 @@ export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseEdge
|
|
|
89822
90029
|
};
|
|
89823
90030
|
export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseUnion = AssetsObjectType;
|
|
89824
90031
|
export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeUnion = AssetsObjectType;
|
|
90032
|
+
export declare type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeConnection = HasPageInfo & {
|
|
90033
|
+
__typename?: 'GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeConnection';
|
|
90034
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeEdge>>>;
|
|
90035
|
+
pageInfo: PageInfo;
|
|
90036
|
+
};
|
|
90037
|
+
export declare type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeEdge = {
|
|
90038
|
+
__typename?: 'GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeEdge';
|
|
90039
|
+
createdAt: Scalars['DateTime']['output'];
|
|
90040
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
90041
|
+
id: Scalars['ID']['output'];
|
|
90042
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
90043
|
+
node?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeUnion>;
|
|
90044
|
+
};
|
|
90045
|
+
export declare type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseConnection = HasPageInfo & {
|
|
90046
|
+
__typename?: 'GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseConnection';
|
|
90047
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseEdge>>>;
|
|
90048
|
+
pageInfo: PageInfo;
|
|
90049
|
+
};
|
|
90050
|
+
export declare type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseEdge = {
|
|
90051
|
+
__typename?: 'GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseEdge';
|
|
90052
|
+
createdAt: Scalars['DateTime']['output'];
|
|
90053
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
90054
|
+
id: Scalars['ID']['output'];
|
|
90055
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
90056
|
+
node?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseUnion>;
|
|
90057
|
+
};
|
|
90058
|
+
export declare type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseUnion = AssetsObjectType;
|
|
90059
|
+
export declare type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeUnion = AssetsObjectType;
|
|
89825
90060
|
export declare type GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection = HasPageInfo & {
|
|
89826
90061
|
__typename?: 'GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection';
|
|
89827
90062
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateEdge>>>;
|
|
@@ -94172,6 +94407,34 @@ export declare type GraphStoreV2SimplifiedEntityLinksEntityInverseEdge = {
|
|
|
94172
94407
|
};
|
|
94173
94408
|
export declare type GraphStoreV2SimplifiedEntityLinksEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
94174
94409
|
export declare type GraphStoreV2SimplifiedEntityLinksEntityUnion = ConfluenceBlogPost | ConfluencePage;
|
|
94410
|
+
export declare type GraphStoreV2SimplifiedExternalBranchHasExternalCommitConnection = HasPageInfo & {
|
|
94411
|
+
__typename?: 'GraphStoreV2SimplifiedExternalBranchHasExternalCommitConnection';
|
|
94412
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalBranchHasExternalCommitEdge>>>;
|
|
94413
|
+
pageInfo: PageInfo;
|
|
94414
|
+
};
|
|
94415
|
+
export declare type GraphStoreV2SimplifiedExternalBranchHasExternalCommitEdge = {
|
|
94416
|
+
__typename?: 'GraphStoreV2SimplifiedExternalBranchHasExternalCommitEdge';
|
|
94417
|
+
createdAt: Scalars['DateTime']['output'];
|
|
94418
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
94419
|
+
id: Scalars['ID']['output'];
|
|
94420
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
94421
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalBranchHasExternalCommitUnion>;
|
|
94422
|
+
};
|
|
94423
|
+
export declare type GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseConnection = HasPageInfo & {
|
|
94424
|
+
__typename?: 'GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseConnection';
|
|
94425
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseEdge>>>;
|
|
94426
|
+
pageInfo: PageInfo;
|
|
94427
|
+
};
|
|
94428
|
+
export declare type GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseEdge = {
|
|
94429
|
+
__typename?: 'GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseEdge';
|
|
94430
|
+
createdAt: Scalars['DateTime']['output'];
|
|
94431
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
94432
|
+
id: Scalars['ID']['output'];
|
|
94433
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
94434
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseUnion>;
|
|
94435
|
+
};
|
|
94436
|
+
export declare type GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseUnion = ExternalBranch;
|
|
94437
|
+
export declare type GraphStoreV2SimplifiedExternalBranchHasExternalCommitUnion = ExternalCommit;
|
|
94175
94438
|
export declare type GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection = HasPageInfo & {
|
|
94176
94439
|
__typename?: 'GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection';
|
|
94177
94440
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventEdge>>>;
|
|
@@ -95560,6 +95823,34 @@ export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalPullReque
|
|
|
95560
95823
|
};
|
|
95561
95824
|
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalPullRequestInverseUnion = DevOpsRepository | ExternalRepository;
|
|
95562
95825
|
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
95826
|
+
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemConnection = HasPageInfo & {
|
|
95827
|
+
__typename?: 'GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemConnection';
|
|
95828
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemEdge>>>;
|
|
95829
|
+
pageInfo: PageInfo;
|
|
95830
|
+
};
|
|
95831
|
+
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemEdge = {
|
|
95832
|
+
__typename?: 'GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemEdge';
|
|
95833
|
+
createdAt: Scalars['DateTime']['output'];
|
|
95834
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
95835
|
+
id: Scalars['ID']['output'];
|
|
95836
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
95837
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemUnion>;
|
|
95838
|
+
};
|
|
95839
|
+
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseConnection = HasPageInfo & {
|
|
95840
|
+
__typename?: 'GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseConnection';
|
|
95841
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseEdge>>>;
|
|
95842
|
+
pageInfo: PageInfo;
|
|
95843
|
+
};
|
|
95844
|
+
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseEdge = {
|
|
95845
|
+
__typename?: 'GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseEdge';
|
|
95846
|
+
createdAt: Scalars['DateTime']['output'];
|
|
95847
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
95848
|
+
id: Scalars['ID']['output'];
|
|
95849
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
95850
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseUnion>;
|
|
95851
|
+
};
|
|
95852
|
+
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseUnion = DevOpsRepository | ExternalRepository;
|
|
95853
|
+
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemUnion = ExternalWorkItem;
|
|
95563
95854
|
export declare type GraphStoreV2SimplifiedExternalSecurityContainerHasExternalVulnerabilityConnection = HasPageInfo & {
|
|
95564
95855
|
__typename?: 'GraphStoreV2SimplifiedExternalSecurityContainerHasExternalVulnerabilityConnection';
|
|
95565
95856
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalSecurityContainerHasExternalVulnerabilityEdge>>>;
|
|
@@ -103053,6 +103344,7 @@ export declare type HelpCenterPageQueryResultEdge = {
|
|
|
103053
103344
|
};
|
|
103054
103345
|
export declare enum HelpCenterPageType {
|
|
103055
103346
|
Custom = "CUSTOM",
|
|
103347
|
+
CustomHome = "CUSTOM_HOME",
|
|
103056
103348
|
Portal = "PORTAL"
|
|
103057
103349
|
}
|
|
103058
103350
|
export declare type HelpCenterPageUpdateInput = {
|
|
@@ -106107,6 +106399,24 @@ export declare type JiraAgenticUser = JiraActor & {
|
|
|
106107
106399
|
user?: Maybe<User>;
|
|
106108
106400
|
};
|
|
106109
106401
|
export declare type JiraAggregatedDate = JiraDatePickerField | JiraDateTimePickerField;
|
|
106402
|
+
export declare type JiraAggregatedIssueLink = {
|
|
106403
|
+
__typename?: 'JiraAggregatedIssueLink';
|
|
106404
|
+
hasAggregatedIssueLink: Scalars['Boolean']['output'];
|
|
106405
|
+
incomingLinks?: Maybe<JiraIssueLinkConnection>;
|
|
106406
|
+
outgoingLinks?: Maybe<JiraIssueLinkConnection>;
|
|
106407
|
+
};
|
|
106408
|
+
export declare type JiraAggregatedIssueLinkIncomingLinksArgs = {
|
|
106409
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
106410
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
106411
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
106412
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
106413
|
+
};
|
|
106414
|
+
export declare type JiraAggregatedIssueLinkOutgoingLinksArgs = {
|
|
106415
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
106416
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
106417
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
106418
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
106419
|
+
};
|
|
106110
106420
|
export declare type JiraAggregatedStatusField = JiraIssueField & JiraListRowField & Node & {
|
|
106111
106421
|
__typename?: 'JiraAggregatedStatusField';
|
|
106112
106422
|
aggregatedStatusCategory?: Maybe<JiraStatusCategoryProgressConnection>;
|
|
@@ -106133,6 +106443,7 @@ export declare type JiraAggregatedStatusFieldAggregatedStatusCategoryArgs = {
|
|
|
106133
106443
|
export declare type JiraAggregatedTimelineField = JiraIssueField & JiraListRowField & JiraTimelineVirtualField & Node & {
|
|
106134
106444
|
__typename?: 'JiraAggregatedTimelineField';
|
|
106135
106445
|
aggregatedEndDateViewField?: Maybe<JiraAggregatedDate>;
|
|
106446
|
+
aggregatedIssueLink?: Maybe<JiraAggregatedIssueLink>;
|
|
106136
106447
|
aggregatedSprintEndDateViewField?: Maybe<JiraAggregatedDate>;
|
|
106137
106448
|
aggregatedSprintStartDateViewField?: Maybe<JiraAggregatedDate>;
|
|
106138
106449
|
aggregatedStartDateViewField?: Maybe<JiraAggregatedDate>;
|
|
@@ -106153,6 +106464,10 @@ export declare type JiraAggregatedTimelineFieldAggregatedEndDateViewFieldArgs =
|
|
|
106153
106464
|
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
106154
106465
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
106155
106466
|
};
|
|
106467
|
+
export declare type JiraAggregatedTimelineFieldAggregatedIssueLinkArgs = {
|
|
106468
|
+
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
106469
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
106470
|
+
};
|
|
106156
106471
|
export declare type JiraAggregatedTimelineFieldAggregatedSprintEndDateViewFieldArgs = {
|
|
106157
106472
|
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
106158
106473
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -106208,6 +106523,12 @@ export declare type JiraAiEnablementIssueInput = {
|
|
|
106208
106523
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
106209
106524
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
106210
106525
|
};
|
|
106526
|
+
export declare type JiraAlertValue = {
|
|
106527
|
+
__typename?: 'JiraAlertValue';
|
|
106528
|
+
alertId?: Maybe<Scalars['String']['output']>;
|
|
106529
|
+
alertMessage?: Maybe<Scalars['String']['output']>;
|
|
106530
|
+
alertTinyId?: Maybe<Scalars['String']['output']>;
|
|
106531
|
+
};
|
|
106211
106532
|
export declare type JiraAlignAggCustomProjectType = Node & {
|
|
106212
106533
|
__typename?: 'JiraAlignAggCustomProjectType';
|
|
106213
106534
|
id: Scalars['ID']['output'];
|
|
@@ -106307,7 +106628,7 @@ export declare type JiraAllActivityFeedItem = {
|
|
|
106307
106628
|
item?: Maybe<JiraAllActivityFeedItemUnion>;
|
|
106308
106629
|
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
106309
106630
|
};
|
|
106310
|
-
export declare type JiraAllActivityFeedItemUnion = JiraApprovalItem | JiraCommentItem | JiraHiddenCommentItem | JiraHistoryItem | JiraWorklogItem;
|
|
106631
|
+
export declare type JiraAllActivityFeedItemUnion = JiraApprovalItem | JiraCommentItem | JiraHiddenCommentItem | JiraHistoryItem | JiraIncidentItem | JiraWorklogItem;
|
|
106311
106632
|
export declare enum JiraAllowedFieldFormatConfig {
|
|
106312
106633
|
NumberFieldFormatConfig = "NUMBER_FIELD_FORMAT_CONFIG"
|
|
106313
106634
|
}
|
|
@@ -110948,6 +111269,25 @@ export declare type JiraDatePickerField = JiraDateLikeField & JiraIssueField & J
|
|
|
110948
111269
|
type: Scalars['String']['output'];
|
|
110949
111270
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
110950
111271
|
};
|
|
111272
|
+
export declare type JiraDateRangeField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
111273
|
+
__typename?: 'JiraDateRangeField';
|
|
111274
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
111275
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
111276
|
+
end?: Maybe<Scalars['String']['output']>;
|
|
111277
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
111278
|
+
fieldId: Scalars['String']['output'];
|
|
111279
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
111280
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
111281
|
+
id: Scalars['ID']['output'];
|
|
111282
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
111283
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
111284
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
111285
|
+
issue?: Maybe<JiraIssue>;
|
|
111286
|
+
name: Scalars['String']['output'];
|
|
111287
|
+
start?: Maybe<Scalars['String']['output']>;
|
|
111288
|
+
type: Scalars['String']['output'];
|
|
111289
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
111290
|
+
};
|
|
110951
111291
|
export declare type JiraDateScenarioValueField = {
|
|
110952
111292
|
__typename?: 'JiraDateScenarioValueField';
|
|
110953
111293
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -111919,6 +112259,34 @@ export declare type JiraExtensionRenderingContextInput = {
|
|
|
111919
112259
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
111920
112260
|
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
111921
112261
|
};
|
|
112262
|
+
export declare type JiraExtraFieldForView = {
|
|
112263
|
+
__typename?: 'JiraExtraFieldForView';
|
|
112264
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
112265
|
+
fieldName?: Maybe<Scalars['String']['output']>;
|
|
112266
|
+
html?: Maybe<Scalars['String']['output']>;
|
|
112267
|
+
renderer?: Maybe<JiraExtraFieldForViewRenderer>;
|
|
112268
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
112269
|
+
};
|
|
112270
|
+
export declare type JiraExtraFieldForViewConnection = {
|
|
112271
|
+
__typename?: 'JiraExtraFieldForViewConnection';
|
|
112272
|
+
edges?: Maybe<Array<Maybe<JiraExtraFieldForViewEdge>>>;
|
|
112273
|
+
pageInfo: PageInfo;
|
|
112274
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
112275
|
+
};
|
|
112276
|
+
export declare type JiraExtraFieldForViewEdge = {
|
|
112277
|
+
__typename?: 'JiraExtraFieldForViewEdge';
|
|
112278
|
+
cursor: Scalars['String']['output'];
|
|
112279
|
+
node?: Maybe<JiraExtraFieldForView>;
|
|
112280
|
+
};
|
|
112281
|
+
export declare enum JiraExtraFieldForViewRenderer {
|
|
112282
|
+
Date = "DATE",
|
|
112283
|
+
Duration = "DURATION",
|
|
112284
|
+
Html = "HTML",
|
|
112285
|
+
Number = "NUMBER",
|
|
112286
|
+
Status = "STATUS",
|
|
112287
|
+
Text = "TEXT",
|
|
112288
|
+
Url = "URL"
|
|
112289
|
+
}
|
|
111922
112290
|
export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & Node & {
|
|
111923
112291
|
__typename?: 'JiraFallbackField';
|
|
111924
112292
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -113857,6 +114225,46 @@ export declare type JiraHydrateJqlInput = {
|
|
|
113857
114225
|
lastUsedJqlForIssueNavigator?: InputMaybe<JiraJqlScopeInput>;
|
|
113858
114226
|
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
113859
114227
|
};
|
|
114228
|
+
export declare type JiraIncidentActivityActor = {
|
|
114229
|
+
__typename?: 'JiraIncidentActivityActor';
|
|
114230
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
114231
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
114232
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
114233
|
+
type?: Maybe<JiraIncidentActivityActorType>;
|
|
114234
|
+
};
|
|
114235
|
+
export declare enum JiraIncidentActivityActorType {
|
|
114236
|
+
Api = "API",
|
|
114237
|
+
ConfluenceUser = "CONFLUENCE_USER",
|
|
114238
|
+
System = "SYSTEM",
|
|
114239
|
+
Unclassified = "UNCLASSIFIED",
|
|
114240
|
+
User = "USER"
|
|
114241
|
+
}
|
|
114242
|
+
export declare type JiraIncidentActivityItem = {
|
|
114243
|
+
__typename?: 'JiraIncidentActivityItem';
|
|
114244
|
+
actor?: Maybe<JiraIncidentActivityActor>;
|
|
114245
|
+
id: Scalars['ID']['output'];
|
|
114246
|
+
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
114247
|
+
type?: Maybe<JiraIncidentActivityType>;
|
|
114248
|
+
value?: Maybe<JiraIncidentActivityValueUnion>;
|
|
114249
|
+
};
|
|
114250
|
+
export declare enum JiraIncidentActivityType {
|
|
114251
|
+
AlertAssociated = "ALERT_ASSOCIATED",
|
|
114252
|
+
AlertDisassociated = "ALERT_DISASSOCIATED",
|
|
114253
|
+
IncidentStakeholderAdded = "INCIDENT_STAKEHOLDER_ADDED",
|
|
114254
|
+
IncidentStakeholderRemoved = "INCIDENT_STAKEHOLDER_REMOVED",
|
|
114255
|
+
ResponderAlertAcked = "RESPONDER_ALERT_ACKED",
|
|
114256
|
+
ResponderAlertAssigned = "RESPONDER_ALERT_ASSIGNED",
|
|
114257
|
+
ResponderAlertClosed = "RESPONDER_ALERT_CLOSED",
|
|
114258
|
+
ResponderAlertPriorityChanged = "RESPONDER_ALERT_PRIORITY_CHANGED",
|
|
114259
|
+
ResponderAlertUnacked = "RESPONDER_ALERT_UNACKED",
|
|
114260
|
+
StakeholdersUpdated = "STAKEHOLDERS_UPDATED",
|
|
114261
|
+
Unknown = "UNKNOWN"
|
|
114262
|
+
}
|
|
114263
|
+
export declare type JiraIncidentActivityValueUnion = JiraAlertValue | JiraIncidentStakeholderActionValue | JiraResponderAlertAssignedValue | JiraResponderAlertPriorityChangedValue | JiraStakeholderUpdatedValue;
|
|
114264
|
+
export declare type JiraIncidentItem = {
|
|
114265
|
+
__typename?: 'JiraIncidentItem';
|
|
114266
|
+
incidentItem?: Maybe<JiraIncidentActivityItem>;
|
|
114267
|
+
};
|
|
113860
114268
|
export declare enum JiraIncidentPriority {
|
|
113861
114269
|
P1 = "P1",
|
|
113862
114270
|
P2 = "P2",
|
|
@@ -113864,6 +114272,10 @@ export declare enum JiraIncidentPriority {
|
|
|
113864
114272
|
P4 = "P4",
|
|
113865
114273
|
P5 = "P5"
|
|
113866
114274
|
}
|
|
114275
|
+
export declare type JiraIncidentStakeholderActionValue = {
|
|
114276
|
+
__typename?: 'JiraIncidentStakeholderActionValue';
|
|
114277
|
+
stakeholder?: Maybe<JiraIncidentActivityActor>;
|
|
114278
|
+
};
|
|
113867
114279
|
export declare type JiraInitializeProjectNotificationPreferencesInput = {
|
|
113868
114280
|
projectId: Scalars['ID']['input'];
|
|
113869
114281
|
};
|
|
@@ -113989,6 +114401,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
113989
114401
|
errorRetrievingData?: Maybe<Scalars['Boolean']['output']>;
|
|
113990
114402
|
estimationForView?: Maybe<JiraEstimationValue>;
|
|
113991
114403
|
exceededChildIssueLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
114404
|
+
extraFieldsForView?: Maybe<JiraExtraFieldForViewConnection>;
|
|
113992
114405
|
fieldByIdOrAlias?: Maybe<JiraIssueField>;
|
|
113993
114406
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
113994
114407
|
fieldSetsById?: Maybe<JiraIssueFieldSetConnection>;
|
|
@@ -114234,6 +114647,11 @@ export declare type JiraIssueEndDateViewFieldArgs = {
|
|
|
114234
114647
|
export declare type JiraIssueEstimationForViewArgs = {
|
|
114235
114648
|
view: JiraViewQueryInput;
|
|
114236
114649
|
};
|
|
114650
|
+
export declare type JiraIssueExtraFieldsForViewArgs = {
|
|
114651
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
114652
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
114653
|
+
view: JiraViewQueryInput;
|
|
114654
|
+
};
|
|
114237
114655
|
export declare type JiraIssueFieldByIdOrAliasArgs = {
|
|
114238
114656
|
idOrAlias?: InputMaybe<Scalars['String']['input']>;
|
|
114239
114657
|
ignoreMissingField?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -121414,6 +121832,9 @@ export declare type JiraProjectAvailableIssueTypesArgs = {
|
|
|
121414
121832
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
121415
121833
|
input?: InputMaybe<JiraProjectAvailableIssueTypesInput>;
|
|
121416
121834
|
};
|
|
121835
|
+
export declare type JiraProjectBackgroundArgs = {
|
|
121836
|
+
harmonisedTheme?: InputMaybe<Scalars['Boolean']['input']>;
|
|
121837
|
+
};
|
|
121417
121838
|
export declare type JiraProjectBoardsArgs = {
|
|
121418
121839
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
121419
121840
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123331,6 +123752,7 @@ export declare type JiraQueryJiraWorkItemJourneysArgs = {
|
|
|
123331
123752
|
};
|
|
123332
123753
|
export declare type JiraQueryJira_RecommendedAgentsArgs = {
|
|
123333
123754
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
123755
|
+
assignableOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123334
123756
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
123335
123757
|
cloudId: Scalars['ID']['input'];
|
|
123336
123758
|
contextAri: Scalars['ID']['input'];
|
|
@@ -124932,6 +125354,21 @@ export declare enum JiraResourcesSortDirection {
|
|
|
124932
125354
|
export declare type JiraResourcesTotalCountInput = {
|
|
124933
125355
|
integration?: InputMaybe<Array<InputMaybe<JiraResourceIntegration>>>;
|
|
124934
125356
|
};
|
|
125357
|
+
export declare type JiraResponderAlertAssignedValue = {
|
|
125358
|
+
__typename?: 'JiraResponderAlertAssignedValue';
|
|
125359
|
+
alertId?: Maybe<Scalars['String']['output']>;
|
|
125360
|
+
alertMessage?: Maybe<Scalars['String']['output']>;
|
|
125361
|
+
alertTinyId?: Maybe<Scalars['String']['output']>;
|
|
125362
|
+
assignee?: Maybe<JiraIncidentActivityActor>;
|
|
125363
|
+
};
|
|
125364
|
+
export declare type JiraResponderAlertPriorityChangedValue = {
|
|
125365
|
+
__typename?: 'JiraResponderAlertPriorityChangedValue';
|
|
125366
|
+
alertId?: Maybe<Scalars['String']['output']>;
|
|
125367
|
+
alertMessage?: Maybe<Scalars['String']['output']>;
|
|
125368
|
+
alertTinyId?: Maybe<Scalars['String']['output']>;
|
|
125369
|
+
newPriority?: Maybe<Scalars['String']['output']>;
|
|
125370
|
+
oldPriority?: Maybe<Scalars['String']['output']>;
|
|
125371
|
+
};
|
|
124935
125372
|
export declare type JiraRestoreCustomFieldsInput = {
|
|
124936
125373
|
fieldIds: Array<Scalars['String']['input']>;
|
|
124937
125374
|
};
|
|
@@ -127622,6 +128059,7 @@ export declare type JiraSprint = Node & {
|
|
|
127622
128059
|
__typename?: 'JiraSprint';
|
|
127623
128060
|
boardId?: Maybe<Scalars['Long']['output']>;
|
|
127624
128061
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
128062
|
+
canUpdateSprint?: Maybe<Scalars['Boolean']['output']>;
|
|
127625
128063
|
completionDate?: Maybe<Scalars['DateTime']['output']>;
|
|
127626
128064
|
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
127627
128065
|
goal?: Maybe<Scalars['String']['output']>;
|
|
@@ -127745,6 +128183,11 @@ export declare type JiraSprintUpdateInput = {
|
|
|
127745
128183
|
sprintId: Scalars['ID']['input'];
|
|
127746
128184
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
127747
128185
|
};
|
|
128186
|
+
export declare type JiraStakeholderUpdatedValue = {
|
|
128187
|
+
__typename?: 'JiraStakeholderUpdatedValue';
|
|
128188
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
128189
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
128190
|
+
};
|
|
127748
128191
|
export declare type JiraStartAiAgentSessionInput = {
|
|
127749
128192
|
agentId: Scalars['String']['input'];
|
|
127750
128193
|
clientMutationId: Scalars['String']['input'];
|
|
@@ -129667,6 +130110,7 @@ export declare type JiraUserPreferences = {
|
|
|
129667
130110
|
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
129668
130111
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
129669
130112
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
130113
|
+
issueViewActivityFeedSortField?: Maybe<JiraIssueViewActivityFeedSortField>;
|
|
129670
130114
|
issueViewActivityFeedSortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
129671
130115
|
issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
|
|
129672
130116
|
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
@@ -132703,6 +133147,14 @@ export declare type JsmConversationEdge = {
|
|
|
132703
133147
|
cursor: Scalars['String']['output'];
|
|
132704
133148
|
node?: Maybe<JsmConversation>;
|
|
132705
133149
|
};
|
|
133150
|
+
export declare type JsmConversationMediaConfiguration = {
|
|
133151
|
+
__typename?: 'JsmConversationMediaConfiguration';
|
|
133152
|
+
baseUrl?: Maybe<Scalars['String']['output']>;
|
|
133153
|
+
collectionName?: Maybe<Scalars['String']['output']>;
|
|
133154
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
133155
|
+
tokenAsapIssuer?: Maybe<Scalars['String']['output']>;
|
|
133156
|
+
};
|
|
133157
|
+
export declare type JsmConversationMediaConfigurationResult = JsmConversationMediaConfiguration | QueryError;
|
|
132706
133158
|
export declare type JsmConversationMessage = {
|
|
132707
133159
|
__typename?: 'JsmConversationMessage';
|
|
132708
133160
|
author?: Maybe<Scalars['ID']['output']>;
|
|
@@ -134666,6 +135118,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
134666
135118
|
popularSearchQuery?: Maybe<KnowledgeDiscoveryPopularSearchQueryResult>;
|
|
134667
135119
|
querySuggestions?: Maybe<KnowledgeDiscoveryQuerySuggestionsResult>;
|
|
134668
135120
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
135121
|
+
reportingLines?: Maybe<KnowledgeDiscoveryReportingLinesResult>;
|
|
134669
135122
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
134670
135123
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
134671
135124
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
@@ -134766,6 +135219,11 @@ export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
|
134766
135219
|
relatedEntityType: KnowledgeDiscoveryEntityType;
|
|
134767
135220
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
134768
135221
|
};
|
|
135222
|
+
export declare type KnowledgeDiscoveryQueryApiReportingLinesArgs = {
|
|
135223
|
+
aaid: Scalars['String']['input'];
|
|
135224
|
+
orgId: Scalars['String']['input'];
|
|
135225
|
+
siteId: Scalars['String']['input'];
|
|
135226
|
+
};
|
|
134769
135227
|
export declare type KnowledgeDiscoveryQueryApiSearchRelatedEntitiesArgs = {
|
|
134770
135228
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
134771
135229
|
query: Scalars['String']['input'];
|
|
@@ -134873,6 +135331,7 @@ export declare type KnowledgeDiscoveryReportingLines = {
|
|
|
134873
135331
|
reports: Array<KnowledgeDiscoveryReportingLinesUser>;
|
|
134874
135332
|
user?: Maybe<KnowledgeDiscoveryReportingLinesUser>;
|
|
134875
135333
|
};
|
|
135334
|
+
export declare type KnowledgeDiscoveryReportingLinesResult = KnowledgeDiscoveryReportingLines | QueryError;
|
|
134876
135335
|
export declare type KnowledgeDiscoveryReportingLinesUser = {
|
|
134877
135336
|
__typename?: 'KnowledgeDiscoveryReportingLinesUser';
|
|
134878
135337
|
accountIdentifier?: Maybe<Scalars['String']['output']>;
|
|
@@ -135039,6 +135498,13 @@ export declare type KnowledgeDiscoveryUsers = {
|
|
|
135039
135498
|
__typename?: 'KnowledgeDiscoveryUsers';
|
|
135040
135499
|
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUser>>>;
|
|
135041
135500
|
};
|
|
135501
|
+
export declare type KnowledgeDiscoveryVisualIntent = KnowledgeDiscoveryIntent & {
|
|
135502
|
+
__typename?: 'KnowledgeDiscoveryVisualIntent';
|
|
135503
|
+
classification: KnowledgeDiscoveryQueryClassification;
|
|
135504
|
+
detectionType: KnowledgeDiscoveryDetectionType;
|
|
135505
|
+
subTypes: Array<KnowledgeDiscoveryQuerySubType>;
|
|
135506
|
+
transformedQuery: Scalars['String']['output'];
|
|
135507
|
+
};
|
|
135042
135508
|
export declare type KnowledgeDiscoveryZeroQueries = {
|
|
135043
135509
|
__typename?: 'KnowledgeDiscoveryZeroQueries';
|
|
135044
135510
|
zeroQueries?: Maybe<Array<KnowledgeDiscoveryZeroQuery>>;
|
|
@@ -136423,6 +136889,11 @@ export declare type MarketplaceConsoleAppSoftwares = {
|
|
|
136423
136889
|
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
136424
136890
|
appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
|
|
136425
136891
|
};
|
|
136892
|
+
export declare enum MarketplaceConsoleAppType {
|
|
136893
|
+
CrossContext = "CROSS_CONTEXT",
|
|
136894
|
+
Embedded = "EMBEDDED",
|
|
136895
|
+
Global = "GLOBAL"
|
|
136896
|
+
}
|
|
136426
136897
|
export declare type MarketplaceConsoleAppVendorLinksInput = {
|
|
136427
136898
|
appStatusPage?: InputMaybe<Scalars['String']['input']>;
|
|
136428
136899
|
forums?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -136958,13 +137429,16 @@ export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
|
136958
137429
|
additionalCompatibilities?: Maybe<Array<Scalars['String']['output']>>;
|
|
136959
137430
|
appAccess?: Maybe<Array<Scalars['String']['output']>>;
|
|
136960
137431
|
appId: Scalars['ID']['output'];
|
|
137432
|
+
appType?: Maybe<MarketplaceConsoleAppType>;
|
|
136961
137433
|
envId: Scalars['ID']['output'];
|
|
137434
|
+
installationTarget?: Maybe<MarketplaceConsoleInstallationTarget>;
|
|
136962
137435
|
scopes: Array<Scalars['String']['output']>;
|
|
136963
137436
|
versionId: Scalars['String']['output'];
|
|
136964
137437
|
};
|
|
136965
137438
|
export declare type MarketplaceConsoleForgeFrameworkAttributesInput = {
|
|
136966
137439
|
appId: Scalars['String']['input'];
|
|
136967
137440
|
envId: Scalars['String']['input'];
|
|
137441
|
+
installationTarget?: InputMaybe<MarketplaceConsoleInstallationTarget>;
|
|
136968
137442
|
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
136969
137443
|
versionId: Scalars['String']['input'];
|
|
136970
137444
|
};
|
|
@@ -137018,6 +137492,10 @@ export declare type MarketplaceConsoleImageMediaAsset = {
|
|
|
137018
137492
|
uri: Scalars['String']['output'];
|
|
137019
137493
|
width: Scalars['Int']['output'];
|
|
137020
137494
|
};
|
|
137495
|
+
export declare enum MarketplaceConsoleInstallationTarget {
|
|
137496
|
+
Site = "SITE",
|
|
137497
|
+
Unit = "UNIT"
|
|
137498
|
+
}
|
|
137021
137499
|
export declare type MarketplaceConsoleJsonPatchOperation = {
|
|
137022
137500
|
op: MarketplaceConsoleJsonPatchOperationType;
|
|
137023
137501
|
path: Scalars['String']['input'];
|
|
@@ -138360,6 +138838,7 @@ export declare type MarketplaceStoreAppReview = {
|
|
|
138360
138838
|
review?: Maybe<Scalars['String']['output']>;
|
|
138361
138839
|
stars?: Maybe<Scalars['Int']['output']>;
|
|
138362
138840
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
138841
|
+
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
138363
138842
|
};
|
|
138364
138843
|
export declare type MarketplaceStoreAppSoftwareVersionListingLinks = {
|
|
138365
138844
|
__typename?: 'MarketplaceStoreAppSoftwareVersionListingLinks';
|
|
@@ -138595,6 +139074,7 @@ export declare type MarketplaceStoreCurrentUserReviewResponse = {
|
|
|
138595
139074
|
stars?: Maybe<Scalars['Int']['output']>;
|
|
138596
139075
|
status?: Maybe<Scalars['String']['output']>;
|
|
138597
139076
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
139077
|
+
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
138598
139078
|
userHasComplianceConsent?: Maybe<Scalars['Boolean']['output']>;
|
|
138599
139079
|
};
|
|
138600
139080
|
export declare type MarketplaceStoreDataAccessAndStorage = {
|
|
@@ -139538,6 +140018,7 @@ export declare type MarketplaceStoreReviewByIdResponse = {
|
|
|
139538
140018
|
review?: Maybe<Scalars['String']['output']>;
|
|
139539
140019
|
stars: Scalars['Int']['output'];
|
|
139540
140020
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
140021
|
+
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
139541
140022
|
};
|
|
139542
140023
|
export declare type MarketplaceStoreReviewFilterInput = {
|
|
139543
140024
|
hosting?: InputMaybe<MarketplaceStoreAtlassianProductHostingType>;
|
|
@@ -139554,6 +140035,7 @@ export declare type MarketplaceStoreReviewNode = MarketplaceStoreAppReview & {
|
|
|
139554
140035
|
review?: Maybe<Scalars['String']['output']>;
|
|
139555
140036
|
stars?: Maybe<Scalars['Int']['output']>;
|
|
139556
140037
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
140038
|
+
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
139557
140039
|
};
|
|
139558
140040
|
export declare type MarketplaceStoreReviewNodeWithProductListing = MarketplaceStoreAppReview & {
|
|
139559
140041
|
__typename?: 'MarketplaceStoreReviewNodeWithProductListing';
|
|
@@ -139567,6 +140049,7 @@ export declare type MarketplaceStoreReviewNodeWithProductListing = MarketplaceSt
|
|
|
139567
140049
|
review?: Maybe<Scalars['String']['output']>;
|
|
139568
140050
|
stars?: Maybe<Scalars['Int']['output']>;
|
|
139569
140051
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
140052
|
+
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
139570
140053
|
};
|
|
139571
140054
|
export declare type MarketplaceStoreReviewsByUserResponse = {
|
|
139572
140055
|
__typename?: 'MarketplaceStoreReviewsByUserResponse';
|
|
@@ -141165,6 +141648,7 @@ export declare enum MercuryEntityType {
|
|
|
141165
141648
|
FocusAreaStatusUpdate = "FOCUS_AREA_STATUS_UPDATE",
|
|
141166
141649
|
Program = "PROGRAM",
|
|
141167
141650
|
ProgramStatusUpdate = "PROGRAM_STATUS_UPDATE",
|
|
141651
|
+
Risk = "RISK",
|
|
141168
141652
|
StrategicEvent = "STRATEGIC_EVENT"
|
|
141169
141653
|
}
|
|
141170
141654
|
export declare type MercuryEstimateBenefitAtCompletion = {
|
|
@@ -142928,6 +143412,7 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
142928
143412
|
export declare type MercuryNormalizedWork = HasMercuryProjectFields & {
|
|
142929
143413
|
__typename?: 'MercuryNormalizedWork';
|
|
142930
143414
|
connectedFocusArea: Scalars['ID']['output'];
|
|
143415
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
142931
143416
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
142932
143417
|
externalOwner?: Maybe<MercuryExternalOwner>;
|
|
142933
143418
|
id: Scalars['ID']['output'];
|
|
@@ -147388,14 +147873,12 @@ export declare type MutationAssetsVertical_UpdateVerticalInstantiationCategoryAr
|
|
|
147388
147873
|
input: AssetsVerticalUpdateVerticalInstantiationCategoryInput;
|
|
147389
147874
|
};
|
|
147390
147875
|
export declare type MutationAssets_AddExternalReferenceTypeAttributeValueArgs = {
|
|
147391
|
-
attributeId: Scalars['ID']['input'];
|
|
147392
|
-
cloudId: Scalars['ID']['input'];
|
|
147393
147876
|
externalReferences: Array<AssetsExternalReferenceInput>;
|
|
147877
|
+
objectId: Scalars['ID']['input'];
|
|
147394
147878
|
};
|
|
147395
147879
|
export declare type MutationAssets_DeleteExternalReferenceTypeAttributeValueArgs = {
|
|
147396
|
-
attributeId: Scalars['ID']['input'];
|
|
147397
|
-
cloudId: Scalars['ID']['input'];
|
|
147398
147880
|
ids: Array<Scalars['ID']['input']>;
|
|
147881
|
+
objectId: Scalars['ID']['input'];
|
|
147399
147882
|
};
|
|
147400
147883
|
export declare type MutationAssets_UpdateObjectAttributeValueArgs = {
|
|
147401
147884
|
cloudId: Scalars['ID']['input'];
|
|
@@ -153363,40 +153846,45 @@ export declare enum PostOfficeMessageCreationType {
|
|
|
153363
153846
|
Explicit = "explicit",
|
|
153364
153847
|
Implicit = "implicit"
|
|
153365
153848
|
}
|
|
153366
|
-
export declare type PostOfficeMessageData = PostOfficeMessageJiraBoardCatchUpRovoNudgeData | PostOfficeMessageLiveAndPersistedTestMessageData | PostOfficeMessageLiveNudgeDemoMessageData |
|
|
153849
|
+
export declare type PostOfficeMessageData = PostOfficeMessageJiraBoardCatchUpRovoNudgeData | PostOfficeMessageLiveAndPersistedTestMessageData | PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData | PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData | PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData | PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData;
|
|
153367
153850
|
export declare type PostOfficeMessageJiraBoardCatchUpRovoNudgeData = {
|
|
153368
153851
|
__typename?: 'PostOfficeMessageJiraBoardCatchUpRovoNudgeData';
|
|
153369
|
-
description
|
|
153370
|
-
title
|
|
153852
|
+
description: Scalars['String']['output'];
|
|
153853
|
+
title: Scalars['String']['output'];
|
|
153371
153854
|
};
|
|
153372
153855
|
export declare type PostOfficeMessageLiveAndPersistedTestMessageData = {
|
|
153373
153856
|
__typename?: 'PostOfficeMessageLiveAndPersistedTestMessageData';
|
|
153374
|
-
description
|
|
153375
|
-
title
|
|
153857
|
+
description: Scalars['String']['output'];
|
|
153858
|
+
title: Scalars['String']['output'];
|
|
153859
|
+
};
|
|
153860
|
+
export declare type PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData = {
|
|
153861
|
+
__typename?: 'PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData';
|
|
153862
|
+
description: Scalars['String']['output'];
|
|
153863
|
+
title: Scalars['String']['output'];
|
|
153376
153864
|
};
|
|
153377
153865
|
export declare type PostOfficeMessageLiveNudgeDemoMessageData = {
|
|
153378
153866
|
__typename?: 'PostOfficeMessageLiveNudgeDemoMessageData';
|
|
153379
|
-
description
|
|
153380
|
-
title
|
|
153867
|
+
description: Scalars['String']['output'];
|
|
153868
|
+
title: Scalars['String']['output'];
|
|
153381
153869
|
};
|
|
153382
153870
|
export declare type PostOfficeMessagePayload = {
|
|
153383
153871
|
__typename?: 'PostOfficeMessagePayload';
|
|
153384
153872
|
messages: Array<PostOfficeMessage>;
|
|
153385
153873
|
};
|
|
153386
|
-
export declare type
|
|
153387
|
-
__typename?: '
|
|
153388
|
-
|
|
153874
|
+
export declare type PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData = {
|
|
153875
|
+
__typename?: 'PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData';
|
|
153876
|
+
description: Scalars['String']['output'];
|
|
153877
|
+
title: Scalars['String']['output'];
|
|
153389
153878
|
};
|
|
153390
|
-
export declare type
|
|
153391
|
-
__typename?: '
|
|
153392
|
-
|
|
153879
|
+
export declare type PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData = {
|
|
153880
|
+
__typename?: 'PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData';
|
|
153881
|
+
description: Scalars['String']['output'];
|
|
153882
|
+
title: Scalars['String']['output'];
|
|
153393
153883
|
};
|
|
153394
|
-
export declare type
|
|
153395
|
-
__typename?: '
|
|
153396
|
-
|
|
153397
|
-
|
|
153398
|
-
tenantId: Scalars['String']['output'];
|
|
153399
|
-
variation: Scalars['String']['output'];
|
|
153884
|
+
export declare type PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData = {
|
|
153885
|
+
__typename?: 'PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData';
|
|
153886
|
+
description: Scalars['String']['output'];
|
|
153887
|
+
title: Scalars['String']['output'];
|
|
153400
153888
|
};
|
|
153401
153889
|
export declare type PostOfficeRecommendationSession = {
|
|
153402
153890
|
__typename?: 'PostOfficeRecommendationSession';
|
|
@@ -153805,6 +154293,7 @@ export declare type Query = {
|
|
|
153805
154293
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
153806
154294
|
admin_aiPolicies?: Maybe<AdminAiPolicyConnection>;
|
|
153807
154295
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
154296
|
+
admin_appModulesForApps?: Maybe<Array<AdminAppModulesForAppsResult>>;
|
|
153808
154297
|
admin_auditLogEventActions?: Maybe<AdminAuditLogGroupEventActionConnection>;
|
|
153809
154298
|
admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
|
|
153810
154299
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
@@ -154020,6 +154509,7 @@ export declare type Query = {
|
|
|
154020
154509
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
154021
154510
|
assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
|
|
154022
154511
|
assetsVertical_depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
|
|
154512
|
+
assetsVertical_insightDetails?: Maybe<AssetsVerticalInsightDetailsResult>;
|
|
154023
154513
|
assetsVertical_insights?: Maybe<AssetsVerticalInsightsResult>;
|
|
154024
154514
|
assetsVertical_instantiatedBundle?: Maybe<AssetsVerticalBundleInstantiationResult>;
|
|
154025
154515
|
assetsVertical_itemMapping?: Maybe<AssetsVerticalItemMappingResult>;
|
|
@@ -154629,6 +155119,7 @@ export declare type Query = {
|
|
|
154629
155119
|
jsmChannels_taskAgents: JsmChannelsTaskAgentsResult;
|
|
154630
155120
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
154631
155121
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
155122
|
+
jsmConversation_mediaConfiguration?: Maybe<JsmConversationMediaConfigurationResult>;
|
|
154632
155123
|
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
154633
155124
|
jsmConversation_settings?: Maybe<JsmConversationSettings>;
|
|
154634
155125
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
@@ -154818,6 +155309,7 @@ export declare type Query = {
|
|
|
154818
155309
|
radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
|
|
154819
155310
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
154820
155311
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
155312
|
+
radar_focusAreaRecommendation?: Maybe<RadarFocusAreaRecommendationConnection>;
|
|
154821
155313
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
154822
155314
|
radar_lastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
154823
155315
|
radar_notificationSettings?: Maybe<Array<RadarNotification>>;
|
|
@@ -155076,6 +155568,10 @@ export declare type QueryAdmin_AppModulesArgs = {
|
|
|
155076
155568
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
155077
155569
|
moduleKeys: Array<Scalars['String']['input']>;
|
|
155078
155570
|
};
|
|
155571
|
+
export declare type QueryAdmin_AppModulesForAppsArgs = {
|
|
155572
|
+
appIdentifiers: Array<AdminAppModulesKey>;
|
|
155573
|
+
moduleKeys: Array<Scalars['String']['input']>;
|
|
155574
|
+
};
|
|
155079
155575
|
export declare type QueryAdmin_AuditLogEventActionsArgs = {
|
|
155080
155576
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
155081
155577
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -156238,6 +156734,9 @@ export declare type QueryAssetsVertical_DepreciationRulesArgs = {
|
|
|
156238
156734
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
156239
156735
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
156240
156736
|
};
|
|
156737
|
+
export declare type QueryAssetsVertical_InsightDetailsArgs = {
|
|
156738
|
+
cloudId: Scalars['ID']['input'];
|
|
156739
|
+
};
|
|
156241
156740
|
export declare type QueryAssetsVertical_InsightsArgs = {
|
|
156242
156741
|
cloudId: Scalars['ID']['input'];
|
|
156243
156742
|
};
|
|
@@ -158810,6 +159309,9 @@ export declare type QueryJsmConversation_ConversationsArgs = {
|
|
|
158810
159309
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158811
159310
|
projectKey: Scalars['String']['input'];
|
|
158812
159311
|
};
|
|
159312
|
+
export declare type QueryJsmConversation_MediaConfigurationArgs = {
|
|
159313
|
+
conversationAri: Scalars['ID']['input'];
|
|
159314
|
+
};
|
|
158813
159315
|
export declare type QueryJsmConversation_MessagesArgs = {
|
|
158814
159316
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
158815
159317
|
cloudId: Scalars['ID']['input'];
|
|
@@ -159445,6 +159947,14 @@ export declare type QueryRadar_FieldValuesArgs = {
|
|
|
159445
159947
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
159446
159948
|
uniqueFieldId: Scalars['ID']['input'];
|
|
159447
159949
|
};
|
|
159950
|
+
export declare type QueryRadar_FocusAreaRecommendationArgs = {
|
|
159951
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
159952
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
159953
|
+
cloudId: Scalars['ID']['input'];
|
|
159954
|
+
filter: RadarFocusAreaRecommendationFilter;
|
|
159955
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159956
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
159957
|
+
};
|
|
159448
159958
|
export declare type QueryRadar_GroupMetricsArgs = {
|
|
159449
159959
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159450
159960
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -160698,6 +161208,26 @@ export declare type RadarFocusAreaMappingsInput = {
|
|
|
160698
161208
|
focusAreaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
160699
161209
|
positionAri: Scalars['ID']['input'];
|
|
160700
161210
|
};
|
|
161211
|
+
export declare type RadarFocusAreaRecommendation = {
|
|
161212
|
+
__typename?: 'RadarFocusAreaRecommendation';
|
|
161213
|
+
positionAri?: Maybe<RadarAriFieldValue>;
|
|
161214
|
+
recommendedFocusAreaAri?: Maybe<RadarAriFieldValue>;
|
|
161215
|
+
};
|
|
161216
|
+
export declare type RadarFocusAreaRecommendationConnection = RadarConnection & {
|
|
161217
|
+
__typename?: 'RadarFocusAreaRecommendationConnection';
|
|
161218
|
+
edges?: Maybe<Array<RadarFocusAreaRecommendationEdge>>;
|
|
161219
|
+
nodes?: Maybe<Array<RadarFocusAreaRecommendation>>;
|
|
161220
|
+
pageInfo: PageInfo;
|
|
161221
|
+
totalCount: Scalars['Int']['output'];
|
|
161222
|
+
};
|
|
161223
|
+
export declare type RadarFocusAreaRecommendationEdge = RadarEdge & {
|
|
161224
|
+
__typename?: 'RadarFocusAreaRecommendationEdge';
|
|
161225
|
+
cursor: Scalars['String']['output'];
|
|
161226
|
+
node: RadarFocusAreaRecommendation;
|
|
161227
|
+
};
|
|
161228
|
+
export declare type RadarFocusAreaRecommendationFilter = {
|
|
161229
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
161230
|
+
};
|
|
160701
161231
|
export declare type RadarFunction = {
|
|
160702
161232
|
__typename?: 'RadarFunction';
|
|
160703
161233
|
argType: RadarFieldType;
|
|
@@ -162739,6 +163269,7 @@ export declare enum Scope {
|
|
|
162739
163269
|
ReadDeveloperSpace = "READ_DEVELOPER_SPACE",
|
|
162740
163270
|
ReadDevInfoJira = "READ_DEV_INFO_JIRA",
|
|
162741
163271
|
ReadFeedbackFeedback = "READ_FEEDBACK_FEEDBACK",
|
|
163272
|
+
ReadHomeTwgCli = "READ_HOME_TWG_CLI",
|
|
162742
163273
|
ReadInsightJpd = "READ_INSIGHT_JPD",
|
|
162743
163274
|
ReadJiraUser = "READ_JIRA_USER",
|
|
162744
163275
|
ReadJiraWork = "READ_JIRA_WORK",
|
|
@@ -162762,7 +163293,9 @@ export declare enum Scope {
|
|
|
162762
163293
|
ReadOrganization = "READ_ORGANIZATION",
|
|
162763
163294
|
ReadOrganizationProperty = "READ_ORGANIZATION_PROPERTY",
|
|
162764
163295
|
ReadOrganizationUser = "READ_ORGANIZATION_USER",
|
|
163296
|
+
ReadProjectJpd = "READ_PROJECT_JPD",
|
|
162765
163297
|
ReadQueue = "READ_QUEUE",
|
|
163298
|
+
ReadRadarTwgCli = "READ_RADAR_TWG_CLI",
|
|
162766
163299
|
ReadRequest = "READ_REQUEST",
|
|
162767
163300
|
ReadRequesttype = "READ_REQUESTTYPE",
|
|
162768
163301
|
ReadRequesttypeProperty = "READ_REQUESTTYPE_PROPERTY",
|
|
@@ -162876,6 +163409,7 @@ export declare enum Scope {
|
|
|
162876
163409
|
WriteDesign = "WRITE_DESIGN",
|
|
162877
163410
|
WriteDeveloperSpace = "WRITE_DEVELOPER_SPACE",
|
|
162878
163411
|
WriteFeedbackFeedback = "WRITE_FEEDBACK_FEEDBACK",
|
|
163412
|
+
WriteHomeTwgCli = "WRITE_HOME_TWG_CLI",
|
|
162879
163413
|
WriteInsightJpd = "WRITE_INSIGHT_JPD",
|
|
162880
163414
|
WriteJiraWork = "WRITE_JIRA_WORK",
|
|
162881
163415
|
WriteJsmTwgCli = "WRITE_JSM_TWG_CLI",
|
|
@@ -162896,6 +163430,7 @@ export declare enum Scope {
|
|
|
162896
163430
|
WriteOrganization = "WRITE_ORGANIZATION",
|
|
162897
163431
|
WriteOrganizationProperty = "WRITE_ORGANIZATION_PROPERTY",
|
|
162898
163432
|
WriteOrganizationUser = "WRITE_ORGANIZATION_USER",
|
|
163433
|
+
WriteRadarTwgCli = "WRITE_RADAR_TWG_CLI",
|
|
162899
163434
|
WriteRequest = "WRITE_REQUEST",
|
|
162900
163435
|
WriteRequesttype = "WRITE_REQUESTTYPE",
|
|
162901
163436
|
WriteRequesttypeProperty = "WRITE_REQUESTTYPE_PROPERTY",
|
|
@@ -163063,7 +163598,10 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
|
|
|
163063
163598
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163064
163599
|
id: Scalars['ID']['output'];
|
|
163065
163600
|
isVerified: Scalars['Boolean']['output'];
|
|
163601
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163066
163602
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
163603
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
163604
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163067
163605
|
lastModified?: Maybe<Scalars['String']['output']>;
|
|
163068
163606
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163069
163607
|
latestUserAction?: Maybe<Scalars['String']['output']>;
|
|
@@ -163109,7 +163647,10 @@ export declare type SearchConfluenceSpace = SearchL2FeatureProvider & SearchResu
|
|
|
163109
163647
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163110
163648
|
id: Scalars['ID']['output'];
|
|
163111
163649
|
key?: Maybe<Scalars['String']['output']>;
|
|
163650
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163112
163651
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
163652
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
163653
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163113
163654
|
lastModified?: Maybe<Scalars['String']['output']>;
|
|
163114
163655
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163115
163656
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -163305,7 +163846,10 @@ export declare type SearchL2Feature = {
|
|
|
163305
163846
|
value?: Maybe<Scalars['Float']['output']>;
|
|
163306
163847
|
};
|
|
163307
163848
|
export declare type SearchL2FeatureProvider = {
|
|
163849
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163308
163850
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
163851
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
163852
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163309
163853
|
};
|
|
163310
163854
|
export declare type SearchLayerDefinition = {
|
|
163311
163855
|
abTestId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -163664,7 +164208,10 @@ export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & Searc
|
|
|
163664
164208
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
163665
164209
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163666
164210
|
id: Scalars['ID']['output'];
|
|
164211
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163667
164212
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164213
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164214
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163668
164215
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163669
164216
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
163670
164217
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -163682,7 +164229,10 @@ export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & S
|
|
|
163682
164229
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
163683
164230
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163684
164231
|
id: Scalars['ID']['output'];
|
|
164232
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163685
164233
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164234
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164235
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163686
164236
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163687
164237
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
163688
164238
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -163700,7 +164250,10 @@ export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & Se
|
|
|
163700
164250
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
163701
164251
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163702
164252
|
id: Scalars['ID']['output'];
|
|
164253
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163703
164254
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164255
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164256
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163704
164257
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163705
164258
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
163706
164259
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -163732,7 +164285,10 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
163732
164285
|
id: Scalars['ID']['output'];
|
|
163733
164286
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
163734
164287
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
164288
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163735
164289
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164290
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164291
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163736
164292
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163737
164293
|
linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
|
|
163738
164294
|
linkedEntitiesType?: Maybe<SearchLinkedEntitiesType>;
|
|
@@ -163934,7 +164490,10 @@ export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & Se
|
|
|
163934
164490
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
163935
164491
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163936
164492
|
id: Scalars['ID']['output'];
|
|
164493
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163937
164494
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164495
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164496
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163938
164497
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163939
164498
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
163940
164499
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -163952,7 +164511,10 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
163952
164511
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163953
164512
|
id: Scalars['ID']['output'];
|
|
163954
164513
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
164514
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163955
164515
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164516
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164517
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163956
164518
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163957
164519
|
linkedEntities?: Maybe<Array<SearchResultSlackMessage>>;
|
|
163958
164520
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -184432,7 +184994,8 @@ export declare type SpcsStartFullSiteScanPayload = {
|
|
|
184432
184994
|
export declare enum SpcsUpdateScanStatusAction {
|
|
184433
184995
|
Cancelled = "CANCELLED",
|
|
184434
184996
|
Done = "DONE",
|
|
184435
|
-
Failed = "FAILED"
|
|
184997
|
+
Failed = "FAILED",
|
|
184998
|
+
InProgress = "IN_PROGRESS"
|
|
184436
184999
|
}
|
|
184437
185000
|
export declare type SpcsUpdateScanStatusInput = {
|
|
184438
185001
|
status: SpcsUpdateScanStatusAction;
|
|
@@ -187090,6 +187653,7 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
187090
187653
|
};
|
|
187091
187654
|
export declare type Subscription = {
|
|
187092
187655
|
__typename?: 'Subscription';
|
|
187656
|
+
assetsVertical_onAsyncTaskUpdated?: Maybe<AssetsVerticalAsyncTaskStatus>;
|
|
187093
187657
|
bitbucket?: Maybe<BitbucketSubscription>;
|
|
187094
187658
|
blockService_onBlockUpdated?: Maybe<BlockServiceBlockPayload>;
|
|
187095
187659
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
@@ -187131,6 +187695,10 @@ export declare type Subscription = {
|
|
|
187131
187695
|
testing?: Maybe<TestingSubscription>;
|
|
187132
187696
|
trello: TrelloSubscriptionApi;
|
|
187133
187697
|
};
|
|
187698
|
+
export declare type SubscriptionAssetsVertical_OnAsyncTaskUpdatedArgs = {
|
|
187699
|
+
cloudId: Scalars['ID']['input'];
|
|
187700
|
+
taskId: Scalars['ID']['input'];
|
|
187701
|
+
};
|
|
187134
187702
|
export declare type SubscriptionBlockService_OnBlockUpdatedArgs = {
|
|
187135
187703
|
resourceId: Scalars['ID']['input'];
|
|
187136
187704
|
};
|
|
@@ -189198,6 +189766,12 @@ export declare type TownsquareAddTagsByNamePayload = {
|
|
|
189198
189766
|
success: Scalars['Boolean']['output'];
|
|
189199
189767
|
tags?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
189200
189768
|
};
|
|
189769
|
+
export declare type TownsquareAppAccessMutationErrorExtension = MutationErrorExtension & {
|
|
189770
|
+
__typename?: 'TownsquareAppAccessMutationErrorExtension';
|
|
189771
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
189772
|
+
failedAccountIds: Array<Scalars['String']['output']>;
|
|
189773
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
189774
|
+
};
|
|
189201
189775
|
export declare type TownsquareArchiveGoalInput = {
|
|
189202
189776
|
id: Scalars['String']['input'];
|
|
189203
189777
|
};
|
|
@@ -193070,15 +193644,6 @@ export declare type TrelloApplicationUsage = {
|
|
|
193070
193644
|
boards?: Maybe<Scalars['Int']['output']>;
|
|
193071
193645
|
members?: Maybe<Scalars['Int']['output']>;
|
|
193072
193646
|
};
|
|
193073
|
-
export declare type TrelloArchiveCardInput = {
|
|
193074
|
-
cardId: Scalars['ID']['input'];
|
|
193075
|
-
};
|
|
193076
|
-
export declare type TrelloArchiveCardPayload = Payload & {
|
|
193077
|
-
__typename?: 'TrelloArchiveCardPayload';
|
|
193078
|
-
card?: Maybe<TrelloBaseCard>;
|
|
193079
|
-
errors?: Maybe<Array<MutationError>>;
|
|
193080
|
-
success: Scalars['Boolean']['output'];
|
|
193081
|
-
};
|
|
193082
193647
|
export declare type TrelloAssignCardToPlannerCalendarEventFailure = {
|
|
193083
193648
|
__typename?: 'TrelloAssignCardToPlannerCalendarEventFailure';
|
|
193084
193649
|
cardId: Scalars['ID']['output'];
|
|
@@ -194271,6 +194836,15 @@ export declare type TrelloCloseBoardPayload = Payload & {
|
|
|
194271
194836
|
errors?: Maybe<Array<MutationError>>;
|
|
194272
194837
|
success: Scalars['Boolean']['output'];
|
|
194273
194838
|
};
|
|
194839
|
+
export declare type TrelloCloseCardInput = {
|
|
194840
|
+
cardId: Scalars['ID']['input'];
|
|
194841
|
+
};
|
|
194842
|
+
export declare type TrelloCloseCardPayload = Payload & {
|
|
194843
|
+
__typename?: 'TrelloCloseCardPayload';
|
|
194844
|
+
card?: Maybe<TrelloBaseCard>;
|
|
194845
|
+
errors?: Maybe<Array<MutationError>>;
|
|
194846
|
+
success: Scalars['Boolean']['output'];
|
|
194847
|
+
};
|
|
194274
194848
|
export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
194275
194849
|
__typename?: 'TrelloCommentCardAction';
|
|
194276
194850
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -195600,6 +196174,16 @@ export declare type TrelloMoveCardBoardEntities = {
|
|
|
195600
196174
|
card?: Maybe<TrelloActionCardEntity>;
|
|
195601
196175
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
195602
196176
|
};
|
|
196177
|
+
export declare type TrelloMoveCardInput = {
|
|
196178
|
+
cardId: Scalars['ID']['input'];
|
|
196179
|
+
listId: Scalars['ID']['input'];
|
|
196180
|
+
};
|
|
196181
|
+
export declare type TrelloMoveCardPayload = Payload & {
|
|
196182
|
+
__typename?: 'TrelloMoveCardPayload';
|
|
196183
|
+
card?: Maybe<TrelloBaseCard>;
|
|
196184
|
+
errors?: Maybe<Array<MutationError>>;
|
|
196185
|
+
success: Scalars['Boolean']['output'];
|
|
196186
|
+
};
|
|
195603
196187
|
export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
195604
196188
|
__typename?: 'TrelloMoveCardToBoardAction';
|
|
195605
196189
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -195662,11 +196246,11 @@ export declare type TrelloMutationApi = {
|
|
|
195662
196246
|
addLabelsToCard?: Maybe<TrelloAddLabelsToCardPayload>;
|
|
195663
196247
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
195664
196248
|
addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
|
|
195665
|
-
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
195666
196249
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
195667
196250
|
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
195668
196251
|
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
195669
196252
|
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
196253
|
+
closeCard?: Maybe<TrelloCloseCardPayload>;
|
|
195670
196254
|
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
195671
196255
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
195672
196256
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
@@ -195699,6 +196283,7 @@ export declare type TrelloMutationApi = {
|
|
|
195699
196283
|
markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
|
|
195700
196284
|
markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
|
|
195701
196285
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
196286
|
+
moveCard?: Maybe<TrelloMoveCardPayload>;
|
|
195702
196287
|
movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
|
|
195703
196288
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
195704
196289
|
proactiveSmartScheduleCards?: Maybe<TrelloProactiveSmartScheduleCardsPayload>;
|
|
@@ -195711,6 +196296,7 @@ export declare type TrelloMutationApi = {
|
|
|
195711
196296
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
195712
196297
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
195713
196298
|
reopenBoard?: Maybe<TrelloReopenBoardPayload>;
|
|
196299
|
+
reopenCard?: Maybe<TrelloReopenCardPayload>;
|
|
195714
196300
|
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
195715
196301
|
retryAiOnBoard?: Maybe<TrelloRetryAiOnBoardPayload>;
|
|
195716
196302
|
rotateOAuth2ClientSecret?: Maybe<TrelloRotateOAuth2ClientSecretPayload>;
|
|
@@ -195723,7 +196309,6 @@ export declare type TrelloMutationApi = {
|
|
|
195723
196309
|
sortListCards?: Maybe<TrelloSortListCardsPayload>;
|
|
195724
196310
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
195725
196311
|
toggleLabsFeatureForMember?: Maybe<TrelloToggleLabsFeatureForMemberPayload>;
|
|
195726
|
-
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
195727
196312
|
undoAction?: Maybe<TrelloUndoActionPayload>;
|
|
195728
196313
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
195729
196314
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
@@ -195744,6 +196329,7 @@ export declare type TrelloMutationApi = {
|
|
|
195744
196329
|
updateBoardVotingPermissions?: Maybe<TrelloUpdateBoardVotingPermissionsPayload>;
|
|
195745
196330
|
updateCardCover?: Maybe<TrelloUpdateCardCoverPayload>;
|
|
195746
196331
|
updateCardDateViewedByCreator?: Maybe<TrelloUpdateCardDateViewedByCreatorPayload>;
|
|
196332
|
+
updateCardDescription?: Maybe<TrelloUpdateCardDescriptionPayload>;
|
|
195747
196333
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
195748
196334
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
195749
196335
|
updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
|
|
@@ -195776,9 +196362,6 @@ export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
|
195776
196362
|
export declare type TrelloMutationApiAddWorkspaceTagToBoardArgs = {
|
|
195777
196363
|
input: TrelloAddWorkspaceTagToBoardInput;
|
|
195778
196364
|
};
|
|
195779
|
-
export declare type TrelloMutationApiArchiveCardArgs = {
|
|
195780
|
-
input: TrelloArchiveCardInput;
|
|
195781
|
-
};
|
|
195782
196365
|
export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
|
|
195783
196366
|
input: TrelloAssignCardToPlannerCalendarEventInput;
|
|
195784
196367
|
};
|
|
@@ -195791,6 +196374,9 @@ export declare type TrelloMutationApiBulkDeleteListArgs = {
|
|
|
195791
196374
|
export declare type TrelloMutationApiCloseBoardArgs = {
|
|
195792
196375
|
input: TrelloCloseBoardInput;
|
|
195793
196376
|
};
|
|
196377
|
+
export declare type TrelloMutationApiCloseCardArgs = {
|
|
196378
|
+
input: TrelloCloseCardInput;
|
|
196379
|
+
};
|
|
195794
196380
|
export declare type TrelloMutationApiConvertBoardToTemplateArgs = {
|
|
195795
196381
|
input: TrelloConvertBoardToTemplateInput;
|
|
195796
196382
|
};
|
|
@@ -195887,6 +196473,9 @@ export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
|
|
|
195887
196473
|
export declare type TrelloMutationApiMergeCardsArgs = {
|
|
195888
196474
|
input: TrelloMergeCardsInput;
|
|
195889
196475
|
};
|
|
196476
|
+
export declare type TrelloMutationApiMoveCardArgs = {
|
|
196477
|
+
input: TrelloMoveCardInput;
|
|
196478
|
+
};
|
|
195890
196479
|
export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
|
|
195891
196480
|
input: TrelloMovePlannerCalendarEventInput;
|
|
195892
196481
|
};
|
|
@@ -195920,6 +196509,9 @@ export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
|
|
|
195920
196509
|
export declare type TrelloMutationApiReopenBoardArgs = {
|
|
195921
196510
|
input: TrelloReopenBoardInput;
|
|
195922
196511
|
};
|
|
196512
|
+
export declare type TrelloMutationApiReopenCardArgs = {
|
|
196513
|
+
input: TrelloReopenCardInput;
|
|
196514
|
+
};
|
|
195923
196515
|
export declare type TrelloMutationApiResetCardCoverArgs = {
|
|
195924
196516
|
input: TrelloResetCardCoverInput;
|
|
195925
196517
|
};
|
|
@@ -195953,9 +196545,6 @@ export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
|
195953
196545
|
export declare type TrelloMutationApiToggleLabsFeatureForMemberArgs = {
|
|
195954
196546
|
input: TrelloToggleLabsFeatureForMemberInput;
|
|
195955
196547
|
};
|
|
195956
|
-
export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
195957
|
-
input: TrelloUnarchiveCardInput;
|
|
195958
|
-
};
|
|
195959
196548
|
export declare type TrelloMutationApiUndoActionArgs = {
|
|
195960
196549
|
input: TrelloUndoActionInput;
|
|
195961
196550
|
};
|
|
@@ -196016,6 +196605,9 @@ export declare type TrelloMutationApiUpdateCardCoverArgs = {
|
|
|
196016
196605
|
export declare type TrelloMutationApiUpdateCardDateViewedByCreatorArgs = {
|
|
196017
196606
|
input: TrelloUpdateCardDateViewedByCreatorInput;
|
|
196018
196607
|
};
|
|
196608
|
+
export declare type TrelloMutationApiUpdateCardDescriptionArgs = {
|
|
196609
|
+
input: TrelloUpdateCardDescriptionInput;
|
|
196610
|
+
};
|
|
196019
196611
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
196020
196612
|
input: TrelloUpdateCardNameInput;
|
|
196021
196613
|
};
|
|
@@ -196136,6 +196728,7 @@ export declare type TrelloPlanner = {
|
|
|
196136
196728
|
primaryCalendar?: Maybe<TrelloPlannerPrimaryCalendar>;
|
|
196137
196729
|
primaryCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
196138
196730
|
proposedEvents?: Maybe<TrelloPlannerProposedEventConnection>;
|
|
196731
|
+
soloBoards?: Maybe<TrelloPlannerSoloBoardsConnection>;
|
|
196139
196732
|
workspace?: Maybe<TrelloWorkspace>;
|
|
196140
196733
|
};
|
|
196141
196734
|
export declare type TrelloPlannerAccountsArgs = {
|
|
@@ -196151,6 +196744,10 @@ export declare type TrelloPlannerProposedEventsArgs = {
|
|
|
196151
196744
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
196152
196745
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196153
196746
|
};
|
|
196747
|
+
export declare type TrelloPlannerSoloBoardsArgs = {
|
|
196748
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
196749
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196750
|
+
};
|
|
196154
196751
|
export declare type TrelloPlannerBaseCardUpdated = {
|
|
196155
196752
|
id: Scalars['ID']['output'];
|
|
196156
196753
|
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
@@ -196692,6 +197289,21 @@ export declare type TrelloPlannerProviderCalendarUpdated = {
|
|
|
196692
197289
|
title?: Maybe<Scalars['String']['output']>;
|
|
196693
197290
|
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
196694
197291
|
};
|
|
197292
|
+
export declare type TrelloPlannerSoloBoard = {
|
|
197293
|
+
__typename?: 'TrelloPlannerSoloBoard';
|
|
197294
|
+
id: Scalars['ID']['output'];
|
|
197295
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
197296
|
+
};
|
|
197297
|
+
export declare type TrelloPlannerSoloBoardEdge = {
|
|
197298
|
+
__typename?: 'TrelloPlannerSoloBoardEdge';
|
|
197299
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
197300
|
+
node?: Maybe<TrelloPlannerSoloBoard>;
|
|
197301
|
+
};
|
|
197302
|
+
export declare type TrelloPlannerSoloBoardsConnection = {
|
|
197303
|
+
__typename?: 'TrelloPlannerSoloBoardsConnection';
|
|
197304
|
+
edges?: Maybe<Array<TrelloPlannerSoloBoardEdge>>;
|
|
197305
|
+
pageInfo: PageInfo;
|
|
197306
|
+
};
|
|
196695
197307
|
export declare type TrelloPlannerUpdated = {
|
|
196696
197308
|
__typename?: 'TrelloPlannerUpdated';
|
|
196697
197309
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
@@ -197195,6 +197807,15 @@ export declare type TrelloReopenBoardPayload = Payload & {
|
|
|
197195
197807
|
errors?: Maybe<Array<MutationError>>;
|
|
197196
197808
|
success: Scalars['Boolean']['output'];
|
|
197197
197809
|
};
|
|
197810
|
+
export declare type TrelloReopenCardInput = {
|
|
197811
|
+
cardId: Scalars['ID']['input'];
|
|
197812
|
+
};
|
|
197813
|
+
export declare type TrelloReopenCardPayload = Payload & {
|
|
197814
|
+
__typename?: 'TrelloReopenCardPayload';
|
|
197815
|
+
card?: Maybe<TrelloBaseCard>;
|
|
197816
|
+
errors?: Maybe<Array<MutationError>>;
|
|
197817
|
+
success: Scalars['Boolean']['output'];
|
|
197818
|
+
};
|
|
197198
197819
|
export declare type TrelloResetCardCoverInput = {
|
|
197199
197820
|
cardId: Scalars['ID']['input'];
|
|
197200
197821
|
};
|
|
@@ -197458,15 +198079,6 @@ export declare enum TrelloTokenFilter {
|
|
|
197458
198079
|
Mobile = "MOBILE",
|
|
197459
198080
|
ThirdParty = "THIRD_PARTY"
|
|
197460
198081
|
}
|
|
197461
|
-
export declare type TrelloUnarchiveCardInput = {
|
|
197462
|
-
cardId: Scalars['ID']['input'];
|
|
197463
|
-
};
|
|
197464
|
-
export declare type TrelloUnarchiveCardPayload = Payload & {
|
|
197465
|
-
__typename?: 'TrelloUnarchiveCardPayload';
|
|
197466
|
-
card?: Maybe<TrelloBaseCard>;
|
|
197467
|
-
errors?: Maybe<Array<MutationError>>;
|
|
197468
|
-
success: Scalars['Boolean']['output'];
|
|
197469
|
-
};
|
|
197470
198082
|
export declare type TrelloUndoActionInput = {
|
|
197471
198083
|
actionId: Scalars['ID']['input'];
|
|
197472
198084
|
};
|
|
@@ -197501,7 +198113,7 @@ export declare type TrelloUpdateBoardCommentingPermissionsInput = {
|
|
|
197501
198113
|
};
|
|
197502
198114
|
export declare type TrelloUpdateBoardCommentingPermissionsPayload = Payload & {
|
|
197503
198115
|
__typename?: 'TrelloUpdateBoardCommentingPermissionsPayload';
|
|
197504
|
-
board?: Maybe<
|
|
198116
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
197505
198117
|
errors?: Maybe<Array<MutationError>>;
|
|
197506
198118
|
success: Scalars['Boolean']['output'];
|
|
197507
198119
|
};
|
|
@@ -197632,7 +198244,7 @@ export declare type TrelloUpdateBoardVotingPermissionsInput = {
|
|
|
197632
198244
|
};
|
|
197633
198245
|
export declare type TrelloUpdateBoardVotingPermissionsPayload = Payload & {
|
|
197634
198246
|
__typename?: 'TrelloUpdateBoardVotingPermissionsPayload';
|
|
197635
|
-
board?: Maybe<
|
|
198247
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
197636
198248
|
errors?: Maybe<Array<MutationError>>;
|
|
197637
198249
|
success: Scalars['Boolean']['output'];
|
|
197638
198250
|
};
|
|
@@ -197695,6 +198307,16 @@ export declare type TrelloUpdateCardDateViewedByCreatorPayload = Payload & {
|
|
|
197695
198307
|
errors?: Maybe<Array<MutationError>>;
|
|
197696
198308
|
success: Scalars['Boolean']['output'];
|
|
197697
198309
|
};
|
|
198310
|
+
export declare type TrelloUpdateCardDescriptionInput = {
|
|
198311
|
+
cardId: Scalars['ID']['input'];
|
|
198312
|
+
description: Scalars['String']['input'];
|
|
198313
|
+
};
|
|
198314
|
+
export declare type TrelloUpdateCardDescriptionPayload = Payload & {
|
|
198315
|
+
__typename?: 'TrelloUpdateCardDescriptionPayload';
|
|
198316
|
+
card?: Maybe<TrelloBaseCard>;
|
|
198317
|
+
errors?: Maybe<Array<MutationError>>;
|
|
198318
|
+
success: Scalars['Boolean']['output'];
|
|
198319
|
+
};
|
|
197698
198320
|
export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionData & {
|
|
197699
198321
|
__typename?: 'TrelloUpdateCardDueAction';
|
|
197700
198322
|
appCreator?: Maybe<TrelloAppCreator>;
|