@forge/cli-shared 8.19.0-next.4 → 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 +18 -0
- package/out/graphql/graphql-types.d.ts +742 -65
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +115 -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
|
};
|
|
@@ -37706,6 +37753,7 @@ export declare type DevAiFlowRepository = {
|
|
|
37706
37753
|
domain?: Maybe<Scalars['String']['output']>;
|
|
37707
37754
|
friendlyRepoUrl?: Maybe<Scalars['String']['output']>;
|
|
37708
37755
|
id?: Maybe<Scalars['ID']['output']>;
|
|
37756
|
+
language?: Maybe<Scalars['String']['output']>;
|
|
37709
37757
|
name?: Maybe<Scalars['String']['output']>;
|
|
37710
37758
|
reason?: Maybe<Scalars['String']['output']>;
|
|
37711
37759
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -46007,7 +46055,6 @@ export declare type GraphIntegrationSkillItem = {
|
|
|
46007
46055
|
};
|
|
46008
46056
|
export declare type GraphIntegrationSkillMetadata = {
|
|
46009
46057
|
__typename?: 'GraphIntegrationSkillMetadata';
|
|
46010
|
-
products: Array<Scalars['String']['output']>;
|
|
46011
46058
|
tags: Array<Scalars['String']['output']>;
|
|
46012
46059
|
tools: Array<GraphIntegrationSkillTool>;
|
|
46013
46060
|
version: Scalars['String']['output'];
|
|
@@ -46030,6 +46077,7 @@ export declare type GraphIntegrationSkillUiMetadata = {
|
|
|
46030
46077
|
displayName: Scalars['String']['output'];
|
|
46031
46078
|
iconKey?: Maybe<Scalars['String']['output']>;
|
|
46032
46079
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
46080
|
+
products: Array<Scalars['String']['output']>;
|
|
46033
46081
|
};
|
|
46034
46082
|
export declare enum GraphIntegrationStatus {
|
|
46035
46083
|
Disabled = "DISABLED",
|
|
@@ -49017,6 +49065,8 @@ export declare type GraphStore = {
|
|
|
49017
49065
|
dynamicRelationshipAssetToUserInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection>;
|
|
49018
49066
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
49019
49067
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
49068
|
+
externalBranchHasExternalCommit?: Maybe<GraphStoreSimplifiedExternalBranchHasExternalCommitConnection>;
|
|
49069
|
+
externalBranchHasExternalCommitInverse?: Maybe<GraphStoreSimplifiedExternalBranchHasExternalCommitInverseConnection>;
|
|
49020
49070
|
externalCalendarEventHasChildExternalCalendarEvent?: Maybe<GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection>;
|
|
49021
49071
|
externalCalendarEventHasChildExternalCalendarEventInverse?: Maybe<GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseConnection>;
|
|
49022
49072
|
externalCalendarEventLinksExternalVideo?: Maybe<GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoConnection>;
|
|
@@ -49081,6 +49131,8 @@ export declare type GraphStore = {
|
|
|
49081
49131
|
externalPositionManagesExternalOrgInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalOrgInverseConnection>;
|
|
49082
49132
|
externalPositionManagesExternalPosition?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection>;
|
|
49083
49133
|
externalPositionManagesExternalPositionInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseConnection>;
|
|
49134
|
+
externalRepositoryHasExternalWorkItem?: Maybe<GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemConnection>;
|
|
49135
|
+
externalRepositoryHasExternalWorkItemInverse?: Maybe<GraphStoreSimplifiedExternalRepositoryHasExternalWorkItemInverseConnection>;
|
|
49084
49136
|
externalTeamWorksOnJiraWorkItemWorklog?: Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogConnection>;
|
|
49085
49137
|
externalTeamWorksOnJiraWorkItemWorklogInverse?: Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogInverseConnection>;
|
|
49086
49138
|
externalVideoHasExternalSpace?: Maybe<GraphStoreSimplifiedExternalVideoHasExternalSpaceConnection>;
|
|
@@ -51721,6 +51773,22 @@ export declare type GraphStoreEntityIsRelatedToEntityInverseArgs = {
|
|
|
51721
51773
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51722
51774
|
sort?: InputMaybe<GraphStoreEntityIsRelatedToEntitySortInput>;
|
|
51723
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
|
+
};
|
|
51724
51792
|
export declare type GraphStoreExternalCalendarEventHasChildExternalCalendarEventArgs = {
|
|
51725
51793
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
51726
51794
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52233,6 +52301,22 @@ export declare type GraphStoreExternalPositionManagesExternalPositionInverseArgs
|
|
|
52233
52301
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52234
52302
|
sort?: InputMaybe<GraphStoreExternalPositionManagesExternalPositionSortInput>;
|
|
52235
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
|
+
};
|
|
52236
52320
|
export declare type GraphStoreExternalTeamWorksOnJiraWorkItemWorklogArgs = {
|
|
52237
52321
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52238
52322
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61707,6 +61791,9 @@ export declare type GraphStoreDynamicRelationshipAssetToUserSortInput = {
|
|
|
61707
61791
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
61708
61792
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61709
61793
|
};
|
|
61794
|
+
export declare type GraphStoreExternalBranchHasExternalCommitSortInput = {
|
|
61795
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61796
|
+
};
|
|
61710
61797
|
export declare type GraphStoreExternalCalendarEventHasChildExternalCalendarEventSortInput = {
|
|
61711
61798
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61712
61799
|
};
|
|
@@ -61809,6 +61896,9 @@ export declare type GraphStoreExternalPositionManagesExternalOrgSortInput = {
|
|
|
61809
61896
|
export declare type GraphStoreExternalPositionManagesExternalPositionSortInput = {
|
|
61810
61897
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61811
61898
|
};
|
|
61899
|
+
export declare type GraphStoreExternalRepositoryHasExternalWorkItemSortInput = {
|
|
61900
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61901
|
+
};
|
|
61812
61902
|
export declare type GraphStoreExternalTeamWorksOnJiraWorkItemWorklogSortInput = {
|
|
61813
61903
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61814
61904
|
};
|
|
@@ -69516,6 +69606,34 @@ export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseEdge = {
|
|
|
69516
69606
|
};
|
|
69517
69607
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
69518
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;
|
|
69519
69637
|
export declare type GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection = HasPageInfo & {
|
|
69520
69638
|
__typename?: 'GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection';
|
|
69521
69639
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventEdge>>>;
|
|
@@ -70420,6 +70538,34 @@ export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionI
|
|
|
70420
70538
|
};
|
|
70421
70539
|
export declare type GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseUnion = ExternalPosition;
|
|
70422
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;
|
|
70423
70569
|
export declare type GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogConnection = HasPageInfo & {
|
|
70424
70570
|
__typename?: 'GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogConnection';
|
|
70425
70571
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalTeamWorksOnJiraWorkItemWorklogEdge>>>;
|
|
@@ -79890,6 +80036,8 @@ export declare type GraphStoreV2 = {
|
|
|
79890
80036
|
__typename?: 'GraphStoreV2';
|
|
79891
80037
|
assetTypeHasChildAssetType?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection>;
|
|
79892
80038
|
assetTypeHasChildAssetTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseConnection>;
|
|
80039
|
+
assetsObjectTypeHasChildAssetsObjectType?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeConnection>;
|
|
80040
|
+
assetsObjectTypeHasChildAssetsObjectTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseConnection>;
|
|
79893
80041
|
atlassianGoalHasAtlassianGoalUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection>;
|
|
79894
80042
|
atlassianGoalHasAtlassianGoalUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateInverseConnection>;
|
|
79895
80043
|
atlassianGoalHasAtlassianHomeTag?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianHomeTagConnection>;
|
|
@@ -80198,6 +80346,8 @@ export declare type GraphStoreV2 = {
|
|
|
80198
80346
|
cypherQueryV2: GraphStoreV2CypherQueryV2Connection;
|
|
80199
80347
|
entityLinksEntity?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityConnection>;
|
|
80200
80348
|
entityLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityInverseConnection>;
|
|
80349
|
+
externalBranchHasExternalCommit?: Maybe<GraphStoreV2SimplifiedExternalBranchHasExternalCommitConnection>;
|
|
80350
|
+
externalBranchHasExternalCommitInverse?: Maybe<GraphStoreV2SimplifiedExternalBranchHasExternalCommitInverseConnection>;
|
|
80201
80351
|
externalCalendarEventHasChildExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection>;
|
|
80202
80352
|
externalCalendarEventHasChildExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseConnection>;
|
|
80203
80353
|
externalCalendarEventLinksExternalVideo?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoConnection>;
|
|
@@ -80296,6 +80446,8 @@ export declare type GraphStoreV2 = {
|
|
|
80296
80446
|
externalRepositoryHasExternalCommitInverse?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalCommitInverseConnection>;
|
|
80297
80447
|
externalRepositoryHasExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalPullRequestConnection>;
|
|
80298
80448
|
externalRepositoryHasExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalPullRequestInverseConnection>;
|
|
80449
|
+
externalRepositoryHasExternalWorkItem?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemConnection>;
|
|
80450
|
+
externalRepositoryHasExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalRepositoryHasExternalWorkItemInverseConnection>;
|
|
80299
80451
|
externalSecurityContainerHasExternalVulnerability?: Maybe<GraphStoreV2SimplifiedExternalSecurityContainerHasExternalVulnerabilityConnection>;
|
|
80300
80452
|
externalSecurityContainerHasExternalVulnerabilityInverse?: Maybe<GraphStoreV2SimplifiedExternalSecurityContainerHasExternalVulnerabilityInverseConnection>;
|
|
80301
80453
|
externalServiceLinksExternalBranch?: Maybe<GraphStoreV2SimplifiedExternalServiceLinksExternalBranchConnection>;
|
|
@@ -80688,6 +80840,20 @@ export declare type GraphStoreV2AssetTypeHasChildAssetTypeInverseArgs = {
|
|
|
80688
80840
|
id: Scalars['ID']['input'];
|
|
80689
80841
|
sort?: InputMaybe<GraphStoreV2AssetTypeHasChildAssetTypeSortInput>;
|
|
80690
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
|
+
};
|
|
80691
80857
|
export declare type GraphStoreV2AtlassianGoalHasAtlassianGoalUpdateArgs = {
|
|
80692
80858
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80693
80859
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82853,6 +83019,20 @@ export declare type GraphStoreV2EntityLinksEntityInverseArgs = {
|
|
|
82853
83019
|
id: Scalars['ID']['input'];
|
|
82854
83020
|
sort?: InputMaybe<GraphStoreV2EntityLinksEntitySortInput>;
|
|
82855
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
|
+
};
|
|
82856
83036
|
export declare type GraphStoreV2ExternalCalendarEventHasChildExternalCalendarEventArgs = {
|
|
82857
83037
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82858
83038
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -83539,6 +83719,20 @@ export declare type GraphStoreV2ExternalRepositoryHasExternalPullRequestInverseA
|
|
|
83539
83719
|
id: Scalars['ID']['input'];
|
|
83540
83720
|
sort?: InputMaybe<GraphStoreV2ExternalRepositoryHasExternalPullRequestSortInput>;
|
|
83541
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
|
+
};
|
|
83542
83736
|
export declare type GraphStoreV2ExternalSecurityContainerHasExternalVulnerabilityArgs = {
|
|
83543
83737
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
83544
83738
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -86227,6 +86421,9 @@ export declare type GraphStoreV2TopicHasRelatedEntityInverseArgs = {
|
|
|
86227
86421
|
export declare type GraphStoreV2AssetTypeHasChildAssetTypeSortInput = {
|
|
86228
86422
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86229
86423
|
};
|
|
86424
|
+
export declare type GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput = {
|
|
86425
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86426
|
+
};
|
|
86230
86427
|
export declare type GraphStoreV2AtlassianGoalHasAtlassianGoalUpdateSortInput = {
|
|
86231
86428
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86232
86429
|
};
|
|
@@ -87761,6 +87958,9 @@ export declare type GraphStoreV2DeleteLoomVideoHasConfluencePagePayload = {
|
|
|
87761
87958
|
export declare type GraphStoreV2EntityLinksEntitySortInput = {
|
|
87762
87959
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87763
87960
|
};
|
|
87961
|
+
export declare type GraphStoreV2ExternalBranchHasExternalCommitSortInput = {
|
|
87962
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87963
|
+
};
|
|
87764
87964
|
export declare type GraphStoreV2ExternalCalendarEventHasChildExternalCalendarEventSortInput = {
|
|
87765
87965
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87766
87966
|
};
|
|
@@ -87923,6 +88123,9 @@ export declare type GraphStoreV2ExternalRepositoryHasExternalCommitSortInput = {
|
|
|
87923
88123
|
export declare type GraphStoreV2ExternalRepositoryHasExternalPullRequestSortInput = {
|
|
87924
88124
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87925
88125
|
};
|
|
88126
|
+
export declare type GraphStoreV2ExternalRepositoryHasExternalWorkItemSortInput = {
|
|
88127
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
88128
|
+
};
|
|
87926
88129
|
export declare type GraphStoreV2ExternalSecurityContainerHasExternalVulnerabilitySortInput = {
|
|
87927
88130
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87928
88131
|
};
|
|
@@ -89821,6 +90024,34 @@ export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseEdge
|
|
|
89821
90024
|
};
|
|
89822
90025
|
export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseUnion = AssetsObjectType;
|
|
89823
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;
|
|
89824
90055
|
export declare type GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection = HasPageInfo & {
|
|
89825
90056
|
__typename?: 'GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection';
|
|
89826
90057
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateEdge>>>;
|
|
@@ -94171,6 +94402,34 @@ export declare type GraphStoreV2SimplifiedEntityLinksEntityInverseEdge = {
|
|
|
94171
94402
|
};
|
|
94172
94403
|
export declare type GraphStoreV2SimplifiedEntityLinksEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
94173
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;
|
|
94174
94433
|
export declare type GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection = HasPageInfo & {
|
|
94175
94434
|
__typename?: 'GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection';
|
|
94176
94435
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventEdge>>>;
|
|
@@ -95559,6 +95818,34 @@ export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalPullReque
|
|
|
95559
95818
|
};
|
|
95560
95819
|
export declare type GraphStoreV2SimplifiedExternalRepositoryHasExternalPullRequestInverseUnion = DevOpsRepository | ExternalRepository;
|
|
95561
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;
|
|
95562
95849
|
export declare type GraphStoreV2SimplifiedExternalSecurityContainerHasExternalVulnerabilityConnection = HasPageInfo & {
|
|
95563
95850
|
__typename?: 'GraphStoreV2SimplifiedExternalSecurityContainerHasExternalVulnerabilityConnection';
|
|
95564
95851
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalSecurityContainerHasExternalVulnerabilityEdge>>>;
|
|
@@ -103052,6 +103339,7 @@ export declare type HelpCenterPageQueryResultEdge = {
|
|
|
103052
103339
|
};
|
|
103053
103340
|
export declare enum HelpCenterPageType {
|
|
103054
103341
|
Custom = "CUSTOM",
|
|
103342
|
+
CustomHome = "CUSTOM_HOME",
|
|
103055
103343
|
Portal = "PORTAL"
|
|
103056
103344
|
}
|
|
103057
103345
|
export declare type HelpCenterPageUpdateInput = {
|
|
@@ -105813,6 +106101,13 @@ export declare type JiraActivitySortOrderPayload = Payload & {
|
|
|
105813
106101
|
errors?: Maybe<Array<MutationError>>;
|
|
105814
106102
|
success: Scalars['Boolean']['output'];
|
|
105815
106103
|
};
|
|
106104
|
+
export declare type JiraActivitySortPreferencePayload = Payload & {
|
|
106105
|
+
__typename?: 'JiraActivitySortPreferencePayload';
|
|
106106
|
+
activitySortField?: Maybe<JiraIssueViewActivityFeedSortField>;
|
|
106107
|
+
activitySortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
106108
|
+
errors?: Maybe<Array<MutationError>>;
|
|
106109
|
+
success: Scalars['Boolean']['output'];
|
|
106110
|
+
};
|
|
105816
106111
|
export declare type JiraActor = {
|
|
105817
106112
|
user?: Maybe<User>;
|
|
105818
106113
|
};
|
|
@@ -106099,6 +106394,24 @@ export declare type JiraAgenticUser = JiraActor & {
|
|
|
106099
106394
|
user?: Maybe<User>;
|
|
106100
106395
|
};
|
|
106101
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
|
+
};
|
|
106102
106415
|
export declare type JiraAggregatedStatusField = JiraIssueField & JiraListRowField & Node & {
|
|
106103
106416
|
__typename?: 'JiraAggregatedStatusField';
|
|
106104
106417
|
aggregatedStatusCategory?: Maybe<JiraStatusCategoryProgressConnection>;
|
|
@@ -106125,6 +106438,7 @@ export declare type JiraAggregatedStatusFieldAggregatedStatusCategoryArgs = {
|
|
|
106125
106438
|
export declare type JiraAggregatedTimelineField = JiraIssueField & JiraListRowField & JiraTimelineVirtualField & Node & {
|
|
106126
106439
|
__typename?: 'JiraAggregatedTimelineField';
|
|
106127
106440
|
aggregatedEndDateViewField?: Maybe<JiraAggregatedDate>;
|
|
106441
|
+
aggregatedIssueLink?: Maybe<JiraAggregatedIssueLink>;
|
|
106128
106442
|
aggregatedSprintEndDateViewField?: Maybe<JiraAggregatedDate>;
|
|
106129
106443
|
aggregatedSprintStartDateViewField?: Maybe<JiraAggregatedDate>;
|
|
106130
106444
|
aggregatedStartDateViewField?: Maybe<JiraAggregatedDate>;
|
|
@@ -106145,6 +106459,10 @@ export declare type JiraAggregatedTimelineFieldAggregatedEndDateViewFieldArgs =
|
|
|
106145
106459
|
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
106146
106460
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
106147
106461
|
};
|
|
106462
|
+
export declare type JiraAggregatedTimelineFieldAggregatedIssueLinkArgs = {
|
|
106463
|
+
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
106464
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
106465
|
+
};
|
|
106148
106466
|
export declare type JiraAggregatedTimelineFieldAggregatedSprintEndDateViewFieldArgs = {
|
|
106149
106467
|
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
106150
106468
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -106200,6 +106518,12 @@ export declare type JiraAiEnablementIssueInput = {
|
|
|
106200
106518
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
106201
106519
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
106202
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
|
+
};
|
|
106203
106527
|
export declare type JiraAlignAggCustomProjectType = Node & {
|
|
106204
106528
|
__typename?: 'JiraAlignAggCustomProjectType';
|
|
106205
106529
|
id: Scalars['ID']['output'];
|
|
@@ -106299,7 +106623,7 @@ export declare type JiraAllActivityFeedItem = {
|
|
|
106299
106623
|
item?: Maybe<JiraAllActivityFeedItemUnion>;
|
|
106300
106624
|
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
106301
106625
|
};
|
|
106302
|
-
export declare type JiraAllActivityFeedItemUnion = JiraApprovalItem | JiraCommentItem | JiraHiddenCommentItem | JiraHistoryItem | JiraWorklogItem;
|
|
106626
|
+
export declare type JiraAllActivityFeedItemUnion = JiraApprovalItem | JiraCommentItem | JiraHiddenCommentItem | JiraHistoryItem | JiraIncidentItem | JiraWorklogItem;
|
|
106303
106627
|
export declare enum JiraAllowedFieldFormatConfig {
|
|
106304
106628
|
NumberFieldFormatConfig = "NUMBER_FIELD_FORMAT_CONFIG"
|
|
106305
106629
|
}
|
|
@@ -107935,6 +108259,7 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
107935
108259
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
107936
108260
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
107937
108261
|
completedIssueSearchCutOffInDays?: Maybe<Scalars['Int']['output']>;
|
|
108262
|
+
customFilters?: Maybe<JiraSoftwareCustomFilterConnection>;
|
|
107938
108263
|
error?: Maybe<QueryError>;
|
|
107939
108264
|
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
107940
108265
|
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
@@ -107967,6 +108292,10 @@ export declare type JiraBoardViewColumnsArgs = {
|
|
|
107967
108292
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107968
108293
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
107969
108294
|
};
|
|
108295
|
+
export declare type JiraBoardViewCustomFiltersArgs = {
|
|
108296
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
108297
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108298
|
+
};
|
|
107970
108299
|
export declare type JiraBoardViewFilterConfigArgs = {
|
|
107971
108300
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
107972
108301
|
};
|
|
@@ -110935,6 +111264,25 @@ export declare type JiraDatePickerField = JiraDateLikeField & JiraIssueField & J
|
|
|
110935
111264
|
type: Scalars['String']['output'];
|
|
110936
111265
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
110937
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
|
+
};
|
|
110938
111286
|
export declare type JiraDateScenarioValueField = {
|
|
110939
111287
|
__typename?: 'JiraDateScenarioValueField';
|
|
110940
111288
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -111906,6 +112254,34 @@ export declare type JiraExtensionRenderingContextInput = {
|
|
|
111906
112254
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
111907
112255
|
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
111908
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
|
+
}
|
|
111909
112285
|
export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & Node & {
|
|
111910
112286
|
__typename?: 'JiraFallbackField';
|
|
111911
112287
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -113844,6 +114220,46 @@ export declare type JiraHydrateJqlInput = {
|
|
|
113844
114220
|
lastUsedJqlForIssueNavigator?: InputMaybe<JiraJqlScopeInput>;
|
|
113845
114221
|
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
113846
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
|
+
};
|
|
113847
114263
|
export declare enum JiraIncidentPriority {
|
|
113848
114264
|
P1 = "P1",
|
|
113849
114265
|
P2 = "P2",
|
|
@@ -113851,6 +114267,10 @@ export declare enum JiraIncidentPriority {
|
|
|
113851
114267
|
P4 = "P4",
|
|
113852
114268
|
P5 = "P5"
|
|
113853
114269
|
}
|
|
114270
|
+
export declare type JiraIncidentStakeholderActionValue = {
|
|
114271
|
+
__typename?: 'JiraIncidentStakeholderActionValue';
|
|
114272
|
+
stakeholder?: Maybe<JiraIncidentActivityActor>;
|
|
114273
|
+
};
|
|
113854
114274
|
export declare type JiraInitializeProjectNotificationPreferencesInput = {
|
|
113855
114275
|
projectId: Scalars['ID']['input'];
|
|
113856
114276
|
};
|
|
@@ -113976,6 +114396,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
113976
114396
|
errorRetrievingData?: Maybe<Scalars['Boolean']['output']>;
|
|
113977
114397
|
estimationForView?: Maybe<JiraEstimationValue>;
|
|
113978
114398
|
exceededChildIssueLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
114399
|
+
extraFieldsForView?: Maybe<JiraExtraFieldForViewConnection>;
|
|
113979
114400
|
fieldByIdOrAlias?: Maybe<JiraIssueField>;
|
|
113980
114401
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
113981
114402
|
fieldSetsById?: Maybe<JiraIssueFieldSetConnection>;
|
|
@@ -114055,6 +114476,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
114055
114476
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
114056
114477
|
priority?: Maybe<JiraPriority>;
|
|
114057
114478
|
priorityField?: Maybe<JiraPriorityField>;
|
|
114479
|
+
project?: Maybe<JiraProject>;
|
|
114058
114480
|
projectField?: Maybe<JiraProjectField>;
|
|
114059
114481
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
114060
114482
|
redactedFields?: Maybe<JiraFieldConnection>;
|
|
@@ -114220,6 +114642,11 @@ export declare type JiraIssueEndDateViewFieldArgs = {
|
|
|
114220
114642
|
export declare type JiraIssueEstimationForViewArgs = {
|
|
114221
114643
|
view: JiraViewQueryInput;
|
|
114222
114644
|
};
|
|
114645
|
+
export declare type JiraIssueExtraFieldsForViewArgs = {
|
|
114646
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
114647
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
114648
|
+
view: JiraViewQueryInput;
|
|
114649
|
+
};
|
|
114223
114650
|
export declare type JiraIssueFieldByIdOrAliasArgs = {
|
|
114224
114651
|
idOrAlias?: InputMaybe<Scalars['String']['input']>;
|
|
114225
114652
|
ignoreMissingField?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -116507,6 +116934,10 @@ export declare type JiraIssueUpdatesSuggestionMetadata = {
|
|
|
116507
116934
|
fieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
116508
116935
|
issuesCount?: Maybe<Scalars['Int']['output']>;
|
|
116509
116936
|
};
|
|
116937
|
+
export declare enum JiraIssueViewActivityFeedSortField {
|
|
116938
|
+
Created = "CREATED",
|
|
116939
|
+
LatestActivity = "LATEST_ACTIVITY"
|
|
116940
|
+
}
|
|
116510
116941
|
export declare enum JiraIssueViewActivityFeedSortOrder {
|
|
116511
116942
|
NewestFirst = "NEWEST_FIRST",
|
|
116512
116943
|
OldestFirst = "OLDEST_FIRST"
|
|
@@ -118514,6 +118945,7 @@ export declare type JiraMultipleVersionPickerFieldPayload = Payload & {
|
|
|
118514
118945
|
export declare type JiraMutation = {
|
|
118515
118946
|
__typename?: 'JiraMutation';
|
|
118516
118947
|
activitySortOrder?: Maybe<JiraActivitySortOrderPayload>;
|
|
118948
|
+
activitySortPreference?: Maybe<JiraActivitySortPreferencePayload>;
|
|
118517
118949
|
addAttachment?: Maybe<JiraAddAttachmentPayload>;
|
|
118518
118950
|
addAttachments?: Maybe<JiraAddAttachmentsPayload>;
|
|
118519
118951
|
addComment?: Maybe<JiraAddCommentPayload>;
|
|
@@ -118762,6 +119194,11 @@ export declare type JiraMutationActivitySortOrderArgs = {
|
|
|
118762
119194
|
cloudId: Scalars['ID']['input'];
|
|
118763
119195
|
orderBy: JiraIssueViewActivityFeedSortOrder;
|
|
118764
119196
|
};
|
|
119197
|
+
export declare type JiraMutationActivitySortPreferenceArgs = {
|
|
119198
|
+
cloudId: Scalars['ID']['input'];
|
|
119199
|
+
field: JiraIssueViewActivityFeedSortField;
|
|
119200
|
+
orderBy: JiraIssueViewActivityFeedSortOrder;
|
|
119201
|
+
};
|
|
118765
119202
|
export declare type JiraMutationAddAttachmentArgs = {
|
|
118766
119203
|
input: JiraAddAttachmentInput;
|
|
118767
119204
|
};
|
|
@@ -121390,6 +121827,9 @@ export declare type JiraProjectAvailableIssueTypesArgs = {
|
|
|
121390
121827
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
121391
121828
|
input?: InputMaybe<JiraProjectAvailableIssueTypesInput>;
|
|
121392
121829
|
};
|
|
121830
|
+
export declare type JiraProjectBackgroundArgs = {
|
|
121831
|
+
harmonisedTheme?: InputMaybe<Scalars['Boolean']['input']>;
|
|
121832
|
+
};
|
|
121393
121833
|
export declare type JiraProjectBoardsArgs = {
|
|
121394
121834
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
121395
121835
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123307,6 +123747,7 @@ export declare type JiraQueryJiraWorkItemJourneysArgs = {
|
|
|
123307
123747
|
};
|
|
123308
123748
|
export declare type JiraQueryJira_RecommendedAgentsArgs = {
|
|
123309
123749
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
123750
|
+
assignableOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123310
123751
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
123311
123752
|
cloudId: Scalars['ID']['input'];
|
|
123312
123753
|
contextAri: Scalars['ID']['input'];
|
|
@@ -124908,6 +125349,21 @@ export declare enum JiraResourcesSortDirection {
|
|
|
124908
125349
|
export declare type JiraResourcesTotalCountInput = {
|
|
124909
125350
|
integration?: InputMaybe<Array<InputMaybe<JiraResourceIntegration>>>;
|
|
124910
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
|
+
};
|
|
124911
125367
|
export declare type JiraRestoreCustomFieldsInput = {
|
|
124912
125368
|
fieldIds: Array<Scalars['String']['input']>;
|
|
124913
125369
|
};
|
|
@@ -127425,6 +127881,23 @@ export declare type JiraSoftwareBuiltInNavigationItem = JiraNavigationItem & Nod
|
|
|
127425
127881
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
127426
127882
|
url?: Maybe<Scalars['String']['output']>;
|
|
127427
127883
|
};
|
|
127884
|
+
export declare type JiraSoftwareCustomFilter = {
|
|
127885
|
+
__typename?: 'JiraSoftwareCustomFilter';
|
|
127886
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
127887
|
+
id: Scalars['ID']['output'];
|
|
127888
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
127889
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
127890
|
+
};
|
|
127891
|
+
export declare type JiraSoftwareCustomFilterConnection = {
|
|
127892
|
+
__typename?: 'JiraSoftwareCustomFilterConnection';
|
|
127893
|
+
edges?: Maybe<Array<Maybe<JiraSoftwareCustomFilterEdge>>>;
|
|
127894
|
+
pageInfo?: Maybe<PageInfo>;
|
|
127895
|
+
};
|
|
127896
|
+
export declare type JiraSoftwareCustomFilterEdge = {
|
|
127897
|
+
__typename?: 'JiraSoftwareCustomFilterEdge';
|
|
127898
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
127899
|
+
node?: Maybe<JiraSoftwareCustomFilter>;
|
|
127900
|
+
};
|
|
127428
127901
|
export declare type JiraSoftwareIssueSearchCustomInput = {
|
|
127429
127902
|
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
127430
127903
|
context?: InputMaybe<JiraSoftwareIssueSearchCustomInputContext>;
|
|
@@ -127581,6 +128054,7 @@ export declare type JiraSprint = Node & {
|
|
|
127581
128054
|
__typename?: 'JiraSprint';
|
|
127582
128055
|
boardId?: Maybe<Scalars['Long']['output']>;
|
|
127583
128056
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
128057
|
+
canUpdateSprint?: Maybe<Scalars['Boolean']['output']>;
|
|
127584
128058
|
completionDate?: Maybe<Scalars['DateTime']['output']>;
|
|
127585
128059
|
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
127586
128060
|
goal?: Maybe<Scalars['String']['output']>;
|
|
@@ -127704,6 +128178,11 @@ export declare type JiraSprintUpdateInput = {
|
|
|
127704
128178
|
sprintId: Scalars['ID']['input'];
|
|
127705
128179
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
127706
128180
|
};
|
|
128181
|
+
export declare type JiraStakeholderUpdatedValue = {
|
|
128182
|
+
__typename?: 'JiraStakeholderUpdatedValue';
|
|
128183
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
128184
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
128185
|
+
};
|
|
127707
128186
|
export declare type JiraStartAiAgentSessionInput = {
|
|
127708
128187
|
agentId: Scalars['String']['input'];
|
|
127709
128188
|
clientMutationId: Scalars['String']['input'];
|
|
@@ -128605,6 +129084,7 @@ export declare type JiraTownsquareProject = {
|
|
|
128605
129084
|
isWorkspaceActive?: Maybe<Scalars['Boolean']['output']>;
|
|
128606
129085
|
key?: Maybe<Scalars['String']['output']>;
|
|
128607
129086
|
name?: Maybe<Scalars['String']['output']>;
|
|
129087
|
+
owner?: Maybe<User>;
|
|
128608
129088
|
ownerAaid?: Maybe<Scalars['String']['output']>;
|
|
128609
129089
|
privateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
128610
129090
|
startDate?: Maybe<Scalars['Date']['output']>;
|
|
@@ -129625,6 +130105,7 @@ export declare type JiraUserPreferences = {
|
|
|
129625
130105
|
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
129626
130106
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
129627
130107
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
130108
|
+
issueViewActivityFeedSortField?: Maybe<JiraIssueViewActivityFeedSortField>;
|
|
129628
130109
|
issueViewActivityFeedSortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
129629
130110
|
issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
|
|
129630
130111
|
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
@@ -132661,6 +133142,14 @@ export declare type JsmConversationEdge = {
|
|
|
132661
133142
|
cursor: Scalars['String']['output'];
|
|
132662
133143
|
node?: Maybe<JsmConversation>;
|
|
132663
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;
|
|
132664
133153
|
export declare type JsmConversationMessage = {
|
|
132665
133154
|
__typename?: 'JsmConversationMessage';
|
|
132666
133155
|
author?: Maybe<Scalars['ID']['output']>;
|
|
@@ -134624,6 +135113,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
134624
135113
|
popularSearchQuery?: Maybe<KnowledgeDiscoveryPopularSearchQueryResult>;
|
|
134625
135114
|
querySuggestions?: Maybe<KnowledgeDiscoveryQuerySuggestionsResult>;
|
|
134626
135115
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
135116
|
+
reportingLines?: Maybe<KnowledgeDiscoveryReportingLinesResult>;
|
|
134627
135117
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
134628
135118
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
134629
135119
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
@@ -134724,6 +135214,11 @@ export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
|
134724
135214
|
relatedEntityType: KnowledgeDiscoveryEntityType;
|
|
134725
135215
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
134726
135216
|
};
|
|
135217
|
+
export declare type KnowledgeDiscoveryQueryApiReportingLinesArgs = {
|
|
135218
|
+
aaid: Scalars['String']['input'];
|
|
135219
|
+
orgId: Scalars['String']['input'];
|
|
135220
|
+
siteId: Scalars['String']['input'];
|
|
135221
|
+
};
|
|
134727
135222
|
export declare type KnowledgeDiscoveryQueryApiSearchRelatedEntitiesArgs = {
|
|
134728
135223
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
134729
135224
|
query: Scalars['String']['input'];
|
|
@@ -134831,6 +135326,7 @@ export declare type KnowledgeDiscoveryReportingLines = {
|
|
|
134831
135326
|
reports: Array<KnowledgeDiscoveryReportingLinesUser>;
|
|
134832
135327
|
user?: Maybe<KnowledgeDiscoveryReportingLinesUser>;
|
|
134833
135328
|
};
|
|
135329
|
+
export declare type KnowledgeDiscoveryReportingLinesResult = KnowledgeDiscoveryReportingLines | QueryError;
|
|
134834
135330
|
export declare type KnowledgeDiscoveryReportingLinesUser = {
|
|
134835
135331
|
__typename?: 'KnowledgeDiscoveryReportingLinesUser';
|
|
134836
135332
|
accountIdentifier?: Maybe<Scalars['String']['output']>;
|
|
@@ -134997,6 +135493,13 @@ export declare type KnowledgeDiscoveryUsers = {
|
|
|
134997
135493
|
__typename?: 'KnowledgeDiscoveryUsers';
|
|
134998
135494
|
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUser>>>;
|
|
134999
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
|
+
};
|
|
135000
135503
|
export declare type KnowledgeDiscoveryZeroQueries = {
|
|
135001
135504
|
__typename?: 'KnowledgeDiscoveryZeroQueries';
|
|
135002
135505
|
zeroQueries?: Maybe<Array<KnowledgeDiscoveryZeroQuery>>;
|
|
@@ -136381,6 +136884,11 @@ export declare type MarketplaceConsoleAppSoftwares = {
|
|
|
136381
136884
|
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
136382
136885
|
appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
|
|
136383
136886
|
};
|
|
136887
|
+
export declare enum MarketplaceConsoleAppType {
|
|
136888
|
+
CrossContext = "CROSS_CONTEXT",
|
|
136889
|
+
Embedded = "EMBEDDED",
|
|
136890
|
+
Global = "GLOBAL"
|
|
136891
|
+
}
|
|
136384
136892
|
export declare type MarketplaceConsoleAppVendorLinksInput = {
|
|
136385
136893
|
appStatusPage?: InputMaybe<Scalars['String']['input']>;
|
|
136386
136894
|
forums?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -136916,13 +137424,16 @@ export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
|
136916
137424
|
additionalCompatibilities?: Maybe<Array<Scalars['String']['output']>>;
|
|
136917
137425
|
appAccess?: Maybe<Array<Scalars['String']['output']>>;
|
|
136918
137426
|
appId: Scalars['ID']['output'];
|
|
137427
|
+
appType?: Maybe<MarketplaceConsoleAppType>;
|
|
136919
137428
|
envId: Scalars['ID']['output'];
|
|
137429
|
+
installationTarget?: Maybe<MarketplaceConsoleInstallationTarget>;
|
|
136920
137430
|
scopes: Array<Scalars['String']['output']>;
|
|
136921
137431
|
versionId: Scalars['String']['output'];
|
|
136922
137432
|
};
|
|
136923
137433
|
export declare type MarketplaceConsoleForgeFrameworkAttributesInput = {
|
|
136924
137434
|
appId: Scalars['String']['input'];
|
|
136925
137435
|
envId: Scalars['String']['input'];
|
|
137436
|
+
installationTarget?: InputMaybe<MarketplaceConsoleInstallationTarget>;
|
|
136926
137437
|
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
136927
137438
|
versionId: Scalars['String']['input'];
|
|
136928
137439
|
};
|
|
@@ -136976,6 +137487,10 @@ export declare type MarketplaceConsoleImageMediaAsset = {
|
|
|
136976
137487
|
uri: Scalars['String']['output'];
|
|
136977
137488
|
width: Scalars['Int']['output'];
|
|
136978
137489
|
};
|
|
137490
|
+
export declare enum MarketplaceConsoleInstallationTarget {
|
|
137491
|
+
Site = "SITE",
|
|
137492
|
+
Unit = "UNIT"
|
|
137493
|
+
}
|
|
136979
137494
|
export declare type MarketplaceConsoleJsonPatchOperation = {
|
|
136980
137495
|
op: MarketplaceConsoleJsonPatchOperationType;
|
|
136981
137496
|
path: Scalars['String']['input'];
|
|
@@ -138318,6 +138833,7 @@ export declare type MarketplaceStoreAppReview = {
|
|
|
138318
138833
|
review?: Maybe<Scalars['String']['output']>;
|
|
138319
138834
|
stars?: Maybe<Scalars['Int']['output']>;
|
|
138320
138835
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
138836
|
+
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
138321
138837
|
};
|
|
138322
138838
|
export declare type MarketplaceStoreAppSoftwareVersionListingLinks = {
|
|
138323
138839
|
__typename?: 'MarketplaceStoreAppSoftwareVersionListingLinks';
|
|
@@ -138553,6 +139069,7 @@ export declare type MarketplaceStoreCurrentUserReviewResponse = {
|
|
|
138553
139069
|
stars?: Maybe<Scalars['Int']['output']>;
|
|
138554
139070
|
status?: Maybe<Scalars['String']['output']>;
|
|
138555
139071
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
139072
|
+
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
138556
139073
|
userHasComplianceConsent?: Maybe<Scalars['Boolean']['output']>;
|
|
138557
139074
|
};
|
|
138558
139075
|
export declare type MarketplaceStoreDataAccessAndStorage = {
|
|
@@ -139496,6 +140013,7 @@ export declare type MarketplaceStoreReviewByIdResponse = {
|
|
|
139496
140013
|
review?: Maybe<Scalars['String']['output']>;
|
|
139497
140014
|
stars: Scalars['Int']['output'];
|
|
139498
140015
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
140016
|
+
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
139499
140017
|
};
|
|
139500
140018
|
export declare type MarketplaceStoreReviewFilterInput = {
|
|
139501
140019
|
hosting?: InputMaybe<MarketplaceStoreAtlassianProductHostingType>;
|
|
@@ -139512,6 +140030,7 @@ export declare type MarketplaceStoreReviewNode = MarketplaceStoreAppReview & {
|
|
|
139512
140030
|
review?: Maybe<Scalars['String']['output']>;
|
|
139513
140031
|
stars?: Maybe<Scalars['Int']['output']>;
|
|
139514
140032
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
140033
|
+
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
139515
140034
|
};
|
|
139516
140035
|
export declare type MarketplaceStoreReviewNodeWithProductListing = MarketplaceStoreAppReview & {
|
|
139517
140036
|
__typename?: 'MarketplaceStoreReviewNodeWithProductListing';
|
|
@@ -139525,6 +140044,7 @@ export declare type MarketplaceStoreReviewNodeWithProductListing = MarketplaceSt
|
|
|
139525
140044
|
review?: Maybe<Scalars['String']['output']>;
|
|
139526
140045
|
stars?: Maybe<Scalars['Int']['output']>;
|
|
139527
140046
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
140047
|
+
transitionedToFiveStarRating?: Maybe<Scalars['Boolean']['output']>;
|
|
139528
140048
|
};
|
|
139529
140049
|
export declare type MarketplaceStoreReviewsByUserResponse = {
|
|
139530
140050
|
__typename?: 'MarketplaceStoreReviewsByUserResponse';
|
|
@@ -141123,6 +141643,7 @@ export declare enum MercuryEntityType {
|
|
|
141123
141643
|
FocusAreaStatusUpdate = "FOCUS_AREA_STATUS_UPDATE",
|
|
141124
141644
|
Program = "PROGRAM",
|
|
141125
141645
|
ProgramStatusUpdate = "PROGRAM_STATUS_UPDATE",
|
|
141646
|
+
Risk = "RISK",
|
|
141126
141647
|
StrategicEvent = "STRATEGIC_EVENT"
|
|
141127
141648
|
}
|
|
141128
141649
|
export declare type MercuryEstimateBenefitAtCompletion = {
|
|
@@ -142886,6 +143407,7 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
142886
143407
|
export declare type MercuryNormalizedWork = HasMercuryProjectFields & {
|
|
142887
143408
|
__typename?: 'MercuryNormalizedWork';
|
|
142888
143409
|
connectedFocusArea: Scalars['ID']['output'];
|
|
143410
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
142889
143411
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
142890
143412
|
externalOwner?: Maybe<MercuryExternalOwner>;
|
|
142891
143413
|
id: Scalars['ID']['output'];
|
|
@@ -147346,14 +147868,12 @@ export declare type MutationAssetsVertical_UpdateVerticalInstantiationCategoryAr
|
|
|
147346
147868
|
input: AssetsVerticalUpdateVerticalInstantiationCategoryInput;
|
|
147347
147869
|
};
|
|
147348
147870
|
export declare type MutationAssets_AddExternalReferenceTypeAttributeValueArgs = {
|
|
147349
|
-
attributeId: Scalars['ID']['input'];
|
|
147350
|
-
cloudId: Scalars['ID']['input'];
|
|
147351
147871
|
externalReferences: Array<AssetsExternalReferenceInput>;
|
|
147872
|
+
objectId: Scalars['ID']['input'];
|
|
147352
147873
|
};
|
|
147353
147874
|
export declare type MutationAssets_DeleteExternalReferenceTypeAttributeValueArgs = {
|
|
147354
|
-
attributeId: Scalars['ID']['input'];
|
|
147355
|
-
cloudId: Scalars['ID']['input'];
|
|
147356
147875
|
ids: Array<Scalars['ID']['input']>;
|
|
147876
|
+
objectId: Scalars['ID']['input'];
|
|
147357
147877
|
};
|
|
147358
147878
|
export declare type MutationAssets_UpdateObjectAttributeValueArgs = {
|
|
147359
147879
|
cloudId: Scalars['ID']['input'];
|
|
@@ -153321,40 +153841,45 @@ export declare enum PostOfficeMessageCreationType {
|
|
|
153321
153841
|
Explicit = "explicit",
|
|
153322
153842
|
Implicit = "implicit"
|
|
153323
153843
|
}
|
|
153324
|
-
export declare type PostOfficeMessageData = PostOfficeMessageJiraBoardCatchUpRovoNudgeData | PostOfficeMessageLiveAndPersistedTestMessageData | PostOfficeMessageLiveNudgeDemoMessageData |
|
|
153844
|
+
export declare type PostOfficeMessageData = PostOfficeMessageJiraBoardCatchUpRovoNudgeData | PostOfficeMessageLiveAndPersistedTestMessageData | PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData | PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData | PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData | PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData;
|
|
153325
153845
|
export declare type PostOfficeMessageJiraBoardCatchUpRovoNudgeData = {
|
|
153326
153846
|
__typename?: 'PostOfficeMessageJiraBoardCatchUpRovoNudgeData';
|
|
153327
|
-
description
|
|
153328
|
-
title
|
|
153847
|
+
description: Scalars['String']['output'];
|
|
153848
|
+
title: Scalars['String']['output'];
|
|
153329
153849
|
};
|
|
153330
153850
|
export declare type PostOfficeMessageLiveAndPersistedTestMessageData = {
|
|
153331
153851
|
__typename?: 'PostOfficeMessageLiveAndPersistedTestMessageData';
|
|
153332
|
-
description
|
|
153333
|
-
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'];
|
|
153334
153859
|
};
|
|
153335
153860
|
export declare type PostOfficeMessageLiveNudgeDemoMessageData = {
|
|
153336
153861
|
__typename?: 'PostOfficeMessageLiveNudgeDemoMessageData';
|
|
153337
|
-
description
|
|
153338
|
-
title
|
|
153862
|
+
description: Scalars['String']['output'];
|
|
153863
|
+
title: Scalars['String']['output'];
|
|
153339
153864
|
};
|
|
153340
153865
|
export declare type PostOfficeMessagePayload = {
|
|
153341
153866
|
__typename?: 'PostOfficeMessagePayload';
|
|
153342
153867
|
messages: Array<PostOfficeMessage>;
|
|
153343
153868
|
};
|
|
153344
|
-
export declare type
|
|
153345
|
-
__typename?: '
|
|
153346
|
-
|
|
153869
|
+
export declare type PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData = {
|
|
153870
|
+
__typename?: 'PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData';
|
|
153871
|
+
description: Scalars['String']['output'];
|
|
153872
|
+
title: Scalars['String']['output'];
|
|
153347
153873
|
};
|
|
153348
|
-
export declare type
|
|
153349
|
-
__typename?: '
|
|
153350
|
-
|
|
153874
|
+
export declare type PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData = {
|
|
153875
|
+
__typename?: 'PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData';
|
|
153876
|
+
description: Scalars['String']['output'];
|
|
153877
|
+
title: Scalars['String']['output'];
|
|
153351
153878
|
};
|
|
153352
|
-
export declare type
|
|
153353
|
-
__typename?: '
|
|
153354
|
-
|
|
153355
|
-
|
|
153356
|
-
tenantId: Scalars['String']['output'];
|
|
153357
|
-
variation: Scalars['String']['output'];
|
|
153879
|
+
export declare type PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData = {
|
|
153880
|
+
__typename?: 'PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData';
|
|
153881
|
+
description: Scalars['String']['output'];
|
|
153882
|
+
title: Scalars['String']['output'];
|
|
153358
153883
|
};
|
|
153359
153884
|
export declare type PostOfficeRecommendationSession = {
|
|
153360
153885
|
__typename?: 'PostOfficeRecommendationSession';
|
|
@@ -153763,6 +154288,7 @@ export declare type Query = {
|
|
|
153763
154288
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
153764
154289
|
admin_aiPolicies?: Maybe<AdminAiPolicyConnection>;
|
|
153765
154290
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
154291
|
+
admin_appModulesForApps?: Maybe<Array<AdminAppModulesForAppsResult>>;
|
|
153766
154292
|
admin_auditLogEventActions?: Maybe<AdminAuditLogGroupEventActionConnection>;
|
|
153767
154293
|
admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
|
|
153768
154294
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
@@ -153978,6 +154504,7 @@ export declare type Query = {
|
|
|
153978
154504
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
153979
154505
|
assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
|
|
153980
154506
|
assetsVertical_depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
|
|
154507
|
+
assetsVertical_insightDetails?: Maybe<AssetsVerticalInsightDetailsResult>;
|
|
153981
154508
|
assetsVertical_insights?: Maybe<AssetsVerticalInsightsResult>;
|
|
153982
154509
|
assetsVertical_instantiatedBundle?: Maybe<AssetsVerticalBundleInstantiationResult>;
|
|
153983
154510
|
assetsVertical_itemMapping?: Maybe<AssetsVerticalItemMappingResult>;
|
|
@@ -154275,6 +154802,7 @@ export declare type Query = {
|
|
|
154275
154802
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
154276
154803
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
154277
154804
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
154805
|
+
contextService?: Maybe<SmartsContextServiceQueryApi>;
|
|
154278
154806
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
154279
154807
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
154280
154808
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -154586,6 +155114,7 @@ export declare type Query = {
|
|
|
154586
155114
|
jsmChannels_taskAgents: JsmChannelsTaskAgentsResult;
|
|
154587
155115
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
154588
155116
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
155117
|
+
jsmConversation_mediaConfiguration?: Maybe<JsmConversationMediaConfigurationResult>;
|
|
154589
155118
|
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
154590
155119
|
jsmConversation_settings?: Maybe<JsmConversationSettings>;
|
|
154591
155120
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
@@ -154775,6 +155304,7 @@ export declare type Query = {
|
|
|
154775
155304
|
radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
|
|
154776
155305
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
154777
155306
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
155307
|
+
radar_focusAreaRecommendation?: Maybe<RadarFocusAreaRecommendationConnection>;
|
|
154778
155308
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
154779
155309
|
radar_lastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
154780
155310
|
radar_notificationSettings?: Maybe<Array<RadarNotification>>;
|
|
@@ -155033,6 +155563,10 @@ export declare type QueryAdmin_AppModulesArgs = {
|
|
|
155033
155563
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
155034
155564
|
moduleKeys: Array<Scalars['String']['input']>;
|
|
155035
155565
|
};
|
|
155566
|
+
export declare type QueryAdmin_AppModulesForAppsArgs = {
|
|
155567
|
+
appIdentifiers: Array<AdminAppModulesKey>;
|
|
155568
|
+
moduleKeys: Array<Scalars['String']['input']>;
|
|
155569
|
+
};
|
|
155036
155570
|
export declare type QueryAdmin_AuditLogEventActionsArgs = {
|
|
155037
155571
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
155038
155572
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -156195,6 +156729,9 @@ export declare type QueryAssetsVertical_DepreciationRulesArgs = {
|
|
|
156195
156729
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
156196
156730
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
156197
156731
|
};
|
|
156732
|
+
export declare type QueryAssetsVertical_InsightDetailsArgs = {
|
|
156733
|
+
cloudId: Scalars['ID']['input'];
|
|
156734
|
+
};
|
|
156198
156735
|
export declare type QueryAssetsVertical_InsightsArgs = {
|
|
156199
156736
|
cloudId: Scalars['ID']['input'];
|
|
156200
156737
|
};
|
|
@@ -156316,11 +156853,13 @@ export declare type QueryAvp_GetChartByConfigIdArgs = {
|
|
|
156316
156853
|
};
|
|
156317
156854
|
export declare type QueryAvp_GetChartTemplatePreviewArgs = {
|
|
156318
156855
|
cloudId: Scalars['ID']['input'];
|
|
156856
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
156319
156857
|
templateFileName: Scalars['String']['input'];
|
|
156320
156858
|
workspaceId: Scalars['ID']['input'];
|
|
156321
156859
|
};
|
|
156322
156860
|
export declare type QueryAvp_GetChartTemplatesArgs = {
|
|
156323
156861
|
cloudId: Scalars['ID']['input'];
|
|
156862
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
156324
156863
|
locations: Array<Scalars['String']['input']>;
|
|
156325
156864
|
workspaceId: Scalars['ID']['input'];
|
|
156326
156865
|
};
|
|
@@ -158765,6 +159304,9 @@ export declare type QueryJsmConversation_ConversationsArgs = {
|
|
|
158765
159304
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158766
159305
|
projectKey: Scalars['String']['input'];
|
|
158767
159306
|
};
|
|
159307
|
+
export declare type QueryJsmConversation_MediaConfigurationArgs = {
|
|
159308
|
+
conversationAri: Scalars['ID']['input'];
|
|
159309
|
+
};
|
|
158768
159310
|
export declare type QueryJsmConversation_MessagesArgs = {
|
|
158769
159311
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
158770
159312
|
cloudId: Scalars['ID']['input'];
|
|
@@ -159400,6 +159942,14 @@ export declare type QueryRadar_FieldValuesArgs = {
|
|
|
159400
159942
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
159401
159943
|
uniqueFieldId: Scalars['ID']['input'];
|
|
159402
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
|
+
};
|
|
159403
159953
|
export declare type QueryRadar_GroupMetricsArgs = {
|
|
159404
159954
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159405
159955
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -160653,6 +161203,26 @@ export declare type RadarFocusAreaMappingsInput = {
|
|
|
160653
161203
|
focusAreaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
160654
161204
|
positionAri: Scalars['ID']['input'];
|
|
160655
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
|
+
};
|
|
160656
161226
|
export declare type RadarFunction = {
|
|
160657
161227
|
__typename?: 'RadarFunction';
|
|
160658
161228
|
argType: RadarFieldType;
|
|
@@ -162694,6 +163264,7 @@ export declare enum Scope {
|
|
|
162694
163264
|
ReadDeveloperSpace = "READ_DEVELOPER_SPACE",
|
|
162695
163265
|
ReadDevInfoJira = "READ_DEV_INFO_JIRA",
|
|
162696
163266
|
ReadFeedbackFeedback = "READ_FEEDBACK_FEEDBACK",
|
|
163267
|
+
ReadHomeTwgCli = "READ_HOME_TWG_CLI",
|
|
162697
163268
|
ReadInsightJpd = "READ_INSIGHT_JPD",
|
|
162698
163269
|
ReadJiraUser = "READ_JIRA_USER",
|
|
162699
163270
|
ReadJiraWork = "READ_JIRA_WORK",
|
|
@@ -162717,7 +163288,9 @@ export declare enum Scope {
|
|
|
162717
163288
|
ReadOrganization = "READ_ORGANIZATION",
|
|
162718
163289
|
ReadOrganizationProperty = "READ_ORGANIZATION_PROPERTY",
|
|
162719
163290
|
ReadOrganizationUser = "READ_ORGANIZATION_USER",
|
|
163291
|
+
ReadProjectJpd = "READ_PROJECT_JPD",
|
|
162720
163292
|
ReadQueue = "READ_QUEUE",
|
|
163293
|
+
ReadRadarTwgCli = "READ_RADAR_TWG_CLI",
|
|
162721
163294
|
ReadRequest = "READ_REQUEST",
|
|
162722
163295
|
ReadRequesttype = "READ_REQUESTTYPE",
|
|
162723
163296
|
ReadRequesttypeProperty = "READ_REQUESTTYPE_PROPERTY",
|
|
@@ -162831,6 +163404,7 @@ export declare enum Scope {
|
|
|
162831
163404
|
WriteDesign = "WRITE_DESIGN",
|
|
162832
163405
|
WriteDeveloperSpace = "WRITE_DEVELOPER_SPACE",
|
|
162833
163406
|
WriteFeedbackFeedback = "WRITE_FEEDBACK_FEEDBACK",
|
|
163407
|
+
WriteHomeTwgCli = "WRITE_HOME_TWG_CLI",
|
|
162834
163408
|
WriteInsightJpd = "WRITE_INSIGHT_JPD",
|
|
162835
163409
|
WriteJiraWork = "WRITE_JIRA_WORK",
|
|
162836
163410
|
WriteJsmTwgCli = "WRITE_JSM_TWG_CLI",
|
|
@@ -162851,6 +163425,7 @@ export declare enum Scope {
|
|
|
162851
163425
|
WriteOrganization = "WRITE_ORGANIZATION",
|
|
162852
163426
|
WriteOrganizationProperty = "WRITE_ORGANIZATION_PROPERTY",
|
|
162853
163427
|
WriteOrganizationUser = "WRITE_ORGANIZATION_USER",
|
|
163428
|
+
WriteRadarTwgCli = "WRITE_RADAR_TWG_CLI",
|
|
162854
163429
|
WriteRequest = "WRITE_REQUEST",
|
|
162855
163430
|
WriteRequesttype = "WRITE_REQUESTTYPE",
|
|
162856
163431
|
WriteRequesttypeProperty = "WRITE_REQUESTTYPE_PROPERTY",
|
|
@@ -163018,7 +163593,10 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
|
|
|
163018
163593
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163019
163594
|
id: Scalars['ID']['output'];
|
|
163020
163595
|
isVerified: Scalars['Boolean']['output'];
|
|
163596
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163021
163597
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
163598
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
163599
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163022
163600
|
lastModified?: Maybe<Scalars['String']['output']>;
|
|
163023
163601
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163024
163602
|
latestUserAction?: Maybe<Scalars['String']['output']>;
|
|
@@ -163064,7 +163642,10 @@ export declare type SearchConfluenceSpace = SearchL2FeatureProvider & SearchResu
|
|
|
163064
163642
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163065
163643
|
id: Scalars['ID']['output'];
|
|
163066
163644
|
key?: Maybe<Scalars['String']['output']>;
|
|
163645
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163067
163646
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
163647
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
163648
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163068
163649
|
lastModified?: Maybe<Scalars['String']['output']>;
|
|
163069
163650
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163070
163651
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -163260,7 +163841,10 @@ export declare type SearchL2Feature = {
|
|
|
163260
163841
|
value?: Maybe<Scalars['Float']['output']>;
|
|
163261
163842
|
};
|
|
163262
163843
|
export declare type SearchL2FeatureProvider = {
|
|
163844
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163263
163845
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
163846
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
163847
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163264
163848
|
};
|
|
163265
163849
|
export declare type SearchLayerDefinition = {
|
|
163266
163850
|
abTestId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -163619,7 +164203,10 @@ export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & Searc
|
|
|
163619
164203
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
163620
164204
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163621
164205
|
id: Scalars['ID']['output'];
|
|
164206
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163622
164207
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164208
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164209
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163623
164210
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163624
164211
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
163625
164212
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -163637,7 +164224,10 @@ export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & S
|
|
|
163637
164224
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
163638
164225
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163639
164226
|
id: Scalars['ID']['output'];
|
|
164227
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163640
164228
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164229
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164230
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163641
164231
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163642
164232
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
163643
164233
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -163655,7 +164245,10 @@ export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & Se
|
|
|
163655
164245
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
163656
164246
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163657
164247
|
id: Scalars['ID']['output'];
|
|
164248
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163658
164249
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164250
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164251
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163659
164252
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163660
164253
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
163661
164254
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -163687,7 +164280,10 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
163687
164280
|
id: Scalars['ID']['output'];
|
|
163688
164281
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
163689
164282
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
164283
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163690
164284
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164285
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164286
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163691
164287
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163692
164288
|
linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
|
|
163693
164289
|
linkedEntitiesType?: Maybe<SearchLinkedEntitiesType>;
|
|
@@ -163889,7 +164485,10 @@ export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & Se
|
|
|
163889
164485
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
163890
164486
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163891
164487
|
id: Scalars['ID']['output'];
|
|
164488
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163892
164489
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164490
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164491
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163893
164492
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163894
164493
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
163895
164494
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -163907,7 +164506,10 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
163907
164506
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
163908
164507
|
id: Scalars['ID']['output'];
|
|
163909
164508
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
164509
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
163910
164510
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
164511
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
164512
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
163911
164513
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
163912
164514
|
linkedEntities?: Maybe<Array<SearchResultSlackMessage>>;
|
|
163913
164515
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -183409,6 +184011,20 @@ export declare type SmartsContext = {
|
|
|
183409
184011
|
tenantId: Scalars['String']['input'];
|
|
183410
184012
|
userId: Scalars['String']['input'];
|
|
183411
184013
|
};
|
|
184014
|
+
export declare type SmartsContextServiceQueryApi = {
|
|
184015
|
+
__typename?: 'SmartsContextServiceQueryApi';
|
|
184016
|
+
quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
|
|
184017
|
+
};
|
|
184018
|
+
export declare type SmartsContextServiceQueryApiQuickfindUserRecommendationsArgs = {
|
|
184019
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
184020
|
+
};
|
|
184021
|
+
export declare type SmartsContextServiceUserRecommendation = {
|
|
184022
|
+
__typename?: 'SmartsContextServiceUserRecommendation';
|
|
184023
|
+
id: Scalars['ID']['output'];
|
|
184024
|
+
object?: Maybe<ExternalDocument>;
|
|
184025
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
184026
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
184027
|
+
};
|
|
183412
184028
|
export declare type SmartsFieldContext = {
|
|
183413
184029
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
183414
184030
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -183425,6 +184041,7 @@ export declare type SmartsKeyValue = {
|
|
|
183425
184041
|
export declare type SmartsModelRequestParams = {
|
|
183426
184042
|
caller: Scalars['String']['input'];
|
|
183427
184043
|
experience: Scalars['String']['input'];
|
|
184044
|
+
featureServiceModel?: InputMaybe<Scalars['String']['input']>;
|
|
183428
184045
|
};
|
|
183429
184046
|
export declare type SmartsQueryApi = {
|
|
183430
184047
|
__typename?: 'SmartsQueryApi';
|
|
@@ -184372,7 +184989,8 @@ export declare type SpcsStartFullSiteScanPayload = {
|
|
|
184372
184989
|
export declare enum SpcsUpdateScanStatusAction {
|
|
184373
184990
|
Cancelled = "CANCELLED",
|
|
184374
184991
|
Done = "DONE",
|
|
184375
|
-
Failed = "FAILED"
|
|
184992
|
+
Failed = "FAILED",
|
|
184993
|
+
InProgress = "IN_PROGRESS"
|
|
184376
184994
|
}
|
|
184377
184995
|
export declare type SpcsUpdateScanStatusInput = {
|
|
184378
184996
|
status: SpcsUpdateScanStatusAction;
|
|
@@ -187030,6 +187648,7 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
187030
187648
|
};
|
|
187031
187649
|
export declare type Subscription = {
|
|
187032
187650
|
__typename?: 'Subscription';
|
|
187651
|
+
assetsVertical_onAsyncTaskUpdated?: Maybe<AssetsVerticalAsyncTaskStatus>;
|
|
187033
187652
|
bitbucket?: Maybe<BitbucketSubscription>;
|
|
187034
187653
|
blockService_onBlockUpdated?: Maybe<BlockServiceBlockPayload>;
|
|
187035
187654
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
@@ -187071,6 +187690,10 @@ export declare type Subscription = {
|
|
|
187071
187690
|
testing?: Maybe<TestingSubscription>;
|
|
187072
187691
|
trello: TrelloSubscriptionApi;
|
|
187073
187692
|
};
|
|
187693
|
+
export declare type SubscriptionAssetsVertical_OnAsyncTaskUpdatedArgs = {
|
|
187694
|
+
cloudId: Scalars['ID']['input'];
|
|
187695
|
+
taskId: Scalars['ID']['input'];
|
|
187696
|
+
};
|
|
187074
187697
|
export declare type SubscriptionBlockService_OnBlockUpdatedArgs = {
|
|
187075
187698
|
resourceId: Scalars['ID']['input'];
|
|
187076
187699
|
};
|
|
@@ -189138,6 +189761,12 @@ export declare type TownsquareAddTagsByNamePayload = {
|
|
|
189138
189761
|
success: Scalars['Boolean']['output'];
|
|
189139
189762
|
tags?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
189140
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
|
+
};
|
|
189141
189770
|
export declare type TownsquareArchiveGoalInput = {
|
|
189142
189771
|
id: Scalars['String']['input'];
|
|
189143
189772
|
};
|
|
@@ -193010,15 +193639,6 @@ export declare type TrelloApplicationUsage = {
|
|
|
193010
193639
|
boards?: Maybe<Scalars['Int']['output']>;
|
|
193011
193640
|
members?: Maybe<Scalars['Int']['output']>;
|
|
193012
193641
|
};
|
|
193013
|
-
export declare type TrelloArchiveCardInput = {
|
|
193014
|
-
cardId: Scalars['ID']['input'];
|
|
193015
|
-
};
|
|
193016
|
-
export declare type TrelloArchiveCardPayload = Payload & {
|
|
193017
|
-
__typename?: 'TrelloArchiveCardPayload';
|
|
193018
|
-
card?: Maybe<TrelloBaseCard>;
|
|
193019
|
-
errors?: Maybe<Array<MutationError>>;
|
|
193020
|
-
success: Scalars['Boolean']['output'];
|
|
193021
|
-
};
|
|
193022
193642
|
export declare type TrelloAssignCardToPlannerCalendarEventFailure = {
|
|
193023
193643
|
__typename?: 'TrelloAssignCardToPlannerCalendarEventFailure';
|
|
193024
193644
|
cardId: Scalars['ID']['output'];
|
|
@@ -194211,6 +194831,15 @@ export declare type TrelloCloseBoardPayload = Payload & {
|
|
|
194211
194831
|
errors?: Maybe<Array<MutationError>>;
|
|
194212
194832
|
success: Scalars['Boolean']['output'];
|
|
194213
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
|
+
};
|
|
194214
194843
|
export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
194215
194844
|
__typename?: 'TrelloCommentCardAction';
|
|
194216
194845
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -195540,6 +196169,16 @@ export declare type TrelloMoveCardBoardEntities = {
|
|
|
195540
196169
|
card?: Maybe<TrelloActionCardEntity>;
|
|
195541
196170
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
195542
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
|
+
};
|
|
195543
196182
|
export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
195544
196183
|
__typename?: 'TrelloMoveCardToBoardAction';
|
|
195545
196184
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -195602,11 +196241,11 @@ export declare type TrelloMutationApi = {
|
|
|
195602
196241
|
addLabelsToCard?: Maybe<TrelloAddLabelsToCardPayload>;
|
|
195603
196242
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
195604
196243
|
addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
|
|
195605
|
-
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
195606
196244
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
195607
196245
|
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
195608
196246
|
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
195609
196247
|
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
196248
|
+
closeCard?: Maybe<TrelloCloseCardPayload>;
|
|
195610
196249
|
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
195611
196250
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
195612
196251
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
@@ -195639,6 +196278,7 @@ export declare type TrelloMutationApi = {
|
|
|
195639
196278
|
markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
|
|
195640
196279
|
markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
|
|
195641
196280
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
196281
|
+
moveCard?: Maybe<TrelloMoveCardPayload>;
|
|
195642
196282
|
movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
|
|
195643
196283
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
195644
196284
|
proactiveSmartScheduleCards?: Maybe<TrelloProactiveSmartScheduleCardsPayload>;
|
|
@@ -195651,6 +196291,7 @@ export declare type TrelloMutationApi = {
|
|
|
195651
196291
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
195652
196292
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
195653
196293
|
reopenBoard?: Maybe<TrelloReopenBoardPayload>;
|
|
196294
|
+
reopenCard?: Maybe<TrelloReopenCardPayload>;
|
|
195654
196295
|
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
195655
196296
|
retryAiOnBoard?: Maybe<TrelloRetryAiOnBoardPayload>;
|
|
195656
196297
|
rotateOAuth2ClientSecret?: Maybe<TrelloRotateOAuth2ClientSecretPayload>;
|
|
@@ -195663,7 +196304,6 @@ export declare type TrelloMutationApi = {
|
|
|
195663
196304
|
sortListCards?: Maybe<TrelloSortListCardsPayload>;
|
|
195664
196305
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
195665
196306
|
toggleLabsFeatureForMember?: Maybe<TrelloToggleLabsFeatureForMemberPayload>;
|
|
195666
|
-
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
195667
196307
|
undoAction?: Maybe<TrelloUndoActionPayload>;
|
|
195668
196308
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
195669
196309
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
@@ -195684,6 +196324,7 @@ export declare type TrelloMutationApi = {
|
|
|
195684
196324
|
updateBoardVotingPermissions?: Maybe<TrelloUpdateBoardVotingPermissionsPayload>;
|
|
195685
196325
|
updateCardCover?: Maybe<TrelloUpdateCardCoverPayload>;
|
|
195686
196326
|
updateCardDateViewedByCreator?: Maybe<TrelloUpdateCardDateViewedByCreatorPayload>;
|
|
196327
|
+
updateCardDescription?: Maybe<TrelloUpdateCardDescriptionPayload>;
|
|
195687
196328
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
195688
196329
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
195689
196330
|
updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
|
|
@@ -195716,9 +196357,6 @@ export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
|
195716
196357
|
export declare type TrelloMutationApiAddWorkspaceTagToBoardArgs = {
|
|
195717
196358
|
input: TrelloAddWorkspaceTagToBoardInput;
|
|
195718
196359
|
};
|
|
195719
|
-
export declare type TrelloMutationApiArchiveCardArgs = {
|
|
195720
|
-
input: TrelloArchiveCardInput;
|
|
195721
|
-
};
|
|
195722
196360
|
export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
|
|
195723
196361
|
input: TrelloAssignCardToPlannerCalendarEventInput;
|
|
195724
196362
|
};
|
|
@@ -195731,6 +196369,9 @@ export declare type TrelloMutationApiBulkDeleteListArgs = {
|
|
|
195731
196369
|
export declare type TrelloMutationApiCloseBoardArgs = {
|
|
195732
196370
|
input: TrelloCloseBoardInput;
|
|
195733
196371
|
};
|
|
196372
|
+
export declare type TrelloMutationApiCloseCardArgs = {
|
|
196373
|
+
input: TrelloCloseCardInput;
|
|
196374
|
+
};
|
|
195734
196375
|
export declare type TrelloMutationApiConvertBoardToTemplateArgs = {
|
|
195735
196376
|
input: TrelloConvertBoardToTemplateInput;
|
|
195736
196377
|
};
|
|
@@ -195827,6 +196468,9 @@ export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
|
|
|
195827
196468
|
export declare type TrelloMutationApiMergeCardsArgs = {
|
|
195828
196469
|
input: TrelloMergeCardsInput;
|
|
195829
196470
|
};
|
|
196471
|
+
export declare type TrelloMutationApiMoveCardArgs = {
|
|
196472
|
+
input: TrelloMoveCardInput;
|
|
196473
|
+
};
|
|
195830
196474
|
export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
|
|
195831
196475
|
input: TrelloMovePlannerCalendarEventInput;
|
|
195832
196476
|
};
|
|
@@ -195860,6 +196504,9 @@ export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
|
|
|
195860
196504
|
export declare type TrelloMutationApiReopenBoardArgs = {
|
|
195861
196505
|
input: TrelloReopenBoardInput;
|
|
195862
196506
|
};
|
|
196507
|
+
export declare type TrelloMutationApiReopenCardArgs = {
|
|
196508
|
+
input: TrelloReopenCardInput;
|
|
196509
|
+
};
|
|
195863
196510
|
export declare type TrelloMutationApiResetCardCoverArgs = {
|
|
195864
196511
|
input: TrelloResetCardCoverInput;
|
|
195865
196512
|
};
|
|
@@ -195893,9 +196540,6 @@ export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
|
195893
196540
|
export declare type TrelloMutationApiToggleLabsFeatureForMemberArgs = {
|
|
195894
196541
|
input: TrelloToggleLabsFeatureForMemberInput;
|
|
195895
196542
|
};
|
|
195896
|
-
export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
195897
|
-
input: TrelloUnarchiveCardInput;
|
|
195898
|
-
};
|
|
195899
196543
|
export declare type TrelloMutationApiUndoActionArgs = {
|
|
195900
196544
|
input: TrelloUndoActionInput;
|
|
195901
196545
|
};
|
|
@@ -195956,6 +196600,9 @@ export declare type TrelloMutationApiUpdateCardCoverArgs = {
|
|
|
195956
196600
|
export declare type TrelloMutationApiUpdateCardDateViewedByCreatorArgs = {
|
|
195957
196601
|
input: TrelloUpdateCardDateViewedByCreatorInput;
|
|
195958
196602
|
};
|
|
196603
|
+
export declare type TrelloMutationApiUpdateCardDescriptionArgs = {
|
|
196604
|
+
input: TrelloUpdateCardDescriptionInput;
|
|
196605
|
+
};
|
|
195959
196606
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
195960
196607
|
input: TrelloUpdateCardNameInput;
|
|
195961
196608
|
};
|
|
@@ -196076,6 +196723,7 @@ export declare type TrelloPlanner = {
|
|
|
196076
196723
|
primaryCalendar?: Maybe<TrelloPlannerPrimaryCalendar>;
|
|
196077
196724
|
primaryCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
196078
196725
|
proposedEvents?: Maybe<TrelloPlannerProposedEventConnection>;
|
|
196726
|
+
soloBoards?: Maybe<TrelloPlannerSoloBoardsConnection>;
|
|
196079
196727
|
workspace?: Maybe<TrelloWorkspace>;
|
|
196080
196728
|
};
|
|
196081
196729
|
export declare type TrelloPlannerAccountsArgs = {
|
|
@@ -196091,6 +196739,10 @@ export declare type TrelloPlannerProposedEventsArgs = {
|
|
|
196091
196739
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
196092
196740
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196093
196741
|
};
|
|
196742
|
+
export declare type TrelloPlannerSoloBoardsArgs = {
|
|
196743
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
196744
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196745
|
+
};
|
|
196094
196746
|
export declare type TrelloPlannerBaseCardUpdated = {
|
|
196095
196747
|
id: Scalars['ID']['output'];
|
|
196096
196748
|
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
@@ -196632,6 +197284,21 @@ export declare type TrelloPlannerProviderCalendarUpdated = {
|
|
|
196632
197284
|
title?: Maybe<Scalars['String']['output']>;
|
|
196633
197285
|
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
196634
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
|
+
};
|
|
196635
197302
|
export declare type TrelloPlannerUpdated = {
|
|
196636
197303
|
__typename?: 'TrelloPlannerUpdated';
|
|
196637
197304
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
@@ -197135,6 +197802,15 @@ export declare type TrelloReopenBoardPayload = Payload & {
|
|
|
197135
197802
|
errors?: Maybe<Array<MutationError>>;
|
|
197136
197803
|
success: Scalars['Boolean']['output'];
|
|
197137
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
|
+
};
|
|
197138
197814
|
export declare type TrelloResetCardCoverInput = {
|
|
197139
197815
|
cardId: Scalars['ID']['input'];
|
|
197140
197816
|
};
|
|
@@ -197398,15 +198074,6 @@ export declare enum TrelloTokenFilter {
|
|
|
197398
198074
|
Mobile = "MOBILE",
|
|
197399
198075
|
ThirdParty = "THIRD_PARTY"
|
|
197400
198076
|
}
|
|
197401
|
-
export declare type TrelloUnarchiveCardInput = {
|
|
197402
|
-
cardId: Scalars['ID']['input'];
|
|
197403
|
-
};
|
|
197404
|
-
export declare type TrelloUnarchiveCardPayload = Payload & {
|
|
197405
|
-
__typename?: 'TrelloUnarchiveCardPayload';
|
|
197406
|
-
card?: Maybe<TrelloBaseCard>;
|
|
197407
|
-
errors?: Maybe<Array<MutationError>>;
|
|
197408
|
-
success: Scalars['Boolean']['output'];
|
|
197409
|
-
};
|
|
197410
198077
|
export declare type TrelloUndoActionInput = {
|
|
197411
198078
|
actionId: Scalars['ID']['input'];
|
|
197412
198079
|
};
|
|
@@ -197441,7 +198108,7 @@ export declare type TrelloUpdateBoardCommentingPermissionsInput = {
|
|
|
197441
198108
|
};
|
|
197442
198109
|
export declare type TrelloUpdateBoardCommentingPermissionsPayload = Payload & {
|
|
197443
198110
|
__typename?: 'TrelloUpdateBoardCommentingPermissionsPayload';
|
|
197444
|
-
board?: Maybe<
|
|
198111
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
197445
198112
|
errors?: Maybe<Array<MutationError>>;
|
|
197446
198113
|
success: Scalars['Boolean']['output'];
|
|
197447
198114
|
};
|
|
@@ -197572,7 +198239,7 @@ export declare type TrelloUpdateBoardVotingPermissionsInput = {
|
|
|
197572
198239
|
};
|
|
197573
198240
|
export declare type TrelloUpdateBoardVotingPermissionsPayload = Payload & {
|
|
197574
198241
|
__typename?: 'TrelloUpdateBoardVotingPermissionsPayload';
|
|
197575
|
-
board?: Maybe<
|
|
198242
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
197576
198243
|
errors?: Maybe<Array<MutationError>>;
|
|
197577
198244
|
success: Scalars['Boolean']['output'];
|
|
197578
198245
|
};
|
|
@@ -197635,6 +198302,16 @@ export declare type TrelloUpdateCardDateViewedByCreatorPayload = Payload & {
|
|
|
197635
198302
|
errors?: Maybe<Array<MutationError>>;
|
|
197636
198303
|
success: Scalars['Boolean']['output'];
|
|
197637
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
|
+
};
|
|
197638
198315
|
export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionData & {
|
|
197639
198316
|
__typename?: 'TrelloUpdateCardDueAction';
|
|
197640
198317
|
appCreator?: Maybe<TrelloAppCreator>;
|