@forge/cli-shared 8.9.0-next.18 → 8.9.0-next.19
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
CHANGED
|
@@ -7203,6 +7203,7 @@ export declare enum CcpBillingInterval {
|
|
|
7203
7203
|
export declare type CcpBillingPeriodDetails = {
|
|
7204
7204
|
__typename?: 'CcpBillingPeriodDetails';
|
|
7205
7205
|
billingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
7206
|
+
nextBillingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
7206
7207
|
nextBillingTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
7207
7208
|
};
|
|
7208
7209
|
export declare type CcpCancelEntitlementExperienceCapability = CommerceExperienceCapability & {
|
|
@@ -9445,6 +9446,7 @@ export declare type ChannelPlatformTranscriptEntry = {
|
|
|
9445
9446
|
};
|
|
9446
9447
|
export declare type ChannelPlatformTranscriptRequest = {
|
|
9447
9448
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
9449
|
+
isStaleTolerant?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9448
9450
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
9449
9451
|
role?: InputMaybe<ChannelPlatformRole>;
|
|
9450
9452
|
startAfterChatMessageId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -10836,6 +10838,7 @@ export declare type CompassComponent = Node & {
|
|
|
10836
10838
|
id: Scalars['ID']['output'];
|
|
10837
10839
|
labels?: Maybe<Array<CompassComponentLabel>>;
|
|
10838
10840
|
links?: Maybe<Array<CompassLink>>;
|
|
10841
|
+
logs?: Maybe<CompassComponentLogConnection>;
|
|
10839
10842
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
10840
10843
|
name: Scalars['String']['output'];
|
|
10841
10844
|
onCallSchedules?: Maybe<CompassComponentOnCallScheduleConnection>;
|
|
@@ -10867,6 +10870,10 @@ export declare type CompassComponentDeactivatedScorecardsArgs = {
|
|
|
10867
10870
|
export declare type CompassComponentEventsArgs = {
|
|
10868
10871
|
query?: InputMaybe<CompassEventsQuery>;
|
|
10869
10872
|
};
|
|
10873
|
+
export declare type CompassComponentLogsArgs = {
|
|
10874
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
10875
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10876
|
+
};
|
|
10870
10877
|
export declare type CompassComponentMetricSourcesArgs = {
|
|
10871
10878
|
query?: InputMaybe<CompassComponentMetricSourcesQuery>;
|
|
10872
10879
|
};
|
|
@@ -11111,6 +11118,23 @@ export declare type CompassComponentLabel = {
|
|
|
11111
11118
|
name?: Maybe<Scalars['String']['output']>;
|
|
11112
11119
|
};
|
|
11113
11120
|
export declare type CompassComponentLabelsQueryResult = CompassSearchComponentLabelsConnection | QueryError;
|
|
11121
|
+
export declare type CompassComponentLog = {
|
|
11122
|
+
__typename?: 'CompassComponentLog';
|
|
11123
|
+
action: Scalars['String']['output'];
|
|
11124
|
+
actor: Scalars['ID']['output'];
|
|
11125
|
+
componentId: Scalars['ID']['output'];
|
|
11126
|
+
discoveryStrategy?: Maybe<Scalars['String']['output']>;
|
|
11127
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
11128
|
+
id: Scalars['ID']['output'];
|
|
11129
|
+
source?: Maybe<CompassAutoPopulationSource>;
|
|
11130
|
+
timestamp: Scalars['DateTime']['output'];
|
|
11131
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
11132
|
+
};
|
|
11133
|
+
export declare type CompassComponentLogConnection = {
|
|
11134
|
+
__typename?: 'CompassComponentLogConnection';
|
|
11135
|
+
nodes?: Maybe<Array<CompassComponentLog>>;
|
|
11136
|
+
pageInfo: PageInfo;
|
|
11137
|
+
};
|
|
11114
11138
|
export declare type CompassComponentMetricSourcesConnection = {
|
|
11115
11139
|
__typename?: 'CompassComponentMetricSourcesConnection';
|
|
11116
11140
|
edges?: Maybe<Array<CompassMetricSourceEdge>>;
|
|
@@ -15883,6 +15907,10 @@ export declare type ConfluenceContentBodyInput = {
|
|
|
15883
15907
|
representation: ConfluenceContentRepresentation;
|
|
15884
15908
|
value: Scalars['String']['input'];
|
|
15885
15909
|
};
|
|
15910
|
+
export declare type ConfluenceContentGeneralAccess = {
|
|
15911
|
+
__typename?: 'ConfluenceContentGeneralAccess';
|
|
15912
|
+
mode?: Maybe<ConfluenceContentRestrictionState>;
|
|
15913
|
+
};
|
|
15886
15914
|
export declare type ConfluenceContentInput = {
|
|
15887
15915
|
contentBody?: InputMaybe<Scalars['String']['input']>;
|
|
15888
15916
|
contentId: Scalars['ID']['input'];
|
|
@@ -15974,6 +16002,17 @@ export declare enum ConfluenceContentRepresentation {
|
|
|
15974
16002
|
View = "VIEW",
|
|
15975
16003
|
Wiki = "WIKI"
|
|
15976
16004
|
}
|
|
16005
|
+
export declare enum ConfluenceContentRestrictionState {
|
|
16006
|
+
EditRestricted = "EDIT_RESTRICTED",
|
|
16007
|
+
Open = "OPEN",
|
|
16008
|
+
RestrictedByParent = "RESTRICTED_BY_PARENT",
|
|
16009
|
+
ViewRestricted = "VIEW_RESTRICTED"
|
|
16010
|
+
}
|
|
16011
|
+
export declare enum ConfluenceContentRestrictionStateInput {
|
|
16012
|
+
EditRestricted = "EDIT_RESTRICTED",
|
|
16013
|
+
Open = "OPEN",
|
|
16014
|
+
ViewRestricted = "VIEW_RESTRICTED"
|
|
16015
|
+
}
|
|
15977
16016
|
export declare type ConfluenceContentRestrictionUpdated = {
|
|
15978
16017
|
__typename?: 'ConfluenceContentRestrictionUpdated';
|
|
15979
16018
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -18946,6 +18985,16 @@ export declare type ConfluenceSearchResponseEdge = {
|
|
|
18946
18985
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18947
18986
|
node?: Maybe<ConfluenceSearchResponse>;
|
|
18948
18987
|
};
|
|
18988
|
+
export declare type ConfluenceSetContentGeneralAccessModeInput = {
|
|
18989
|
+
contentId: Scalars['ID']['input'];
|
|
18990
|
+
mode: ConfluenceContentRestrictionStateInput;
|
|
18991
|
+
};
|
|
18992
|
+
export declare type ConfluenceSetContentGeneralAccessModePayload = Payload & {
|
|
18993
|
+
__typename?: 'ConfluenceSetContentGeneralAccessModePayload';
|
|
18994
|
+
contentGeneralAccess?: Maybe<ConfluenceContentGeneralAccess>;
|
|
18995
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18996
|
+
success: Scalars['Boolean']['output'];
|
|
18997
|
+
};
|
|
18949
18998
|
export declare type ConfluenceSetSubCalendarReminderInput = {
|
|
18950
18999
|
isReminder: Scalars['Boolean']['input'];
|
|
18951
19000
|
subCalendarId: Scalars['ID']['input'];
|
|
@@ -19106,6 +19155,14 @@ export declare enum ConfluenceSpacePermissionAuditReportType {
|
|
|
19106
19155
|
FullSitePermission = "FULL_SITE_PERMISSION",
|
|
19107
19156
|
PermissionCombination = "PERMISSION_COMBINATION"
|
|
19108
19157
|
}
|
|
19158
|
+
export declare type ConfluenceSpaceProperty = {
|
|
19159
|
+
__typename?: 'ConfluenceSpaceProperty';
|
|
19160
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
19161
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
19162
|
+
space?: Maybe<Space>;
|
|
19163
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
19164
|
+
version?: Maybe<Version>;
|
|
19165
|
+
};
|
|
19109
19166
|
export declare type ConfluenceSpaceRecommendations = {
|
|
19110
19167
|
__typename?: 'ConfluenceSpaceRecommendations';
|
|
19111
19168
|
active?: Maybe<Array<Maybe<Space>>>;
|
|
@@ -22838,6 +22895,13 @@ export declare type CplsMutationErrorExtension = MutationErrorExtension & {
|
|
|
22838
22895
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
22839
22896
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
22840
22897
|
};
|
|
22898
|
+
export declare type CplsPeopleView = CplsCapacityPlanningPeopleView | QueryError;
|
|
22899
|
+
export declare type CplsQueryErrorExtension = QueryErrorExtension & {
|
|
22900
|
+
__typename?: 'CplsQueryErrorExtension';
|
|
22901
|
+
errorId?: Maybe<Scalars['String']['output']>;
|
|
22902
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
22903
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
22904
|
+
};
|
|
22841
22905
|
export declare type CplsSearchCustomContributionTargetsInput = {
|
|
22842
22906
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
22843
22907
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -36949,6 +37013,8 @@ export declare type GraphStore = {
|
|
|
36949
37013
|
userFavoritedFocusAreaBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
|
|
36950
37014
|
userFavoritedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaInverseConnection>;
|
|
36951
37015
|
userFavoritedFocusAreaInverseBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
|
|
37016
|
+
userFavoritedTownsquareGoal?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalConnection>;
|
|
37017
|
+
userFavoritedTownsquareGoalInverse?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseConnection>;
|
|
36952
37018
|
userFavoritedTownsquareProject?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection>;
|
|
36953
37019
|
userFavoritedTownsquareProjectInverse?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseConnection>;
|
|
36954
37020
|
userHasExternalPosition?: Maybe<GraphStoreSimplifiedUserHasExternalPositionConnection>;
|
|
@@ -41488,6 +41554,20 @@ export declare type GraphStoreUserFavoritedFocusAreaInverseBatchArgs = {
|
|
|
41488
41554
|
ids: Array<Scalars['ID']['input']>;
|
|
41489
41555
|
sort?: InputMaybe<GraphStoreUserFavoritedFocusAreaSortInput>;
|
|
41490
41556
|
};
|
|
41557
|
+
export declare type GraphStoreUserFavoritedTownsquareGoalArgs = {
|
|
41558
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41559
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41560
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41561
|
+
id: Scalars['ID']['input'];
|
|
41562
|
+
sort?: InputMaybe<GraphStoreUserFavoritedTownsquareGoalSortInput>;
|
|
41563
|
+
};
|
|
41564
|
+
export declare type GraphStoreUserFavoritedTownsquareGoalInverseArgs = {
|
|
41565
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41566
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41567
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41568
|
+
id: Scalars['ID']['input'];
|
|
41569
|
+
sort?: InputMaybe<GraphStoreUserFavoritedTownsquareGoalSortInput>;
|
|
41570
|
+
};
|
|
41491
41571
|
export declare type GraphStoreUserFavoritedTownsquareProjectArgs = {
|
|
41492
41572
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41493
41573
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -44422,6 +44502,20 @@ export declare type GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
44422
44502
|
to: Scalars['ID']['input'];
|
|
44423
44503
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
44424
44504
|
};
|
|
44505
|
+
export declare type GraphStoreCreateUserFavoritedTownsquareGoalInput = {
|
|
44506
|
+
relationships: Array<GraphStoreCreateUserFavoritedTownsquareGoalRelationshipInput>;
|
|
44507
|
+
};
|
|
44508
|
+
export declare type GraphStoreCreateUserFavoritedTownsquareGoalPayload = Payload & {
|
|
44509
|
+
__typename?: 'GraphStoreCreateUserFavoritedTownsquareGoalPayload';
|
|
44510
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44511
|
+
success: Scalars['Boolean']['output'];
|
|
44512
|
+
};
|
|
44513
|
+
export declare type GraphStoreCreateUserFavoritedTownsquareGoalRelationshipInput = {
|
|
44514
|
+
from: Scalars['ID']['input'];
|
|
44515
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
44516
|
+
to: Scalars['ID']['input'];
|
|
44517
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
44518
|
+
};
|
|
44425
44519
|
export declare type GraphStoreCreateUserFavoritedTownsquareProjectInput = {
|
|
44426
44520
|
relationships: Array<GraphStoreCreateUserFavoritedTownsquareProjectRelationshipInput>;
|
|
44427
44521
|
};
|
|
@@ -45023,6 +45117,19 @@ export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
45023
45117
|
from: Scalars['ID']['input'];
|
|
45024
45118
|
to: Scalars['ID']['input'];
|
|
45025
45119
|
};
|
|
45120
|
+
export declare type GraphStoreDeleteUserFavoritedTownsquareGoalInput = {
|
|
45121
|
+
relationships: Array<GraphStoreDeleteUserFavoritedTownsquareGoalRelationshipInput>;
|
|
45122
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45123
|
+
};
|
|
45124
|
+
export declare type GraphStoreDeleteUserFavoritedTownsquareGoalPayload = Payload & {
|
|
45125
|
+
__typename?: 'GraphStoreDeleteUserFavoritedTownsquareGoalPayload';
|
|
45126
|
+
errors?: Maybe<Array<MutationError>>;
|
|
45127
|
+
success: Scalars['Boolean']['output'];
|
|
45128
|
+
};
|
|
45129
|
+
export declare type GraphStoreDeleteUserFavoritedTownsquareGoalRelationshipInput = {
|
|
45130
|
+
from: Scalars['ID']['input'];
|
|
45131
|
+
to: Scalars['ID']['input'];
|
|
45132
|
+
};
|
|
45026
45133
|
export declare type GraphStoreDeleteUserFavoritedTownsquareProjectInput = {
|
|
45027
45134
|
relationships: Array<GraphStoreDeleteUserFavoritedTownsquareProjectRelationshipInput>;
|
|
45028
45135
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49012,6 +49119,7 @@ export declare type GraphStoreMutation = {
|
|
|
49012
49119
|
createTeamConnectedToContainer?: Maybe<GraphStoreCreateTeamConnectedToContainerPayload>;
|
|
49013
49120
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
49014
49121
|
createTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
49122
|
+
createUserFavoritedTownsquareGoal?: Maybe<GraphStoreCreateUserFavoritedTownsquareGoalPayload>;
|
|
49015
49123
|
createUserFavoritedTownsquareProject?: Maybe<GraphStoreCreateUserFavoritedTownsquareProjectPayload>;
|
|
49016
49124
|
createUserHasRelevantProject?: Maybe<GraphStoreCreateUserHasRelevantProjectPayload>;
|
|
49017
49125
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
@@ -49041,6 +49149,7 @@ export declare type GraphStoreMutation = {
|
|
|
49041
49149
|
deleteTeamConnectedToContainer?: Maybe<GraphStoreDeleteTeamConnectedToContainerPayload>;
|
|
49042
49150
|
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
49043
49151
|
deleteTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
49152
|
+
deleteUserFavoritedTownsquareGoal?: Maybe<GraphStoreDeleteUserFavoritedTownsquareGoalPayload>;
|
|
49044
49153
|
deleteUserFavoritedTownsquareProject?: Maybe<GraphStoreDeleteUserFavoritedTownsquareProjectPayload>;
|
|
49045
49154
|
deleteUserHasRelevantProject?: Maybe<GraphStoreDeleteUserHasRelevantProjectPayload>;
|
|
49046
49155
|
deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
|
|
@@ -49121,6 +49230,9 @@ export declare type GraphStoreMutationCreateTestPerfhammerRelationshipArgs = {
|
|
|
49121
49230
|
export declare type GraphStoreMutationCreateTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
49122
49231
|
input?: InputMaybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
49123
49232
|
};
|
|
49233
|
+
export declare type GraphStoreMutationCreateUserFavoritedTownsquareGoalArgs = {
|
|
49234
|
+
input?: InputMaybe<GraphStoreCreateUserFavoritedTownsquareGoalInput>;
|
|
49235
|
+
};
|
|
49124
49236
|
export declare type GraphStoreMutationCreateUserFavoritedTownsquareProjectArgs = {
|
|
49125
49237
|
input?: InputMaybe<GraphStoreCreateUserFavoritedTownsquareProjectInput>;
|
|
49126
49238
|
};
|
|
@@ -49208,6 +49320,9 @@ export declare type GraphStoreMutationDeleteTestPerfhammerRelationshipArgs = {
|
|
|
49208
49320
|
export declare type GraphStoreMutationDeleteTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
49209
49321
|
input?: InputMaybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
49210
49322
|
};
|
|
49323
|
+
export declare type GraphStoreMutationDeleteUserFavoritedTownsquareGoalArgs = {
|
|
49324
|
+
input?: InputMaybe<GraphStoreDeleteUserFavoritedTownsquareGoalInput>;
|
|
49325
|
+
};
|
|
49211
49326
|
export declare type GraphStoreMutationDeleteUserFavoritedTownsquareProjectArgs = {
|
|
49212
49327
|
input?: InputMaybe<GraphStoreDeleteUserFavoritedTownsquareProjectInput>;
|
|
49213
49328
|
};
|
|
@@ -56552,6 +56667,38 @@ export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseEdge = {
|
|
|
56552
56667
|
};
|
|
56553
56668
|
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56554
56669
|
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaUnion = MercuryFocusArea;
|
|
56670
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalConnection = HasPageInfo & HasTotal & {
|
|
56671
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalConnection';
|
|
56672
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalEdge>>>;
|
|
56673
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
56674
|
+
pageInfo: PageInfo;
|
|
56675
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
56676
|
+
};
|
|
56677
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalEdge = {
|
|
56678
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalEdge';
|
|
56679
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56680
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56681
|
+
id: Scalars['ID']['output'];
|
|
56682
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56683
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalUnion>;
|
|
56684
|
+
};
|
|
56685
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseConnection = HasPageInfo & HasTotal & {
|
|
56686
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseConnection';
|
|
56687
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseEdge>>>;
|
|
56688
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
56689
|
+
pageInfo: PageInfo;
|
|
56690
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
56691
|
+
};
|
|
56692
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseEdge = {
|
|
56693
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseEdge';
|
|
56694
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56695
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56696
|
+
id: Scalars['ID']['output'];
|
|
56697
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56698
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseUnion>;
|
|
56699
|
+
};
|
|
56700
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56701
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalUnion = TownsquareGoal;
|
|
56555
56702
|
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection = HasPageInfo & HasTotal & {
|
|
56556
56703
|
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection';
|
|
56557
56704
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectEdge>>>;
|
|
@@ -59050,6 +59197,12 @@ export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
|
|
|
59050
59197
|
export declare type GraphStoreUserFavoritedFocusAreaSortInput = {
|
|
59051
59198
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59052
59199
|
};
|
|
59200
|
+
export declare type GraphStoreUserFavoritedTownsquareGoalSortInput = {
|
|
59201
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
59202
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
59203
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59204
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
59205
|
+
};
|
|
59053
59206
|
export declare type GraphStoreUserFavoritedTownsquareProjectSortInput = {
|
|
59054
59207
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
59055
59208
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -69805,6 +69958,7 @@ export declare type JiraGetIssueResourceInput = {
|
|
|
69805
69958
|
first: Scalars['Int']['input'];
|
|
69806
69959
|
orderDirection?: InputMaybe<JiraResourcesSortDirection>;
|
|
69807
69960
|
orderField?: InputMaybe<JiraResourcesOrderField>;
|
|
69961
|
+
pagination?: InputMaybe<JiraResourcePaginationInput>;
|
|
69808
69962
|
};
|
|
69809
69963
|
export declare enum JiraGlobalIssueCreateView {
|
|
69810
69964
|
FullModal = "FULL_MODAL",
|
|
@@ -73833,6 +73987,40 @@ export declare type JiraMentionableEdge = {
|
|
|
73833
73987
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
73834
73988
|
node?: Maybe<JiraMentionable>;
|
|
73835
73989
|
};
|
|
73990
|
+
export declare type JiraMergeIssueError = {
|
|
73991
|
+
__typename?: 'JiraMergeIssueError';
|
|
73992
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
73993
|
+
step?: Maybe<Scalars['String']['output']>;
|
|
73994
|
+
};
|
|
73995
|
+
export declare type JiraMergeIssuesInput = {
|
|
73996
|
+
mergeAttachments: Scalars['Boolean']['input'];
|
|
73997
|
+
mergeComments: Scalars['Boolean']['input'];
|
|
73998
|
+
mergeDescriptionFrom: Scalars['ID']['input'];
|
|
73999
|
+
mergeFieldsFrom: Scalars['ID']['input'];
|
|
74000
|
+
mergeLinks: Scalars['Boolean']['input'];
|
|
74001
|
+
mergeSubtasks: Scalars['Boolean']['input'];
|
|
74002
|
+
sourceIds: Array<Scalars['ID']['input']>;
|
|
74003
|
+
targetId: Scalars['ID']['input'];
|
|
74004
|
+
};
|
|
74005
|
+
export declare type JiraMergeIssuesOperationProgress = {
|
|
74006
|
+
__typename?: 'JiraMergeIssuesOperationProgress';
|
|
74007
|
+
errors?: Maybe<Array<JiraMergeIssueError>>;
|
|
74008
|
+
id: Scalars['ID']['output'];
|
|
74009
|
+
status?: Maybe<JiraLongRunningTaskStatus>;
|
|
74010
|
+
submittedTime?: Maybe<Scalars['DateTime']['output']>;
|
|
74011
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
74012
|
+
};
|
|
74013
|
+
export declare type JiraMergeIssuesOperationProgressInput = {
|
|
74014
|
+
cloudId: Scalars['ID']['input'];
|
|
74015
|
+
taskId: Scalars['ID']['input'];
|
|
74016
|
+
};
|
|
74017
|
+
export declare type JiraMergeIssuesOperationProgressResult = JiraMergeIssuesOperationProgress | QueryError;
|
|
74018
|
+
export declare type JiraMergeIssuesPayload = Payload & {
|
|
74019
|
+
__typename?: 'JiraMergeIssuesPayload';
|
|
74020
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74021
|
+
progress?: Maybe<JiraMergeIssuesOperationProgress>;
|
|
74022
|
+
success: Scalars['Boolean']['output'];
|
|
74023
|
+
};
|
|
73836
74024
|
export declare type JiraMergeVersionInput = {
|
|
73837
74025
|
id: Scalars['ID']['input'];
|
|
73838
74026
|
targetVersionId: Scalars['ID']['input'];
|
|
@@ -75880,6 +76068,10 @@ export declare type JiraPageCursors = {
|
|
|
75880
76068
|
last?: Maybe<JiraPageCursor>;
|
|
75881
76069
|
previous?: Maybe<JiraPageCursor>;
|
|
75882
76070
|
};
|
|
76071
|
+
export declare enum JiraPaginationStyle {
|
|
76072
|
+
Cursor = "CURSOR",
|
|
76073
|
+
Offset = "OFFSET"
|
|
76074
|
+
}
|
|
75883
76075
|
export declare type JiraParentFieldInput = {
|
|
75884
76076
|
issueId: Scalars['ID']['input'];
|
|
75885
76077
|
};
|
|
@@ -79519,6 +79711,16 @@ export declare type JiraResourceNode = {
|
|
|
79519
79711
|
__typename?: 'JiraResourceNode';
|
|
79520
79712
|
node?: Maybe<JiraResource>;
|
|
79521
79713
|
};
|
|
79714
|
+
export declare type JiraResourcePaginationInput = {
|
|
79715
|
+
currentPageNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
79716
|
+
isLast?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79717
|
+
pageCursor?: InputMaybe<Scalars['String']['input']>;
|
|
79718
|
+
pageNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
79719
|
+
pageSize: Scalars['Int']['input'];
|
|
79720
|
+
style: JiraPaginationStyle;
|
|
79721
|
+
totalCount?: InputMaybe<Scalars['Long']['input']>;
|
|
79722
|
+
totalLinks?: InputMaybe<Scalars['Long']['input']>;
|
|
79723
|
+
};
|
|
79522
79724
|
export declare enum JiraResourceParentName {
|
|
79523
79725
|
Comment = "COMMENT",
|
|
79524
79726
|
Customfield = "CUSTOMFIELD",
|
|
@@ -92094,6 +92296,17 @@ export declare type MercuryFocusAreaIcon = {
|
|
|
92094
92296
|
__typename?: 'MercuryFocusAreaIcon';
|
|
92095
92297
|
url: Scalars['String']['output'];
|
|
92096
92298
|
};
|
|
92299
|
+
export declare type MercuryFocusAreaInsight = MercuryInsight & {
|
|
92300
|
+
__typename?: 'MercuryFocusAreaInsight';
|
|
92301
|
+
ari: Scalars['ID']['output'];
|
|
92302
|
+
id: Scalars['ID']['output'];
|
|
92303
|
+
insightData?: Maybe<MercuryFocusArea>;
|
|
92304
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
92305
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
92306
|
+
};
|
|
92307
|
+
export declare type MercuryFocusAreaInsightsFilter = {
|
|
92308
|
+
insightType?: InputMaybe<MercuryInsightTypeEnum>;
|
|
92309
|
+
};
|
|
92097
92310
|
export declare type MercuryFocusAreaLink = Node & {
|
|
92098
92311
|
__typename?: 'MercuryFocusAreaLink';
|
|
92099
92312
|
childFocusAreaId: Scalars['String']['output'];
|
|
@@ -92452,6 +92665,14 @@ export declare type MercuryGoalAggregatedStatusCount = {
|
|
|
92452
92665
|
latestGoalStatusUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
92453
92666
|
subGoalsAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
|
|
92454
92667
|
};
|
|
92668
|
+
export declare type MercuryGoalInsight = MercuryInsight & {
|
|
92669
|
+
__typename?: 'MercuryGoalInsight';
|
|
92670
|
+
ari: Scalars['ID']['output'];
|
|
92671
|
+
id: Scalars['ID']['output'];
|
|
92672
|
+
insightData?: Maybe<TownsquareGoal>;
|
|
92673
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
92674
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
92675
|
+
};
|
|
92455
92676
|
export declare type MercuryGoalStatusCount = {
|
|
92456
92677
|
__typename?: 'MercuryGoalStatusCount';
|
|
92457
92678
|
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
@@ -92473,6 +92694,25 @@ export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
|
92473
92694
|
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
92474
92695
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
92475
92696
|
};
|
|
92697
|
+
export declare type MercuryInsight = {
|
|
92698
|
+
id: Scalars['ID']['output'];
|
|
92699
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
92700
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
92701
|
+
};
|
|
92702
|
+
export declare type MercuryInsightObject = MercuryFocusAreaInsight | MercuryGoalInsight | MercuryJiraAlignProjectInsight | MercuryJiraIssueInsight | MercuryTownsquareProjectInsight;
|
|
92703
|
+
export declare enum MercuryInsightTypeEnum {
|
|
92704
|
+
FocusArea = "FOCUS_AREA",
|
|
92705
|
+
Goal = "GOAL",
|
|
92706
|
+
Work = "WORK"
|
|
92707
|
+
}
|
|
92708
|
+
export declare type MercuryInsightsQueryApi = {
|
|
92709
|
+
__typename?: 'MercuryInsightsQueryApi';
|
|
92710
|
+
focusAreaInsights?: Maybe<Array<MercuryInsightObject>>;
|
|
92711
|
+
};
|
|
92712
|
+
export declare type MercuryInsightsQueryApiFocusAreaInsightsArgs = {
|
|
92713
|
+
filter?: InputMaybe<MercuryFocusAreaInsightsFilter>;
|
|
92714
|
+
focusAreaId: Scalars['ID']['input'];
|
|
92715
|
+
};
|
|
92476
92716
|
export declare type MercuryInvestmentCategory = Node & {
|
|
92477
92717
|
__typename?: 'MercuryInvestmentCategory';
|
|
92478
92718
|
createdBy?: Maybe<User>;
|
|
@@ -92513,6 +92753,14 @@ export declare type MercuryInvestmentCategorySetSort = {
|
|
|
92513
92753
|
export declare enum MercuryInvestmentCategorySetSortField {
|
|
92514
92754
|
Name = "NAME"
|
|
92515
92755
|
}
|
|
92756
|
+
export declare type MercuryJiraAlignProjectInsight = MercuryInsight & {
|
|
92757
|
+
__typename?: 'MercuryJiraAlignProjectInsight';
|
|
92758
|
+
ari: Scalars['ID']['output'];
|
|
92759
|
+
id: Scalars['ID']['output'];
|
|
92760
|
+
insightData?: Maybe<JiraAlignAggProject>;
|
|
92761
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
92762
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
92763
|
+
};
|
|
92516
92764
|
export declare type MercuryJiraAlignProjectType = {
|
|
92517
92765
|
__typename?: 'MercuryJiraAlignProjectType';
|
|
92518
92766
|
displayName: Scalars['String']['output'];
|
|
@@ -92534,6 +92782,14 @@ export declare type MercuryJiraAlignProviderQueryApiIsJaConnectedArgs = {
|
|
|
92534
92782
|
export declare type MercuryJiraAlignProviderQueryApiUserAccessibleJiraAlignProjectTypesArgs = {
|
|
92535
92783
|
cloudId: Scalars['ID']['input'];
|
|
92536
92784
|
};
|
|
92785
|
+
export declare type MercuryJiraIssueInsight = MercuryInsight & {
|
|
92786
|
+
__typename?: 'MercuryJiraIssueInsight';
|
|
92787
|
+
ari: Scalars['ID']['output'];
|
|
92788
|
+
id: Scalars['ID']['output'];
|
|
92789
|
+
insightData?: Maybe<JiraIssue>;
|
|
92790
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
92791
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
92792
|
+
};
|
|
92537
92793
|
export declare type MercuryLinkAtlassianWorkToFocusAreaInput = {
|
|
92538
92794
|
focusAreaAri: Scalars['String']['input'];
|
|
92539
92795
|
workAris: Array<Scalars['String']['input']>;
|
|
@@ -93951,6 +94207,14 @@ export declare type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinit
|
|
|
93951
94207
|
export declare type MercuryTextCustomFieldInput = {
|
|
93952
94208
|
textValue?: InputMaybe<Scalars['String']['input']>;
|
|
93953
94209
|
};
|
|
94210
|
+
export declare type MercuryTownsquareProjectInsight = MercuryInsight & {
|
|
94211
|
+
__typename?: 'MercuryTownsquareProjectInsight';
|
|
94212
|
+
ari: Scalars['ID']['output'];
|
|
94213
|
+
id: Scalars['ID']['output'];
|
|
94214
|
+
insightData?: Maybe<TownsquareProject>;
|
|
94215
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
94216
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
94217
|
+
};
|
|
93954
94218
|
export declare type MercuryTransitionChangeProposalPayload = Payload & {
|
|
93955
94219
|
__typename?: 'MercuryTransitionChangeProposalPayload';
|
|
93956
94220
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -94754,6 +95018,7 @@ export declare type Mutation = {
|
|
|
94754
95018
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
94755
95019
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
94756
95020
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
95021
|
+
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
94757
95022
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
94758
95023
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
94759
95024
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
@@ -95024,6 +95289,7 @@ export declare type Mutation = {
|
|
|
95024
95289
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
95025
95290
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
95026
95291
|
jira_listSettingMigrationMutation?: Maybe<JiraListSettingMigrationPayload>;
|
|
95292
|
+
jira_mergeIssues?: Maybe<JiraMergeIssuesPayload>;
|
|
95027
95293
|
jira_moveBoardViewIssueToCellEnd?: Maybe<JiraMoveBoardViewIssueToCellEndPayload>;
|
|
95028
95294
|
jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
|
|
95029
95295
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
@@ -96056,6 +96322,10 @@ export declare type MutationConfluence_RestoreContentVersionArgs = {
|
|
|
96056
96322
|
cloudId: Scalars['ID']['input'];
|
|
96057
96323
|
input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
|
|
96058
96324
|
};
|
|
96325
|
+
export declare type MutationConfluence_SetContentGeneralAccessModeArgs = {
|
|
96326
|
+
cloudId: Scalars['ID']['input'];
|
|
96327
|
+
input: ConfluenceSetContentGeneralAccessModeInput;
|
|
96328
|
+
};
|
|
96059
96329
|
export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
96060
96330
|
cloudId: Scalars['ID']['input'];
|
|
96061
96331
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
@@ -96965,6 +97235,9 @@ export declare type MutationJira_EditFieldSchemeArgs = {
|
|
|
96965
97235
|
export declare type MutationJira_ListSettingMigrationMutationArgs = {
|
|
96966
97236
|
input: JiraListSettingMigrationInput;
|
|
96967
97237
|
};
|
|
97238
|
+
export declare type MutationJira_MergeIssuesArgs = {
|
|
97239
|
+
input: JiraMergeIssuesInput;
|
|
97240
|
+
};
|
|
96968
97241
|
export declare type MutationJira_MoveBoardViewIssueToCellEndArgs = {
|
|
96969
97242
|
input: JiraMoveBoardViewIssueToCellEndInput;
|
|
96970
97243
|
};
|
|
@@ -101152,6 +101425,7 @@ export declare type Query = {
|
|
|
101152
101425
|
confluence_macroPlaceholderAdf?: Maybe<ConfluenceMacroPlaceholderAdf>;
|
|
101153
101426
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
101154
101427
|
confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
|
|
101428
|
+
confluence_nbmPerfReportList?: Maybe<ConfluenceNbmScanConnection>;
|
|
101155
101429
|
confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
|
|
101156
101430
|
confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
|
|
101157
101431
|
confluence_nbmTransformationList?: Maybe<ConfluenceNbmTransformationListConnection>;
|
|
@@ -101175,6 +101449,7 @@ export declare type Query = {
|
|
|
101175
101449
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
101176
101450
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
101177
101451
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
101452
|
+
confluence_spaceProperty?: Maybe<ConfluenceSpaceProperty>;
|
|
101178
101453
|
confluence_spaceRecommendations?: Maybe<ConfluenceSpaceRecommendations>;
|
|
101179
101454
|
confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
|
|
101180
101455
|
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
@@ -101237,6 +101512,7 @@ export declare type Query = {
|
|
|
101237
101512
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
101238
101513
|
cpls_customContributionTargets: CplsCustomContributionTargetConnection;
|
|
101239
101514
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
101515
|
+
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
101240
101516
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
101241
101517
|
crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
101242
101518
|
crossProjectIssueMentionsInCommentsV2?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -101461,6 +101737,7 @@ export declare type Query = {
|
|
|
101461
101737
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
101462
101738
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
101463
101739
|
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
101740
|
+
jira_mergeIssuesOperationProgress?: Maybe<JiraMergeIssuesOperationProgressResult>;
|
|
101464
101741
|
jira_onboardingConfigById?: Maybe<JiraOnboardingConfig>;
|
|
101465
101742
|
jira_onboardingConfigByTarget?: Maybe<JiraOnboardingConfig>;
|
|
101466
101743
|
jira_onboardingConfigs?: Maybe<JiraOnboardingConfigConnection>;
|
|
@@ -101530,6 +101807,7 @@ export declare type Query = {
|
|
|
101530
101807
|
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
101531
101808
|
mercury?: Maybe<MercuryQueryApi>;
|
|
101532
101809
|
mercury_funds?: Maybe<MercuryFundsQueryApi>;
|
|
101810
|
+
mercury_insights?: Maybe<MercuryInsightsQueryApi>;
|
|
101533
101811
|
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
101534
101812
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
101535
101813
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
@@ -102900,6 +103178,12 @@ export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
|
102900
103178
|
export declare type QueryConfluence_MediaTokenDataArgs = {
|
|
102901
103179
|
noteId: Scalars['ID']['input'];
|
|
102902
103180
|
};
|
|
103181
|
+
export declare type QueryConfluence_NbmPerfReportListArgs = {
|
|
103182
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103183
|
+
cloudId: Scalars['ID']['input'];
|
|
103184
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103185
|
+
status?: InputMaybe<ConfluenceNbmScanStatus>;
|
|
103186
|
+
};
|
|
102903
103187
|
export declare type QueryConfluence_NbmScanListArgs = {
|
|
102904
103188
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
102905
103189
|
cloudId: Scalars['ID']['input'];
|
|
@@ -103025,6 +103309,11 @@ export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
|
103025
103309
|
contentType: Scalars['String']['input'];
|
|
103026
103310
|
spaceKey: Scalars['String']['input'];
|
|
103027
103311
|
};
|
|
103312
|
+
export declare type QueryConfluence_SpacePropertyArgs = {
|
|
103313
|
+
cloudId: Scalars['ID']['input'];
|
|
103314
|
+
key: Scalars['String']['input'];
|
|
103315
|
+
spaceId: Scalars['ID']['input'];
|
|
103316
|
+
};
|
|
103028
103317
|
export declare type QueryConfluence_SpaceRecommendationsArgs = {
|
|
103029
103318
|
cloudId: Scalars['ID']['input'];
|
|
103030
103319
|
eventTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -103383,6 +103672,9 @@ export declare type QueryCpls_CustomContributionTargetsArgs = {
|
|
|
103383
103672
|
export declare type QueryCpls_CustomContributionTargetsByIdsArgs = {
|
|
103384
103673
|
ids: Array<Scalars['ID']['input']>;
|
|
103385
103674
|
};
|
|
103675
|
+
export declare type QueryCpls_PeopleViewArgs = {
|
|
103676
|
+
id: Scalars['ID']['input'];
|
|
103677
|
+
};
|
|
103386
103678
|
export declare type QueryCrossProjectIssueMentionsInCommentsArgs = {
|
|
103387
103679
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103388
103680
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -104224,6 +104516,9 @@ export declare type QueryJira_IssuesByIdsArgs = {
|
|
|
104224
104516
|
export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs = {
|
|
104225
104517
|
cloudId: Scalars['ID']['input'];
|
|
104226
104518
|
};
|
|
104519
|
+
export declare type QueryJira_MergeIssuesOperationProgressArgs = {
|
|
104520
|
+
input: JiraMergeIssuesOperationProgressInput;
|
|
104521
|
+
};
|
|
104227
104522
|
export declare type QueryJira_OnboardingConfigByIdArgs = {
|
|
104228
104523
|
cloudId: Scalars['ID']['input'];
|
|
104229
104524
|
id: Scalars['ID']['input'];
|
|
@@ -108110,6 +108405,7 @@ export declare type SearchFilterInput = {
|
|
|
108110
108405
|
jiraFilters?: InputMaybe<SearchJiraFilter>;
|
|
108111
108406
|
locations: Array<Scalars['String']['input']>;
|
|
108112
108407
|
mercuryFilters?: InputMaybe<SearchMercuryFilter>;
|
|
108408
|
+
talentFilters?: InputMaybe<SearchTalentFilter>;
|
|
108113
108409
|
thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
|
|
108114
108410
|
trelloFilters?: InputMaybe<SearchTrelloFilter>;
|
|
108115
108411
|
};
|
|
@@ -136771,6 +137067,7 @@ export declare type TrelloMutationApi = {
|
|
|
136771
137067
|
updateCardCover?: Maybe<TrelloUpdateCardCoverPayload>;
|
|
136772
137068
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
136773
137069
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
137070
|
+
updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
|
|
136774
137071
|
updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
|
|
136775
137072
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
136776
137073
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
@@ -136928,6 +137225,9 @@ export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
|
136928
137225
|
export declare type TrelloMutationApiUpdateCardPositionOnPlannerCalendarEventArgs = {
|
|
136929
137226
|
input: TrelloUpdateCardPositionOnPlannerCalendarEventInput;
|
|
136930
137227
|
};
|
|
137228
|
+
export declare type TrelloMutationApiUpdateCardRoleArgs = {
|
|
137229
|
+
input: TrelloUpdateCardRoleInput;
|
|
137230
|
+
};
|
|
136931
137231
|
export declare type TrelloMutationApiUpdateInboxBackgroundArgs = {
|
|
136932
137232
|
input: TrelloUpdateInboxBackgroundInput;
|
|
136933
137233
|
};
|
|
@@ -138143,6 +138443,16 @@ export declare type TrelloUpdateCardRecurrenceRuleActionDisplayEntities = {
|
|
|
138143
138443
|
card?: Maybe<TrelloActionCardEntity>;
|
|
138144
138444
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
138145
138445
|
};
|
|
138446
|
+
export declare type TrelloUpdateCardRoleInput = {
|
|
138447
|
+
cardId: Scalars['ID']['input'];
|
|
138448
|
+
cardRole?: InputMaybe<TrelloCardRole>;
|
|
138449
|
+
};
|
|
138450
|
+
export declare type TrelloUpdateCardRolePayload = Payload & {
|
|
138451
|
+
__typename?: 'TrelloUpdateCardRolePayload';
|
|
138452
|
+
card?: Maybe<TrelloCard>;
|
|
138453
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138454
|
+
success: Scalars['Boolean']['output'];
|
|
138455
|
+
};
|
|
138146
138456
|
export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
|
|
138147
138457
|
__typename?: 'TrelloUpdateCheckItemStateOnCardAction';
|
|
138148
138458
|
appCreator?: Maybe<TrelloAppCreator>;
|