@forge/cli-shared 8.19.0-next.5 → 8.19.0-next.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/out/graphql/graphql-types.d.ts +682 -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']>;
|
|
@@ -11108,6 +11134,7 @@ export declare type AssetsExternalReference = {
|
|
|
11108
11134
|
export declare type AssetsExternalReferenceInput = {
|
|
11109
11135
|
ari?: InputMaybe<Scalars['ID']['input']>;
|
|
11110
11136
|
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
11137
|
+
typeId: Scalars['ID']['input'];
|
|
11111
11138
|
url: Scalars['String']['input'];
|
|
11112
11139
|
};
|
|
11113
11140
|
export declare type AssetsExternalReferenceTypeAttribute = AssetsObjectTypeAttribute & {
|
|
@@ -11604,6 +11631,21 @@ export declare type AssetsVerticalAsyncTaskPayload = Payload & {
|
|
|
11604
11631
|
success: Scalars['Boolean']['output'];
|
|
11605
11632
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
11606
11633
|
};
|
|
11634
|
+
export declare type AssetsVerticalAsyncTaskStatus = {
|
|
11635
|
+
__typename?: 'AssetsVerticalAsyncTaskStatus';
|
|
11636
|
+
id: Scalars['ID']['output'];
|
|
11637
|
+
status: AssetsVerticalAsyncTaskStatusEnum;
|
|
11638
|
+
type: AssetsVerticalAsyncTaskType;
|
|
11639
|
+
};
|
|
11640
|
+
export declare enum AssetsVerticalAsyncTaskStatusEnum {
|
|
11641
|
+
Completed = "COMPLETED",
|
|
11642
|
+
Failed = "FAILED",
|
|
11643
|
+
InProgress = "IN_PROGRESS",
|
|
11644
|
+
Queued = "QUEUED"
|
|
11645
|
+
}
|
|
11646
|
+
export declare enum AssetsVerticalAsyncTaskType {
|
|
11647
|
+
BundleInstantiation = "BUNDLE_INSTANTIATION"
|
|
11648
|
+
}
|
|
11607
11649
|
export declare type AssetsVerticalAuditInfo = {
|
|
11608
11650
|
__typename?: 'AssetsVerticalAuditInfo';
|
|
11609
11651
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -11827,6 +11869,20 @@ export declare type AssetsVerticalInsightCard = {
|
|
|
11827
11869
|
summary: Scalars['String']['output'];
|
|
11828
11870
|
title: Scalars['String']['output'];
|
|
11829
11871
|
};
|
|
11872
|
+
export declare type AssetsVerticalInsightDetail = {
|
|
11873
|
+
__typename?: 'AssetsVerticalInsightDetail';
|
|
11874
|
+
category: Scalars['String']['output'];
|
|
11875
|
+
dashboardId: Scalars['ID']['output'];
|
|
11876
|
+
description: Scalars['String']['output'];
|
|
11877
|
+
insightDefinitionId: Scalars['ID']['output'];
|
|
11878
|
+
insightSummary?: Maybe<Scalars['String']['output']>;
|
|
11879
|
+
name: Scalars['String']['output'];
|
|
11880
|
+
};
|
|
11881
|
+
export declare type AssetsVerticalInsightDetailsPayload = {
|
|
11882
|
+
__typename?: 'AssetsVerticalInsightDetailsPayload';
|
|
11883
|
+
insights: Array<AssetsVerticalInsightDetail>;
|
|
11884
|
+
};
|
|
11885
|
+
export declare type AssetsVerticalInsightDetailsResult = AssetsVerticalInsightDetailsPayload | QueryError;
|
|
11830
11886
|
export declare type AssetsVerticalInsightGenerationError = {
|
|
11831
11887
|
__typename?: 'AssetsVerticalInsightGenerationError';
|
|
11832
11888
|
code: Scalars['String']['output'];
|
|
@@ -11945,6 +12001,7 @@ export declare type AssetsVerticalObjectTypes = {
|
|
|
11945
12001
|
};
|
|
11946
12002
|
export declare type AssetsVerticalObjectTypesInput = {
|
|
11947
12003
|
category: AssetsVerticalObjectTypeCategory;
|
|
12004
|
+
verticalInstantiationCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
11948
12005
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
11949
12006
|
workspaceId: Scalars['ID']['input'];
|
|
11950
12007
|
};
|
|
@@ -18816,15 +18873,6 @@ export declare type CommerceExpMutationPayload = {
|
|
|
18816
18873
|
errors?: Maybe<Array<MutationError>>;
|
|
18817
18874
|
success: Scalars['Boolean']['output'];
|
|
18818
18875
|
};
|
|
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
18876
|
export declare type CommerceExpNode = {
|
|
18829
18877
|
id: Scalars['ID']['output'];
|
|
18830
18878
|
};
|
|
@@ -19793,7 +19841,6 @@ export declare enum CommerceExpSaleTransitionType {
|
|
|
19793
19841
|
export declare type CommerceExpScheduledChanges = {
|
|
19794
19842
|
__typename?: 'CommerceExpScheduledChanges';
|
|
19795
19843
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
19796
|
-
nextCycleChange?: Maybe<CommerceExpNextCycleChange>;
|
|
19797
19844
|
phases?: Maybe<Array<Maybe<CommerceExpPhase>>>;
|
|
19798
19845
|
transactionAccountId?: Maybe<Scalars['ID']['output']>;
|
|
19799
19846
|
};
|
|
@@ -46008,7 +46055,6 @@ export declare type GraphIntegrationSkillItem = {
|
|
|
46008
46055
|
};
|
|
46009
46056
|
export declare type GraphIntegrationSkillMetadata = {
|
|
46010
46057
|
__typename?: 'GraphIntegrationSkillMetadata';
|
|
46011
|
-
products: Array<Scalars['String']['output']>;
|
|
46012
46058
|
tags: Array<Scalars['String']['output']>;
|
|
46013
46059
|
tools: Array<GraphIntegrationSkillTool>;
|
|
46014
46060
|
version: Scalars['String']['output'];
|
|
@@ -46031,6 +46077,7 @@ export declare type GraphIntegrationSkillUiMetadata = {
|
|
|
46031
46077
|
displayName: Scalars['String']['output'];
|
|
46032
46078
|
iconKey?: Maybe<Scalars['String']['output']>;
|
|
46033
46079
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
46080
|
+
products: Array<Scalars['String']['output']>;
|
|
46034
46081
|
};
|
|
46035
46082
|
export declare enum GraphIntegrationStatus {
|
|
46036
46083
|
Disabled = "DISABLED",
|
|
@@ -49018,6 +49065,8 @@ export declare type GraphStore = {
|
|
|
49018
49065
|
dynamicRelationshipAssetToUserInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection>;
|
|
49019
49066
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
49020
49067
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
49068
|
+
externalBranchHasExternalCommit?: Maybe<GraphStoreSimplifiedExternalBranchHasExternalCommitConnection>;
|
|
49069
|
+
externalBranchHasExternalCommitInverse?: Maybe<GraphStoreSimplifiedExternalBranchHasExternalCommitInverseConnection>;
|
|
49021
49070
|
externalCalendarEventHasChildExternalCalendarEvent?: Maybe<GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection>;
|
|
49022
49071
|
externalCalendarEventHasChildExternalCalendarEventInverse?: Maybe<GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseConnection>;
|
|
49023
49072
|
externalCalendarEventLinksExternalVideo?: Maybe<GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoConnection>;
|
|
@@ -49082,6 +49131,8 @@ export declare type GraphStore = {
|
|
|
49082
49131
|
externalPositionManagesExternalOrgInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseConnection>;
|
|
49083
49132
|
externalPositionManagesExternalPosition?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection>;
|
|
49084
49133
|
externalPositionManagesExternalPositionInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseConnection>;
|
|
49134
|
+
externalRepositoryHasExternalWorkItem?: Maybe<GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemConnection>;
|
|
49135
|
+
externalRepositoryHasExternalWorkItemInverse?: Maybe<GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseConnection>;
|
|
49085
49136
|
externalTeamWorksOnJiraWorkItemWorklog?: Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogConnection>;
|
|
49086
49137
|
externalTeamWorksOnJiraWorkItemWorklogInverse?: Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseConnection>;
|
|
49087
49138
|
externalVideoHasExternalSpace?: Maybe<GraphStoreSimplifiedExternalVideoHasExternalSpaceConnection>;
|
|
@@ -51722,6 +51773,22 @@ export declare type GraphStoreEntityIsRelatedToEntityInverseArgs = {
|
|
|
51722
51773
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51723
51774
|
sort?: InputMaybe<GraphStoreEntityIsRelatedToEntitySortInput>;
|
|
51724
51775
|
};
|
|
51776
|
+
export declare type GraphStoreExternalBranchHasExternalCommitArgs = {
|
|
51777
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51778
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51779
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51780
|
+
id: Scalars['ID']['input'];
|
|
51781
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51782
|
+
sort?: InputMaybe<GraphStoreExternalBranchHasExternalCommitSortInput>;
|
|
51783
|
+
};
|
|
51784
|
+
export declare type GraphStoreExternalBranchHasExternalCommitInverseArgs = {
|
|
51785
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51786
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51787
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51788
|
+
id: Scalars['ID']['input'];
|
|
51789
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51790
|
+
sort?: InputMaybe<GraphStoreExternalBranchHasExternalCommitSortInput>;
|
|
51791
|
+
};
|
|
51725
51792
|
export declare type GraphStoreExternalCalendarEventHasChildExternalCalendarEventArgs = {
|
|
51726
51793
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
51727
51794
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52234,6 +52301,22 @@ export declare type GraphStoreExternalPositionManagesExternalPositionInverseArgs
|
|
|
52234
52301
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52235
52302
|
sort?: InputMaybe<GraphStoreExternalPositionManagesExternalPositionSortInput>;
|
|
52236
52303
|
};
|
|
52304
|
+
export declare type GraphStoreExternalRepositoryHasExternalWorkItemArgs = {
|
|
52305
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52306
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52307
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52308
|
+
id: Scalars['ID']['input'];
|
|
52309
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52310
|
+
sort?: InputMaybe<GraphStoreExternalRepositoryHasExternalWorkItemSortInput>;
|
|
52311
|
+
};
|
|
52312
|
+
export declare type GraphStoreExternalRepositoryHasExternalWorkItemInverseArgs = {
|
|
52313
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52314
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52315
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52316
|
+
id: Scalars['ID']['input'];
|
|
52317
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52318
|
+
sort?: InputMaybe<GraphStoreExternalRepositoryHasExternalWorkItemSortInput>;
|
|
52319
|
+
};
|
|
52237
52320
|
export declare type GraphStoreExternalTeamWorksOnJiraWorkItemWorklogArgs = {
|
|
52238
52321
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52239
52322
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61708,6 +61791,9 @@ export declare type GraphStoreDynamicRelationshipAssetToUserSortInput = {
|
|
|
61708
61791
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
61709
61792
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61710
61793
|
};
|
|
61794
|
+
export declare type GraphStoreExternalBranchHasExternalCommitSortInput = {
|
|
61795
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61796
|
+
};
|
|
61711
61797
|
export declare type GraphStoreExternalCalendarEventHasChildExternalCalendarEventSortInput = {
|
|
61712
61798
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61713
61799
|
};
|
|
@@ -61810,6 +61896,9 @@ export declare type GraphStoreExternalPositionManagesExternalOrgSortInput = {
|
|
|
61810
61896
|
export declare type GraphStoreExternalPositionManagesExternalPositionSortInput = {
|
|
61811
61897
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61812
61898
|
};
|
|
61899
|
+
export declare type GraphStoreExternalRepositoryHasExternalWorkItemSortInput = {
|
|
61900
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61901
|
+
};
|
|
61813
61902
|
export declare type GraphStoreExternalTeamWorksOnJiraWorkItemWorklogSortInput = {
|
|
61814
61903
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61815
61904
|
};
|
|
@@ -69517,6 +69606,34 @@ export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseEdge = {
|
|
|
69517
69606
|
};
|
|
69518
69607
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
69519
69608
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityUnion = ConfluenceBlogPost | ConfluencePage;
|
|
69609
|
+
export declare type GraphStoreSimplifiedExternalBranchHasExternalCommitConnection = HasPageInfo & {
|
|
69610
|
+
__typename?: 'GraphStoreSimplifiedExternalBranchHasExternalCommitConnection';
|
|
69611
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalBranchHasExternalCommitEdge>>>;
|
|
69612
|
+
pageInfo: PageInfo;
|
|
69613
|
+
};
|
|
69614
|
+
export declare type GraphStoreSimplifiedExternalBranchHasExternalCommitEdge = {
|
|
69615
|
+
__typename?: 'GraphStoreSimplifiedExternalBranchHasExternalCommitEdge';
|
|
69616
|
+
createdAt: Scalars['DateTime']['output'];
|
|
69617
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
69618
|
+
id: Scalars['ID']['output'];
|
|
69619
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
69620
|
+
node?: Maybe<GraphStoreSimplifiedExternalBranchHasExternalCommitUnion>;
|
|
69621
|
+
};
|
|
69622
|
+
export declare type GraphStoreSimplifiedExternalBranchHasExternalCommitInverseConnection = HasPageInfo & {
|
|
69623
|
+
__typename?: 'GraphStoreSimplifiedExternalBranchHasExternalCommitInverseConnection';
|
|
69624
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalBranchHasExternalCommitInverseEdge>>>;
|
|
69625
|
+
pageInfo: PageInfo;
|
|
69626
|
+
};
|
|
69627
|
+
export declare type GraphStoreSimplifiedExternalBranchHasExternalCommitInverseEdge = {
|
|
69628
|
+
__typename?: 'GraphStoreSimplifiedExternalBranchHasExternalCommitInverseEdge';
|
|
69629
|
+
createdAt: Scalars['DateTime']['output'];
|
|
69630
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
69631
|
+
id: Scalars['ID']['output'];
|
|
69632
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
69633
|
+
node?: Maybe<GraphStoreSimplifiedExternalBranchHasExternalCommitInverseUnion>;
|
|
69634
|
+
};
|
|
69635
|
+
export declare type GraphStoreSimplifiedExternalBranchHasExternalCommitInverseUnion = ExternalBranch;
|
|
69636
|
+
export declare type GraphStoreSimplifiedExternalBranchHasExternalCommitUnion = ExternalCommit;
|
|
69520
69637
|
export declare type GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection = HasPageInfo & {
|
|
69521
69638
|
__typename?: 'GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection';
|
|
69522
69639
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventEdge>>>;
|
|
@@ -70421,6 +70538,34 @@ export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionI
|
|
|
70421
70538
|
};
|
|
70422
70539
|
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseUnion = ExternalPosition;
|
|
70423
70540
|
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionUnion = ExternalPosition;
|
|
70541
|
+
export declare type GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemConnection = HasPageInfo & {
|
|
70542
|
+
__typename?: 'GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemConnection';
|
|
70543
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemEdge>>>;
|
|
70544
|
+
pageInfo: PageInfo;
|
|
70545
|
+
};
|
|
70546
|
+
export declare type GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemEdge = {
|
|
70547
|
+
__typename?: 'GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemEdge';
|
|
70548
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70549
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70550
|
+
id: Scalars['ID']['output'];
|
|
70551
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70552
|
+
node?: Maybe<GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemUnion>;
|
|
70553
|
+
};
|
|
70554
|
+
export declare type GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseConnection = HasPageInfo & {
|
|
70555
|
+
__typename?: 'GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseConnection';
|
|
70556
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseEdge>>>;
|
|
70557
|
+
pageInfo: PageInfo;
|
|
70558
|
+
};
|
|
70559
|
+
export declare type GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseEdge = {
|
|
70560
|
+
__typename?: 'GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseEdge';
|
|
70561
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70562
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70563
|
+
id: Scalars['ID']['output'];
|
|
70564
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70565
|
+
node?: Maybe<GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseUnion>;
|
|
70566
|
+
};
|
|
70567
|
+
export declare type GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseUnion = DevOpsRepository | ExternalRepository;
|
|
70568
|
+
export declare type GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemUnion = ExternalWorkItem;
|
|
70424
70569
|
export declare type GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogConnection = HasPageInfo & {
|
|
70425
70570
|
__typename?: 'GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogConnection';
|
|
70426
70571
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogEdge>>>;
|
|
@@ -79891,6 +80036,8 @@ export declare type GraphStoreV2 = {
|
|
|
79891
80036
|
__typename?: 'GraphStoreV2';
|
|
79892
80037
|
assetTypeHasChildAssetType?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection>;
|
|
79893
80038
|
assetTypeHasChildAssetTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseConnection>;
|
|
80039
|
+
assetsObjectTypeHasChildAssetsObjectType?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeConnection>;
|
|
80040
|
+
assetsObjectTypeHasChildAssetsObjectTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseConnection>;
|
|
79894
80041
|
atlassianGoalHasAtlassianGoalUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection>;
|
|
79895
80042
|
atlassianGoalHasAtlassianGoalUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateInverseConnection>;
|
|
79896
80043
|
atlassianGoalHasAtlassianHomeTag?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianHomeTagConnection>;
|
|
@@ -80199,6 +80346,8 @@ export declare type GraphStoreV2 = {
|
|
|
80199
80346
|
cypherQueryV2: GraphStoreV2CypherQueryV2Connection;
|
|
80200
80347
|
entityLinksEntity?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityConnection>;
|
|
80201
80348
|
entityLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityInverseConnection>;
|
|
80349
|
+
externalBranchHasExternalCommit?: Maybe<GraphStoreV2SimplifiedExternalBranchHasExternalCommitConnection>;
|
|
80350
|
+
externalBranchHasExternalCommitInverse?: Maybe<GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseConnection>;
|
|
80202
80351
|
externalCalendarEventHasChildExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection>;
|
|
80203
80352
|
externalCalendarEventHasChildExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseConnection>;
|
|
80204
80353
|
externalCalendarEventLinksExternalVideo?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoConnection>;
|
|
@@ -80297,6 +80446,8 @@ export declare type GraphStoreV2 = {
|
|
|
80297
80446
|
externalRepositoryHasExternalCommitInverse?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalCommitInverseConnection>;
|
|
80298
80447
|
externalRepositoryHasExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalPullRequestConnection>;
|
|
80299
80448
|
externalRepositoryHasExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalPullRequestInverseConnection>;
|
|
80449
|
+
externalRepositoryHasExternalWorkItem?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemConnection>;
|
|
80450
|
+
externalRepositoryHasExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseConnection>;
|
|
80300
80451
|
externalSecurityContainerHasExternalVulnerability?: Maybe<GraphStoreV2SimplifiedExternalSecurityContainerHasExternalVulnerabilityConnection>;
|
|
80301
80452
|
externalSecurityContainerHasExternalVulnerabilityInverse?: Maybe<GraphStoreV2SimplifiedExternalSecurityContainerHasExternalVulnerabilityInverseConnection>;
|
|
80302
80453
|
externalServiceLinksExternalBranch?: Maybe<GraphStoreV2SimplifiedExternalServiceLinksExternalBranchConnection>;
|
|
@@ -80689,6 +80840,20 @@ export declare type GraphStoreV2AssetTypeHasChildAssetTypeInverseArgs = {
|
|
|
80689
80840
|
id: Scalars['ID']['input'];
|
|
80690
80841
|
sort?: InputMaybe<GraphStoreV2AssetTypeHasChildAssetTypeSortInput>;
|
|
80691
80842
|
};
|
|
80843
|
+
export declare type GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeArgs = {
|
|
80844
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80845
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80846
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80847
|
+
id: Scalars['ID']['input'];
|
|
80848
|
+
sort?: InputMaybe<GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput>;
|
|
80849
|
+
};
|
|
80850
|
+
export declare type GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeInverseArgs = {
|
|
80851
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80852
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80853
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80854
|
+
id: Scalars['ID']['input'];
|
|
80855
|
+
sort?: InputMaybe<GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput>;
|
|
80856
|
+
};
|
|
80692
80857
|
export declare type GraphStoreV2AtlassianGoalHasAtlassianGoalUpdateArgs = {
|
|
80693
80858
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80694
80859
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82854,6 +83019,20 @@ export declare type GraphStoreV2EntityLinksEntityInverseArgs = {
|
|
|
82854
83019
|
id: Scalars['ID']['input'];
|
|
82855
83020
|
sort?: InputMaybe<GraphStoreV2EntityLinksEntitySortInput>;
|
|
82856
83021
|
};
|
|
83022
|
+
export declare type GraphStoreV2ExternalBranchHasExternalCommitArgs = {
|
|
83023
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83024
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83025
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83026
|
+
id: Scalars['ID']['input'];
|
|
83027
|
+
sort?: InputMaybe<GraphStoreV2ExternalBranchHasExternalCommitSortInput>;
|
|
83028
|
+
};
|
|
83029
|
+
export declare type GraphStoreV2ExternalBranchHasExternalCommitInverseArgs = {
|
|
83030
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83031
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83032
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83033
|
+
id: Scalars['ID']['input'];
|
|
83034
|
+
sort?: InputMaybe<GraphStoreV2ExternalBranchHasExternalCommitSortInput>;
|
|
83035
|
+
};
|
|
82857
83036
|
export declare type GraphStoreV2ExternalCalendarEventHasChildExternalCalendarEventArgs = {
|
|
82858
83037
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82859
83038
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -83540,6 +83719,20 @@ export declare type GraphStoreV2ExternalRepositoryHasExternalPullRequestInverseA
|
|
|
83540
83719
|
id: Scalars['ID']['input'];
|
|
83541
83720
|
sort?: InputMaybe<GraphStoreV2ExternalRepositoryHasExternalPullRequestSortInput>;
|
|
83542
83721
|
};
|
|
83722
|
+
export declare type GraphStoreV2ExternalRepositoryHasExternalWorkItemArgs = {
|
|
83723
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83724
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83725
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83726
|
+
id: Scalars['ID']['input'];
|
|
83727
|
+
sort?: InputMaybe<GraphStoreV2ExternalRepositoryHasExternalWorkItemSortInput>;
|
|
83728
|
+
};
|
|
83729
|
+
export declare type GraphStoreV2ExternalRepositoryHasExternalWorkItemInverseArgs = {
|
|
83730
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83731
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83732
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83733
|
+
id: Scalars['ID']['input'];
|
|
83734
|
+
sort?: InputMaybe<GraphStoreV2ExternalRepositoryHasExternalWorkItemSortInput>;
|
|
83735
|
+
};
|
|
83543
83736
|
export declare type GraphStoreV2ExternalSecurityContainerHasExternalVulnerabilityArgs = {
|
|
83544
83737
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
83545
83738
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -86228,6 +86421,9 @@ export declare type GraphStoreV2TopicHasRelatedEntityInverseArgs = {
|
|
|
86228
86421
|
export declare type GraphStoreV2AssetTypeHasChildAssetTypeSortInput = {
|
|
86229
86422
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86230
86423
|
};
|
|
86424
|
+
export declare type GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput = {
|
|
86425
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86426
|
+
};
|
|
86231
86427
|
export declare type GraphStoreV2AtlassianGoalHasAtlassianGoalUpdateSortInput = {
|
|
86232
86428
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86233
86429
|
};
|
|
@@ -87762,6 +87958,9 @@ export declare type GraphStoreV2DeleteLoomVideoHasConfluencePagePayload = {
|
|
|
87762
87958
|
export declare type GraphStoreV2EntityLinksEntitySortInput = {
|
|
87763
87959
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87764
87960
|
};
|
|
87961
|
+
export declare type GraphStoreV2ExternalBranchHasExternalCommitSortInput = {
|
|
87962
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87963
|
+
};
|
|
87765
87964
|
export declare type GraphStoreV2ExternalCalendarEventHasChildExternalCalendarEventSortInput = {
|
|
87766
87965
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87767
87966
|
};
|
|
@@ -87924,6 +88123,9 @@ export declare type GraphStoreV2ExternalRepositoryHasExternalCommitSortInput = {
|
|
|
87924
88123
|
export declare type GraphStoreV2ExternalRepositoryHasExternalPullRequestSortInput = {
|
|
87925
88124
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87926
88125
|
};
|
|
88126
|
+
export declare type GraphStoreV2ExternalRepositoryHasExternalWorkItemSortInput = {
|
|
88127
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
88128
|
+
};
|
|
87927
88129
|
export declare type GraphStoreV2ExternalSecurityContainerHasExternalVulnerabilitySortInput = {
|
|
87928
88130
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87929
88131
|
};
|
|
@@ -89822,6 +90024,34 @@ export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseEdge
|
|
|
89822
90024
|
};
|
|
89823
90025
|
export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseUnion = AssetsObjectType;
|
|
89824
90026
|
export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeUnion = AssetsObjectType;
|
|
90027
|
+
export declare type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeConnection = HasPageInfo & {
|
|
90028
|
+
__typename?: 'GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeConnection';
|
|
90029
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeEdge>>>;
|
|
90030
|
+
pageInfo: PageInfo;
|
|
90031
|
+
};
|
|
90032
|
+
export declare type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeEdge = {
|
|
90033
|
+
__typename?: 'GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeEdge';
|
|
90034
|
+
createdAt: Scalars['DateTime']['output'];
|
|
90035
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
90036
|
+
id: Scalars['ID']['output'];
|
|
90037
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
90038
|
+
node?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeUnion>;
|
|
90039
|
+
};
|
|
90040
|
+
export declare type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseConnection = HasPageInfo & {
|
|
90041
|
+
__typename?: 'GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseConnection';
|
|
90042
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseEdge>>>;
|
|
90043
|
+
pageInfo: PageInfo;
|
|
90044
|
+
};
|
|
90045
|
+
export declare type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseEdge = {
|
|
90046
|
+
__typename?: 'GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseEdge';
|
|
90047
|
+
createdAt: Scalars['DateTime']['output'];
|
|
90048
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
90049
|
+
id: Scalars['ID']['output'];
|
|
90050
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
90051
|
+
node?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseUnion>;
|
|
90052
|
+
};
|
|
90053
|
+
export declare type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseUnion = AssetsObjectType;
|
|
90054
|
+
export declare type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeUnion = AssetsObjectType;
|
|
89825
90055
|
export declare type GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection = HasPageInfo & {
|
|
89826
90056
|
__typename?: 'GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection';
|
|
89827
90057
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateEdge>>>;
|
|
@@ -94172,6 +94402,34 @@ export declare type GraphStoreV2SimplifiedEntityLinksEntityInverseEdge = {
|
|
|
94172
94402
|
};
|
|
94173
94403
|
export declare type GraphStoreV2SimplifiedEntityLinksEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
94174
94404
|
export declare type GraphStoreV2SimplifiedEntityLinksEntityUnion = ConfluenceBlogPost | ConfluencePage;
|
|
94405
|
+
export declare type GraphStoreV2SimplifiedExternalBranchHasExternalCommitConnection = HasPageInfo & {
|
|
94406
|
+
__typename?: 'GraphStoreV2SimplifiedExternalBranchHasExternalCommitConnection';
|
|
94407
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalBranchHasExternalCommitEdge>>>;
|
|
94408
|
+
pageInfo: PageInfo;
|
|
94409
|
+
};
|
|
94410
|
+
export declare type GraphStoreV2SimplifiedExternalBranchHasExternalCommitEdge = {
|
|
94411
|
+
__typename?: 'GraphStoreV2SimplifiedExternalBranchHasExternalCommitEdge';
|
|
94412
|
+
createdAt: Scalars['DateTime']['output'];
|
|
94413
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
94414
|
+
id: Scalars['ID']['output'];
|
|
94415
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
94416
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalBranchHasExternalCommitUnion>;
|
|
94417
|
+
};
|
|
94418
|
+
export declare type GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseConnection = HasPageInfo & {
|
|
94419
|
+
__typename?: 'GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseConnection';
|
|
94420
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseEdge>>>;
|
|
94421
|
+
pageInfo: PageInfo;
|
|
94422
|
+
};
|
|
94423
|
+
export declare type GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseEdge = {
|
|
94424
|
+
__typename?: 'GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseEdge';
|
|
94425
|
+
createdAt: Scalars['DateTime']['output'];
|
|
94426
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
94427
|
+
id: Scalars['ID']['output'];
|
|
94428
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
94429
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseUnion>;
|
|
94430
|
+
};
|
|
94431
|
+
export declare type GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseUnion = ExternalBranch;
|
|
94432
|
+
export declare type GraphStoreV2SimplifiedExternalBranchHasExternalCommitUnion = ExternalCommit;
|
|
94175
94433
|
export declare type GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection = HasPageInfo & {
|
|
94176
94434
|
__typename?: 'GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection';
|
|
94177
94435
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventEdge>>>;
|
|
@@ -95560,6 +95818,34 @@ export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalPullReque
|
|
|
95560
95818
|
};
|
|
95561
95819
|
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalPullRequestInverseUnion = DevOpsRepository | ExternalRepository;
|
|
95562
95820
|
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
95821
|
+
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemConnection = HasPageInfo & {
|
|
95822
|
+
__typename?: 'GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemConnection';
|
|
95823
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemEdge>>>;
|
|
95824
|
+
pageInfo: PageInfo;
|
|
95825
|
+
};
|
|
95826
|
+
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemEdge = {
|
|
95827
|
+
__typename?: 'GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemEdge';
|
|
95828
|
+
createdAt: Scalars['DateTime']['output'];
|
|
95829
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
95830
|
+
id: Scalars['ID']['output'];
|
|
95831
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
95832
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemUnion>;
|
|
95833
|
+
};
|
|
95834
|
+
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseConnection = HasPageInfo & {
|
|
95835
|
+
__typename?: 'GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseConnection';
|
|
95836
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseEdge>>>;
|
|
95837
|
+
pageInfo: PageInfo;
|
|
95838
|
+
};
|
|
95839
|
+
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseEdge = {
|
|
95840
|
+
__typename?: 'GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseEdge';
|
|
95841
|
+
createdAt: Scalars['DateTime']['output'];
|
|
95842
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
95843
|
+
id: Scalars['ID']['output'];
|
|
95844
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
95845
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseUnion>;
|
|
95846
|
+
};
|
|
95847
|
+
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseUnion = DevOpsRepository | ExternalRepository;
|
|
95848
|
+
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemUnion = ExternalWorkItem;
|
|
95563
95849
|
export declare type GraphStoreV2SimplifiedExternalSecurityContainerHasExternalVulnerabilityConnection = HasPageInfo & {
|
|
95564
95850
|
__typename?: 'GraphStoreV2SimplifiedExternalSecurityContainerHasExternalVulnerabilityConnection';
|
|
95565
95851
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalSecurityContainerHasExternalVulnerabilityEdge>>>;
|
|
@@ -103053,6 +103339,7 @@ export declare type HelpCenterPageQueryResultEdge = {
|
|
|
103053
103339
|
};
|
|
103054
103340
|
export declare enum HelpCenterPageType {
|
|
103055
103341
|
Custom = "CUSTOM",
|
|
103342
|
+
CustomHome = "CUSTOM_HOME",
|
|
103056
103343
|
Portal = "PORTAL"
|
|
103057
103344
|
}
|
|
103058
103345
|
export declare type HelpCenterPageUpdateInput = {
|
|
@@ -106107,6 +106394,24 @@ export declare type JiraAgenticUser = JiraActor & {
|
|
|
106107
106394
|
user?: Maybe<User>;
|
|
106108
106395
|
};
|
|
106109
106396
|
export declare type JiraAggregatedDate = JiraDatePickerField | JiraDateTimePickerField;
|
|
106397
|
+
export declare type JiraAggregatedIssueLink = {
|
|
106398
|
+
__typename?: 'JiraAggregatedIssueLink';
|
|
106399
|
+
hasAggregatedIssueLink: Scalars['Boolean']['output'];
|
|
106400
|
+
incomingLinks?: Maybe<JiraIssueLinkConnection>;
|
|
106401
|
+
outgoingLinks?: Maybe<JiraIssueLinkConnection>;
|
|
106402
|
+
};
|
|
106403
|
+
export declare type JiraAggregatedIssueLinkIncomingLinksArgs = {
|
|
106404
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
106405
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
106406
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
106407
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
106408
|
+
};
|
|
106409
|
+
export declare type JiraAggregatedIssueLinkOutgoingLinksArgs = {
|
|
106410
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
106411
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
106412
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
106413
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
106414
|
+
};
|
|
106110
106415
|
export declare type JiraAggregatedStatusField = JiraIssueField & JiraListRowField & Node & {
|
|
106111
106416
|
__typename?: 'JiraAggregatedStatusField';
|
|
106112
106417
|
aggregatedStatusCategory?: Maybe<JiraStatusCategoryProgressConnection>;
|
|
@@ -106133,6 +106438,7 @@ export declare type JiraAggregatedStatusFieldAggregatedStatusCategoryArgs = {
|
|
|
106133
106438
|
export declare type JiraAggregatedTimelineField = JiraIssueField & JiraListRowField & JiraTimelineVirtualField & Node & {
|
|
106134
106439
|
__typename?: 'JiraAggregatedTimelineField';
|
|
106135
106440
|
aggregatedEndDateViewField?: Maybe<JiraAggregatedDate>;
|
|
106441
|
+
aggregatedIssueLink?: Maybe<JiraAggregatedIssueLink>;
|
|
106136
106442
|
aggregatedSprintEndDateViewField?: Maybe<JiraAggregatedDate>;
|
|
106137
106443
|
aggregatedSprintStartDateViewField?: Maybe<JiraAggregatedDate>;
|
|
106138
106444
|
aggregatedStartDateViewField?: Maybe<JiraAggregatedDate>;
|
|
@@ -106153,6 +106459,10 @@ export declare type JiraAggregatedTimelineFieldAggregatedEndDateViewFieldArgs =
|
|
|
106153
106459
|
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
106154
106460
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
106155
106461
|
};
|
|
106462
|
+
export declare type JiraAggregatedTimelineFieldAggregatedIssueLinkArgs = {
|
|
106463
|
+
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
106464
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
106465
|
+
};
|
|
106156
106466
|
export declare type JiraAggregatedTimelineFieldAggregatedSprintEndDateViewFieldArgs = {
|
|
106157
106467
|
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
106158
106468
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -106208,6 +106518,12 @@ export declare type JiraAiEnablementIssueInput = {
|
|
|
106208
106518
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
106209
106519
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
106210
106520
|
};
|
|
106521
|
+
export declare type JiraAlertValue = {
|
|
106522
|
+
__typename?: 'JiraAlertValue';
|
|
106523
|
+
alertId?: Maybe<Scalars['String']['output']>;
|
|
106524
|
+
alertMessage?: Maybe<Scalars['String']['output']>;
|
|
106525
|
+
alertTinyId?: Maybe<Scalars['String']['output']>;
|
|
106526
|
+
};
|
|
106211
106527
|
export declare type JiraAlignAggCustomProjectType = Node & {
|
|
106212
106528
|
__typename?: 'JiraAlignAggCustomProjectType';
|
|
106213
106529
|
id: Scalars['ID']['output'];
|
|
@@ -106307,7 +106623,7 @@ export declare type JiraAllActivityFeedItem = {
|
|
|
106307
106623
|
item?: Maybe<JiraAllActivityFeedItemUnion>;
|
|
106308
106624
|
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
106309
106625
|
};
|
|
106310
|
-
export declare type JiraAllActivityFeedItemUnion = JiraApprovalItem | JiraCommentItem | JiraHiddenCommentItem | JiraHistoryItem | JiraWorklogItem;
|
|
106626
|
+
export declare type JiraAllActivityFeedItemUnion = JiraApprovalItem | JiraCommentItem | JiraHiddenCommentItem | JiraHistoryItem | JiraIncidentItem | JiraWorklogItem;
|
|
106311
106627
|
export declare enum JiraAllowedFieldFormatConfig {
|
|
106312
106628
|
NumberFieldFormatConfig = "NUMBER_FIELD_FORMAT_CONFIG"
|
|
106313
106629
|
}
|
|
@@ -110948,6 +111264,25 @@ export declare type JiraDatePickerField = JiraDateLikeField & JiraIssueField & J
|
|
|
110948
111264
|
type: Scalars['String']['output'];
|
|
110949
111265
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
110950
111266
|
};
|
|
111267
|
+
export declare type JiraDateRangeField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
111268
|
+
__typename?: 'JiraDateRangeField';
|
|
111269
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
111270
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
111271
|
+
end?: Maybe<Scalars['String']['output']>;
|
|
111272
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
111273
|
+
fieldId: Scalars['String']['output'];
|
|
111274
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
111275
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
111276
|
+
id: Scalars['ID']['output'];
|
|
111277
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
111278
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
111279
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
111280
|
+
issue?: Maybe<JiraIssue>;
|
|
111281
|
+
name: Scalars['String']['output'];
|
|
111282
|
+
start?: Maybe<Scalars['String']['output']>;
|
|
111283
|
+
type: Scalars['String']['output'];
|
|
111284
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
111285
|
+
};
|
|
110951
111286
|
export declare type JiraDateScenarioValueField = {
|
|
110952
111287
|
__typename?: 'JiraDateScenarioValueField';
|
|
110953
111288
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -111919,6 +112254,34 @@ export declare type JiraExtensionRenderingContextInput = {
|
|
|
111919
112254
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
111920
112255
|
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
111921
112256
|
};
|
|
112257
|
+
export declare type JiraExtraFieldForView = {
|
|
112258
|
+
__typename?: 'JiraExtraFieldForView';
|
|
112259
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
112260
|
+
fieldName?: Maybe<Scalars['String']['output']>;
|
|
112261
|
+
html?: Maybe<Scalars['String']['output']>;
|
|
112262
|
+
renderer?: Maybe<JiraExtraFieldForViewRenderer>;
|
|
112263
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
112264
|
+
};
|
|
112265
|
+
export declare type JiraExtraFieldForViewConnection = {
|
|
112266
|
+
__typename?: 'JiraExtraFieldForViewConnection';
|
|
112267
|
+
edges?: Maybe<Array<Maybe<JiraExtraFieldForViewEdge>>>;
|
|
112268
|
+
pageInfo: PageInfo;
|
|
112269
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
112270
|
+
};
|
|
112271
|
+
export declare type JiraExtraFieldForViewEdge = {
|
|
112272
|
+
__typename?: 'JiraExtraFieldForViewEdge';
|
|
112273
|
+
cursor: Scalars['String']['output'];
|
|
112274
|
+
node?: Maybe<JiraExtraFieldForView>;
|
|
112275
|
+
};
|
|
112276
|
+
export declare enum JiraExtraFieldForViewRenderer {
|
|
112277
|
+
Date = "DATE",
|
|
112278
|
+
Duration = "DURATION",
|
|
112279
|
+
Html = "HTML",
|
|
112280
|
+
Number = "NUMBER",
|
|
112281
|
+
Status = "STATUS",
|
|
112282
|
+
Text = "TEXT",
|
|
112283
|
+
Url = "URL"
|
|
112284
|
+
}
|
|
111922
112285
|
export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & Node & {
|
|
111923
112286
|
__typename?: 'JiraFallbackField';
|
|
111924
112287
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -113857,6 +114220,46 @@ export declare type JiraHydrateJqlInput = {
|
|
|
113857
114220
|
lastUsedJqlForIssueNavigator?: InputMaybe<JiraJqlScopeInput>;
|
|
113858
114221
|
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
113859
114222
|
};
|
|
114223
|
+
export declare type JiraIncidentActivityActor = {
|
|
114224
|
+
__typename?: 'JiraIncidentActivityActor';
|
|
114225
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
114226
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
114227
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
114228
|
+
type?: Maybe<JiraIncidentActivityActorType>;
|
|
114229
|
+
};
|
|
114230
|
+
export declare enum JiraIncidentActivityActorType {
|
|
114231
|
+
Api = "API",
|
|
114232
|
+
ConfluenceUser = "CONFLUENCE_USER",
|
|
114233
|
+
System = "SYSTEM",
|
|
114234
|
+
Unclassified = "UNCLASSIFIED",
|
|
114235
|
+
User = "USER"
|
|
114236
|
+
}
|
|
114237
|
+
export declare type JiraIncidentActivityItem = {
|
|
114238
|
+
__typename?: 'JiraIncidentActivityItem';
|
|
114239
|
+
actor?: Maybe<JiraIncidentActivityActor>;
|
|
114240
|
+
id: Scalars['ID']['output'];
|
|
114241
|
+
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
114242
|
+
type?: Maybe<JiraIncidentActivityType>;
|
|
114243
|
+
value?: Maybe<JiraIncidentActivityValueUnion>;
|
|
114244
|
+
};
|
|
114245
|
+
export declare enum JiraIncidentActivityType {
|
|
114246
|
+
AlertAssociated = "ALERT_ASSOCIATED",
|
|
114247
|
+
AlertDisassociated = "ALERT_DISASSOCIATED",
|
|
114248
|
+
IncidentStakeholderAdded = "INCIDENT_STAKEHOLDER_ADDED",
|
|
114249
|
+
IncidentStakeholderRemoved = "INCIDENT_STAKEHOLDER_REMOVED",
|
|
114250
|
+
ResponderAlertAcked = "RESPONDER_ALERT_ACKED",
|
|
114251
|
+
ResponderAlertAssigned = "RESPONDER_ALERT_ASSIGNED",
|
|
114252
|
+
ResponderAlertClosed = "RESPONDER_ALERT_CLOSED",
|
|
114253
|
+
ResponderAlertPriorityChanged = "RESPONDER_ALERT_PRIORITY_CHANGED",
|
|
114254
|
+
ResponderAlertUnacked = "RESPONDER_ALERT_UNACKED",
|
|
114255
|
+
StakeholdersUpdated = "STAKEHOLDERS_UPDATED",
|
|
114256
|
+
Unknown = "UNKNOWN"
|
|
114257
|
+
}
|
|
114258
|
+
export declare type JiraIncidentActivityValueUnion = JiraAlertValue | JiraIncidentStakeholderActionValue | JiraResponderAlertAssignedValue | JiraResponderAlertPriorityChangedValue | JiraStakeholderUpdatedValue;
|
|
114259
|
+
export declare type JiraIncidentItem = {
|
|
114260
|
+
__typename?: 'JiraIncidentItem';
|
|
114261
|
+
incidentItem?: Maybe<JiraIncidentActivityItem>;
|
|
114262
|
+
};
|
|
113860
114263
|
export declare enum JiraIncidentPriority {
|
|
113861
114264
|
P1 = "P1",
|
|
113862
114265
|
P2 = "P2",
|
|
@@ -113864,6 +114267,10 @@ export declare enum JiraIncidentPriority {
|
|
|
113864
114267
|
P4 = "P4",
|
|
113865
114268
|
P5 = "P5"
|
|
113866
114269
|
}
|
|
114270
|
+
export declare type JiraIncidentStakeholderActionValue = {
|
|
114271
|
+
__typename?: 'JiraIncidentStakeholderActionValue';
|
|
114272
|
+
stakeholder?: Maybe<JiraIncidentActivityActor>;
|
|
114273
|
+
};
|
|
113867
114274
|
export declare type JiraInitializeProjectNotificationPreferencesInput = {
|
|
113868
114275
|
projectId: Scalars['ID']['input'];
|
|
113869
114276
|
};
|
|
@@ -113989,6 +114396,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
113989
114396
|
errorRetrievingData?: Maybe<Scalars['Boolean']['output']>;
|
|
113990
114397
|
estimationForView?: Maybe<JiraEstimationValue>;
|
|
113991
114398
|
exceededChildIssueLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
114399
|
+
extraFieldsForView?: Maybe<JiraExtraFieldForViewConnection>;
|
|
113992
114400
|
fieldByIdOrAlias?: Maybe<JiraIssueField>;
|
|
113993
114401
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
113994
114402
|
fieldSetsById?: Maybe<JiraIssueFieldSetConnection>;
|
|
@@ -114234,6 +114642,11 @@ export declare type JiraIssueEndDateViewFieldArgs = {
|
|
|
114234
114642
|
export declare type JiraIssueEstimationForViewArgs = {
|
|
114235
114643
|
view: JiraViewQueryInput;
|
|
114236
114644
|
};
|
|
114645
|
+
export declare type JiraIssueExtraFieldsForViewArgs = {
|
|
114646
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
114647
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
114648
|
+
view: JiraViewQueryInput;
|
|
114649
|
+
};
|
|
114237
114650
|
export declare type JiraIssueFieldByIdOrAliasArgs = {
|
|
114238
114651
|
idOrAlias?: InputMaybe<Scalars['String']['input']>;
|
|
114239
114652
|
ignoreMissingField?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -121414,6 +121827,9 @@ export declare type JiraProjectAvailableIssueTypesArgs = {
|
|
|
121414
121827
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
121415
121828
|
input?: InputMaybe<JiraProjectAvailableIssueTypesInput>;
|
|
121416
121829
|
};
|
|
121830
|
+
export declare type JiraProjectBackgroundArgs = {
|
|
121831
|
+
harmonisedTheme?: InputMaybe<Scalars['Boolean']['input']>;
|
|
121832
|
+
};
|
|
121417
121833
|
export declare type JiraProjectBoardsArgs = {
|
|
121418
121834
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
121419
121835
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123331,6 +123747,7 @@ export declare type JiraQueryJiraWorkItemJourneysArgs = {
|
|
|
123331
123747
|
};
|
|
123332
123748
|
export declare type JiraQueryJira_RecommendedAgentsArgs = {
|
|
123333
123749
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
123750
|
+
assignableOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123334
123751
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
123335
123752
|
cloudId: Scalars['ID']['input'];
|
|
123336
123753
|
contextAri: Scalars['ID']['input'];
|
|
@@ -124932,6 +125349,21 @@ export declare enum JiraResourcesSortDirection {
|
|
|
124932
125349
|
export declare type JiraResourcesTotalCountInput = {
|
|
124933
125350
|
integration?: InputMaybe<Array<InputMaybe<JiraResourceIntegration>>>;
|
|
124934
125351
|
};
|
|
125352
|
+
export declare type JiraResponderAlertAssignedValue = {
|
|
125353
|
+
__typename?: 'JiraResponderAlertAssignedValue';
|
|
125354
|
+
alertId?: Maybe<Scalars['String']['output']>;
|
|
125355
|
+
alertMessage?: Maybe<Scalars['String']['output']>;
|
|
125356
|
+
alertTinyId?: Maybe<Scalars['String']['output']>;
|
|
125357
|
+
assignee?: Maybe<JiraIncidentActivityActor>;
|
|
125358
|
+
};
|
|
125359
|
+
export declare type JiraResponderAlertPriorityChangedValue = {
|
|
125360
|
+
__typename?: 'JiraResponderAlertPriorityChangedValue';
|
|
125361
|
+
alertId?: Maybe<Scalars['String']['output']>;
|
|
125362
|
+
alertMessage?: Maybe<Scalars['String']['output']>;
|
|
125363
|
+
alertTinyId?: Maybe<Scalars['String']['output']>;
|
|
125364
|
+
newPriority?: Maybe<Scalars['String']['output']>;
|
|
125365
|
+
oldPriority?: Maybe<Scalars['String']['output']>;
|
|
125366
|
+
};
|
|
124935
125367
|
export declare type JiraRestoreCustomFieldsInput = {
|
|
124936
125368
|
fieldIds: Array<Scalars['String']['input']>;
|
|
124937
125369
|
};
|
|
@@ -127622,6 +128054,7 @@ export declare type JiraSprint = Node & {
|
|
|
127622
128054
|
__typename?: 'JiraSprint';
|
|
127623
128055
|
boardId?: Maybe<Scalars['Long']['output']>;
|
|
127624
128056
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
128057
|
+
canUpdateSprint?: Maybe<Scalars['Boolean']['output']>;
|
|
127625
128058
|
completionDate?: Maybe<Scalars['DateTime']['output']>;
|
|
127626
128059
|
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
127627
128060
|
goal?: Maybe<Scalars['String']['output']>;
|
|
@@ -127745,6 +128178,11 @@ export declare type JiraSprintUpdateInput = {
|
|
|
127745
128178
|
sprintId: Scalars['ID']['input'];
|
|
127746
128179
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
127747
128180
|
};
|
|
128181
|
+
export declare type JiraStakeholderUpdatedValue = {
|
|
128182
|
+
__typename?: 'JiraStakeholderUpdatedValue';
|
|
128183
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
128184
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
128185
|
+
};
|
|
127748
128186
|
export declare type JiraStartAiAgentSessionInput = {
|
|
127749
128187
|
agentId: Scalars['String']['input'];
|
|
127750
128188
|
clientMutationId: Scalars['String']['input'];
|
|
@@ -129667,6 +130105,7 @@ export declare type JiraUserPreferences = {
|
|
|
129667
130105
|
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
129668
130106
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
129669
130107
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
130108
|
+
issueViewActivityFeedSortField?: Maybe<JiraIssueViewActivityFeedSortField>;
|
|
129670
130109
|
issueViewActivityFeedSortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
129671
130110
|
issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
|
|
129672
130111
|
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
@@ -132703,6 +133142,14 @@ export declare type JsmConversationEdge = {
|
|
|
132703
133142
|
cursor: Scalars['String']['output'];
|
|
132704
133143
|
node?: Maybe<JsmConversation>;
|
|
132705
133144
|
};
|
|
133145
|
+
export declare type JsmConversationMediaConfiguration = {
|
|
133146
|
+
__typename?: 'JsmConversationMediaConfiguration';
|
|
133147
|
+
baseUrl?: Maybe<Scalars['String']['output']>;
|
|
133148
|
+
collectionName?: Maybe<Scalars['String']['output']>;
|
|
133149
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
133150
|
+
tokenAsapIssuer?: Maybe<Scalars['String']['output']>;
|
|
133151
|
+
};
|
|
133152
|
+
export declare type JsmConversationMediaConfigurationResult = JsmConversationMediaConfiguration | QueryError;
|
|
132706
133153
|
export declare type JsmConversationMessage = {
|
|
132707
133154
|
__typename?: 'JsmConversationMessage';
|
|
132708
133155
|
author?: Maybe<Scalars['ID']['output']>;
|
|
@@ -134666,6 +135113,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
134666
135113
|
popularSearchQuery?: Maybe<KnowledgeDiscoveryPopularSearchQueryResult>;
|
|
134667
135114
|
querySuggestions?: Maybe<KnowledgeDiscoveryQuerySuggestionsResult>;
|
|
134668
135115
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
135116
|
+
reportingLines?: Maybe<KnowledgeDiscoveryReportingLinesResult>;
|
|
134669
135117
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
134670
135118
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
134671
135119
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
@@ -134766,6 +135214,11 @@ export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
|
134766
135214
|
relatedEntityType: KnowledgeDiscoveryEntityType;
|
|
134767
135215
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
134768
135216
|
};
|
|
135217
|
+
export declare type KnowledgeDiscoveryQueryApiReportingLinesArgs = {
|
|
135218
|
+
aaid: Scalars['String']['input'];
|
|
135219
|
+
orgId: Scalars['String']['input'];
|
|
135220
|
+
siteId: Scalars['String']['input'];
|
|
135221
|
+
};
|
|
134769
135222
|
export declare type KnowledgeDiscoveryQueryApiSearchRelatedEntitiesArgs = {
|
|
134770
135223
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
134771
135224
|
query: Scalars['String']['input'];
|
|
@@ -134873,6 +135326,7 @@ export declare type KnowledgeDiscoveryReportingLines = {
|
|
|
134873
135326
|
reports: Array<KnowledgeDiscoveryReportingLinesUser>;
|
|
134874
135327
|
user?: Maybe<KnowledgeDiscoveryReportingLinesUser>;
|
|
134875
135328
|
};
|
|
135329
|
+
export declare type KnowledgeDiscoveryReportingLinesResult = KnowledgeDiscoveryReportingLines | QueryError;
|
|
134876
135330
|
export declare type KnowledgeDiscoveryReportingLinesUser = {
|
|
134877
135331
|
__typename?: 'KnowledgeDiscoveryReportingLinesUser';
|
|
134878
135332
|
accountIdentifier?: Maybe<Scalars['String']['output']>;
|
|
@@ -135039,6 +135493,13 @@ export declare type KnowledgeDiscoveryUsers = {
|
|
|
135039
135493
|
__typename?: 'KnowledgeDiscoveryUsers';
|
|
135040
135494
|
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUser>>>;
|
|
135041
135495
|
};
|
|
135496
|
+
export declare type KnowledgeDiscoveryVisualIntent = KnowledgeDiscoveryIntent & {
|
|
135497
|
+
__typename?: 'KnowledgeDiscoveryVisualIntent';
|
|
135498
|
+
classification: KnowledgeDiscoveryQueryClassification;
|
|
135499
|
+
detectionType: KnowledgeDiscoveryDetectionType;
|
|
135500
|
+
subTypes: Array<KnowledgeDiscoveryQuerySubType>;
|
|
135501
|
+
transformedQuery: Scalars['String']['output'];
|
|
135502
|
+
};
|
|
135042
135503
|
export declare type KnowledgeDiscoveryZeroQueries = {
|
|
135043
135504
|
__typename?: 'KnowledgeDiscoveryZeroQueries';
|
|
135044
135505
|
zeroQueries?: Maybe<Array<KnowledgeDiscoveryZeroQuery>>;
|
|
@@ -136423,6 +136884,11 @@ export declare type MarketplaceConsoleAppSoftwares = {
|
|
|
136423
136884
|
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
136424
136885
|
appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
|
|
136425
136886
|
};
|
|
136887
|
+
export declare enum MarketplaceConsoleAppType {
|
|
136888
|
+
CrossContext = "CROSS_CONTEXT",
|
|
136889
|
+
Embedded = "EMBEDDED",
|
|
136890
|
+
Global = "GLOBAL"
|
|
136891
|
+
}
|
|
136426
136892
|
export declare type MarketplaceConsoleAppVendorLinksInput = {
|
|
136427
136893
|
appStatusPage?: InputMaybe<Scalars['String']['input']>;
|
|
136428
136894
|
forums?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -136958,13 +137424,16 @@ export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
|
136958
137424
|
additionalCompatibilities?: Maybe<Array<Scalars['String']['output']>>;
|
|
136959
137425
|
appAccess?: Maybe<Array<Scalars['String']['output']>>;
|
|
136960
137426
|
appId: Scalars['ID']['output'];
|
|
137427
|
+
appType?: Maybe<MarketplaceConsoleAppType>;
|
|
136961
137428
|
envId: Scalars['ID']['output'];
|
|
137429
|
+
installationTarget?: Maybe<MarketplaceConsoleInstallationTarget>;
|
|
136962
137430
|
scopes: Array<Scalars['String']['output']>;
|
|
136963
137431
|
versionId: Scalars['String']['output'];
|
|
136964
137432
|
};
|
|
136965
137433
|
export declare type MarketplaceConsoleForgeFrameworkAttributesInput = {
|
|
136966
137434
|
appId: Scalars['String']['input'];
|
|
136967
137435
|
envId: Scalars['String']['input'];
|
|
137436
|
+
installationTarget?: InputMaybe<MarketplaceConsoleInstallationTarget>;
|
|
136968
137437
|
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
136969
137438
|
versionId: Scalars['String']['input'];
|
|
136970
137439
|
};
|
|
@@ -137018,6 +137487,10 @@ export declare type MarketplaceConsoleImageMediaAsset = {
|
|
|
137018
137487
|
uri: Scalars['String']['output'];
|
|
137019
137488
|
width: Scalars['Int']['output'];
|
|
137020
137489
|
};
|
|
137490
|
+
export declare enum MarketplaceConsoleInstallationTarget {
|
|
137491
|
+
Site = "SITE",
|
|
137492
|
+
Unit = "UNIT"
|
|
137493
|
+
}
|
|
137021
137494
|
export declare type MarketplaceConsoleJsonPatchOperation = {
|
|
137022
137495
|
op: MarketplaceConsoleJsonPatchOperationType;
|
|
137023
137496
|
path: Scalars['String']['input'];
|
|
@@ -138360,6 +138833,7 @@ export declare type MarketplaceStoreAppReview = {
|
|
|
138360
138833
|
review?: Maybe<Scalars['String']['output']>;
|
|
138361
138834
|
stars?: Maybe<Scalars['Int']['output']>;
|
|
138362
138835
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
138836
|
+
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
138363
138837
|
};
|
|
138364
138838
|
export declare type MarketplaceStoreAppSoftwareVersionListingLinks = {
|
|
138365
138839
|
__typename?: 'MarketplaceStoreAppSoftwareVersionListingLinks';
|
|
@@ -138595,6 +139069,7 @@ export declare type MarketplaceStoreCurrentUserReviewResponse = {
|
|
|
138595
139069
|
stars?: Maybe<Scalars['Int']['output']>;
|
|
138596
139070
|
status?: Maybe<Scalars['String']['output']>;
|
|
138597
139071
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
139072
|
+
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
138598
139073
|
userHasComplianceConsent?: Maybe<Scalars['Boolean']['output']>;
|
|
138599
139074
|
};
|
|
138600
139075
|
export declare type MarketplaceStoreDataAccessAndStorage = {
|
|
@@ -139538,6 +140013,7 @@ export declare type MarketplaceStoreReviewByIdResponse = {
|
|
|
139538
140013
|
review?: Maybe<Scalars['String']['output']>;
|
|
139539
140014
|
stars: Scalars['Int']['output'];
|
|
139540
140015
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
140016
|
+
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
139541
140017
|
};
|
|
139542
140018
|
export declare type MarketplaceStoreReviewFilterInput = {
|
|
139543
140019
|
hosting?: InputMaybe<MarketplaceStoreAtlassianProductHostingType>;
|
|
@@ -139554,6 +140030,7 @@ export declare type MarketplaceStoreReviewNode = MarketplaceStoreAppReview & {
|
|
|
139554
140030
|
review?: Maybe<Scalars['String']['output']>;
|
|
139555
140031
|
stars?: Maybe<Scalars['Int']['output']>;
|
|
139556
140032
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
140033
|
+
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
139557
140034
|
};
|
|
139558
140035
|
export declare type MarketplaceStoreReviewNodeWithProductListing = MarketplaceStoreAppReview & {
|
|
139559
140036
|
__typename?: 'MarketplaceStoreReviewNodeWithProductListing';
|
|
@@ -139567,6 +140044,7 @@ export declare type MarketplaceStoreReviewNodeWithProductListing = MarketplaceSt
|
|
|
139567
140044
|
review?: Maybe<Scalars['String']['output']>;
|
|
139568
140045
|
stars?: Maybe<Scalars['Int']['output']>;
|
|
139569
140046
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
140047
|
+
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
139570
140048
|
};
|
|
139571
140049
|
export declare type MarketplaceStoreReviewsByUserResponse = {
|
|
139572
140050
|
__typename?: 'MarketplaceStoreReviewsByUserResponse';
|
|
@@ -141165,6 +141643,7 @@ export declare enum MercuryEntityType {
|
|
|
141165
141643
|
FocusAreaStatusUpdate = "FOCUS_AREA_STATUS_UPDATE",
|
|
141166
141644
|
Program = "PROGRAM",
|
|
141167
141645
|
ProgramStatusUpdate = "PROGRAM_STATUS_UPDATE",
|
|
141646
|
+
Risk = "RISK",
|
|
141168
141647
|
StrategicEvent = "STRATEGIC_EVENT"
|
|
141169
141648
|
}
|
|
141170
141649
|
export declare type MercuryEstimateBenefitAtCompletion = {
|
|
@@ -142928,6 +143407,7 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
142928
143407
|
export declare type MercuryNormalizedWork = HasMercuryProjectFields & {
|
|
142929
143408
|
__typename?: 'MercuryNormalizedWork';
|
|
142930
143409
|
connectedFocusArea: Scalars['ID']['output'];
|
|
143410
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
142931
143411
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
142932
143412
|
externalOwner?: Maybe<MercuryExternalOwner>;
|
|
142933
143413
|
id: Scalars['ID']['output'];
|
|
@@ -147388,14 +147868,12 @@ export declare type MutationAssetsVertical_UpdateVerticalInstantiationCategoryAr
|
|
|
147388
147868
|
input: AssetsVerticalUpdateVerticalInstantiationCategoryInput;
|
|
147389
147869
|
};
|
|
147390
147870
|
export declare type MutationAssets_AddExternalReferenceTypeAttributeValueArgs = {
|
|
147391
|
-
attributeId: Scalars['ID']['input'];
|
|
147392
|
-
cloudId: Scalars['ID']['input'];
|
|
147393
147871
|
externalReferences: Array<AssetsExternalReferenceInput>;
|
|
147872
|
+
objectId: Scalars['ID']['input'];
|
|
147394
147873
|
};
|
|
147395
147874
|
export declare type MutationAssets_DeleteExternalReferenceTypeAttributeValueArgs = {
|
|
147396
|
-
attributeId: Scalars['ID']['input'];
|
|
147397
|
-
cloudId: Scalars['ID']['input'];
|
|
147398
147875
|
ids: Array<Scalars['ID']['input']>;
|
|
147876
|
+
objectId: Scalars['ID']['input'];
|
|
147399
147877
|
};
|
|
147400
147878
|
export declare type MutationAssets_UpdateObjectAttributeValueArgs = {
|
|
147401
147879
|
cloudId: Scalars['ID']['input'];
|
|
@@ -153363,40 +153841,45 @@ export declare enum PostOfficeMessageCreationType {
|
|
|
153363
153841
|
Explicit = "explicit",
|
|
153364
153842
|
Implicit = "implicit"
|
|
153365
153843
|
}
|
|
153366
|
-
export declare type PostOfficeMessageData = PostOfficeMessageJiraBoardCatchUpRovoNudgeData | PostOfficeMessageLiveAndPersistedTestMessageData | PostOfficeMessageLiveNudgeDemoMessageData |
|
|
153844
|
+
export declare type PostOfficeMessageData = PostOfficeMessageJiraBoardCatchUpRovoNudgeData | PostOfficeMessageLiveAndPersistedTestMessageData | PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData | PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData | PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData | PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData;
|
|
153367
153845
|
export declare type PostOfficeMessageJiraBoardCatchUpRovoNudgeData = {
|
|
153368
153846
|
__typename?: 'PostOfficeMessageJiraBoardCatchUpRovoNudgeData';
|
|
153369
|
-
description
|
|
153370
|
-
title
|
|
153847
|
+
description: Scalars['String']['output'];
|
|
153848
|
+
title: Scalars['String']['output'];
|
|
153371
153849
|
};
|
|
153372
153850
|
export declare type PostOfficeMessageLiveAndPersistedTestMessageData = {
|
|
153373
153851
|
__typename?: 'PostOfficeMessageLiveAndPersistedTestMessageData';
|
|
153374
|
-
description
|
|
153375
|
-
title
|
|
153852
|
+
description: Scalars['String']['output'];
|
|
153853
|
+
title: Scalars['String']['output'];
|
|
153854
|
+
};
|
|
153855
|
+
export declare type PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData = {
|
|
153856
|
+
__typename?: 'PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData';
|
|
153857
|
+
description: Scalars['String']['output'];
|
|
153858
|
+
title: Scalars['String']['output'];
|
|
153376
153859
|
};
|
|
153377
153860
|
export declare type PostOfficeMessageLiveNudgeDemoMessageData = {
|
|
153378
153861
|
__typename?: 'PostOfficeMessageLiveNudgeDemoMessageData';
|
|
153379
|
-
description
|
|
153380
|
-
title
|
|
153862
|
+
description: Scalars['String']['output'];
|
|
153863
|
+
title: Scalars['String']['output'];
|
|
153381
153864
|
};
|
|
153382
153865
|
export declare type PostOfficeMessagePayload = {
|
|
153383
153866
|
__typename?: 'PostOfficeMessagePayload';
|
|
153384
153867
|
messages: Array<PostOfficeMessage>;
|
|
153385
153868
|
};
|
|
153386
|
-
export declare type
|
|
153387
|
-
__typename?: '
|
|
153388
|
-
|
|
153869
|
+
export declare type PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData = {
|
|
153870
|
+
__typename?: 'PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData';
|
|
153871
|
+
description: Scalars['String']['output'];
|
|
153872
|
+
title: Scalars['String']['output'];
|
|
153389
153873
|
};
|
|
153390
|
-
export declare type
|
|
153391
|
-
__typename?: '
|
|
153392
|
-
|
|
153874
|
+
export declare type PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData = {
|
|
153875
|
+
__typename?: 'PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData';
|
|
153876
|
+
description: Scalars['String']['output'];
|
|
153877
|
+
title: Scalars['String']['output'];
|
|
153393
153878
|
};
|
|
153394
|
-
export declare type
|
|
153395
|
-
__typename?: '
|
|
153396
|
-
|
|
153397
|
-
|
|
153398
|
-
tenantId: Scalars['String']['output'];
|
|
153399
|
-
variation: Scalars['String']['output'];
|
|
153879
|
+
export declare type PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData = {
|
|
153880
|
+
__typename?: 'PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData';
|
|
153881
|
+
description: Scalars['String']['output'];
|
|
153882
|
+
title: Scalars['String']['output'];
|
|
153400
153883
|
};
|
|
153401
153884
|
export declare type PostOfficeRecommendationSession = {
|
|
153402
153885
|
__typename?: 'PostOfficeRecommendationSession';
|
|
@@ -153805,6 +154288,7 @@ export declare type Query = {
|
|
|
153805
154288
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
153806
154289
|
admin_aiPolicies?: Maybe<AdminAiPolicyConnection>;
|
|
153807
154290
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
154291
|
+
admin_appModulesForApps?: Maybe<Array<AdminAppModulesForAppsResult>>;
|
|
153808
154292
|
admin_auditLogEventActions?: Maybe<AdminAuditLogGroupEventActionConnection>;
|
|
153809
154293
|
admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
|
|
153810
154294
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
@@ -154020,6 +154504,7 @@ export declare type Query = {
|
|
|
154020
154504
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
154021
154505
|
assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
|
|
154022
154506
|
assetsVertical_depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
|
|
154507
|
+
assetsVertical_insightDetails?: Maybe<AssetsVerticalInsightDetailsResult>;
|
|
154023
154508
|
assetsVertical_insights?: Maybe<AssetsVerticalInsightsResult>;
|
|
154024
154509
|
assetsVertical_instantiatedBundle?: Maybe<AssetsVerticalBundleInstantiationResult>;
|
|
154025
154510
|
assetsVertical_itemMapping?: Maybe<AssetsVerticalItemMappingResult>;
|
|
@@ -154629,6 +155114,7 @@ export declare type Query = {
|
|
|
154629
155114
|
jsmChannels_taskAgents: JsmChannelsTaskAgentsResult;
|
|
154630
155115
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
154631
155116
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
155117
|
+
jsmConversation_mediaConfiguration?: Maybe<JsmConversationMediaConfigurationResult>;
|
|
154632
155118
|
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
154633
155119
|
jsmConversation_settings?: Maybe<JsmConversationSettings>;
|
|
154634
155120
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
@@ -154818,6 +155304,7 @@ export declare type Query = {
|
|
|
154818
155304
|
radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
|
|
154819
155305
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
154820
155306
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
155307
|
+
radar_focusAreaRecommendation?: Maybe<RadarFocusAreaRecommendationConnection>;
|
|
154821
155308
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
154822
155309
|
radar_lastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
154823
155310
|
radar_notificationSettings?: Maybe<Array<RadarNotification>>;
|
|
@@ -155076,6 +155563,10 @@ export declare type QueryAdmin_AppModulesArgs = {
|
|
|
155076
155563
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
155077
155564
|
moduleKeys: Array<Scalars['String']['input']>;
|
|
155078
155565
|
};
|
|
155566
|
+
export declare type QueryAdmin_AppModulesForAppsArgs = {
|
|
155567
|
+
appIdentifiers: Array<AdminAppModulesKey>;
|
|
155568
|
+
moduleKeys: Array<Scalars['String']['input']>;
|
|
155569
|
+
};
|
|
155079
155570
|
export declare type QueryAdmin_AuditLogEventActionsArgs = {
|
|
155080
155571
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
155081
155572
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -156238,6 +156729,9 @@ export declare type QueryAssetsVertical_DepreciationRulesArgs = {
|
|
|
156238
156729
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
156239
156730
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
156240
156731
|
};
|
|
156732
|
+
export declare type QueryAssetsVertical_InsightDetailsArgs = {
|
|
156733
|
+
cloudId: Scalars['ID']['input'];
|
|
156734
|
+
};
|
|
156241
156735
|
export declare type QueryAssetsVertical_InsightsArgs = {
|
|
156242
156736
|
cloudId: Scalars['ID']['input'];
|
|
156243
156737
|
};
|
|
@@ -158810,6 +159304,9 @@ export declare type QueryJsmConversation_ConversationsArgs = {
|
|
|
158810
159304
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158811
159305
|
projectKey: Scalars['String']['input'];
|
|
158812
159306
|
};
|
|
159307
|
+
export declare type QueryJsmConversation_MediaConfigurationArgs = {
|
|
159308
|
+
conversationAri: Scalars['ID']['input'];
|
|
159309
|
+
};
|
|
158813
159310
|
export declare type QueryJsmConversation_MessagesArgs = {
|
|
158814
159311
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
158815
159312
|
cloudId: Scalars['ID']['input'];
|
|
@@ -159445,6 +159942,14 @@ export declare type QueryRadar_FieldValuesArgs = {
|
|
|
159445
159942
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
159446
159943
|
uniqueFieldId: Scalars['ID']['input'];
|
|
159447
159944
|
};
|
|
159945
|
+
export declare type QueryRadar_FocusAreaRecommendationArgs = {
|
|
159946
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
159947
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
159948
|
+
cloudId: Scalars['ID']['input'];
|
|
159949
|
+
filter: RadarFocusAreaRecommendationFilter;
|
|
159950
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159951
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
159952
|
+
};
|
|
159448
159953
|
export declare type QueryRadar_GroupMetricsArgs = {
|
|
159449
159954
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159450
159955
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -160698,6 +161203,26 @@ export declare type RadarFocusAreaMappingsInput = {
|
|
|
160698
161203
|
focusAreaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
160699
161204
|
positionAri: Scalars['ID']['input'];
|
|
160700
161205
|
};
|
|
161206
|
+
export declare type RadarFocusAreaRecommendation = {
|
|
161207
|
+
__typename?: 'RadarFocusAreaRecommendation';
|
|
161208
|
+
positionAri?: Maybe<RadarAriFieldValue>;
|
|
161209
|
+
recommendedFocusAreaAri?: Maybe<RadarAriFieldValue>;
|
|
161210
|
+
};
|
|
161211
|
+
export declare type RadarFocusAreaRecommendationConnection = RadarConnection & {
|
|
161212
|
+
__typename?: 'RadarFocusAreaRecommendationConnection';
|
|
161213
|
+
edges?: Maybe<Array<RadarFocusAreaRecommendationEdge>>;
|
|
161214
|
+
nodes?: Maybe<Array<RadarFocusAreaRecommendation>>;
|
|
161215
|
+
pageInfo: PageInfo;
|
|
161216
|
+
totalCount: Scalars['Int']['output'];
|
|
161217
|
+
};
|
|
161218
|
+
export declare type RadarFocusAreaRecommendationEdge = RadarEdge & {
|
|
161219
|
+
__typename?: 'RadarFocusAreaRecommendationEdge';
|
|
161220
|
+
cursor: Scalars['String']['output'];
|
|
161221
|
+
node: RadarFocusAreaRecommendation;
|
|
161222
|
+
};
|
|
161223
|
+
export declare type RadarFocusAreaRecommendationFilter = {
|
|
161224
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
161225
|
+
};
|
|
160701
161226
|
export declare type RadarFunction = {
|
|
160702
161227
|
__typename?: 'RadarFunction';
|
|
160703
161228
|
argType: RadarFieldType;
|
|
@@ -162739,6 +163264,7 @@ export declare enum Scope {
|
|
|
162739
163264
|
ReadDeveloperSpace = "READ_DEVELOPER_SPACE",
|
|
162740
163265
|
ReadDevInfoJira = "READ_DEV_INFO_JIRA",
|
|
162741
163266
|
ReadFeedbackFeedback = "READ_FEEDBACK_FEEDBACK",
|
|
163267
|
+
ReadHomeTwgCli = "READ_HOME_TWG_CLI",
|
|
162742
163268
|
ReadInsightJpd = "READ_INSIGHT_JPD",
|
|
162743
163269
|
ReadJiraUser = "READ_JIRA_USER",
|
|
162744
163270
|
ReadJiraWork = "READ_JIRA_WORK",
|
|
@@ -162762,7 +163288,9 @@ export declare enum Scope {
|
|
|
162762
163288
|
ReadOrganization = "READ_ORGANIZATION",
|
|
162763
163289
|
ReadOrganizationProperty = "READ_ORGANIZATION_PROPERTY",
|
|
162764
163290
|
ReadOrganizationUser = "READ_ORGANIZATION_USER",
|
|
163291
|
+
ReadProjectJpd = "READ_PROJECT_JPD",
|
|
162765
163292
|
ReadQueue = "READ_QUEUE",
|
|
163293
|
+
ReadRadarTwgCli = "READ_RADAR_TWG_CLI",
|
|
162766
163294
|
ReadRequest = "READ_REQUEST",
|
|
162767
163295
|
ReadRequesttype = "READ_REQUESTTYPE",
|
|
162768
163296
|
ReadRequesttypeProperty = "READ_REQUESTTYPE_PROPERTY",
|
|
@@ -162876,6 +163404,7 @@ export declare enum Scope {
|
|
|
162876
163404
|
WriteDesign = "WRITE_DESIGN",
|
|
162877
163405
|
WriteDeveloperSpace = "WRITE_DEVELOPER_SPACE",
|
|
162878
163406
|
WriteFeedbackFeedback = "WRITE_FEEDBACK_FEEDBACK",
|
|
163407
|
+
WriteHomeTwgCli = "WRITE_HOME_TWG_CLI",
|
|
162879
163408
|
WriteInsightJpd = "WRITE_INSIGHT_JPD",
|
|
162880
163409
|
WriteJiraWork = "WRITE_JIRA_WORK",
|
|
162881
163410
|
WriteJsmTwgCli = "WRITE_JSM_TWG_CLI",
|
|
@@ -162896,6 +163425,7 @@ export declare enum Scope {
|
|
|
162896
163425
|
WriteOrganization = "WRITE_ORGANIZATION",
|
|
162897
163426
|
WriteOrganizationProperty = "WRITE_ORGANIZATION_PROPERTY",
|
|
162898
163427
|
WriteOrganizationUser = "WRITE_ORGANIZATION_USER",
|
|
163428
|
+
WriteRadarTwgCli = "WRITE_RADAR_TWG_CLI",
|
|
162899
163429
|
WriteRequest = "WRITE_REQUEST",
|
|
162900
163430
|
WriteRequesttype = "WRITE_REQUESTTYPE",
|
|
162901
163431
|
WriteRequesttypeProperty = "WRITE_REQUESTTYPE_PROPERTY",
|
|
@@ -163063,7 +163593,10 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
|
|
|
163063
163593
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163064
163594
|
id: Scalars['ID']['output'];
|
|
163065
163595
|
isVerified: Scalars['Boolean']['output'];
|
|
163596
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163066
163597
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
163598
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
163599
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163067
163600
|
lastModified?: Maybe<Scalars['String']['output']>;
|
|
163068
163601
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163069
163602
|
latestUserAction?: Maybe<Scalars['String']['output']>;
|
|
@@ -163109,7 +163642,10 @@ export declare type SearchConfluenceSpace = SearchL2FeatureProvider & SearchResu
|
|
|
163109
163642
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163110
163643
|
id: Scalars['ID']['output'];
|
|
163111
163644
|
key?: Maybe<Scalars['String']['output']>;
|
|
163645
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163112
163646
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
163647
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
163648
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163113
163649
|
lastModified?: Maybe<Scalars['String']['output']>;
|
|
163114
163650
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163115
163651
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -163305,7 +163841,10 @@ export declare type SearchL2Feature = {
|
|
|
163305
163841
|
value?: Maybe<Scalars['Float']['output']>;
|
|
163306
163842
|
};
|
|
163307
163843
|
export declare type SearchL2FeatureProvider = {
|
|
163844
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163308
163845
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
163846
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
163847
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163309
163848
|
};
|
|
163310
163849
|
export declare type SearchLayerDefinition = {
|
|
163311
163850
|
abTestId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -163664,7 +164203,10 @@ export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & Searc
|
|
|
163664
164203
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
163665
164204
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163666
164205
|
id: Scalars['ID']['output'];
|
|
164206
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163667
164207
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164208
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164209
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163668
164210
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163669
164211
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
163670
164212
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -163682,7 +164224,10 @@ export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & S
|
|
|
163682
164224
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
163683
164225
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163684
164226
|
id: Scalars['ID']['output'];
|
|
164227
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163685
164228
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164229
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164230
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163686
164231
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163687
164232
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
163688
164233
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -163700,7 +164245,10 @@ export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & Se
|
|
|
163700
164245
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
163701
164246
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163702
164247
|
id: Scalars['ID']['output'];
|
|
164248
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163703
164249
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164250
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164251
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163704
164252
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163705
164253
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
163706
164254
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -163732,7 +164280,10 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
163732
164280
|
id: Scalars['ID']['output'];
|
|
163733
164281
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
163734
164282
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
164283
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163735
164284
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164285
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164286
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163736
164287
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163737
164288
|
linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
|
|
163738
164289
|
linkedEntitiesType?: Maybe<SearchLinkedEntitiesType>;
|
|
@@ -163934,7 +164485,10 @@ export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & Se
|
|
|
163934
164485
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
163935
164486
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163936
164487
|
id: Scalars['ID']['output'];
|
|
164488
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163937
164489
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164490
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164491
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163938
164492
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163939
164493
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
163940
164494
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -163952,7 +164506,10 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
163952
164506
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163953
164507
|
id: Scalars['ID']['output'];
|
|
163954
164508
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
164509
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163955
164510
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164511
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164512
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163956
164513
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163957
164514
|
linkedEntities?: Maybe<Array<SearchResultSlackMessage>>;
|
|
163958
164515
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -184432,7 +184989,8 @@ export declare type SpcsStartFullSiteScanPayload = {
|
|
|
184432
184989
|
export declare enum SpcsUpdateScanStatusAction {
|
|
184433
184990
|
Cancelled = "CANCELLED",
|
|
184434
184991
|
Done = "DONE",
|
|
184435
|
-
Failed = "FAILED"
|
|
184992
|
+
Failed = "FAILED",
|
|
184993
|
+
InProgress = "IN_PROGRESS"
|
|
184436
184994
|
}
|
|
184437
184995
|
export declare type SpcsUpdateScanStatusInput = {
|
|
184438
184996
|
status: SpcsUpdateScanStatusAction;
|
|
@@ -187090,6 +187648,7 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
187090
187648
|
};
|
|
187091
187649
|
export declare type Subscription = {
|
|
187092
187650
|
__typename?: 'Subscription';
|
|
187651
|
+
assetsVertical_onAsyncTaskUpdated?: Maybe<AssetsVerticalAsyncTaskStatus>;
|
|
187093
187652
|
bitbucket?: Maybe<BitbucketSubscription>;
|
|
187094
187653
|
blockService_onBlockUpdated?: Maybe<BlockServiceBlockPayload>;
|
|
187095
187654
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
@@ -187131,6 +187690,10 @@ export declare type Subscription = {
|
|
|
187131
187690
|
testing?: Maybe<TestingSubscription>;
|
|
187132
187691
|
trello: TrelloSubscriptionApi;
|
|
187133
187692
|
};
|
|
187693
|
+
export declare type SubscriptionAssetsVertical_OnAsyncTaskUpdatedArgs = {
|
|
187694
|
+
cloudId: Scalars['ID']['input'];
|
|
187695
|
+
taskId: Scalars['ID']['input'];
|
|
187696
|
+
};
|
|
187134
187697
|
export declare type SubscriptionBlockService_OnBlockUpdatedArgs = {
|
|
187135
187698
|
resourceId: Scalars['ID']['input'];
|
|
187136
187699
|
};
|
|
@@ -189198,6 +189761,12 @@ export declare type TownsquareAddTagsByNamePayload = {
|
|
|
189198
189761
|
success: Scalars['Boolean']['output'];
|
|
189199
189762
|
tags?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
189200
189763
|
};
|
|
189764
|
+
export declare type TownsquareAppAccessMutationErrorExtension = MutationErrorExtension & {
|
|
189765
|
+
__typename?: 'TownsquareAppAccessMutationErrorExtension';
|
|
189766
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
189767
|
+
failedAccountIds: Array<Scalars['String']['output']>;
|
|
189768
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
189769
|
+
};
|
|
189201
189770
|
export declare type TownsquareArchiveGoalInput = {
|
|
189202
189771
|
id: Scalars['String']['input'];
|
|
189203
189772
|
};
|
|
@@ -193070,15 +193639,6 @@ export declare type TrelloApplicationUsage = {
|
|
|
193070
193639
|
boards?: Maybe<Scalars['Int']['output']>;
|
|
193071
193640
|
members?: Maybe<Scalars['Int']['output']>;
|
|
193072
193641
|
};
|
|
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
193642
|
export declare type TrelloAssignCardToPlannerCalendarEventFailure = {
|
|
193083
193643
|
__typename?: 'TrelloAssignCardToPlannerCalendarEventFailure';
|
|
193084
193644
|
cardId: Scalars['ID']['output'];
|
|
@@ -194271,6 +194831,15 @@ export declare type TrelloCloseBoardPayload = Payload & {
|
|
|
194271
194831
|
errors?: Maybe<Array<MutationError>>;
|
|
194272
194832
|
success: Scalars['Boolean']['output'];
|
|
194273
194833
|
};
|
|
194834
|
+
export declare type TrelloCloseCardInput = {
|
|
194835
|
+
cardId: Scalars['ID']['input'];
|
|
194836
|
+
};
|
|
194837
|
+
export declare type TrelloCloseCardPayload = Payload & {
|
|
194838
|
+
__typename?: 'TrelloCloseCardPayload';
|
|
194839
|
+
card?: Maybe<TrelloBaseCard>;
|
|
194840
|
+
errors?: Maybe<Array<MutationError>>;
|
|
194841
|
+
success: Scalars['Boolean']['output'];
|
|
194842
|
+
};
|
|
194274
194843
|
export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
194275
194844
|
__typename?: 'TrelloCommentCardAction';
|
|
194276
194845
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -195600,6 +196169,16 @@ export declare type TrelloMoveCardBoardEntities = {
|
|
|
195600
196169
|
card?: Maybe<TrelloActionCardEntity>;
|
|
195601
196170
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
195602
196171
|
};
|
|
196172
|
+
export declare type TrelloMoveCardInput = {
|
|
196173
|
+
cardId: Scalars['ID']['input'];
|
|
196174
|
+
listId: Scalars['ID']['input'];
|
|
196175
|
+
};
|
|
196176
|
+
export declare type TrelloMoveCardPayload = Payload & {
|
|
196177
|
+
__typename?: 'TrelloMoveCardPayload';
|
|
196178
|
+
card?: Maybe<TrelloBaseCard>;
|
|
196179
|
+
errors?: Maybe<Array<MutationError>>;
|
|
196180
|
+
success: Scalars['Boolean']['output'];
|
|
196181
|
+
};
|
|
195603
196182
|
export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
195604
196183
|
__typename?: 'TrelloMoveCardToBoardAction';
|
|
195605
196184
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -195662,11 +196241,11 @@ export declare type TrelloMutationApi = {
|
|
|
195662
196241
|
addLabelsToCard?: Maybe<TrelloAddLabelsToCardPayload>;
|
|
195663
196242
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
195664
196243
|
addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
|
|
195665
|
-
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
195666
196244
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
195667
196245
|
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
195668
196246
|
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
195669
196247
|
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
196248
|
+
closeCard?: Maybe<TrelloCloseCardPayload>;
|
|
195670
196249
|
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
195671
196250
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
195672
196251
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
@@ -195699,6 +196278,7 @@ export declare type TrelloMutationApi = {
|
|
|
195699
196278
|
markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
|
|
195700
196279
|
markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
|
|
195701
196280
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
196281
|
+
moveCard?: Maybe<TrelloMoveCardPayload>;
|
|
195702
196282
|
movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
|
|
195703
196283
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
195704
196284
|
proactiveSmartScheduleCards?: Maybe<TrelloProactiveSmartScheduleCardsPayload>;
|
|
@@ -195711,6 +196291,7 @@ export declare type TrelloMutationApi = {
|
|
|
195711
196291
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
195712
196292
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
195713
196293
|
reopenBoard?: Maybe<TrelloReopenBoardPayload>;
|
|
196294
|
+
reopenCard?: Maybe<TrelloReopenCardPayload>;
|
|
195714
196295
|
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
195715
196296
|
retryAiOnBoard?: Maybe<TrelloRetryAiOnBoardPayload>;
|
|
195716
196297
|
rotateOAuth2ClientSecret?: Maybe<TrelloRotateOAuth2ClientSecretPayload>;
|
|
@@ -195723,7 +196304,6 @@ export declare type TrelloMutationApi = {
|
|
|
195723
196304
|
sortListCards?: Maybe<TrelloSortListCardsPayload>;
|
|
195724
196305
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
195725
196306
|
toggleLabsFeatureForMember?: Maybe<TrelloToggleLabsFeatureForMemberPayload>;
|
|
195726
|
-
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
195727
196307
|
undoAction?: Maybe<TrelloUndoActionPayload>;
|
|
195728
196308
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
195729
196309
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
@@ -195744,6 +196324,7 @@ export declare type TrelloMutationApi = {
|
|
|
195744
196324
|
updateBoardVotingPermissions?: Maybe<TrelloUpdateBoardVotingPermissionsPayload>;
|
|
195745
196325
|
updateCardCover?: Maybe<TrelloUpdateCardCoverPayload>;
|
|
195746
196326
|
updateCardDateViewedByCreator?: Maybe<TrelloUpdateCardDateViewedByCreatorPayload>;
|
|
196327
|
+
updateCardDescription?: Maybe<TrelloUpdateCardDescriptionPayload>;
|
|
195747
196328
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
195748
196329
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
195749
196330
|
updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
|
|
@@ -195776,9 +196357,6 @@ export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
|
195776
196357
|
export declare type TrelloMutationApiAddWorkspaceTagToBoardArgs = {
|
|
195777
196358
|
input: TrelloAddWorkspaceTagToBoardInput;
|
|
195778
196359
|
};
|
|
195779
|
-
export declare type TrelloMutationApiArchiveCardArgs = {
|
|
195780
|
-
input: TrelloArchiveCardInput;
|
|
195781
|
-
};
|
|
195782
196360
|
export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
|
|
195783
196361
|
input: TrelloAssignCardToPlannerCalendarEventInput;
|
|
195784
196362
|
};
|
|
@@ -195791,6 +196369,9 @@ export declare type TrelloMutationApiBulkDeleteListArgs = {
|
|
|
195791
196369
|
export declare type TrelloMutationApiCloseBoardArgs = {
|
|
195792
196370
|
input: TrelloCloseBoardInput;
|
|
195793
196371
|
};
|
|
196372
|
+
export declare type TrelloMutationApiCloseCardArgs = {
|
|
196373
|
+
input: TrelloCloseCardInput;
|
|
196374
|
+
};
|
|
195794
196375
|
export declare type TrelloMutationApiConvertBoardToTemplateArgs = {
|
|
195795
196376
|
input: TrelloConvertBoardToTemplateInput;
|
|
195796
196377
|
};
|
|
@@ -195887,6 +196468,9 @@ export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
|
|
|
195887
196468
|
export declare type TrelloMutationApiMergeCardsArgs = {
|
|
195888
196469
|
input: TrelloMergeCardsInput;
|
|
195889
196470
|
};
|
|
196471
|
+
export declare type TrelloMutationApiMoveCardArgs = {
|
|
196472
|
+
input: TrelloMoveCardInput;
|
|
196473
|
+
};
|
|
195890
196474
|
export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
|
|
195891
196475
|
input: TrelloMovePlannerCalendarEventInput;
|
|
195892
196476
|
};
|
|
@@ -195920,6 +196504,9 @@ export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
|
|
|
195920
196504
|
export declare type TrelloMutationApiReopenBoardArgs = {
|
|
195921
196505
|
input: TrelloReopenBoardInput;
|
|
195922
196506
|
};
|
|
196507
|
+
export declare type TrelloMutationApiReopenCardArgs = {
|
|
196508
|
+
input: TrelloReopenCardInput;
|
|
196509
|
+
};
|
|
195923
196510
|
export declare type TrelloMutationApiResetCardCoverArgs = {
|
|
195924
196511
|
input: TrelloResetCardCoverInput;
|
|
195925
196512
|
};
|
|
@@ -195953,9 +196540,6 @@ export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
|
195953
196540
|
export declare type TrelloMutationApiToggleLabsFeatureForMemberArgs = {
|
|
195954
196541
|
input: TrelloToggleLabsFeatureForMemberInput;
|
|
195955
196542
|
};
|
|
195956
|
-
export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
195957
|
-
input: TrelloUnarchiveCardInput;
|
|
195958
|
-
};
|
|
195959
196543
|
export declare type TrelloMutationApiUndoActionArgs = {
|
|
195960
196544
|
input: TrelloUndoActionInput;
|
|
195961
196545
|
};
|
|
@@ -196016,6 +196600,9 @@ export declare type TrelloMutationApiUpdateCardCoverArgs = {
|
|
|
196016
196600
|
export declare type TrelloMutationApiUpdateCardDateViewedByCreatorArgs = {
|
|
196017
196601
|
input: TrelloUpdateCardDateViewedByCreatorInput;
|
|
196018
196602
|
};
|
|
196603
|
+
export declare type TrelloMutationApiUpdateCardDescriptionArgs = {
|
|
196604
|
+
input: TrelloUpdateCardDescriptionInput;
|
|
196605
|
+
};
|
|
196019
196606
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
196020
196607
|
input: TrelloUpdateCardNameInput;
|
|
196021
196608
|
};
|
|
@@ -196136,6 +196723,7 @@ export declare type TrelloPlanner = {
|
|
|
196136
196723
|
primaryCalendar?: Maybe<TrelloPlannerPrimaryCalendar>;
|
|
196137
196724
|
primaryCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
196138
196725
|
proposedEvents?: Maybe<TrelloPlannerProposedEventConnection>;
|
|
196726
|
+
soloBoards?: Maybe<TrelloPlannerSoloBoardsConnection>;
|
|
196139
196727
|
workspace?: Maybe<TrelloWorkspace>;
|
|
196140
196728
|
};
|
|
196141
196729
|
export declare type TrelloPlannerAccountsArgs = {
|
|
@@ -196151,6 +196739,10 @@ export declare type TrelloPlannerProposedEventsArgs = {
|
|
|
196151
196739
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
196152
196740
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196153
196741
|
};
|
|
196742
|
+
export declare type TrelloPlannerSoloBoardsArgs = {
|
|
196743
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
196744
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196745
|
+
};
|
|
196154
196746
|
export declare type TrelloPlannerBaseCardUpdated = {
|
|
196155
196747
|
id: Scalars['ID']['output'];
|
|
196156
196748
|
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
@@ -196692,6 +197284,21 @@ export declare type TrelloPlannerProviderCalendarUpdated = {
|
|
|
196692
197284
|
title?: Maybe<Scalars['String']['output']>;
|
|
196693
197285
|
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
196694
197286
|
};
|
|
197287
|
+
export declare type TrelloPlannerSoloBoard = {
|
|
197288
|
+
__typename?: 'TrelloPlannerSoloBoard';
|
|
197289
|
+
id: Scalars['ID']['output'];
|
|
197290
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
197291
|
+
};
|
|
197292
|
+
export declare type TrelloPlannerSoloBoardEdge = {
|
|
197293
|
+
__typename?: 'TrelloPlannerSoloBoardEdge';
|
|
197294
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
197295
|
+
node?: Maybe<TrelloPlannerSoloBoard>;
|
|
197296
|
+
};
|
|
197297
|
+
export declare type TrelloPlannerSoloBoardsConnection = {
|
|
197298
|
+
__typename?: 'TrelloPlannerSoloBoardsConnection';
|
|
197299
|
+
edges?: Maybe<Array<TrelloPlannerSoloBoardEdge>>;
|
|
197300
|
+
pageInfo: PageInfo;
|
|
197301
|
+
};
|
|
196695
197302
|
export declare type TrelloPlannerUpdated = {
|
|
196696
197303
|
__typename?: 'TrelloPlannerUpdated';
|
|
196697
197304
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
@@ -197195,6 +197802,15 @@ export declare type TrelloReopenBoardPayload = Payload & {
|
|
|
197195
197802
|
errors?: Maybe<Array<MutationError>>;
|
|
197196
197803
|
success: Scalars['Boolean']['output'];
|
|
197197
197804
|
};
|
|
197805
|
+
export declare type TrelloReopenCardInput = {
|
|
197806
|
+
cardId: Scalars['ID']['input'];
|
|
197807
|
+
};
|
|
197808
|
+
export declare type TrelloReopenCardPayload = Payload & {
|
|
197809
|
+
__typename?: 'TrelloReopenCardPayload';
|
|
197810
|
+
card?: Maybe<TrelloBaseCard>;
|
|
197811
|
+
errors?: Maybe<Array<MutationError>>;
|
|
197812
|
+
success: Scalars['Boolean']['output'];
|
|
197813
|
+
};
|
|
197198
197814
|
export declare type TrelloResetCardCoverInput = {
|
|
197199
197815
|
cardId: Scalars['ID']['input'];
|
|
197200
197816
|
};
|
|
@@ -197458,15 +198074,6 @@ export declare enum TrelloTokenFilter {
|
|
|
197458
198074
|
Mobile = "MOBILE",
|
|
197459
198075
|
ThirdParty = "THIRD_PARTY"
|
|
197460
198076
|
}
|
|
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
198077
|
export declare type TrelloUndoActionInput = {
|
|
197471
198078
|
actionId: Scalars['ID']['input'];
|
|
197472
198079
|
};
|
|
@@ -197501,7 +198108,7 @@ export declare type TrelloUpdateBoardCommentingPermissionsInput = {
|
|
|
197501
198108
|
};
|
|
197502
198109
|
export declare type TrelloUpdateBoardCommentingPermissionsPayload = Payload & {
|
|
197503
198110
|
__typename?: 'TrelloUpdateBoardCommentingPermissionsPayload';
|
|
197504
|
-
board?: Maybe<
|
|
198111
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
197505
198112
|
errors?: Maybe<Array<MutationError>>;
|
|
197506
198113
|
success: Scalars['Boolean']['output'];
|
|
197507
198114
|
};
|
|
@@ -197632,7 +198239,7 @@ export declare type TrelloUpdateBoardVotingPermissionsInput = {
|
|
|
197632
198239
|
};
|
|
197633
198240
|
export declare type TrelloUpdateBoardVotingPermissionsPayload = Payload & {
|
|
197634
198241
|
__typename?: 'TrelloUpdateBoardVotingPermissionsPayload';
|
|
197635
|
-
board?: Maybe<
|
|
198242
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
197636
198243
|
errors?: Maybe<Array<MutationError>>;
|
|
197637
198244
|
success: Scalars['Boolean']['output'];
|
|
197638
198245
|
};
|
|
@@ -197695,6 +198302,16 @@ export declare type TrelloUpdateCardDateViewedByCreatorPayload = Payload & {
|
|
|
197695
198302
|
errors?: Maybe<Array<MutationError>>;
|
|
197696
198303
|
success: Scalars['Boolean']['output'];
|
|
197697
198304
|
};
|
|
198305
|
+
export declare type TrelloUpdateCardDescriptionInput = {
|
|
198306
|
+
cardId: Scalars['ID']['input'];
|
|
198307
|
+
description: Scalars['String']['input'];
|
|
198308
|
+
};
|
|
198309
|
+
export declare type TrelloUpdateCardDescriptionPayload = Payload & {
|
|
198310
|
+
__typename?: 'TrelloUpdateCardDescriptionPayload';
|
|
198311
|
+
card?: Maybe<TrelloBaseCard>;
|
|
198312
|
+
errors?: Maybe<Array<MutationError>>;
|
|
198313
|
+
success: Scalars['Boolean']['output'];
|
|
198314
|
+
};
|
|
197698
198315
|
export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionData & {
|
|
197699
198316
|
__typename?: 'TrelloUpdateCardDueAction';
|
|
197700
198317
|
appCreator?: Maybe<TrelloAppCreator>;
|