@forge/cli-shared 8.13.0 → 8.14.0-next.0
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.
|
@@ -84,6 +84,10 @@ export declare type Scalars = {
|
|
|
84
84
|
[key: string]: any;
|
|
85
85
|
};
|
|
86
86
|
};
|
|
87
|
+
KitsuneADF: {
|
|
88
|
+
input: any;
|
|
89
|
+
output: any;
|
|
90
|
+
};
|
|
87
91
|
Long: {
|
|
88
92
|
input: any;
|
|
89
93
|
output: any;
|
|
@@ -155,7 +159,6 @@ export declare type AvpAddDashboardRowPayload = Payload & {
|
|
|
155
159
|
success: Scalars['Boolean']['output'];
|
|
156
160
|
};
|
|
157
161
|
export declare type AvpAnalyticsListModelsRequest = {
|
|
158
|
-
category: AvpAnalyticsModelCategory;
|
|
159
162
|
cloudId: Scalars['ID']['input'];
|
|
160
163
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
161
164
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -169,45 +172,32 @@ export declare type AvpAnalyticsListModelsResponse = {
|
|
|
169
172
|
models: Array<AvpAnalyticsModelSummary>;
|
|
170
173
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
171
174
|
};
|
|
172
|
-
export declare enum AvpAnalyticsModelCategory {
|
|
173
|
-
Dynamic = "DYNAMIC",
|
|
174
|
-
Static = "STATIC"
|
|
175
|
-
}
|
|
176
175
|
export declare enum AvpAnalyticsModelStatus {
|
|
177
176
|
Active = "ACTIVE",
|
|
178
177
|
Draft = "DRAFT"
|
|
179
178
|
}
|
|
180
179
|
export declare type AvpAnalyticsModelSummary = {
|
|
181
180
|
__typename?: 'AVPAnalyticsModelSummary';
|
|
182
|
-
|
|
183
|
-
createdAt: Scalars['DateTime']['output'];
|
|
181
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
184
182
|
description?: Maybe<Scalars['String']['output']>;
|
|
185
|
-
isTemplate
|
|
183
|
+
isTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
186
184
|
modelId: Scalars['String']['output'];
|
|
187
185
|
name: Scalars['String']['output'];
|
|
188
|
-
numberOfAttributes: Scalars['Int']['output'];
|
|
189
|
-
numberOfModelsLinked: Scalars['Int']['output'];
|
|
190
186
|
product: AvpAnalyticsProductType;
|
|
191
|
-
sourceId?: Maybe<Scalars['String']['output']>;
|
|
192
|
-
sourceType?: Maybe<AvpAnalyticsSourceType>;
|
|
193
187
|
status: AvpAnalyticsModelStatus;
|
|
194
188
|
templateModelId?: Maybe<Scalars['String']['output']>;
|
|
195
189
|
type: AvpAnalyticsModelType;
|
|
196
|
-
updatedAt
|
|
197
|
-
version
|
|
190
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
191
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
198
192
|
};
|
|
199
193
|
export declare enum AvpAnalyticsModelType {
|
|
200
|
-
|
|
194
|
+
Primary = "PRIMARY",
|
|
201
195
|
UserDefined = "USER_DEFINED"
|
|
202
196
|
}
|
|
203
197
|
export declare enum AvpAnalyticsProductType {
|
|
204
198
|
Assets = "ASSETS",
|
|
205
199
|
Jira = "JIRA"
|
|
206
200
|
}
|
|
207
|
-
export declare enum AvpAnalyticsSourceType {
|
|
208
|
-
AssetObjectType = "ASSET_OBJECT_TYPE",
|
|
209
|
-
AssetSchemaType = "ASSET_SCHEMA_TYPE"
|
|
210
|
-
}
|
|
211
201
|
export declare enum AvpCanvasRowHeight {
|
|
212
202
|
Large = "large",
|
|
213
203
|
Medium = "medium",
|
|
@@ -410,6 +400,13 @@ export declare type AvpChartSettingInput = {
|
|
|
410
400
|
jsonValue?: InputMaybe<Scalars['String']['input']>;
|
|
411
401
|
name: Scalars['String']['input'];
|
|
412
402
|
};
|
|
403
|
+
export declare type AvpChartTemplate = {
|
|
404
|
+
__typename?: 'AVPChartTemplate';
|
|
405
|
+
description: Scalars['String']['output'];
|
|
406
|
+
fileName: Scalars['String']['output'];
|
|
407
|
+
title: Scalars['String']['output'];
|
|
408
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
409
|
+
};
|
|
413
410
|
export declare type AvpClearChartInRowPayload = Payload & {
|
|
414
411
|
__typename?: 'AVPClearChartInRowPayload';
|
|
415
412
|
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
@@ -1754,11 +1751,6 @@ export declare type AdminAuditLogEventEdge = {
|
|
|
1754
1751
|
cursor: Scalars['String']['output'];
|
|
1755
1752
|
node: AdminAuditLogEvent;
|
|
1756
1753
|
};
|
|
1757
|
-
export declare type AdminAuditLogEventExport = Payload & {
|
|
1758
|
-
__typename?: 'AdminAuditLogEventExport';
|
|
1759
|
-
errors?: Maybe<Array<MutationError>>;
|
|
1760
|
-
success: Scalars['Boolean']['output'];
|
|
1761
|
-
};
|
|
1762
1754
|
export declare type AdminAuditLogEventExportInput = {
|
|
1763
1755
|
action?: InputMaybe<Scalars['String']['input']>;
|
|
1764
1756
|
actor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1769,6 +1761,11 @@ export declare type AdminAuditLogEventExportInput = {
|
|
|
1769
1761
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
1770
1762
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
1771
1763
|
};
|
|
1764
|
+
export declare type AdminAuditLogEventExportResponsePayload = Payload & {
|
|
1765
|
+
__typename?: 'AdminAuditLogEventExportResponsePayload';
|
|
1766
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1767
|
+
success: Scalars['Boolean']['output'];
|
|
1768
|
+
};
|
|
1772
1769
|
export declare type AdminAuditLogEventLocation = {
|
|
1773
1770
|
__typename?: 'AdminAuditLogEventLocation';
|
|
1774
1771
|
cityName: Scalars['String']['output'];
|
|
@@ -2127,6 +2124,12 @@ export declare enum AdminInviteAllowedAction {
|
|
|
2127
2124
|
DirectInvite = "DIRECT_INVITE",
|
|
2128
2125
|
RequestAccess = "REQUEST_ACCESS"
|
|
2129
2126
|
}
|
|
2127
|
+
export declare type AdminInviteError = {
|
|
2128
|
+
__typename?: 'AdminInviteError';
|
|
2129
|
+
appliesTo?: Maybe<AdminUserInviteAppliesTo>;
|
|
2130
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
2131
|
+
user?: Maybe<AdminInviteUser>;
|
|
2132
|
+
};
|
|
2130
2133
|
export declare type AdminInviteGroup = {
|
|
2131
2134
|
__typename?: 'AdminInviteGroup';
|
|
2132
2135
|
id: Scalars['ID']['output'];
|
|
@@ -2140,23 +2143,6 @@ export declare type AdminInviteInput = {
|
|
|
2140
2143
|
resourceRole?: InputMaybe<Array<AdminResourceRoleInput>>;
|
|
2141
2144
|
users: Array<AdminInviteUserInput>;
|
|
2142
2145
|
};
|
|
2143
|
-
export declare type AdminInviteNotApplied = {
|
|
2144
|
-
__typename?: 'AdminInviteNotApplied';
|
|
2145
|
-
appliesTo?: Maybe<AdminUserInviteAppliesTo>;
|
|
2146
|
-
reason?: Maybe<AdminInviteNotAppliedReason>;
|
|
2147
|
-
user?: Maybe<AdminInviteUser>;
|
|
2148
|
-
};
|
|
2149
|
-
export declare enum AdminInviteNotAppliedReason {
|
|
2150
|
-
LicenseExceeded = "LICENSE_EXCEEDED",
|
|
2151
|
-
PendingInviteExists = "PENDING_INVITE_EXISTS",
|
|
2152
|
-
Rejected = "REJECTED",
|
|
2153
|
-
UserExists = "USER_EXISTS"
|
|
2154
|
-
}
|
|
2155
|
-
export declare type AdminInvitePendingApproval = {
|
|
2156
|
-
__typename?: 'AdminInvitePendingApproval';
|
|
2157
|
-
appliesTo?: Maybe<AdminUserInviteAppliesTo>;
|
|
2158
|
-
user?: Maybe<AdminInviteUser>;
|
|
2159
|
-
};
|
|
2160
2146
|
export declare type AdminInvitePolicy = {
|
|
2161
2147
|
__typename?: 'AdminInvitePolicy';
|
|
2162
2148
|
allowedAction: AdminInviteAllowedAction;
|
|
@@ -2220,7 +2206,7 @@ export declare type AdminInviteResponsePayload = {
|
|
|
2220
2206
|
inviteResults?: Maybe<Array<AdminInviteResult>>;
|
|
2221
2207
|
success: Scalars['Boolean']['output'];
|
|
2222
2208
|
};
|
|
2223
|
-
export declare type AdminInviteResult =
|
|
2209
|
+
export declare type AdminInviteResult = AdminInviteError | AdminUserDirectlyInvited;
|
|
2224
2210
|
export declare type AdminInviteUser = {
|
|
2225
2211
|
__typename?: 'AdminInviteUser';
|
|
2226
2212
|
email?: Maybe<Scalars['String']['output']>;
|
|
@@ -3036,6 +3022,7 @@ export declare type AgentStudioAssistantConversation = {
|
|
|
3036
3022
|
id?: Maybe<Scalars['ID']['output']>;
|
|
3037
3023
|
lastMessageDate?: Maybe<Scalars['String']['output']>;
|
|
3038
3024
|
name?: Maybe<Scalars['String']['output']>;
|
|
3025
|
+
resolutionStatus?: Maybe<AgentStudioResolutionStatus>;
|
|
3039
3026
|
};
|
|
3040
3027
|
export declare type AgentStudioAssistantConversationEdge = {
|
|
3041
3028
|
__typename?: 'AgentStudioAssistantConversationEdge';
|
|
@@ -3159,6 +3146,11 @@ export declare type AgentStudioBatchEvaluationProject = {
|
|
|
3159
3146
|
id: Scalars['String']['output'];
|
|
3160
3147
|
projectContainerAri: Scalars['String']['output'];
|
|
3161
3148
|
};
|
|
3149
|
+
export declare type AgentStudioCanAddMcpServerResult = AgentStudioCanAddMcpServerSuccess | QueryError;
|
|
3150
|
+
export declare type AgentStudioCanAddMcpServerSuccess = {
|
|
3151
|
+
__typename?: 'AgentStudioCanAddMcpServerSuccess';
|
|
3152
|
+
canAddMcpServer?: Maybe<Scalars['Boolean']['output']>;
|
|
3153
|
+
};
|
|
3162
3154
|
export declare type AgentStudioChannel = {
|
|
3163
3155
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
3164
3156
|
};
|
|
@@ -3556,6 +3548,11 @@ export declare type AgentStudioRemoveGroupsFromCreatePermissionPayload = Payload
|
|
|
3556
3548
|
removedScopedGroupARIs?: Maybe<Array<Scalars['ID']['output']>>;
|
|
3557
3549
|
success: Scalars['Boolean']['output'];
|
|
3558
3550
|
};
|
|
3551
|
+
export declare enum AgentStudioResolutionStatus {
|
|
3552
|
+
Resolved = "RESOLVED",
|
|
3553
|
+
Unjudged = "UNJUDGED",
|
|
3554
|
+
Unresolved = "UNRESOLVED"
|
|
3555
|
+
}
|
|
3559
3556
|
export declare type AgentStudioScenario = {
|
|
3560
3557
|
actions?: Maybe<Array<AgentStudioAction>>;
|
|
3561
3558
|
creatorId: Scalars['ID']['output'];
|
|
@@ -5836,6 +5833,25 @@ export declare type AssetsDmCreateCleansingReasonResponse = {
|
|
|
5836
5833
|
isSuccessful: Scalars['Boolean']['output'];
|
|
5837
5834
|
message: Scalars['String']['output'];
|
|
5838
5835
|
};
|
|
5836
|
+
export declare type AssetsDmCreateDataDictionaryGroupInput = {
|
|
5837
|
+
computeDictionaryId: Scalars['ID']['input'];
|
|
5838
|
+
name: Scalars['String']['input'];
|
|
5839
|
+
};
|
|
5840
|
+
export declare type AssetsDmCreateDataDictionaryGroupResponse = {
|
|
5841
|
+
__typename?: 'AssetsDMCreateDataDictionaryGroupResponse';
|
|
5842
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5843
|
+
message: Scalars['String']['output'];
|
|
5844
|
+
};
|
|
5845
|
+
export declare type AssetsDmCreateDataDictionaryGroupValueInput = {
|
|
5846
|
+
computeDictionaryGroupId: Scalars['ID']['input'];
|
|
5847
|
+
computeDictionaryId: Scalars['ID']['input'];
|
|
5848
|
+
name: Scalars['String']['input'];
|
|
5849
|
+
};
|
|
5850
|
+
export declare type AssetsDmCreateDataDictionaryGroupValueResponse = {
|
|
5851
|
+
__typename?: 'AssetsDMCreateDataDictionaryGroupValueResponse';
|
|
5852
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5853
|
+
message: Scalars['String']['output'];
|
|
5854
|
+
};
|
|
5839
5855
|
export declare type AssetsDmCreateDataSourceArgs = {
|
|
5840
5856
|
cloudId: Scalars['ID']['input'];
|
|
5841
5857
|
input: AssetsDmCreateDataSourceInput;
|
|
@@ -5887,6 +5903,34 @@ export declare type AssetsDmDataDictionaryFilter = {
|
|
|
5887
5903
|
export declare enum AssetsDmDataDictionaryFilterColumn {
|
|
5888
5904
|
Name = "name"
|
|
5889
5905
|
}
|
|
5906
|
+
export declare type AssetsDmDataDictionaryGroupRow = {
|
|
5907
|
+
__typename?: 'AssetsDMDataDictionaryGroupRow';
|
|
5908
|
+
computeDictionaryGroupId: Scalars['ID']['output'];
|
|
5909
|
+
computeDictionaryId: Scalars['ID']['output'];
|
|
5910
|
+
dmComputeDictionaryGroupId?: Maybe<Scalars['ID']['output']>;
|
|
5911
|
+
name: Scalars['String']['output'];
|
|
5912
|
+
};
|
|
5913
|
+
export declare type AssetsDmDataDictionaryGroupValueRow = {
|
|
5914
|
+
__typename?: 'AssetsDMDataDictionaryGroupValueRow';
|
|
5915
|
+
computeDictionaryGroupId: Scalars['ID']['output'];
|
|
5916
|
+
computeDictionaryId: Scalars['ID']['output'];
|
|
5917
|
+
computeDictionaryValueId: Scalars['ID']['output'];
|
|
5918
|
+
isImported: Scalars['Boolean']['output'];
|
|
5919
|
+
name: Scalars['String']['output'];
|
|
5920
|
+
};
|
|
5921
|
+
export declare type AssetsDmDataDictionaryGroupValuesResponse = {
|
|
5922
|
+
__typename?: 'AssetsDMDataDictionaryGroupValuesResponse';
|
|
5923
|
+
pageInfo: AssetsDmDataDictionaryPageInfo;
|
|
5924
|
+
rows: Array<AssetsDmDataDictionaryGroupValueRow>;
|
|
5925
|
+
totalCount: Scalars['Int']['output'];
|
|
5926
|
+
};
|
|
5927
|
+
export declare type AssetsDmDataDictionaryGroupsResponse = {
|
|
5928
|
+
__typename?: 'AssetsDMDataDictionaryGroupsResponse';
|
|
5929
|
+
dictionaryName?: Maybe<Scalars['String']['output']>;
|
|
5930
|
+
pageInfo: AssetsDmDataDictionaryPageInfo;
|
|
5931
|
+
rows: Array<AssetsDmDataDictionaryGroupRow>;
|
|
5932
|
+
totalCount: Scalars['Int']['output'];
|
|
5933
|
+
};
|
|
5890
5934
|
export declare type AssetsDmDataDictionaryPageInfo = {
|
|
5891
5935
|
__typename?: 'AssetsDMDataDictionaryPageInfo';
|
|
5892
5936
|
currentPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
@@ -5914,6 +5958,7 @@ export declare type AssetsDmDataDictionaryRow = {
|
|
|
5914
5958
|
destinationObjectAttributeId: Scalars['ID']['output'];
|
|
5915
5959
|
dmComputeDictionaryDate: Scalars['String']['output'];
|
|
5916
5960
|
dmComputeDictionaryId?: Maybe<Scalars['ID']['output']>;
|
|
5961
|
+
latestDictionaryUpdateDate?: Maybe<Scalars['String']['output']>;
|
|
5917
5962
|
name: Scalars['String']['output'];
|
|
5918
5963
|
objectId: Scalars['ID']['output'];
|
|
5919
5964
|
priority: Scalars['Int']['output'];
|
|
@@ -6645,6 +6690,7 @@ export declare type AssetsDmDefaultAttributeMappingRow = {
|
|
|
6645
6690
|
isPrimaryKey: Scalars['Boolean']['output'];
|
|
6646
6691
|
isSecondaryKey: Scalars['Boolean']['output'];
|
|
6647
6692
|
objectAttributeId: Scalars['ID']['output'];
|
|
6693
|
+
objectClassId: Scalars['ID']['output'];
|
|
6648
6694
|
sourceColumn: Scalars['String']['output'];
|
|
6649
6695
|
};
|
|
6650
6696
|
export declare type AssetsDmDefaultAttributeMappingSortBy = {
|
|
@@ -6663,6 +6709,16 @@ export declare type AssetsDmDeleteCleansingReasonResponse = {
|
|
|
6663
6709
|
isSuccessful: Scalars['Boolean']['output'];
|
|
6664
6710
|
message: Scalars['String']['output'];
|
|
6665
6711
|
};
|
|
6712
|
+
export declare type AssetsDmDeleteDataDictionaryGroupResponse = {
|
|
6713
|
+
__typename?: 'AssetsDMDeleteDataDictionaryGroupResponse';
|
|
6714
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
6715
|
+
message: Scalars['String']['output'];
|
|
6716
|
+
};
|
|
6717
|
+
export declare type AssetsDmDeleteDataDictionaryGroupValueResponse = {
|
|
6718
|
+
__typename?: 'AssetsDMDeleteDataDictionaryGroupValueResponse';
|
|
6719
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
6720
|
+
message: Scalars['String']['output'];
|
|
6721
|
+
};
|
|
6666
6722
|
export declare type AssetsDmDeleteDataDictionaryResponse = {
|
|
6667
6723
|
__typename?: 'AssetsDMDeleteDataDictionaryResponse';
|
|
6668
6724
|
isSuccessful: Scalars['Boolean']['output'];
|
|
@@ -6686,6 +6742,29 @@ export declare type AssetsDmDeleteDefaultAttributeMappingResponse = {
|
|
|
6686
6742
|
isSuccessful: Scalars['Boolean']['output'];
|
|
6687
6743
|
message: Scalars['String']['output'];
|
|
6688
6744
|
};
|
|
6745
|
+
export declare type AssetsDmEditDataDictionaryGroupInput = {
|
|
6746
|
+
computeDictionaryGroupId: Scalars['ID']['input'];
|
|
6747
|
+
computeDictionaryId: Scalars['ID']['input'];
|
|
6748
|
+
dmComputeDictionaryGroupId?: InputMaybe<Scalars['ID']['input']>;
|
|
6749
|
+
name: Scalars['String']['input'];
|
|
6750
|
+
};
|
|
6751
|
+
export declare type AssetsDmEditDataDictionaryGroupResponse = {
|
|
6752
|
+
__typename?: 'AssetsDMEditDataDictionaryGroupResponse';
|
|
6753
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
6754
|
+
message: Scalars['String']['output'];
|
|
6755
|
+
};
|
|
6756
|
+
export declare type AssetsDmEditDataDictionaryGroupValueInput = {
|
|
6757
|
+
computeDictionaryGroupId: Scalars['ID']['input'];
|
|
6758
|
+
computeDictionaryId: Scalars['ID']['input'];
|
|
6759
|
+
computeDictionaryValueId: Scalars['ID']['input'];
|
|
6760
|
+
isImported: Scalars['Boolean']['input'];
|
|
6761
|
+
name: Scalars['String']['input'];
|
|
6762
|
+
};
|
|
6763
|
+
export declare type AssetsDmEditDataDictionaryGroupValueResponse = {
|
|
6764
|
+
__typename?: 'AssetsDMEditDataDictionaryGroupValueResponse';
|
|
6765
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
6766
|
+
message: Scalars['String']['output'];
|
|
6767
|
+
};
|
|
6689
6768
|
export declare type AssetsDmEditDataDictionaryInput = {
|
|
6690
6769
|
computeDictionaryId: Scalars['ID']['input'];
|
|
6691
6770
|
destinationObjectAttributeId: Scalars['ID']['input'];
|
|
@@ -11240,6 +11319,7 @@ export declare type CommerceEntitlementExperienceCapabilitiesChangeOfferingV2Arg
|
|
|
11240
11319
|
export declare type CommerceEntitlementFilter = {
|
|
11241
11320
|
AND?: InputMaybe<Array<InputMaybe<CommerceEntitlementFilter>>>;
|
|
11242
11321
|
OR?: InputMaybe<Array<InputMaybe<CommerceEntitlementFilter>>>;
|
|
11322
|
+
hasRelationshipFromWithType?: InputMaybe<Scalars['String']['input']>;
|
|
11243
11323
|
inPreDunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11244
11324
|
inTrialOrPreDunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11245
11325
|
};
|
|
@@ -11646,7 +11726,6 @@ export declare type CompassCatalogMutationApi = {
|
|
|
11646
11726
|
createComponent?: Maybe<CreateCompassComponentPayload>;
|
|
11647
11727
|
createComponentApiUpload?: Maybe<CreateComponentApiUploadPayload>;
|
|
11648
11728
|
createComponentExternalAlias?: Maybe<CreateCompassComponentExternalAliasPayload>;
|
|
11649
|
-
createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
|
|
11650
11729
|
createComponentLink?: Maybe<CreateCompassComponentLinkPayload>;
|
|
11651
11730
|
createComponentScorecardWorkItem?: Maybe<CompassCreateComponentScorecardWorkItemPayload>;
|
|
11652
11731
|
createComponentSubscription?: Maybe<CompassCreateComponentSubscriptionPayload>;
|
|
@@ -11662,7 +11741,6 @@ export declare type CompassCatalogMutationApi = {
|
|
|
11662
11741
|
createScorecard?: Maybe<CreateCompassScorecardPayload>;
|
|
11663
11742
|
createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
|
|
11664
11743
|
createTeamCheckin?: Maybe<CompassCreateTeamCheckinPayload>;
|
|
11665
|
-
createWebhook?: Maybe<CompassCreateWebhookPayload>;
|
|
11666
11744
|
deactivateScorecardForComponent?: Maybe<CompassDeactivateScorecardForComponentPayload>;
|
|
11667
11745
|
deleteAnnouncement?: Maybe<CompassDeleteAnnouncementPayload>;
|
|
11668
11746
|
deleteCampaign?: Maybe<CompassDeleteCampaignPayload>;
|
|
@@ -11718,7 +11796,6 @@ export declare type CompassCatalogMutationApi = {
|
|
|
11718
11796
|
updateMetricSource?: Maybe<CompassUpdateMetricSourcePayload>;
|
|
11719
11797
|
updateScorecard?: Maybe<UpdateCompassScorecardPayload>;
|
|
11720
11798
|
updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
|
|
11721
|
-
updateUserDefinedParameters?: Maybe<UpdateCompassUserDefinedParametersPayload>;
|
|
11722
11799
|
verifyComponentAutoPopulationField?: Maybe<VerifyComponentAutoPopulationFieldPayload>;
|
|
11723
11800
|
};
|
|
11724
11801
|
export declare type CompassCatalogMutationApiAcknowledgeAnnouncementArgs = {
|
|
@@ -11772,9 +11849,6 @@ export declare type CompassCatalogMutationApiCreateComponentApiUploadArgs = {
|
|
|
11772
11849
|
export declare type CompassCatalogMutationApiCreateComponentExternalAliasArgs = {
|
|
11773
11850
|
input: CreateCompassComponentExternalAliasInput;
|
|
11774
11851
|
};
|
|
11775
|
-
export declare type CompassCatalogMutationApiCreateComponentFromTemplateArgs = {
|
|
11776
|
-
input: CreateCompassComponentFromTemplateInput;
|
|
11777
|
-
};
|
|
11778
11852
|
export declare type CompassCatalogMutationApiCreateComponentLinkArgs = {
|
|
11779
11853
|
input: CreateCompassComponentLinkInput;
|
|
11780
11854
|
};
|
|
@@ -11824,9 +11898,6 @@ export declare type CompassCatalogMutationApiCreateStarredComponentArgs = {
|
|
|
11824
11898
|
export declare type CompassCatalogMutationApiCreateTeamCheckinArgs = {
|
|
11825
11899
|
input: CompassCreateTeamCheckinInput;
|
|
11826
11900
|
};
|
|
11827
|
-
export declare type CompassCatalogMutationApiCreateWebhookArgs = {
|
|
11828
|
-
input: CompassCreateWebhookInput;
|
|
11829
|
-
};
|
|
11830
11901
|
export declare type CompassCatalogMutationApiDeactivateScorecardForComponentArgs = {
|
|
11831
11902
|
componentId: Scalars['ID']['input'];
|
|
11832
11903
|
scorecardId: Scalars['ID']['input'];
|
|
@@ -12002,9 +12073,6 @@ export declare type CompassCatalogMutationApiUpdateScorecardArgs = {
|
|
|
12002
12073
|
export declare type CompassCatalogMutationApiUpdateTeamCheckinArgs = {
|
|
12003
12074
|
input: CompassUpdateTeamCheckinInput;
|
|
12004
12075
|
};
|
|
12005
|
-
export declare type CompassCatalogMutationApiUpdateUserDefinedParametersArgs = {
|
|
12006
|
-
input: UpdateCompassUserDefinedParametersInput;
|
|
12007
|
-
};
|
|
12008
12076
|
export declare type CompassCatalogMutationApiVerifyComponentAutoPopulationFieldArgs = {
|
|
12009
12077
|
input: VerifyComponentAutoPopulationField;
|
|
12010
12078
|
};
|
|
@@ -12054,7 +12122,6 @@ export declare type CompassCatalogQueryApi = {
|
|
|
12054
12122
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
12055
12123
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
12056
12124
|
teamData?: Maybe<CompassTeamDataResult>;
|
|
12057
|
-
userDefinedParameters?: Maybe<CompassUserDefinedParametersConnection>;
|
|
12058
12125
|
viewerGlobalPermissions?: Maybe<CompassGlobalPermissionsResult>;
|
|
12059
12126
|
};
|
|
12060
12127
|
export declare type CompassCatalogQueryApiApplicationManagedComponentsArgs = {
|
|
@@ -12225,11 +12292,6 @@ export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
|
|
|
12225
12292
|
export declare type CompassCatalogQueryApiTeamDataArgs = {
|
|
12226
12293
|
input: CompassTeamDataInput;
|
|
12227
12294
|
};
|
|
12228
|
-
export declare type CompassCatalogQueryApiUserDefinedParametersArgs = {
|
|
12229
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
12230
|
-
componentId: Scalars['ID']['input'];
|
|
12231
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
12232
|
-
};
|
|
12233
12295
|
export declare type CompassCatalogQueryApiViewerGlobalPermissionsArgs = {
|
|
12234
12296
|
cloudId: Scalars['ID']['input'];
|
|
12235
12297
|
};
|
|
@@ -13276,16 +13338,6 @@ export declare type CompassCreateVulnerabilityEventPropertiesInput = {
|
|
|
13276
13338
|
vulnerabilityStartTime: Scalars['DateTime']['input'];
|
|
13277
13339
|
vulnerableTarget?: InputMaybe<Scalars['String']['input']>;
|
|
13278
13340
|
};
|
|
13279
|
-
export declare type CompassCreateWebhookInput = {
|
|
13280
|
-
componentId: Scalars['ID']['input'];
|
|
13281
|
-
url: Scalars['String']['input'];
|
|
13282
|
-
};
|
|
13283
|
-
export declare type CompassCreateWebhookPayload = Payload & {
|
|
13284
|
-
__typename?: 'CompassCreateWebhookPayload';
|
|
13285
|
-
errors?: Maybe<Array<MutationError>>;
|
|
13286
|
-
success: Scalars['Boolean']['output'];
|
|
13287
|
-
webhookDetails?: Maybe<CompassWebhook>;
|
|
13288
|
-
};
|
|
13289
13341
|
export declare enum CompassCriteriaBooleanComparatorOptions {
|
|
13290
13342
|
Equals = "EQUALS"
|
|
13291
13343
|
}
|
|
@@ -14074,14 +14126,6 @@ export declare type CompassFlagEventProperties = {
|
|
|
14074
14126
|
id: Scalars['ID']['output'];
|
|
14075
14127
|
status?: Maybe<Scalars['String']['output']>;
|
|
14076
14128
|
};
|
|
14077
|
-
export declare type CompassFreeformUserDefinedParameter = CompassUserDefinedParameter & Node & {
|
|
14078
|
-
__typename?: 'CompassFreeformUserDefinedParameter';
|
|
14079
|
-
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
14080
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
14081
|
-
id: Scalars['ID']['output'];
|
|
14082
|
-
name: Scalars['String']['output'];
|
|
14083
|
-
type: Scalars['String']['output'];
|
|
14084
|
-
};
|
|
14085
14129
|
export declare type CompassGlobalPermissions = {
|
|
14086
14130
|
__typename?: 'CompassGlobalPermissions';
|
|
14087
14131
|
createComponents?: Maybe<CompassPermissionResult>;
|
|
@@ -16431,28 +16475,6 @@ export declare type CompassUpdateTeamCheckinPayload = Payload & {
|
|
|
16431
16475
|
export declare type CompassUpdateTeamCheckinResponseRichText = {
|
|
16432
16476
|
adf?: InputMaybe<Scalars['String']['input']>;
|
|
16433
16477
|
};
|
|
16434
|
-
export declare type CompassUserDefinedParameter = {
|
|
16435
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
16436
|
-
id: Scalars['ID']['output'];
|
|
16437
|
-
name: Scalars['String']['output'];
|
|
16438
|
-
type: Scalars['String']['output'];
|
|
16439
|
-
};
|
|
16440
|
-
export declare type CompassUserDefinedParameters = {
|
|
16441
|
-
__typename?: 'CompassUserDefinedParameters';
|
|
16442
|
-
componentId: Scalars['ID']['output'];
|
|
16443
|
-
parameters?: Maybe<Array<CompassUserDefinedParameter>>;
|
|
16444
|
-
};
|
|
16445
|
-
export declare type CompassUserDefinedParametersConnection = {
|
|
16446
|
-
__typename?: 'CompassUserDefinedParametersConnection';
|
|
16447
|
-
edges?: Maybe<Array<CompassUserDefinedParametersEdge>>;
|
|
16448
|
-
nodes?: Maybe<Array<CompassUserDefinedParameter>>;
|
|
16449
|
-
pageInfo?: Maybe<PageInfo>;
|
|
16450
|
-
};
|
|
16451
|
-
export declare type CompassUserDefinedParametersEdge = {
|
|
16452
|
-
__typename?: 'CompassUserDefinedParametersEdge';
|
|
16453
|
-
cursor: Scalars['String']['output'];
|
|
16454
|
-
node?: Maybe<CompassUserDefinedParameter>;
|
|
16455
|
-
};
|
|
16456
16478
|
export declare type CompassViewerSubscription = {
|
|
16457
16479
|
__typename?: 'CompassViewerSubscription';
|
|
16458
16480
|
subscribed: Scalars['Boolean']['output'];
|
|
@@ -16499,11 +16521,6 @@ export declare enum CompassVulnerabilityEventState {
|
|
|
16499
16521
|
Open = "OPEN",
|
|
16500
16522
|
Remediated = "REMEDIATED"
|
|
16501
16523
|
}
|
|
16502
|
-
export declare type CompassWebhook = {
|
|
16503
|
-
__typename?: 'CompassWebhook';
|
|
16504
|
-
id: Scalars['ID']['output'];
|
|
16505
|
-
url: Scalars['String']['output'];
|
|
16506
|
-
};
|
|
16507
16524
|
export declare type CompassWorkItem = {
|
|
16508
16525
|
__typename?: 'CompassWorkItem';
|
|
16509
16526
|
changeMetadata: CompassChangeMetadata;
|
|
@@ -17280,6 +17297,11 @@ export declare type ConfluenceContentAiSummaryResponse = {
|
|
|
17280
17297
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
17281
17298
|
objectData?: Maybe<Scalars['String']['output']>;
|
|
17282
17299
|
};
|
|
17300
|
+
export declare type ConfluenceContentAccessDecisionMade = {
|
|
17301
|
+
__typename?: 'ConfluenceContentAccessDecisionMade';
|
|
17302
|
+
contentId?: Maybe<Scalars['ID']['output']>;
|
|
17303
|
+
decision?: Maybe<Scalars['String']['output']>;
|
|
17304
|
+
};
|
|
17283
17305
|
export declare type ConfluenceContentAccessRequest = {
|
|
17284
17306
|
__typename?: 'ConfluenceContentAccessRequest';
|
|
17285
17307
|
accessRequestedAaid: Scalars['ID']['output'];
|
|
@@ -17389,6 +17411,7 @@ export declare type ConfluenceContentModified = {
|
|
|
17389
17411
|
commentReopened?: Maybe<ConfluenceCommentUpdated>;
|
|
17390
17412
|
commentResolved?: Maybe<ConfluenceCommentCreated>;
|
|
17391
17413
|
commentUpdated?: Maybe<ConfluenceCommentUpdated>;
|
|
17414
|
+
contentAccessDecisionMade?: Maybe<ConfluenceContentAccessDecisionMade>;
|
|
17392
17415
|
contentAccessRequested?: Maybe<ConfluenceContentAccessRequested>;
|
|
17393
17416
|
contentModeUpdated?: Maybe<ConfluenceContentModeUpdated>;
|
|
17394
17417
|
contentRestrictionUpdated?: Maybe<ConfluenceContentRestrictionUpdated>;
|
|
@@ -18512,6 +18535,16 @@ export declare type ConfluenceFormattingSettings = {
|
|
|
18512
18535
|
longNumberFormat?: Maybe<Scalars['String']['output']>;
|
|
18513
18536
|
timeFormat?: Maybe<Scalars['String']['output']>;
|
|
18514
18537
|
};
|
|
18538
|
+
export declare type ConfluenceGenerateSearchPerformedEventInput = {
|
|
18539
|
+
query: Scalars['String']['input'];
|
|
18540
|
+
resultCount: Scalars['Int']['input'];
|
|
18541
|
+
timestamp: Scalars['String']['input'];
|
|
18542
|
+
};
|
|
18543
|
+
export declare type ConfluenceGenerateSearchPerformedEventPayload = Payload & {
|
|
18544
|
+
__typename?: 'ConfluenceGenerateSearchPerformedEventPayload';
|
|
18545
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18546
|
+
success: Scalars['Boolean']['output'];
|
|
18547
|
+
};
|
|
18515
18548
|
export declare type ConfluenceGeneratedSpaceKey = {
|
|
18516
18549
|
__typename?: 'ConfluenceGeneratedSpaceKey';
|
|
18517
18550
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -19053,6 +19086,7 @@ export declare type ConfluenceMutationApi = {
|
|
|
19053
19086
|
updateSpacePageTemplateDescription?: Maybe<ConfluenceUpdateGlobalPageTemplateDescriptionPayload>;
|
|
19054
19087
|
updateSpaceSettings?: Maybe<ConfluenceUpdateSpaceSettingsPayload>;
|
|
19055
19088
|
updateSpaceTheme?: Maybe<ConfluenceUpdateSpaceThemePayload>;
|
|
19089
|
+
updateTeamAdminControlsSettings?: Maybe<ConfluenceUpdateTeamAdminControlsSettingsPayload>;
|
|
19056
19090
|
updateTeamCalendarGlobalSettings?: Maybe<ConfluenceUpdateTeamCalendarGlobalSettingsPayload>;
|
|
19057
19091
|
updateTeamPresenceSiteConfiguration?: Maybe<ConfluenceUpdateTeamPresenceSiteConfigurationPayload>;
|
|
19058
19092
|
updateTeamsSiteConfiguration?: Maybe<ConfluenceUpdateTeamsSiteConfigurationPayload>;
|
|
@@ -19253,6 +19287,9 @@ export declare type ConfluenceMutationApiUpdateSpaceSettingsArgs = {
|
|
|
19253
19287
|
export declare type ConfluenceMutationApiUpdateSpaceThemeArgs = {
|
|
19254
19288
|
input: ConfluenceUpdateSpaceThemeInput;
|
|
19255
19289
|
};
|
|
19290
|
+
export declare type ConfluenceMutationApiUpdateTeamAdminControlsSettingsArgs = {
|
|
19291
|
+
input: ConfluenceTeamAdminControlsMode;
|
|
19292
|
+
};
|
|
19256
19293
|
export declare type ConfluenceMutationApiUpdateTeamCalendarGlobalSettingsArgs = {
|
|
19257
19294
|
input: ConfluenceUpdateTeamCalendarGlobalSettingsInput;
|
|
19258
19295
|
};
|
|
@@ -20163,6 +20200,10 @@ export declare type ConfluencePromotePageTemplatePayload = Payload & {
|
|
|
20163
20200
|
errors?: Maybe<Array<MutationError>>;
|
|
20164
20201
|
success: Scalars['Boolean']['output'];
|
|
20165
20202
|
};
|
|
20203
|
+
export declare enum ConfluencePublicLinkAccessType {
|
|
20204
|
+
External = "EXTERNAL",
|
|
20205
|
+
InternalLicensed = "INTERNAL_LICENSED"
|
|
20206
|
+
}
|
|
20166
20207
|
export declare type ConfluencePublishBlogPostInput = {
|
|
20167
20208
|
id: Scalars['ID']['input'];
|
|
20168
20209
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -20354,8 +20395,10 @@ export declare type ConfluenceQuestion = {
|
|
|
20354
20395
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
20355
20396
|
hasAcceptedAnswer?: Maybe<Scalars['Boolean']['output']>;
|
|
20356
20397
|
id: Scalars['ID']['output'];
|
|
20398
|
+
inSpace: Scalars['Boolean']['output'];
|
|
20357
20399
|
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
20358
20400
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
20401
|
+
links?: Maybe<ConfluenceQuestionLinks>;
|
|
20359
20402
|
operations?: Maybe<Array<Maybe<ConfluenceQuestionsOperationCheck>>>;
|
|
20360
20403
|
title?: Maybe<Scalars['String']['output']>;
|
|
20361
20404
|
voteProperties: ConfluenceVotePropertyValue;
|
|
@@ -20363,6 +20406,9 @@ export declare type ConfluenceQuestion = {
|
|
|
20363
20406
|
export declare type ConfluenceQuestionCommentsArgs = {
|
|
20364
20407
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
20365
20408
|
};
|
|
20409
|
+
export declare type ConfluenceQuestionInSpaceArgs = {
|
|
20410
|
+
spaceKey: Scalars['String']['input'];
|
|
20411
|
+
};
|
|
20366
20412
|
export declare type ConfluenceQuestionConnection = {
|
|
20367
20413
|
__typename?: 'ConfluenceQuestionConnection';
|
|
20368
20414
|
edges?: Maybe<Array<Maybe<ConfluenceQuestionEdge>>>;
|
|
@@ -20377,6 +20423,12 @@ export declare type ConfluenceQuestionEdge = {
|
|
|
20377
20423
|
export declare type ConfluenceQuestionFilters = {
|
|
20378
20424
|
answered?: InputMaybe<Scalars['Boolean']['input']>;
|
|
20379
20425
|
};
|
|
20426
|
+
export declare type ConfluenceQuestionLinks = {
|
|
20427
|
+
__typename?: 'ConfluenceQuestionLinks';
|
|
20428
|
+
base?: Maybe<Scalars['String']['output']>;
|
|
20429
|
+
tinyUi?: Maybe<Scalars['String']['output']>;
|
|
20430
|
+
webUi?: Maybe<Scalars['String']['output']>;
|
|
20431
|
+
};
|
|
20380
20432
|
export declare type ConfluenceQuestionsConfiguration = {
|
|
20381
20433
|
__typename?: 'ConfluenceQuestionsConfiguration';
|
|
20382
20434
|
confluenceQuestionsGlobalSpaceId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -20741,6 +20793,10 @@ export declare type ConfluenceSetSubCalendarReminderPayload = {
|
|
|
20741
20793
|
subCalendarReminder?: Maybe<ConfluenceSubCalendarReminder>;
|
|
20742
20794
|
success: Scalars['Boolean']['output'];
|
|
20743
20795
|
};
|
|
20796
|
+
export declare type ConfluenceShareConfiguration = {
|
|
20797
|
+
__typename?: 'ConfluenceShareConfiguration';
|
|
20798
|
+
disableSharingToEmails: Scalars['Boolean']['output'];
|
|
20799
|
+
};
|
|
20744
20800
|
export declare type ConfluenceSiteConfiguration = {
|
|
20745
20801
|
__typename?: 'ConfluenceSiteConfiguration';
|
|
20746
20802
|
attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
|
|
@@ -20779,6 +20835,7 @@ export declare type ConfluenceSiteConfiguration = {
|
|
|
20779
20835
|
siteHomePage?: Maybe<Scalars['String']['output']>;
|
|
20780
20836
|
siteTitle?: Maybe<Scalars['String']['output']>;
|
|
20781
20837
|
socketTimeout?: Maybe<Scalars['Int']['output']>;
|
|
20838
|
+
teamAdminControlsSettings?: Maybe<ConfluenceTeamAdminControlsSettings>;
|
|
20782
20839
|
teamPresenceSettings?: Maybe<ConfluenceTeamPresenceSettings>;
|
|
20783
20840
|
};
|
|
20784
20841
|
export declare enum ConfluenceSiteConfigurationEditorDefaultWidth {
|
|
@@ -20886,6 +20943,14 @@ export declare enum ConfluenceSpaceOwnerType {
|
|
|
20886
20943
|
Group = "GROUP",
|
|
20887
20944
|
User = "USER"
|
|
20888
20945
|
}
|
|
20946
|
+
export declare type ConfluenceSpacePermission = {
|
|
20947
|
+
__typename?: 'ConfluenceSpacePermission';
|
|
20948
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20949
|
+
displayName: Scalars['String']['output'];
|
|
20950
|
+
group: ConfluenceSpacePermissionGroup;
|
|
20951
|
+
id: Scalars['String']['output'];
|
|
20952
|
+
priority: Scalars['Int']['output'];
|
|
20953
|
+
};
|
|
20889
20954
|
export declare enum ConfluenceSpacePermissionAuditReportSpaceType {
|
|
20890
20955
|
All = "ALL",
|
|
20891
20956
|
AllExceptPersonal = "ALL_EXCEPT_PERSONAL",
|
|
@@ -20926,6 +20991,28 @@ export declare enum ConfluenceSpacePermissionCombinationsByCriteriaOrder {
|
|
|
20926
20991
|
Principal = "PRINCIPAL",
|
|
20927
20992
|
Space = "SPACE"
|
|
20928
20993
|
}
|
|
20994
|
+
export declare type ConfluenceSpacePermissionConnection = {
|
|
20995
|
+
__typename?: 'ConfluenceSpacePermissionConnection';
|
|
20996
|
+
edges?: Maybe<Array<Maybe<ConfluenceSpacePermissionEdge>>>;
|
|
20997
|
+
pageInfo: ConfluenceSpacePermissionPageInfo;
|
|
20998
|
+
};
|
|
20999
|
+
export declare type ConfluenceSpacePermissionEdge = {
|
|
21000
|
+
__typename?: 'ConfluenceSpacePermissionEdge';
|
|
21001
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
21002
|
+
node: ConfluenceSpacePermission;
|
|
21003
|
+
};
|
|
21004
|
+
export declare type ConfluenceSpacePermissionGroup = {
|
|
21005
|
+
__typename?: 'ConfluenceSpacePermissionGroup';
|
|
21006
|
+
displayName: Scalars['String']['output'];
|
|
21007
|
+
priority: Scalars['Int']['output'];
|
|
21008
|
+
};
|
|
21009
|
+
export declare type ConfluenceSpacePermissionPageInfo = {
|
|
21010
|
+
__typename?: 'ConfluenceSpacePermissionPageInfo';
|
|
21011
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
21012
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
21013
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
21014
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
21015
|
+
};
|
|
20929
21016
|
export declare type ConfluenceSpaceProperty = {
|
|
20930
21017
|
__typename?: 'ConfluenceSpaceProperty';
|
|
20931
21018
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -20937,6 +21024,7 @@ export declare type ConfluenceSpaceProperty = {
|
|
|
20937
21024
|
export declare type ConfluenceSpaceRecommendations = {
|
|
20938
21025
|
__typename?: 'ConfluenceSpaceRecommendations';
|
|
20939
21026
|
active?: Maybe<Array<Maybe<Space>>>;
|
|
21027
|
+
activeSpacesWithCount?: Maybe<Array<Maybe<ConfluenceSpaceWithActivityCount>>>;
|
|
20940
21028
|
personalSpace?: Maybe<Space>;
|
|
20941
21029
|
starred?: Maybe<Array<Maybe<Space>>>;
|
|
20942
21030
|
};
|
|
@@ -20993,6 +21081,11 @@ export declare type ConfluenceSpaceTypeSettings = {
|
|
|
20993
21081
|
enabledContentTypes?: Maybe<ConfluenceSpaceEnabledContentTypes>;
|
|
20994
21082
|
enabledFeatures?: Maybe<ConfluenceSpaceEnabledFeatures>;
|
|
20995
21083
|
};
|
|
21084
|
+
export declare type ConfluenceSpaceWithActivityCount = {
|
|
21085
|
+
__typename?: 'ConfluenceSpaceWithActivityCount';
|
|
21086
|
+
activityCount?: Maybe<Scalars['Int']['output']>;
|
|
21087
|
+
space?: Maybe<Space>;
|
|
21088
|
+
};
|
|
20996
21089
|
export declare type ConfluenceStorage = {
|
|
20997
21090
|
__typename?: 'ConfluenceStorage';
|
|
20998
21091
|
bytesLimit?: Maybe<Scalars['Long']['output']>;
|
|
@@ -21055,6 +21148,16 @@ export declare type ConfluenceSystemTemplate = {
|
|
|
21055
21148
|
name?: Maybe<Scalars['String']['output']>;
|
|
21056
21149
|
pluginKey?: Maybe<Scalars['String']['output']>;
|
|
21057
21150
|
};
|
|
21151
|
+
export declare enum ConfluenceTeamAdminControlsMode {
|
|
21152
|
+
AllTeams = "ALL_TEAMS",
|
|
21153
|
+
MemberManagedTeams = "MEMBER_MANAGED_TEAMS",
|
|
21154
|
+
NoTeams = "NO_TEAMS",
|
|
21155
|
+
VerifiedTeams = "VERIFIED_TEAMS"
|
|
21156
|
+
}
|
|
21157
|
+
export declare type ConfluenceTeamAdminControlsSettings = {
|
|
21158
|
+
__typename?: 'ConfluenceTeamAdminControlsSettings';
|
|
21159
|
+
teamAdminControlsMode?: Maybe<ConfluenceTeamAdminControlsMode>;
|
|
21160
|
+
};
|
|
21058
21161
|
export declare type ConfluenceTeamCalendar = {
|
|
21059
21162
|
__typename?: 'ConfluenceTeamCalendar';
|
|
21060
21163
|
globalSettings?: Maybe<ConfluenceTeamCalendarGlobalSettings>;
|
|
@@ -21750,6 +21853,15 @@ export declare type ConfluenceUpdateQuestionPayload = Payload & {
|
|
|
21750
21853
|
question?: Maybe<ConfluenceQuestion>;
|
|
21751
21854
|
success: Scalars['Boolean']['output'];
|
|
21752
21855
|
};
|
|
21856
|
+
export declare type ConfluenceUpdateShareableLinksInput = {
|
|
21857
|
+
accessType: ConfluencePublicLinkAccessType;
|
|
21858
|
+
contentId: Scalars['ID']['input'];
|
|
21859
|
+
};
|
|
21860
|
+
export declare type ConfluenceUpdateShareableLinksPayload = Payload & {
|
|
21861
|
+
__typename?: 'ConfluenceUpdateShareableLinksPayload';
|
|
21862
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21863
|
+
success: Scalars['Boolean']['output'];
|
|
21864
|
+
};
|
|
21753
21865
|
export declare type ConfluenceUpdateSiteConfigurationInput = {
|
|
21754
21866
|
connectionTimeout: Scalars['Int']['input'];
|
|
21755
21867
|
customContactMessage: Scalars['String']['input'];
|
|
@@ -21867,6 +21979,11 @@ export declare type ConfluenceUpdateSubCalendarHiddenEventsPayload = Payload & {
|
|
|
21867
21979
|
subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
21868
21980
|
success: Scalars['Boolean']['output'];
|
|
21869
21981
|
};
|
|
21982
|
+
export declare type ConfluenceUpdateTeamAdminControlsSettingsPayload = Payload & {
|
|
21983
|
+
__typename?: 'ConfluenceUpdateTeamAdminControlsSettingsPayload';
|
|
21984
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21985
|
+
success: Scalars['Boolean']['output'];
|
|
21986
|
+
};
|
|
21870
21987
|
export declare type ConfluenceUpdateTeamCalendarGlobalSettingsInput = {
|
|
21871
21988
|
allowSiteAdmin: Scalars['Boolean']['input'];
|
|
21872
21989
|
disablePrivateUrls: Scalars['Boolean']['input'];
|
|
@@ -24195,6 +24312,7 @@ export declare type ContentState = {
|
|
|
24195
24312
|
color: Scalars['String']['output'];
|
|
24196
24313
|
id?: Maybe<Scalars['ID']['output']>;
|
|
24197
24314
|
isCallerPermitted?: Maybe<Scalars['Boolean']['output']>;
|
|
24315
|
+
lastModifierAaid?: Maybe<Scalars['String']['output']>;
|
|
24198
24316
|
name: Scalars['String']['output'];
|
|
24199
24317
|
restrictionLevel: ContentStateRestrictionLevel;
|
|
24200
24318
|
unlocalizedName?: Maybe<Scalars['String']['output']>;
|
|
@@ -24643,6 +24761,17 @@ export declare type CplsAddContributorWorkAssociationPayload = Payload & {
|
|
|
24643
24761
|
errors?: Maybe<Array<MutationError>>;
|
|
24644
24762
|
success: Scalars['Boolean']['output'];
|
|
24645
24763
|
};
|
|
24764
|
+
export declare type CplsAddWorkScopeAssociationsInput = {
|
|
24765
|
+
cloudId: Scalars['ID']['input'];
|
|
24766
|
+
scopeId: Scalars['ID']['input'];
|
|
24767
|
+
workDataIds: Array<Scalars['ID']['input']>;
|
|
24768
|
+
};
|
|
24769
|
+
export declare type CplsAddWorkScopeAssociationsPayload = Payload & {
|
|
24770
|
+
__typename?: 'CplsAddWorkScopeAssociationsPayload';
|
|
24771
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24772
|
+
success: Scalars['Boolean']['output'];
|
|
24773
|
+
works?: Maybe<Array<CplsWorkEdge>>;
|
|
24774
|
+
};
|
|
24646
24775
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
24647
24776
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
24648
24777
|
contributor?: Maybe<CplsContributor>;
|
|
@@ -24844,6 +24973,17 @@ export declare type CplsDeleteContributorWorkAssociationPayload = Payload & {
|
|
|
24844
24973
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
24845
24974
|
success: Scalars['Boolean']['output'];
|
|
24846
24975
|
};
|
|
24976
|
+
export declare type CplsDeleteWorkScopeAssociationsInput = {
|
|
24977
|
+
cloudId: Scalars['ID']['input'];
|
|
24978
|
+
scopeId: Scalars['ID']['input'];
|
|
24979
|
+
workDataIds: Array<Scalars['ID']['input']>;
|
|
24980
|
+
};
|
|
24981
|
+
export declare type CplsDeleteWorkScopeAssociationsPayload = Payload & {
|
|
24982
|
+
__typename?: 'CplsDeleteWorkScopeAssociationsPayload';
|
|
24983
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24984
|
+
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
24985
|
+
success: Scalars['Boolean']['output'];
|
|
24986
|
+
};
|
|
24847
24987
|
export declare type CplsFilterConfiguration = {
|
|
24848
24988
|
__typename?: 'CplsFilterConfiguration';
|
|
24849
24989
|
contributorDataEntities?: Maybe<CplsContributorDataEntityConnection>;
|
|
@@ -25176,22 +25316,6 @@ export declare type CreateCompassComponentExternalAliasPayload = Payload & {
|
|
|
25176
25316
|
errors?: Maybe<Array<MutationError>>;
|
|
25177
25317
|
success: Scalars['Boolean']['output'];
|
|
25178
25318
|
};
|
|
25179
|
-
export declare type CreateCompassComponentFromTemplateArgumentInput = {
|
|
25180
|
-
key: Scalars['String']['input'];
|
|
25181
|
-
value?: InputMaybe<Scalars['String']['input']>;
|
|
25182
|
-
};
|
|
25183
|
-
export declare type CreateCompassComponentFromTemplateInput = {
|
|
25184
|
-
createComponentDetails: CreateCompassComponentInput;
|
|
25185
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
25186
|
-
templateArguments?: InputMaybe<Array<CreateCompassComponentFromTemplateArgumentInput>>;
|
|
25187
|
-
templateComponentId: Scalars['ID']['input'];
|
|
25188
|
-
};
|
|
25189
|
-
export declare type CreateCompassComponentFromTemplatePayload = Payload & {
|
|
25190
|
-
__typename?: 'CreateCompassComponentFromTemplatePayload';
|
|
25191
|
-
componentDetails?: Maybe<CompassComponent>;
|
|
25192
|
-
errors?: Maybe<Array<MutationError>>;
|
|
25193
|
-
success: Scalars['Boolean']['output'];
|
|
25194
|
-
};
|
|
25195
25319
|
export declare type CreateCompassComponentInput = {
|
|
25196
25320
|
customFields?: InputMaybe<Array<CompassCustomFieldInput>>;
|
|
25197
25321
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25237,11 +25361,6 @@ export declare type CreateCompassFieldInput = {
|
|
|
25237
25361
|
definition: Scalars['ID']['input'];
|
|
25238
25362
|
value: CompassFieldValueInput;
|
|
25239
25363
|
};
|
|
25240
|
-
export declare type CreateCompassFreeformUserDefinedParameterInput = {
|
|
25241
|
-
defaultValue?: InputMaybe<Scalars['String']['input']>;
|
|
25242
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
25243
|
-
name: Scalars['String']['input'];
|
|
25244
|
-
};
|
|
25245
25364
|
export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
25246
25365
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
25247
25366
|
maturityGroup?: InputMaybe<CompassScorecardCriteriaMaturityGroupInput>;
|
|
@@ -25353,9 +25472,6 @@ export declare type CreateCompassStarredComponentPayload = Payload & {
|
|
|
25353
25472
|
errors?: Maybe<Array<MutationError>>;
|
|
25354
25473
|
success: Scalars['Boolean']['output'];
|
|
25355
25474
|
};
|
|
25356
|
-
export declare type CreateCompassUserDefinedParameterInput = {
|
|
25357
|
-
freeformField?: InputMaybe<CreateCompassFreeformUserDefinedParameterInput>;
|
|
25358
|
-
};
|
|
25359
25475
|
export declare type CreateComponentApiUploadInput = {
|
|
25360
25476
|
componentId: Scalars['ID']['input'];
|
|
25361
25477
|
};
|
|
@@ -28032,9 +28148,6 @@ export declare type DeleteCompassStarredComponentPayload = Payload & {
|
|
|
28032
28148
|
errors?: Maybe<Array<MutationError>>;
|
|
28033
28149
|
success: Scalars['Boolean']['output'];
|
|
28034
28150
|
};
|
|
28035
|
-
export declare type DeleteCompassUserDefinedParameterInput = {
|
|
28036
|
-
id: Scalars['ID']['input'];
|
|
28037
|
-
};
|
|
28038
28151
|
export declare type DeleteContentDataClassificationLevelInput = {
|
|
28039
28152
|
contentStatus: ContentDataClassificationMutationContentStatus;
|
|
28040
28153
|
id: Scalars['Long']['input'];
|
|
@@ -28967,6 +29080,7 @@ export declare type DevAiRovoDevBulkSessionResult = {
|
|
|
28967
29080
|
session?: Maybe<DevAiRovoDevSession>;
|
|
28968
29081
|
};
|
|
28969
29082
|
export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
29083
|
+
automationInvokerId?: InputMaybe<Scalars['String']['input']>;
|
|
28970
29084
|
cloudId: Scalars['ID']['input'];
|
|
28971
29085
|
linkConversationId?: InputMaybe<Scalars['String']['input']>;
|
|
28972
29086
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
@@ -28977,6 +29091,7 @@ export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
|
28977
29091
|
xid?: InputMaybe<Scalars['String']['input']>;
|
|
28978
29092
|
};
|
|
28979
29093
|
export declare type DevAiRovoDevCreateSessionInput = {
|
|
29094
|
+
automationInvokerId?: InputMaybe<Scalars['String']['input']>;
|
|
28980
29095
|
linkConversationId?: InputMaybe<Scalars['String']['input']>;
|
|
28981
29096
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
28982
29097
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
@@ -29040,6 +29155,7 @@ export declare enum DevAiRovoDevSandboxStatus {
|
|
|
29040
29155
|
export declare type DevAiRovoDevSession = Node & {
|
|
29041
29156
|
__typename?: 'DevAiRovoDevSession';
|
|
29042
29157
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
29158
|
+
automationInvokerId?: Maybe<Scalars['String']['output']>;
|
|
29043
29159
|
buildStatus?: Maybe<DevAiRovoDevBuildStatus>;
|
|
29044
29160
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
29045
29161
|
editorPath?: Maybe<Scalars['String']['output']>;
|
|
@@ -35884,6 +36000,10 @@ export declare type GraphIntegrationAddTwgCapabilityContainerPayload = Payload &
|
|
|
35884
36000
|
id?: Maybe<Scalars['String']['output']>;
|
|
35885
36001
|
success: Scalars['Boolean']['output'];
|
|
35886
36002
|
};
|
|
36003
|
+
export declare enum GraphIntegrationAppCapability {
|
|
36004
|
+
Action = "ACTION",
|
|
36005
|
+
DataConnector = "DATA_CONNECTOR"
|
|
36006
|
+
}
|
|
35887
36007
|
export declare type GraphIntegrationConsentInput = {
|
|
35888
36008
|
agreement: Scalars['String']['input'];
|
|
35889
36009
|
formUrlReferer: Scalars['URL']['input'];
|
|
@@ -36207,7 +36327,7 @@ export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
|
36207
36327
|
contextAri: Scalars['ID']['output'];
|
|
36208
36328
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
36209
36329
|
description: Scalars['String']['output'];
|
|
36210
|
-
|
|
36330
|
+
iconKey: Scalars['String']['output'];
|
|
36211
36331
|
id: Scalars['String']['output'];
|
|
36212
36332
|
maxInstallations: Scalars['Int']['output'];
|
|
36213
36333
|
name: Scalars['String']['output'];
|
|
@@ -36225,8 +36345,9 @@ export declare type GraphIntegrationTwgCapabilityContainerEdge = {
|
|
|
36225
36345
|
};
|
|
36226
36346
|
export declare type GraphIntegrationTwgCapabilityContainerMeta = {
|
|
36227
36347
|
__typename?: 'GraphIntegrationTwgCapabilityContainerMeta';
|
|
36348
|
+
availableCapabilities: Array<GraphIntegrationAppCapability>;
|
|
36228
36349
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
36229
|
-
|
|
36350
|
+
iconKey: Scalars['String']['output'];
|
|
36230
36351
|
maxInstallations: Scalars['Int']['output'];
|
|
36231
36352
|
name: Scalars['String']['output'];
|
|
36232
36353
|
productAri: Scalars['ID']['output'];
|
|
@@ -38973,6 +39094,10 @@ export declare type GraphStore = {
|
|
|
38973
39094
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
38974
39095
|
atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
38975
39096
|
atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
39097
|
+
atlassianUserCreatedAtlassianGoalUpdate?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection>;
|
|
39098
|
+
atlassianUserCreatedAtlassianGoalUpdateInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseConnection>;
|
|
39099
|
+
atlassianUserCreatedAtlassianProjectUpdate?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateConnection>;
|
|
39100
|
+
atlassianUserCreatedAtlassianProjectUpdateInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseConnection>;
|
|
38976
39101
|
atlassianUserCreatedExternalCustomerContact?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactConnection>;
|
|
38977
39102
|
atlassianUserCreatedExternalCustomerContactInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactInverseConnection>;
|
|
38978
39103
|
atlassianUserCreatedExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryConnection>;
|
|
@@ -39086,6 +39211,12 @@ export declare type GraphStore = {
|
|
|
39086
39211
|
dynamicRelationshipAssetToUserInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection>;
|
|
39087
39212
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
39088
39213
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
39214
|
+
externalCustomerOrgHasChildExternalCustomerOrg?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgConnection>;
|
|
39215
|
+
externalCustomerOrgHasChildExternalCustomerOrgInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseConnection>;
|
|
39216
|
+
externalCustomerOrgLinksExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryConnection>;
|
|
39217
|
+
externalCustomerOrgLinksExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryInverseConnection>;
|
|
39218
|
+
externalCustomerOrgWorksOnJiraWorkItemWorklog?: Maybe<GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogConnection>;
|
|
39219
|
+
externalCustomerOrgWorksOnJiraWorkItemWorklogInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogInverseConnection>;
|
|
39089
39220
|
externalOrgHasExternalPosition?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionConnection>;
|
|
39090
39221
|
externalOrgHasExternalPositionInverse?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionInverseConnection>;
|
|
39091
39222
|
externalOrgHasExternalWorker?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerConnection>;
|
|
@@ -40252,6 +40383,38 @@ export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
|
|
|
40252
40383
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40253
40384
|
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
40254
40385
|
};
|
|
40386
|
+
export declare type GraphStoreAtlassianUserCreatedAtlassianGoalUpdateArgs = {
|
|
40387
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40388
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40389
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40390
|
+
id: Scalars['ID']['input'];
|
|
40391
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40392
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedAtlassianGoalUpdateSortInput>;
|
|
40393
|
+
};
|
|
40394
|
+
export declare type GraphStoreAtlassianUserCreatedAtlassianGoalUpdateInverseArgs = {
|
|
40395
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40396
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40397
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40398
|
+
id: Scalars['ID']['input'];
|
|
40399
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40400
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedAtlassianGoalUpdateSortInput>;
|
|
40401
|
+
};
|
|
40402
|
+
export declare type GraphStoreAtlassianUserCreatedAtlassianProjectUpdateArgs = {
|
|
40403
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40404
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40405
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40406
|
+
id: Scalars['ID']['input'];
|
|
40407
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40408
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedAtlassianProjectUpdateSortInput>;
|
|
40409
|
+
};
|
|
40410
|
+
export declare type GraphStoreAtlassianUserCreatedAtlassianProjectUpdateInverseArgs = {
|
|
40411
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40412
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40413
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40414
|
+
id: Scalars['ID']['input'];
|
|
40415
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
40416
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedAtlassianProjectUpdateSortInput>;
|
|
40417
|
+
};
|
|
40255
40418
|
export declare type GraphStoreAtlassianUserCreatedExternalCustomerContactArgs = {
|
|
40256
40419
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40257
40420
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41133,6 +41296,54 @@ export declare type GraphStoreEntityIsRelatedToEntityInverseArgs = {
|
|
|
41133
41296
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41134
41297
|
sort?: InputMaybe<GraphStoreEntityIsRelatedToEntitySortInput>;
|
|
41135
41298
|
};
|
|
41299
|
+
export declare type GraphStoreExternalCustomerOrgHasChildExternalCustomerOrgArgs = {
|
|
41300
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41301
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41302
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41303
|
+
id: Scalars['ID']['input'];
|
|
41304
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41305
|
+
sort?: InputMaybe<GraphStoreExternalCustomerOrgHasChildExternalCustomerOrgSortInput>;
|
|
41306
|
+
};
|
|
41307
|
+
export declare type GraphStoreExternalCustomerOrgHasChildExternalCustomerOrgInverseArgs = {
|
|
41308
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41309
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41310
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41311
|
+
id: Scalars['ID']['input'];
|
|
41312
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41313
|
+
sort?: InputMaybe<GraphStoreExternalCustomerOrgHasChildExternalCustomerOrgSortInput>;
|
|
41314
|
+
};
|
|
41315
|
+
export declare type GraphStoreExternalCustomerOrgLinksExternalCustomerOrgCategoryArgs = {
|
|
41316
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41317
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41318
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41319
|
+
id: Scalars['ID']['input'];
|
|
41320
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41321
|
+
sort?: InputMaybe<GraphStoreExternalCustomerOrgLinksExternalCustomerOrgCategorySortInput>;
|
|
41322
|
+
};
|
|
41323
|
+
export declare type GraphStoreExternalCustomerOrgLinksExternalCustomerOrgCategoryInverseArgs = {
|
|
41324
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41325
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41326
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41327
|
+
id: Scalars['ID']['input'];
|
|
41328
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41329
|
+
sort?: InputMaybe<GraphStoreExternalCustomerOrgLinksExternalCustomerOrgCategorySortInput>;
|
|
41330
|
+
};
|
|
41331
|
+
export declare type GraphStoreExternalCustomerOrgWorksOnJiraWorkItemWorklogArgs = {
|
|
41332
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41333
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41334
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41335
|
+
id: Scalars['ID']['input'];
|
|
41336
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41337
|
+
sort?: InputMaybe<GraphStoreExternalCustomerOrgWorksOnJiraWorkItemWorklogSortInput>;
|
|
41338
|
+
};
|
|
41339
|
+
export declare type GraphStoreExternalCustomerOrgWorksOnJiraWorkItemWorklogInverseArgs = {
|
|
41340
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41341
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41342
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41343
|
+
id: Scalars['ID']['input'];
|
|
41344
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
41345
|
+
sort?: InputMaybe<GraphStoreExternalCustomerOrgWorksOnJiraWorkItemWorklogSortInput>;
|
|
41346
|
+
};
|
|
41136
41347
|
export declare type GraphStoreExternalOrgHasExternalPositionArgs = {
|
|
41137
41348
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41138
41349
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -47015,6 +47226,12 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
|
|
|
47015
47226
|
export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
|
|
47016
47227
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47017
47228
|
};
|
|
47229
|
+
export declare type GraphStoreAtlassianUserCreatedAtlassianGoalUpdateSortInput = {
|
|
47230
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47231
|
+
};
|
|
47232
|
+
export declare type GraphStoreAtlassianUserCreatedAtlassianProjectUpdateSortInput = {
|
|
47233
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47234
|
+
};
|
|
47018
47235
|
export declare type GraphStoreAtlassianUserCreatedExternalCustomerContactSortInput = {
|
|
47019
47236
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47020
47237
|
};
|
|
@@ -49705,6 +49922,15 @@ export declare type GraphStoreDynamicRelationshipAssetToUserSortInput = {
|
|
|
49705
49922
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
49706
49923
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49707
49924
|
};
|
|
49925
|
+
export declare type GraphStoreExternalCustomerOrgHasChildExternalCustomerOrgSortInput = {
|
|
49926
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49927
|
+
};
|
|
49928
|
+
export declare type GraphStoreExternalCustomerOrgLinksExternalCustomerOrgCategorySortInput = {
|
|
49929
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49930
|
+
};
|
|
49931
|
+
export declare type GraphStoreExternalCustomerOrgWorksOnJiraWorkItemWorklogSortInput = {
|
|
49932
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49933
|
+
};
|
|
49708
49934
|
export declare type GraphStoreExternalOrgHasExternalPositionSortInput = {
|
|
49709
49935
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49710
49936
|
};
|
|
@@ -55136,6 +55362,62 @@ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverse
|
|
|
55136
55362
|
};
|
|
55137
55363
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
|
|
55138
55364
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
|
|
55365
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection = HasPageInfo & {
|
|
55366
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection';
|
|
55367
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateEdge>>>;
|
|
55368
|
+
pageInfo: PageInfo;
|
|
55369
|
+
};
|
|
55370
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateEdge = {
|
|
55371
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateEdge';
|
|
55372
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55373
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55374
|
+
id: Scalars['ID']['output'];
|
|
55375
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55376
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateUnion>;
|
|
55377
|
+
};
|
|
55378
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseConnection = HasPageInfo & {
|
|
55379
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseConnection';
|
|
55380
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseEdge>>>;
|
|
55381
|
+
pageInfo: PageInfo;
|
|
55382
|
+
};
|
|
55383
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseEdge = {
|
|
55384
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseEdge';
|
|
55385
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55386
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55387
|
+
id: Scalars['ID']['output'];
|
|
55388
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55389
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseUnion>;
|
|
55390
|
+
};
|
|
55391
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55392
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateUnion = TownsquareGoalUpdate;
|
|
55393
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateConnection = HasPageInfo & {
|
|
55394
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateConnection';
|
|
55395
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateEdge>>>;
|
|
55396
|
+
pageInfo: PageInfo;
|
|
55397
|
+
};
|
|
55398
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateEdge = {
|
|
55399
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateEdge';
|
|
55400
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55401
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55402
|
+
id: Scalars['ID']['output'];
|
|
55403
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55404
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateUnion>;
|
|
55405
|
+
};
|
|
55406
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseConnection = HasPageInfo & {
|
|
55407
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseConnection';
|
|
55408
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseEdge>>>;
|
|
55409
|
+
pageInfo: PageInfo;
|
|
55410
|
+
};
|
|
55411
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseEdge = {
|
|
55412
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseEdge';
|
|
55413
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55414
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55415
|
+
id: Scalars['ID']['output'];
|
|
55416
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55417
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseUnion>;
|
|
55418
|
+
};
|
|
55419
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55420
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateUnion = TownsquareProjectUpdate;
|
|
55139
55421
|
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactConnection = HasPageInfo & {
|
|
55140
55422
|
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactConnection';
|
|
55141
55423
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerContactEdge>>>;
|
|
@@ -56460,6 +56742,90 @@ export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseEdge = {
|
|
|
56460
56742
|
};
|
|
56461
56743
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
56462
56744
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityUnion = ConfluenceBlogPost | ConfluencePage;
|
|
56745
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgConnection = HasPageInfo & {
|
|
56746
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgConnection';
|
|
56747
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgEdge>>>;
|
|
56748
|
+
pageInfo: PageInfo;
|
|
56749
|
+
};
|
|
56750
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgEdge = {
|
|
56751
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgEdge';
|
|
56752
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56753
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56754
|
+
id: Scalars['ID']['output'];
|
|
56755
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56756
|
+
node?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgUnion>;
|
|
56757
|
+
};
|
|
56758
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseConnection = HasPageInfo & {
|
|
56759
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseConnection';
|
|
56760
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseEdge>>>;
|
|
56761
|
+
pageInfo: PageInfo;
|
|
56762
|
+
};
|
|
56763
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseEdge = {
|
|
56764
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseEdge';
|
|
56765
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56766
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56767
|
+
id: Scalars['ID']['output'];
|
|
56768
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56769
|
+
node?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseUnion>;
|
|
56770
|
+
};
|
|
56771
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseUnion = ExternalCustomerOrg;
|
|
56772
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgUnion = ExternalCustomerOrg;
|
|
56773
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryConnection = HasPageInfo & {
|
|
56774
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryConnection';
|
|
56775
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryEdge>>>;
|
|
56776
|
+
pageInfo: PageInfo;
|
|
56777
|
+
};
|
|
56778
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryEdge = {
|
|
56779
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryEdge';
|
|
56780
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56781
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56782
|
+
id: Scalars['ID']['output'];
|
|
56783
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56784
|
+
node?: Maybe<GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryUnion>;
|
|
56785
|
+
};
|
|
56786
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryInverseConnection = HasPageInfo & {
|
|
56787
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryInverseConnection';
|
|
56788
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryInverseEdge>>>;
|
|
56789
|
+
pageInfo: PageInfo;
|
|
56790
|
+
};
|
|
56791
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryInverseEdge = {
|
|
56792
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryInverseEdge';
|
|
56793
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56794
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56795
|
+
id: Scalars['ID']['output'];
|
|
56796
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56797
|
+
node?: Maybe<GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryInverseUnion>;
|
|
56798
|
+
};
|
|
56799
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryInverseUnion = ExternalCustomerOrg;
|
|
56800
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryUnion = ExternalCustomerOrgCategory;
|
|
56801
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogConnection = HasPageInfo & {
|
|
56802
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogConnection';
|
|
56803
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogEdge>>>;
|
|
56804
|
+
pageInfo: PageInfo;
|
|
56805
|
+
};
|
|
56806
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogEdge = {
|
|
56807
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogEdge';
|
|
56808
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56809
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56810
|
+
id: Scalars['ID']['output'];
|
|
56811
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56812
|
+
node?: Maybe<GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogUnion>;
|
|
56813
|
+
};
|
|
56814
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogInverseConnection = HasPageInfo & {
|
|
56815
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogInverseConnection';
|
|
56816
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogInverseEdge>>>;
|
|
56817
|
+
pageInfo: PageInfo;
|
|
56818
|
+
};
|
|
56819
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogInverseEdge = {
|
|
56820
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogInverseEdge';
|
|
56821
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56822
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56823
|
+
id: Scalars['ID']['output'];
|
|
56824
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56825
|
+
node?: Maybe<GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogInverseUnion>;
|
|
56826
|
+
};
|
|
56827
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogInverseUnion = ExternalCustomerOrg;
|
|
56828
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogUnion = JiraWorklog;
|
|
56463
56829
|
export declare type GraphStoreSimplifiedExternalOrgHasExternalPositionConnection = HasPageInfo & {
|
|
56464
56830
|
__typename?: 'GraphStoreSimplifiedExternalOrgHasExternalPositionConnection';
|
|
56465
56831
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionEdge>>>;
|
|
@@ -65242,10 +65608,14 @@ export declare type GraphStoreV2 = {
|
|
|
65242
65608
|
atlassianUserContributesToAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserContributesToAtlassianProjectInverseConnection>;
|
|
65243
65609
|
atlassianUserCreatedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalConnection>;
|
|
65244
65610
|
atlassianUserCreatedAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalInverseConnection>;
|
|
65611
|
+
atlassianUserCreatedAtlassianGoalUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection>;
|
|
65612
|
+
atlassianUserCreatedAtlassianGoalUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseConnection>;
|
|
65245
65613
|
atlassianUserCreatedAtlassianHomeComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianHomeCommentConnection>;
|
|
65246
65614
|
atlassianUserCreatedAtlassianHomeCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianHomeCommentInverseConnection>;
|
|
65247
65615
|
atlassianUserCreatedAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectConnection>;
|
|
65248
65616
|
atlassianUserCreatedAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectInverseConnection>;
|
|
65617
|
+
atlassianUserCreatedAtlassianProjectUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateConnection>;
|
|
65618
|
+
atlassianUserCreatedAtlassianProjectUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseConnection>;
|
|
65249
65619
|
atlassianUserCreatedConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceBlogpostConnection>;
|
|
65250
65620
|
atlassianUserCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceBlogpostInverseConnection>;
|
|
65251
65621
|
atlassianUserCreatedConfluenceComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceCommentConnection>;
|
|
@@ -66048,6 +66418,20 @@ export declare type GraphStoreV2AtlassianUserCreatedAtlassianGoalInverseArgs = {
|
|
|
66048
66418
|
id: Scalars['ID']['input'];
|
|
66049
66419
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedAtlassianGoalSortInput>;
|
|
66050
66420
|
};
|
|
66421
|
+
export declare type GraphStoreV2AtlassianUserCreatedAtlassianGoalUpdateArgs = {
|
|
66422
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66423
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66424
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66425
|
+
id: Scalars['ID']['input'];
|
|
66426
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedAtlassianGoalUpdateSortInput>;
|
|
66427
|
+
};
|
|
66428
|
+
export declare type GraphStoreV2AtlassianUserCreatedAtlassianGoalUpdateInverseArgs = {
|
|
66429
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66430
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66431
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66432
|
+
id: Scalars['ID']['input'];
|
|
66433
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedAtlassianGoalUpdateSortInput>;
|
|
66434
|
+
};
|
|
66051
66435
|
export declare type GraphStoreV2AtlassianUserCreatedAtlassianHomeCommentArgs = {
|
|
66052
66436
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
66053
66437
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -66076,6 +66460,20 @@ export declare type GraphStoreV2AtlassianUserCreatedAtlassianProjectInverseArgs
|
|
|
66076
66460
|
id: Scalars['ID']['input'];
|
|
66077
66461
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedAtlassianProjectSortInput>;
|
|
66078
66462
|
};
|
|
66463
|
+
export declare type GraphStoreV2AtlassianUserCreatedAtlassianProjectUpdateArgs = {
|
|
66464
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66465
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66466
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66467
|
+
id: Scalars['ID']['input'];
|
|
66468
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedAtlassianProjectUpdateSortInput>;
|
|
66469
|
+
};
|
|
66470
|
+
export declare type GraphStoreV2AtlassianUserCreatedAtlassianProjectUpdateInverseArgs = {
|
|
66471
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66472
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66473
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66474
|
+
id: Scalars['ID']['input'];
|
|
66475
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedAtlassianProjectUpdateSortInput>;
|
|
66476
|
+
};
|
|
66079
66477
|
export declare type GraphStoreV2AtlassianUserCreatedConfluenceBlogpostArgs = {
|
|
66080
66478
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
66081
66479
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69232,12 +69630,18 @@ export declare type GraphStoreV2AtlassianUserContributesToAtlassianProjectSortIn
|
|
|
69232
69630
|
export declare type GraphStoreV2AtlassianUserCreatedAtlassianGoalSortInput = {
|
|
69233
69631
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
69234
69632
|
};
|
|
69633
|
+
export declare type GraphStoreV2AtlassianUserCreatedAtlassianGoalUpdateSortInput = {
|
|
69634
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
69635
|
+
};
|
|
69235
69636
|
export declare type GraphStoreV2AtlassianUserCreatedAtlassianHomeCommentSortInput = {
|
|
69236
69637
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
69237
69638
|
};
|
|
69238
69639
|
export declare type GraphStoreV2AtlassianUserCreatedAtlassianProjectSortInput = {
|
|
69239
69640
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
69240
69641
|
};
|
|
69642
|
+
export declare type GraphStoreV2AtlassianUserCreatedAtlassianProjectUpdateSortInput = {
|
|
69643
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
69644
|
+
};
|
|
69241
69645
|
export declare type GraphStoreV2AtlassianUserCreatedConfluenceBlogpostSortInput = {
|
|
69242
69646
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
69243
69647
|
};
|
|
@@ -72571,6 +72975,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalInver
|
|
|
72571
72975
|
};
|
|
72572
72976
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
72573
72977
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUnion = TownsquareGoal;
|
|
72978
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection = HasPageInfo & {
|
|
72979
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection';
|
|
72980
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateEdge>>>;
|
|
72981
|
+
pageInfo: PageInfo;
|
|
72982
|
+
};
|
|
72983
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateEdge = {
|
|
72984
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateEdge';
|
|
72985
|
+
createdAt: Scalars['DateTime']['output'];
|
|
72986
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
72987
|
+
id: Scalars['ID']['output'];
|
|
72988
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
72989
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateUnion>;
|
|
72990
|
+
};
|
|
72991
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseConnection = HasPageInfo & {
|
|
72992
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseConnection';
|
|
72993
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseEdge>>>;
|
|
72994
|
+
pageInfo: PageInfo;
|
|
72995
|
+
};
|
|
72996
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseEdge = {
|
|
72997
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseEdge';
|
|
72998
|
+
createdAt: Scalars['DateTime']['output'];
|
|
72999
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
73000
|
+
id: Scalars['ID']['output'];
|
|
73001
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
73002
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseUnion>;
|
|
73003
|
+
};
|
|
73004
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
73005
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianGoalUpdateUnion = TownsquareGoalUpdate;
|
|
72574
73006
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianHomeCommentConnection = HasPageInfo & {
|
|
72575
73007
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianHomeCommentConnection';
|
|
72576
73008
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianHomeCommentEdge>>>;
|
|
@@ -72627,6 +73059,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectIn
|
|
|
72627
73059
|
};
|
|
72628
73060
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
72629
73061
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUnion = TownsquareProject;
|
|
73062
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateConnection = HasPageInfo & {
|
|
73063
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateConnection';
|
|
73064
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateEdge>>>;
|
|
73065
|
+
pageInfo: PageInfo;
|
|
73066
|
+
};
|
|
73067
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateEdge = {
|
|
73068
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateEdge';
|
|
73069
|
+
createdAt: Scalars['DateTime']['output'];
|
|
73070
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
73071
|
+
id: Scalars['ID']['output'];
|
|
73072
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
73073
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateUnion>;
|
|
73074
|
+
};
|
|
73075
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseConnection = HasPageInfo & {
|
|
73076
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseConnection';
|
|
73077
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseEdge>>>;
|
|
73078
|
+
pageInfo: PageInfo;
|
|
73079
|
+
};
|
|
73080
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseEdge = {
|
|
73081
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseEdge';
|
|
73082
|
+
createdAt: Scalars['DateTime']['output'];
|
|
73083
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
73084
|
+
id: Scalars['ID']['output'];
|
|
73085
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
73086
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseUnion>;
|
|
73087
|
+
};
|
|
73088
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
73089
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedAtlassianProjectUpdateUnion = TownsquareProjectUpdate;
|
|
72630
73090
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
72631
73091
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceBlogpostConnection';
|
|
72632
73092
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedConfluenceBlogpostEdge>>>;
|
|
@@ -83173,6 +83633,7 @@ export declare type JiraAddFieldsToFieldSchemePayload = Payload & {
|
|
|
83173
83633
|
__typename?: 'JiraAddFieldsToFieldSchemePayload';
|
|
83174
83634
|
addedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
83175
83635
|
errors?: Maybe<Array<MutationError>>;
|
|
83636
|
+
fieldScheme?: Maybe<JiraFieldScheme>;
|
|
83176
83637
|
success: Scalars['Boolean']['output'];
|
|
83177
83638
|
};
|
|
83178
83639
|
export declare type JiraAddFieldsToProjectInput = {
|
|
@@ -83677,6 +84138,30 @@ export declare type JiraApplicationProperty = Node & {
|
|
|
83677
84138
|
type: Scalars['String']['output'];
|
|
83678
84139
|
value: Scalars['String']['output'];
|
|
83679
84140
|
};
|
|
84141
|
+
export declare type JiraApplySuggestionActionPayload = Payload & {
|
|
84142
|
+
__typename?: 'JiraApplySuggestionActionPayload';
|
|
84143
|
+
errors?: Maybe<Array<MutationError>>;
|
|
84144
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
84145
|
+
success: Scalars['Boolean']['output'];
|
|
84146
|
+
};
|
|
84147
|
+
export declare type JiraApplySuggestionActionPayloadResponse = JiraMergeIssuesOperationProgress;
|
|
84148
|
+
export declare type JiraApplySuggestionGroupActionPayload = Payload & {
|
|
84149
|
+
__typename?: 'JiraApplySuggestionGroupActionPayload';
|
|
84150
|
+
errors?: Maybe<Array<MutationError>>;
|
|
84151
|
+
response?: Maybe<JiraApplySuggestionActionPayloadResponse>;
|
|
84152
|
+
success: Scalars['Boolean']['output'];
|
|
84153
|
+
suggestions?: Maybe<Array<Maybe<JiraSuggestion>>>;
|
|
84154
|
+
};
|
|
84155
|
+
export declare type JiraApplySuggestionGroupInput = {
|
|
84156
|
+
action: JiraSuggestionActionType;
|
|
84157
|
+
cloudId: Scalars['ID']['input'];
|
|
84158
|
+
suggestionIds: Array<Scalars['ID']['input']>;
|
|
84159
|
+
};
|
|
84160
|
+
export declare type JiraApplySuggestionInput = {
|
|
84161
|
+
action: JiraSuggestionActionType;
|
|
84162
|
+
cloudId: Scalars['ID']['input'];
|
|
84163
|
+
suggestionId: Scalars['ID']['input'];
|
|
84164
|
+
};
|
|
83680
84165
|
export declare type JiraApprovalActivityFeedConnection = {
|
|
83681
84166
|
__typename?: 'JiraApprovalActivityFeedConnection';
|
|
83682
84167
|
nodes: Array<JiraApprovalActivityItem>;
|
|
@@ -84963,9 +85448,11 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
84963
85448
|
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
84964
85449
|
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
84965
85450
|
groupByOptions?: Maybe<Array<JiraViewGroupByConfig>>;
|
|
85451
|
+
hasMultipleWorkflows?: Maybe<Scalars['Boolean']['output']>;
|
|
84966
85452
|
id: Scalars['ID']['output'];
|
|
84967
85453
|
isEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
84968
85454
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
85455
|
+
isWorkflowsMigrationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
84969
85456
|
layout?: Maybe<JiraBoardViewLayout>;
|
|
84970
85457
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
84971
85458
|
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
@@ -85450,6 +85937,11 @@ export declare enum JiraCfoBoardPerformanceStatus {
|
|
|
85450
85937
|
Moderate = "MODERATE",
|
|
85451
85938
|
Slow = "SLOW"
|
|
85452
85939
|
}
|
|
85940
|
+
export declare type JiraCfoCreateRecommendationsPayload = Payload & {
|
|
85941
|
+
__typename?: 'JiraCFOCreateRecommendationsPayload';
|
|
85942
|
+
errors?: Maybe<Array<MutationError>>;
|
|
85943
|
+
success: Scalars['Boolean']['output'];
|
|
85944
|
+
};
|
|
85453
85945
|
export declare type JiraCfoDataRow = {
|
|
85454
85946
|
dimensions?: Maybe<Array<Maybe<JiraCfoDimension>>>;
|
|
85455
85947
|
metrics?: Maybe<Array<Maybe<JiraCfoMetric>>>;
|
|
@@ -85530,6 +86022,63 @@ export declare type JiraCfoMetricInput = {
|
|
|
85530
86022
|
export declare type JiraCfoMetricSummary = {
|
|
85531
86023
|
periodComparison?: Maybe<Array<Maybe<JiraCfoMetricComparison>>>;
|
|
85532
86024
|
};
|
|
86025
|
+
export declare type JiraCfoRecommendation = {
|
|
86026
|
+
__typename?: 'JiraCFORecommendation';
|
|
86027
|
+
actions?: Maybe<Array<Maybe<JiraCfoRecommendationLink>>>;
|
|
86028
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
86029
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
86030
|
+
group?: Maybe<JiraCfoRecommendationGroup>;
|
|
86031
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
86032
|
+
recommendationCategory?: Maybe<Scalars['String']['output']>;
|
|
86033
|
+
resources?: Maybe<Array<Maybe<JiraCfoRecommendationLink>>>;
|
|
86034
|
+
status?: Maybe<JiraCfoRecommendationStatus>;
|
|
86035
|
+
};
|
|
86036
|
+
export declare type JiraCfoRecommendationConnection = {
|
|
86037
|
+
__typename?: 'JiraCFORecommendationConnection';
|
|
86038
|
+
edges?: Maybe<Array<Maybe<JiraCfoRecommendationEdge>>>;
|
|
86039
|
+
pageInfo: PageInfo;
|
|
86040
|
+
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
86041
|
+
};
|
|
86042
|
+
export declare type JiraCfoRecommendationEdge = {
|
|
86043
|
+
__typename?: 'JiraCFORecommendationEdge';
|
|
86044
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86045
|
+
node?: Maybe<JiraCfoRecommendation>;
|
|
86046
|
+
};
|
|
86047
|
+
export declare enum JiraCfoRecommendationGroup {
|
|
86048
|
+
LimitsAndCleanup = "LIMITS_AND_CLEANUP",
|
|
86049
|
+
None = "NONE",
|
|
86050
|
+
UserSetup = "USER_SETUP"
|
|
86051
|
+
}
|
|
86052
|
+
export declare type JiraCfoRecommendationGroupDetail = {
|
|
86053
|
+
__typename?: 'JiraCFORecommendationGroupDetail';
|
|
86054
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
86055
|
+
groupCategory?: Maybe<JiraCfoRecommendationGroup>;
|
|
86056
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
86057
|
+
sidePanelDescription?: Maybe<Scalars['String']['output']>;
|
|
86058
|
+
sidePanelTitle?: Maybe<Scalars['String']['output']>;
|
|
86059
|
+
status?: Maybe<JiraCfoRecommendationStatus>;
|
|
86060
|
+
};
|
|
86061
|
+
export declare type JiraCfoRecommendationGroupDetailConnection = {
|
|
86062
|
+
__typename?: 'JiraCFORecommendationGroupDetailConnection';
|
|
86063
|
+
edges?: Maybe<Array<Maybe<JiraCfoRecommendationGroupDetailEdge>>>;
|
|
86064
|
+
pageInfo: PageInfo;
|
|
86065
|
+
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
86066
|
+
};
|
|
86067
|
+
export declare type JiraCfoRecommendationGroupDetailEdge = {
|
|
86068
|
+
__typename?: 'JiraCFORecommendationGroupDetailEdge';
|
|
86069
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86070
|
+
node?: Maybe<JiraCfoRecommendationGroupDetail>;
|
|
86071
|
+
};
|
|
86072
|
+
export declare type JiraCfoRecommendationLink = {
|
|
86073
|
+
__typename?: 'JiraCFORecommendationLink';
|
|
86074
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
86075
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
86076
|
+
};
|
|
86077
|
+
export declare enum JiraCfoRecommendationStatus {
|
|
86078
|
+
Critical = "CRITICAL",
|
|
86079
|
+
Info = "INFO",
|
|
86080
|
+
Warning = "WARNING"
|
|
86081
|
+
}
|
|
85533
86082
|
export declare enum JiraCfoTimeGranularity {
|
|
85534
86083
|
Day = "DAY",
|
|
85535
86084
|
Month = "MONTH",
|
|
@@ -87197,6 +87746,7 @@ export declare type JiraCreateJourneyItemInput = {
|
|
|
87197
87746
|
insertAfterItemId?: InputMaybe<Scalars['ID']['input']>;
|
|
87198
87747
|
journeyId: Scalars['ID']['input'];
|
|
87199
87748
|
journeyVersion: Scalars['Long']['input'];
|
|
87749
|
+
type?: InputMaybe<JiraJourneyConfigurationType>;
|
|
87200
87750
|
};
|
|
87201
87751
|
export declare type JiraCreateNavigationItemPayload = Payload & {
|
|
87202
87752
|
__typename?: 'JiraCreateNavigationItemPayload';
|
|
@@ -87617,6 +88167,14 @@ export declare type JiraDateTimeWindow = {
|
|
|
87617
88167
|
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
87618
88168
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
87619
88169
|
};
|
|
88170
|
+
export declare type JiraDeclineBoardViewsForWorkflowsInput = {
|
|
88171
|
+
viewId: Scalars['ID']['input'];
|
|
88172
|
+
};
|
|
88173
|
+
export declare type JiraDeclineBoardViewsForWorkflowsPayload = Payload & {
|
|
88174
|
+
__typename?: 'JiraDeclineBoardViewsForWorkflowsPayload';
|
|
88175
|
+
errors?: Maybe<Array<MutationError>>;
|
|
88176
|
+
success: Scalars['Boolean']['output'];
|
|
88177
|
+
};
|
|
87620
88178
|
export declare type JiraDefaultEmptyConnectionReason = JiraEmptyConnectionReason & {
|
|
87621
88179
|
__typename?: 'JiraDefaultEmptyConnectionReason';
|
|
87622
88180
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -87767,6 +88325,7 @@ export declare type JiraDeleteJourneyItemInput = {
|
|
|
87767
88325
|
itemId: Scalars['ID']['input'];
|
|
87768
88326
|
journeyId: Scalars['ID']['input'];
|
|
87769
88327
|
journeyVersion: Scalars['Long']['input'];
|
|
88328
|
+
type?: InputMaybe<JiraJourneyConfigurationType>;
|
|
87770
88329
|
};
|
|
87771
88330
|
export declare type JiraDeleteNavigationItemInput = {
|
|
87772
88331
|
id: Scalars['ID']['input'];
|
|
@@ -88264,6 +88823,28 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
88264
88823
|
errors?: Maybe<Array<MutationError>>;
|
|
88265
88824
|
success: Scalars['Boolean']['output'];
|
|
88266
88825
|
};
|
|
88826
|
+
export declare type JiraDismissSuggestionGroupInput = {
|
|
88827
|
+
cloudId: Scalars['ID']['input'];
|
|
88828
|
+
reason: Scalars['String']['input'];
|
|
88829
|
+
suggestionIds: Array<Scalars['ID']['input']>;
|
|
88830
|
+
};
|
|
88831
|
+
export declare type JiraDismissSuggestionGroupPayload = Payload & {
|
|
88832
|
+
__typename?: 'JiraDismissSuggestionGroupPayload';
|
|
88833
|
+
errors?: Maybe<Array<MutationError>>;
|
|
88834
|
+
success: Scalars['Boolean']['output'];
|
|
88835
|
+
suggestions?: Maybe<Array<Maybe<JiraSuggestion>>>;
|
|
88836
|
+
};
|
|
88837
|
+
export declare type JiraDismissSuggestionInput = {
|
|
88838
|
+
cloudId: Scalars['ID']['input'];
|
|
88839
|
+
reason: Scalars['String']['input'];
|
|
88840
|
+
suggestionId: Scalars['ID']['input'];
|
|
88841
|
+
};
|
|
88842
|
+
export declare type JiraDismissSuggestionPayload = Payload & {
|
|
88843
|
+
__typename?: 'JiraDismissSuggestionPayload';
|
|
88844
|
+
errors?: Maybe<Array<MutationError>>;
|
|
88845
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
88846
|
+
success: Scalars['Boolean']['output'];
|
|
88847
|
+
};
|
|
88267
88848
|
export declare type JiraDragAndDropBoardViewIssueInput = {
|
|
88268
88849
|
destinationCellId?: InputMaybe<Scalars['ID']['input']>;
|
|
88269
88850
|
id: Scalars['ID']['input'];
|
|
@@ -88277,6 +88858,29 @@ export declare type JiraDragAndDropBoardViewIssuePayload = {
|
|
|
88277
88858
|
issue?: Maybe<JiraIssue>;
|
|
88278
88859
|
success: Scalars['Boolean']['output'];
|
|
88279
88860
|
};
|
|
88861
|
+
export declare type JiraDuplicateIssuesSuggestion = JiraSuggestion & {
|
|
88862
|
+
__typename?: 'JiraDuplicateIssuesSuggestion';
|
|
88863
|
+
actions?: Maybe<Array<Maybe<JiraSuggestionActionType>>>;
|
|
88864
|
+
appliedAction?: Maybe<JiraSuggestionActionType>;
|
|
88865
|
+
dismissedReason?: Maybe<Scalars['String']['output']>;
|
|
88866
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
88867
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
88868
|
+
issue?: Maybe<JiraIssue>;
|
|
88869
|
+
relatedEntityId?: Maybe<Scalars['String']['output']>;
|
|
88870
|
+
relatedIssue?: Maybe<JiraIssue>;
|
|
88871
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
88872
|
+
status?: Maybe<JiraSuggestionStatus>;
|
|
88873
|
+
type?: Maybe<JiraSuggestionType>;
|
|
88874
|
+
};
|
|
88875
|
+
export declare type JiraDuplicateIssuesSuggestionGroup = JiraSuggestionGroup & {
|
|
88876
|
+
__typename?: 'JiraDuplicateIssuesSuggestionGroup';
|
|
88877
|
+
actions?: Maybe<Array<Maybe<JiraSuggestionActionType>>>;
|
|
88878
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
88879
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
88880
|
+
issue?: Maybe<JiraIssue>;
|
|
88881
|
+
suggestions?: Maybe<Array<Maybe<JiraDuplicateIssuesSuggestion>>>;
|
|
88882
|
+
type?: Maybe<JiraSuggestionType>;
|
|
88883
|
+
};
|
|
88280
88884
|
export declare type JiraDuplicateJourneyConfigurationInput = {
|
|
88281
88885
|
id: Scalars['ID']['input'];
|
|
88282
88886
|
};
|
|
@@ -88660,6 +89264,39 @@ export declare type JiraFieldConnection = {
|
|
|
88660
89264
|
edges?: Maybe<Array<Maybe<JiraFieldEdge>>>;
|
|
88661
89265
|
pageInfo: PageInfo;
|
|
88662
89266
|
};
|
|
89267
|
+
export declare type JiraFieldContextualData = {
|
|
89268
|
+
fieldId: Scalars['String']['output'];
|
|
89269
|
+
scope: JiraFieldContextualDataScope;
|
|
89270
|
+
};
|
|
89271
|
+
export declare type JiraFieldContextualDataConnection = {
|
|
89272
|
+
__typename?: 'JiraFieldContextualDataConnection';
|
|
89273
|
+
edges: Array<JiraFieldContextualDataEdge>;
|
|
89274
|
+
pageInfo: PageInfo;
|
|
89275
|
+
};
|
|
89276
|
+
export declare type JiraFieldContextualDataEdge = {
|
|
89277
|
+
__typename?: 'JiraFieldContextualDataEdge';
|
|
89278
|
+
cursor: Scalars['String']['output'];
|
|
89279
|
+
node: JiraFieldContextualData;
|
|
89280
|
+
};
|
|
89281
|
+
export declare type JiraFieldContextualDataFilterInput = {
|
|
89282
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
89283
|
+
scopes?: InputMaybe<Array<JiraFieldContextualDataScopeFilterInput>>;
|
|
89284
|
+
};
|
|
89285
|
+
export declare type JiraFieldContextualDataScope = {
|
|
89286
|
+
__typename?: 'JiraFieldContextualDataScope';
|
|
89287
|
+
issueTypeId?: Maybe<Scalars['ID']['output']>;
|
|
89288
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
89289
|
+
};
|
|
89290
|
+
export declare type JiraFieldContextualDataScopeFilterInput = {
|
|
89291
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
89292
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
89293
|
+
};
|
|
89294
|
+
export declare type JiraFieldContextualDataTeamsFilter = JiraFieldContextualData & {
|
|
89295
|
+
__typename?: 'JiraFieldContextualDataTeamsFilter';
|
|
89296
|
+
fieldId: Scalars['String']['output'];
|
|
89297
|
+
scope: JiraFieldContextualDataScope;
|
|
89298
|
+
teamsFilter: JiraTeamsFieldAllowedTeams;
|
|
89299
|
+
};
|
|
88663
89300
|
export declare type JiraFieldEdge = {
|
|
88664
89301
|
__typename?: 'JiraFieldEdge';
|
|
88665
89302
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -89575,9 +90212,10 @@ export declare type JiraFormulaFieldDateValue = {
|
|
|
89575
90212
|
__typename?: 'JiraFormulaFieldDateValue';
|
|
89576
90213
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
89577
90214
|
};
|
|
89578
|
-
export declare type JiraFormulaFieldExpressionConfig = {
|
|
90215
|
+
export declare type JiraFormulaFieldExpressionConfig = Node & {
|
|
89579
90216
|
__typename?: 'JiraFormulaFieldExpressionConfig';
|
|
89580
90217
|
expression?: Maybe<Scalars['String']['output']>;
|
|
90218
|
+
id: Scalars['ID']['output'];
|
|
89581
90219
|
referencedFields?: Maybe<Array<JiraFormulaReferencedField>>;
|
|
89582
90220
|
};
|
|
89583
90221
|
export declare type JiraFormulaFieldExpressionConfigInput = {
|
|
@@ -92651,6 +93289,8 @@ export declare enum JiraJourneyActiveState {
|
|
|
92651
93289
|
}
|
|
92652
93290
|
export declare type JiraJourneyAssociations = {
|
|
92653
93291
|
__typename?: 'JiraJourneyAssociations';
|
|
93292
|
+
journeyParentWorkItem?: Maybe<JiraIssue>;
|
|
93293
|
+
journeyParentWorkItemId?: Maybe<Scalars['ID']['output']>;
|
|
92654
93294
|
migrationStatus?: Maybe<JiraJourneyRulesMigrationStatus>;
|
|
92655
93295
|
ruleId?: Maybe<Scalars['String']['output']>;
|
|
92656
93296
|
template?: Maybe<Scalars['String']['output']>;
|
|
@@ -92665,6 +93305,7 @@ export declare type JiraJourneyConfiguration = Node & {
|
|
|
92665
93305
|
associations?: Maybe<JiraJourneyAssociations>;
|
|
92666
93306
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
92667
93307
|
createdBy?: Maybe<User>;
|
|
93308
|
+
customizationSettings?: Maybe<JiraJourneyCustomizationSettings>;
|
|
92668
93309
|
etag?: Maybe<Scalars['String']['output']>;
|
|
92669
93310
|
hasUnpublishedChanges?: Maybe<Scalars['Boolean']['output']>;
|
|
92670
93311
|
id: Scalars['ID']['output'];
|
|
@@ -92691,6 +93332,14 @@ export declare type JiraJourneyConfigurationEdge = {
|
|
|
92691
93332
|
cursor: Scalars['String']['output'];
|
|
92692
93333
|
node?: Maybe<JiraJourneyConfiguration>;
|
|
92693
93334
|
};
|
|
93335
|
+
export declare enum JiraJourneyConfigurationType {
|
|
93336
|
+
CustomizableJourney = "CUSTOMIZABLE_JOURNEY",
|
|
93337
|
+
JourneyType = "JOURNEY_TYPE"
|
|
93338
|
+
}
|
|
93339
|
+
export declare type JiraJourneyCustomizationSettings = {
|
|
93340
|
+
__typename?: 'JiraJourneyCustomizationSettings';
|
|
93341
|
+
timeout?: Maybe<Scalars['Int']['output']>;
|
|
93342
|
+
};
|
|
92694
93343
|
export declare type JiraJourneyItem = JiraJourneyStatusDependency | JiraJourneyWorkItem;
|
|
92695
93344
|
export declare type JiraJourneyItemCommon = {
|
|
92696
93345
|
id: Scalars['ID']['output'];
|
|
@@ -92832,6 +93481,7 @@ export declare type JiraJourneyTriggerInput = {
|
|
|
92832
93481
|
};
|
|
92833
93482
|
export declare enum JiraJourneyTriggerType {
|
|
92834
93483
|
ParentIssueCreated = "PARENT_ISSUE_CREATED",
|
|
93484
|
+
RunCustomizedJourneyTriggered = "RUN_CUSTOMIZED_JOURNEY_TRIGGERED",
|
|
92835
93485
|
WorkdayIntegrationTriggered = "WORKDAY_INTEGRATION_TRIGGERED"
|
|
92836
93486
|
}
|
|
92837
93487
|
export declare type JiraJourneyTypeCreatedEventPayload = {
|
|
@@ -94281,6 +94931,7 @@ export declare type JiraMutation = {
|
|
|
94281
94931
|
duplicateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
94282
94932
|
editCustomField?: Maybe<JiraEditCustomFieldPayload>;
|
|
94283
94933
|
forge: JiraForgeMutation;
|
|
94934
|
+
generateCFORecommendations?: Maybe<JiraCfoCreateRecommendationsPayload>;
|
|
94284
94935
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
94285
94936
|
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
94286
94937
|
issueRemoteLinkMutation?: Maybe<JiraIssueRemoteIssueLinkPayload>;
|
|
@@ -94375,6 +95026,7 @@ export declare type JiraMutation = {
|
|
|
94375
95026
|
updateJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
94376
95027
|
updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
94377
95028
|
updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
95029
|
+
updateJiraJourneyCustomizationSettings?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
94378
95030
|
updateJiraJourneyItem?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
94379
95031
|
updateJiraJourneyName?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
94380
95032
|
updateJiraJourneyParentIssueConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -94428,6 +95080,7 @@ export declare type JiraMutation = {
|
|
|
94428
95080
|
updateStatusByQuickTransition?: Maybe<JiraStatusFieldPayload>;
|
|
94429
95081
|
updateStoryPointEstimateField?: Maybe<JiraStoryPointEstimateFieldPayload>;
|
|
94430
95082
|
updateTeamField?: Maybe<JiraTeamFieldPayload>;
|
|
95083
|
+
updateTeamsFieldFilter?: Maybe<JiraUpdateTeamsFieldFilterPayload>;
|
|
94431
95084
|
updateTimeTrackingField?: Maybe<JiraTimeTrackingFieldPayload>;
|
|
94432
95085
|
updateUrlField?: Maybe<JiraUrlFieldPayload>;
|
|
94433
95086
|
updateUserFieldSetPreferences?: Maybe<JiraFieldSetPreferencesUpdatePayload>;
|
|
@@ -94679,6 +95332,9 @@ export declare type JiraMutationDuplicateJiraJourneyConfigurationArgs = {
|
|
|
94679
95332
|
export declare type JiraMutationEditCustomFieldArgs = {
|
|
94680
95333
|
input: JiraEditCustomFieldInput;
|
|
94681
95334
|
};
|
|
95335
|
+
export declare type JiraMutationGenerateCfoRecommendationsArgs = {
|
|
95336
|
+
cloudId: Scalars['ID']['input'];
|
|
95337
|
+
};
|
|
94682
95338
|
export declare type JiraMutationGrantGlobalPermissionArgs = {
|
|
94683
95339
|
cloudId: Scalars['ID']['input'];
|
|
94684
95340
|
input: JiraGlobalPermissionAddGroupGrantInput;
|
|
@@ -94998,6 +95654,10 @@ export declare type JiraMutationUpdateJiraJourneyConfigurationArgs = {
|
|
|
94998
95654
|
cloudId: Scalars['ID']['input'];
|
|
94999
95655
|
input: JiraUpdateJourneyConfigurationInput;
|
|
95000
95656
|
};
|
|
95657
|
+
export declare type JiraMutationUpdateJiraJourneyCustomizationSettingsArgs = {
|
|
95658
|
+
cloudId: Scalars['ID']['input'];
|
|
95659
|
+
input: JiraUpdateJourneyCustomizationSettingsInput;
|
|
95660
|
+
};
|
|
95001
95661
|
export declare type JiraMutationUpdateJiraJourneyItemArgs = {
|
|
95002
95662
|
cloudId: Scalars['ID']['input'];
|
|
95003
95663
|
input: JiraUpdateJourneyItemInput;
|
|
@@ -95165,6 +95825,11 @@ export declare type JiraMutationUpdateStoryPointEstimateFieldArgs = {
|
|
|
95165
95825
|
export declare type JiraMutationUpdateTeamFieldArgs = {
|
|
95166
95826
|
input: JiraUpdateTeamFieldInput;
|
|
95167
95827
|
};
|
|
95828
|
+
export declare type JiraMutationUpdateTeamsFieldFilterArgs = {
|
|
95829
|
+
cloudId: Scalars['ID']['input'];
|
|
95830
|
+
config: JiraTeamsFieldFilterConfigInput;
|
|
95831
|
+
scope: JiraUpdateFieldContextualDataScopeInput;
|
|
95832
|
+
};
|
|
95168
95833
|
export declare type JiraMutationUpdateTimeTrackingFieldArgs = {
|
|
95169
95834
|
input: JiraUpdateTimeTrackingFieldInput;
|
|
95170
95835
|
};
|
|
@@ -97746,6 +98411,7 @@ export declare type JiraPublishIssueSearchConfigPayload = Payload & {
|
|
|
97746
98411
|
export declare type JiraPublishJourneyConfigurationInput = {
|
|
97747
98412
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
97748
98413
|
id: Scalars['ID']['input'];
|
|
98414
|
+
type?: InputMaybe<JiraJourneyConfigurationType>;
|
|
97749
98415
|
version: Scalars['Long']['input'];
|
|
97750
98416
|
};
|
|
97751
98417
|
export declare type JiraPullRequestReviewer = {
|
|
@@ -97767,6 +98433,7 @@ export declare type JiraQuery = {
|
|
|
97767
98433
|
aiAgentSessionEnrichment?: Maybe<JiraAiAgentSession>;
|
|
97768
98434
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
97769
98435
|
allJiraJourneyConfigurations?: Maybe<JiraJourneyConfigurationConnection>;
|
|
98436
|
+
allJiraPendingCustomizableJourneys?: Maybe<JiraJourneyConfigurationConnection>;
|
|
97770
98437
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
97771
98438
|
allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
|
|
97772
98439
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
@@ -97789,6 +98456,8 @@ export declare type JiraQuery = {
|
|
|
97789
98456
|
bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
|
|
97790
98457
|
canPerform?: Maybe<Scalars['Boolean']['output']>;
|
|
97791
98458
|
cfoAnalytics?: Maybe<JiraCfoAnalyticsResult>;
|
|
98459
|
+
cfoRecommendationGroups?: Maybe<JiraCfoRecommendationGroupDetailConnection>;
|
|
98460
|
+
cfoRecommendations?: Maybe<JiraCfoRecommendationConnection>;
|
|
97792
98461
|
childIssuesLimit?: Maybe<Scalars['Long']['output']>;
|
|
97793
98462
|
childWorkItems?: Maybe<JiraIssueConnection>;
|
|
97794
98463
|
cmdbSelectedObjectAttributes?: Maybe<JiraCmdbAttributeConnection>;
|
|
@@ -97878,6 +98547,7 @@ export declare type JiraQuery = {
|
|
|
97878
98547
|
jiraCustomerOrganizationsByUUIDs?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
97879
98548
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
97880
98549
|
jiraFieldConfigs?: Maybe<JiraFieldConfigConnection>;
|
|
98550
|
+
jiraFieldContextualData?: Maybe<JiraFieldContextualDataConnection>;
|
|
97881
98551
|
jiraIssuePicker?: Maybe<JiraIssuePickerResult>;
|
|
97882
98552
|
jiraIssueSearchView?: Maybe<JiraView>;
|
|
97883
98553
|
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
@@ -98008,6 +98678,12 @@ export declare type JiraQueryAllJiraJourneyConfigurationsArgs = {
|
|
|
98008
98678
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98009
98679
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
98010
98680
|
};
|
|
98681
|
+
export declare type JiraQueryAllJiraPendingCustomizableJourneysArgs = {
|
|
98682
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98683
|
+
cloudId: Scalars['ID']['input'];
|
|
98684
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98685
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
98686
|
+
};
|
|
98011
98687
|
export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
98012
98688
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
98013
98689
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -98124,6 +98800,20 @@ export declare type JiraQueryCfoAnalyticsArgs = {
|
|
|
98124
98800
|
metrics: Array<JiraCfoMetricInput>;
|
|
98125
98801
|
startDate: Scalars['DateTime']['input'];
|
|
98126
98802
|
};
|
|
98803
|
+
export declare type JiraQueryCfoRecommendationGroupsArgs = {
|
|
98804
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98805
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
98806
|
+
cloudId: Scalars['ID']['input'];
|
|
98807
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98808
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
98809
|
+
};
|
|
98810
|
+
export declare type JiraQueryCfoRecommendationsArgs = {
|
|
98811
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98812
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
98813
|
+
cloudId: Scalars['ID']['input'];
|
|
98814
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98815
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
98816
|
+
};
|
|
98127
98817
|
export declare type JiraQueryChildIssuesLimitArgs = {
|
|
98128
98818
|
cloudId: Scalars['ID']['input'];
|
|
98129
98819
|
};
|
|
@@ -98357,6 +99047,7 @@ export declare type JiraQueryGroupsForIssuesArgs = {
|
|
|
98357
99047
|
issueChanges?: InputMaybe<Array<JiraIssueChangeInput>>;
|
|
98358
99048
|
issueSearchInput: JiraIssueSearchInput;
|
|
98359
99049
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
99050
|
+
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
98360
99051
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
98361
99052
|
};
|
|
98362
99053
|
export declare type JiraQueryHasGlobalPermissionArgs = {
|
|
@@ -98549,6 +99240,14 @@ export declare type JiraQueryJiraFieldConfigsArgs = {
|
|
|
98549
99240
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98550
99241
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
98551
99242
|
};
|
|
99243
|
+
export declare type JiraQueryJiraFieldContextualDataArgs = {
|
|
99244
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99245
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
99246
|
+
cloudId: Scalars['ID']['input'];
|
|
99247
|
+
filter: JiraFieldContextualDataFilterInput;
|
|
99248
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99249
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
99250
|
+
};
|
|
98552
99251
|
export declare type JiraQueryJiraIssuePickerArgs = {
|
|
98553
99252
|
input: JiraIssuePickerInput;
|
|
98554
99253
|
};
|
|
@@ -98569,12 +99268,14 @@ export declare type JiraQueryJiraJourneyConfigurationArgs = {
|
|
|
98569
99268
|
cloudId: Scalars['ID']['input'];
|
|
98570
99269
|
id: Scalars['ID']['input'];
|
|
98571
99270
|
isEditing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99271
|
+
type?: InputMaybe<JiraJourneyConfigurationType>;
|
|
98572
99272
|
};
|
|
98573
99273
|
export declare type JiraQueryJiraJourneyItemArgs = {
|
|
98574
99274
|
cloudId: Scalars['ID']['input'];
|
|
98575
99275
|
id: Scalars['ID']['input'];
|
|
98576
99276
|
isEditing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
98577
99277
|
journeyId: Scalars['ID']['input'];
|
|
99278
|
+
type?: InputMaybe<JiraJourneyConfigurationType>;
|
|
98578
99279
|
};
|
|
98579
99280
|
export declare type JiraQueryJiraJourneyProjectSettingsArgs = {
|
|
98580
99281
|
cloudId: Scalars['ID']['input'];
|
|
@@ -99468,6 +100169,7 @@ export declare type JiraRemoveFieldsFromFieldSchemeInput = {
|
|
|
99468
100169
|
export declare type JiraRemoveFieldsFromFieldSchemePayload = Payload & {
|
|
99469
100170
|
__typename?: 'JiraRemoveFieldsFromFieldSchemePayload';
|
|
99470
100171
|
errors?: Maybe<Array<MutationError>>;
|
|
100172
|
+
fieldScheme?: Maybe<JiraFieldScheme>;
|
|
99471
100173
|
removedFieldIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
99472
100174
|
success: Scalars['Boolean']['output'];
|
|
99473
100175
|
};
|
|
@@ -101616,6 +102318,7 @@ export declare type JiraSetFormulaFieldExpressionConfigInput = {
|
|
|
101616
102318
|
export declare type JiraSetFormulaFieldExpressionConfigPayload = Payload & {
|
|
101617
102319
|
__typename?: 'JiraSetFormulaFieldExpressionConfigPayload';
|
|
101618
102320
|
errors?: Maybe<Array<MutationError>>;
|
|
102321
|
+
expressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
101619
102322
|
jobId?: Maybe<Scalars['String']['output']>;
|
|
101620
102323
|
success: Scalars['Boolean']['output'];
|
|
101621
102324
|
};
|
|
@@ -102818,6 +103521,52 @@ export declare type JiraSuggestedIssueInput = {
|
|
|
102818
103521
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
102819
103522
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
102820
103523
|
};
|
|
103524
|
+
export declare type JiraSuggestion = {
|
|
103525
|
+
actions?: Maybe<Array<Maybe<JiraSuggestionActionType>>>;
|
|
103526
|
+
appliedAction?: Maybe<JiraSuggestionActionType>;
|
|
103527
|
+
dismissedReason?: Maybe<Scalars['String']['output']>;
|
|
103528
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
103529
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
103530
|
+
status?: Maybe<JiraSuggestionStatus>;
|
|
103531
|
+
type?: Maybe<JiraSuggestionType>;
|
|
103532
|
+
};
|
|
103533
|
+
export declare enum JiraSuggestionActionType {
|
|
103534
|
+
MergeIssues = "MERGE_ISSUES"
|
|
103535
|
+
}
|
|
103536
|
+
export declare type JiraSuggestionEdge = {
|
|
103537
|
+
__typename?: 'JiraSuggestionEdge';
|
|
103538
|
+
cursor: Scalars['String']['output'];
|
|
103539
|
+
node: JiraSuggestionNode;
|
|
103540
|
+
};
|
|
103541
|
+
export declare type JiraSuggestionGroup = {
|
|
103542
|
+
actions?: Maybe<Array<Maybe<JiraSuggestionActionType>>>;
|
|
103543
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
103544
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
103545
|
+
suggestions?: Maybe<Array<Maybe<JiraSuggestion>>>;
|
|
103546
|
+
type?: Maybe<JiraSuggestionType>;
|
|
103547
|
+
};
|
|
103548
|
+
export declare type JiraSuggestionNode = JiraDuplicateIssuesSuggestion | JiraDuplicateIssuesSuggestionGroup;
|
|
103549
|
+
export declare enum JiraSuggestionStatus {
|
|
103550
|
+
Dismissed = "DISMISSED",
|
|
103551
|
+
Done = "DONE",
|
|
103552
|
+
Pending = "PENDING"
|
|
103553
|
+
}
|
|
103554
|
+
export declare enum JiraSuggestionType {
|
|
103555
|
+
DuplicateIssues = "DUPLICATE_ISSUES"
|
|
103556
|
+
}
|
|
103557
|
+
export declare type JiraSuggestionsByContextInput = {
|
|
103558
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103559
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103560
|
+
id: Scalars['ID']['input'];
|
|
103561
|
+
status?: InputMaybe<Array<JiraSuggestionStatus>>;
|
|
103562
|
+
types: Array<JiraSuggestionType>;
|
|
103563
|
+
};
|
|
103564
|
+
export declare type JiraSuggestionsConnection = HasPageInfo & {
|
|
103565
|
+
__typename?: 'JiraSuggestionsConnection';
|
|
103566
|
+
edges?: Maybe<Array<Maybe<JiraSuggestionEdge>>>;
|
|
103567
|
+
errors?: Maybe<Array<QueryError>>;
|
|
103568
|
+
pageInfo: PageInfo;
|
|
103569
|
+
};
|
|
102821
103570
|
export declare enum JiraSyntheticFieldCardOptionType {
|
|
102822
103571
|
CardCover = "CARD_COVER",
|
|
102823
103572
|
Pages = "PAGES"
|
|
@@ -102962,6 +103711,13 @@ export declare type JiraTeamViewFieldTeamsArgs = {
|
|
|
102962
103711
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
102963
103712
|
sessionId: Scalars['ID']['input'];
|
|
102964
103713
|
};
|
|
103714
|
+
export declare enum JiraTeamsFieldAllowedTeams {
|
|
103715
|
+
All = "ALL",
|
|
103716
|
+
OnlyVerified = "ONLY_VERIFIED"
|
|
103717
|
+
}
|
|
103718
|
+
export declare type JiraTeamsFieldFilterConfigInput = {
|
|
103719
|
+
allowedTeams: JiraTeamsFieldAllowedTeams;
|
|
103720
|
+
};
|
|
102965
103721
|
export declare type JiraTemporaryAttachment = {
|
|
102966
103722
|
__typename?: 'JiraTemporaryAttachment';
|
|
102967
103723
|
mediaApiFileId?: Maybe<Scalars['String']['output']>;
|
|
@@ -103473,6 +104229,11 @@ export declare type JiraUpdateDateTimeFieldInput = {
|
|
|
103473
104229
|
id: Scalars['ID']['input'];
|
|
103474
104230
|
operation: JiraDateTimeFieldOperationInput;
|
|
103475
104231
|
};
|
|
104232
|
+
export declare type JiraUpdateFieldContextualDataScopeInput = {
|
|
104233
|
+
fieldId: Scalars['String']['input'];
|
|
104234
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
104235
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
104236
|
+
};
|
|
103476
104237
|
export declare type JiraUpdateFieldSetPreferencesInput = {
|
|
103477
104238
|
fieldSetId: Scalars['String']['input'];
|
|
103478
104239
|
isFrozen?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -103614,12 +104375,19 @@ export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
|
|
|
103614
104375
|
jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
|
|
103615
104376
|
success: Scalars['Boolean']['output'];
|
|
103616
104377
|
};
|
|
104378
|
+
export declare type JiraUpdateJourneyCustomizationSettingsInput = {
|
|
104379
|
+
etag: Scalars['String']['input'];
|
|
104380
|
+
journeyId: Scalars['ID']['input'];
|
|
104381
|
+
journeyVersion: Scalars['Long']['input'];
|
|
104382
|
+
timeout?: InputMaybe<Scalars['Int']['input']>;
|
|
104383
|
+
};
|
|
103617
104384
|
export declare type JiraUpdateJourneyItemInput = {
|
|
103618
104385
|
configuration: JiraJourneyItemConfigurationInput;
|
|
103619
104386
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
103620
104387
|
itemId: Scalars['ID']['input'];
|
|
103621
104388
|
journeyId: Scalars['ID']['input'];
|
|
103622
104389
|
journeyVersion: Scalars['Long']['input'];
|
|
104390
|
+
type?: InputMaybe<JiraJourneyConfigurationType>;
|
|
103623
104391
|
};
|
|
103624
104392
|
export declare type JiraUpdateJourneyNameInput = {
|
|
103625
104393
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -103815,6 +104583,11 @@ export declare type JiraUpdateTeamFieldInput = {
|
|
|
103815
104583
|
id: Scalars['ID']['input'];
|
|
103816
104584
|
operation: JiraTeamFieldOperationInput;
|
|
103817
104585
|
};
|
|
104586
|
+
export declare type JiraUpdateTeamsFieldFilterPayload = Payload & {
|
|
104587
|
+
__typename?: 'JiraUpdateTeamsFieldFilterPayload';
|
|
104588
|
+
errors?: Maybe<Array<MutationError>>;
|
|
104589
|
+
success: Scalars['Boolean']['output'];
|
|
104590
|
+
};
|
|
103818
104591
|
export declare type JiraUpdateTimeTrackingFieldInput = {
|
|
103819
104592
|
id: Scalars['ID']['input'];
|
|
103820
104593
|
originalEstimate?: InputMaybe<JiraEstimateInput>;
|
|
@@ -105605,6 +106378,11 @@ export declare type JpdViewUpdatedEvent = {
|
|
|
105605
106378
|
viewId: Scalars['Int']['output'];
|
|
105606
106379
|
viewUuid: Scalars['ID']['output'];
|
|
105607
106380
|
};
|
|
106381
|
+
export declare type JsmAgentWorkspaceLocations = {
|
|
106382
|
+
__typename?: 'JsmAgentWorkspaceLocations';
|
|
106383
|
+
errors?: Maybe<Array<QueryError>>;
|
|
106384
|
+
pageInfo: PageInfo;
|
|
106385
|
+
};
|
|
105608
106386
|
export declare type JsmChannelsConditionNode = JsmChannelsPlanNode & {
|
|
105609
106387
|
__typename?: 'JsmChannelsConditionNode';
|
|
105610
106388
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
@@ -106893,7 +107671,7 @@ export declare type KitsuneEdge = {
|
|
|
106893
107671
|
export declare type KitsuneFeedback = Node & {
|
|
106894
107672
|
__typename?: 'KitsuneFeedback';
|
|
106895
107673
|
chunks: KitsuneChunkConnection;
|
|
106896
|
-
content?: Maybe<Scalars['
|
|
107674
|
+
content?: Maybe<Scalars['KitsuneADF']['output']>;
|
|
106897
107675
|
id: Scalars['ID']['output'];
|
|
106898
107676
|
title?: Maybe<Scalars['String']['output']>;
|
|
106899
107677
|
};
|
|
@@ -108089,9 +108867,11 @@ export declare enum KnowledgeDiscoveryZeroQueryType {
|
|
|
108089
108867
|
ConfluencePagesCreatedCollaborator = "CONFLUENCE_PAGES_CREATED_COLLABORATOR",
|
|
108090
108868
|
ConfluencePagesCreatedCollaborator_7Days = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_7_DAYS",
|
|
108091
108869
|
ConfluencePagesCreatedCollaborator_30Days = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_30_DAYS",
|
|
108870
|
+
JiraMyWorkItems = "JIRA_MY_WORK_ITEMS",
|
|
108092
108871
|
JiraNlq = "JIRA_NLQ",
|
|
108093
108872
|
JiraNlqCollaborator = "JIRA_NLQ_COLLABORATOR",
|
|
108094
108873
|
JiraTicketsAssigned = "JIRA_TICKETS_ASSIGNED",
|
|
108874
|
+
JiraTicketsAssignedCollaborator = "JIRA_TICKETS_ASSIGNED_COLLABORATOR",
|
|
108095
108875
|
JiraTicketsCreated = "JIRA_TICKETS_CREATED",
|
|
108096
108876
|
JiraTicketsCreatedCollaborator = "JIRA_TICKETS_CREATED_COLLABORATOR",
|
|
108097
108877
|
RelatedQuestion = "RELATED_QUESTION",
|
|
@@ -109389,6 +110169,9 @@ export declare type MarketplaceConsoleAppVersionsList = {
|
|
|
109389
110169
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
109390
110170
|
versions: Array<MarketplaceConsoleAppSoftwareVersionsListItem>;
|
|
109391
110171
|
};
|
|
110172
|
+
export declare type MarketplaceConsoleArchiveAppRequest = {
|
|
110173
|
+
appKey: Scalars['ID']['input'];
|
|
110174
|
+
};
|
|
109392
110175
|
export declare type MarketplaceConsoleArtifactFileInfo = {
|
|
109393
110176
|
__typename?: 'MarketplaceConsoleArtifactFileInfo';
|
|
109394
110177
|
checksum: Scalars['String']['output'];
|
|
@@ -109520,6 +110303,12 @@ export declare type MarketplaceConsoleCreateMakerInput = {
|
|
|
109520
110303
|
developerSpaceListing: MarketplaceConsoleDevSpaceListingInput;
|
|
109521
110304
|
makerName: Scalars['String']['input'];
|
|
109522
110305
|
};
|
|
110306
|
+
export declare type MarketplaceConsoleCreateMakerResponse = MarketplaceConsoleCreateMakerSuccessResponse | MarketplaceConsoleKnownError | MarketplaceConsoleMutationPartialSuccessResponse;
|
|
110307
|
+
export declare type MarketplaceConsoleCreateMakerSuccessResponse = {
|
|
110308
|
+
__typename?: 'MarketplaceConsoleCreateMakerSuccessResponse';
|
|
110309
|
+
developerId: Scalars['ID']['output'];
|
|
110310
|
+
partnerId: Scalars['ID']['output'];
|
|
110311
|
+
};
|
|
109523
110312
|
export declare type MarketplaceConsoleCreatePrivateAppMutationOutput = MarketplaceConsoleCreatePrivateAppMutationResponse | MarketplaceConsoleDomainErrorResponse;
|
|
109524
110313
|
export declare type MarketplaceConsoleCreatePrivateAppMutationResponse = {
|
|
109525
110314
|
__typename?: 'MarketplaceConsoleCreatePrivateAppMutationResponse';
|
|
@@ -109553,6 +110342,9 @@ export declare type MarketplaceConsoleDefaultEditionEnrolled = {
|
|
|
109553
110342
|
export declare type MarketplaceConsoleDefaultEditionEnrolledInput = {
|
|
109554
110343
|
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
109555
110344
|
};
|
|
110345
|
+
export declare type MarketplaceConsoleDeleteAppRequest = {
|
|
110346
|
+
appKey: Scalars['ID']['input'];
|
|
110347
|
+
};
|
|
109556
110348
|
export declare type MarketplaceConsoleDeleteAppVersionResponse = MarketplaceConsoleKnownError | MarketplaceConsoleMutationVoidResponse;
|
|
109557
110349
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
109558
110350
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
@@ -110135,14 +110927,16 @@ export declare type MarketplaceConsoleMakerResponse = MarketplaceConsoleKnownErr
|
|
|
110135
110927
|
export declare type MarketplaceConsoleMutationApi = {
|
|
110136
110928
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
110137
110929
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
110930
|
+
archiveApp?: Maybe<MarketplaceConsoleProductLifecycleJobResponse>;
|
|
110138
110931
|
archiveMaker?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
110139
110932
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
110140
110933
|
createAppSoftwareVersion?: Maybe<MarketplaceConsoleCreateAppSoftwareVersionMutationOutput>;
|
|
110141
110934
|
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
110142
|
-
createMaker?: Maybe<
|
|
110935
|
+
createMaker?: Maybe<MarketplaceConsoleCreateMakerResponse>;
|
|
110143
110936
|
createMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
110144
110937
|
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
|
|
110145
110938
|
createPrivateAppWithVersion?: Maybe<MarketplaceConsoleCreatePrivateAppMutationOutput>;
|
|
110939
|
+
deleteApp?: Maybe<MarketplaceConsoleProductLifecycleJobResponse>;
|
|
110146
110940
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
110147
110941
|
deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
|
|
110148
110942
|
deleteMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
@@ -110162,6 +110956,9 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
|
110162
110956
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
110163
110957
|
product: MarketplaceConsoleEditionsInput;
|
|
110164
110958
|
};
|
|
110959
|
+
export declare type MarketplaceConsoleMutationApiArchiveAppArgs = {
|
|
110960
|
+
archiveAppRequest: MarketplaceConsoleArchiveAppRequest;
|
|
110961
|
+
};
|
|
110165
110962
|
export declare type MarketplaceConsoleMutationApiArchiveMakerArgs = {
|
|
110166
110963
|
developerId: Scalars['ID']['input'];
|
|
110167
110964
|
};
|
|
@@ -110189,6 +110986,9 @@ export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersion
|
|
|
110189
110986
|
export declare type MarketplaceConsoleMutationApiCreatePrivateAppWithVersionArgs = {
|
|
110190
110987
|
app: MarketplaceConsoleAppInput;
|
|
110191
110988
|
};
|
|
110989
|
+
export declare type MarketplaceConsoleMutationApiDeleteAppArgs = {
|
|
110990
|
+
deleteAppRequest: MarketplaceConsoleDeleteAppRequest;
|
|
110991
|
+
};
|
|
110192
110992
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
110193
110993
|
appSoftwareId: Scalars['String']['input'];
|
|
110194
110994
|
token: Scalars['String']['input'];
|
|
@@ -110231,6 +111031,14 @@ export declare type MarketplaceConsoleMutationApiUpsertProgramEnrollmentArgs = {
|
|
|
110231
111031
|
export declare type MarketplaceConsoleMutationApiValidateArtifactUrlArgs = {
|
|
110232
111032
|
url: Scalars['String']['input'];
|
|
110233
111033
|
};
|
|
111034
|
+
export declare type MarketplaceConsoleMutationPartialSuccessResponse = {
|
|
111035
|
+
__typename?: 'MarketplaceConsoleMutationPartialSuccessResponse';
|
|
111036
|
+
developerId: Scalars['ID']['output'];
|
|
111037
|
+
message: Scalars['String']['output'];
|
|
111038
|
+
partialSuccess: Scalars['Boolean']['output'];
|
|
111039
|
+
partnerId: Scalars['ID']['output'];
|
|
111040
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
111041
|
+
};
|
|
110234
111042
|
export declare type MarketplaceConsoleMutationVoidResponse = {
|
|
110235
111043
|
__typename?: 'MarketplaceConsoleMutationVoidResponse';
|
|
110236
111044
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -110416,6 +111224,37 @@ export declare type MarketplaceConsoleProduct = {
|
|
|
110416
111224
|
isPricingPlanMissing?: Maybe<Scalars['Boolean']['output']>;
|
|
110417
111225
|
productId: Scalars['ID']['output'];
|
|
110418
111226
|
};
|
|
111227
|
+
export declare type MarketplaceConsoleProductLifecycleJob = {
|
|
111228
|
+
__typename?: 'MarketplaceConsoleProductLifecycleJob';
|
|
111229
|
+
createdBy: Scalars['String']['output'];
|
|
111230
|
+
hostingType?: Maybe<Scalars['String']['output']>;
|
|
111231
|
+
id: Scalars['ID']['output'];
|
|
111232
|
+
productId: Scalars['ID']['output'];
|
|
111233
|
+
productLifecycle: MarketplaceConsoleProductLifecycleJobType;
|
|
111234
|
+
status: MarketplaceConsoleProductLifecycleJobStatus;
|
|
111235
|
+
};
|
|
111236
|
+
export declare type MarketplaceConsoleProductLifecycleJobResponse = {
|
|
111237
|
+
__typename?: 'MarketplaceConsoleProductLifecycleJobResponse';
|
|
111238
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
111239
|
+
job?: Maybe<MarketplaceConsoleProductLifecycleJob>;
|
|
111240
|
+
success: Scalars['Boolean']['output'];
|
|
111241
|
+
};
|
|
111242
|
+
export declare enum MarketplaceConsoleProductLifecycleJobStatus {
|
|
111243
|
+
Abandoned = "ABANDONED",
|
|
111244
|
+
Completed = "COMPLETED",
|
|
111245
|
+
Failed = "FAILED",
|
|
111246
|
+
Started = "STARTED",
|
|
111247
|
+
Starting = "STARTING",
|
|
111248
|
+
Stopped = "STOPPED",
|
|
111249
|
+
Stopping = "STOPPING",
|
|
111250
|
+
Unknown = "UNKNOWN"
|
|
111251
|
+
}
|
|
111252
|
+
export declare enum MarketplaceConsoleProductLifecycleJobType {
|
|
111253
|
+
Archive = "ARCHIVE",
|
|
111254
|
+
Delete = "DELETE",
|
|
111255
|
+
Transfer = "TRANSFER",
|
|
111256
|
+
Unarchive = "UNARCHIVE"
|
|
111257
|
+
}
|
|
110419
111258
|
export declare type MarketplaceConsoleProductListing = {
|
|
110420
111259
|
__typename?: 'MarketplaceConsoleProductListing';
|
|
110421
111260
|
banner?: Maybe<MarketplaceConsoleImageMediaAsset>;
|
|
@@ -110536,6 +111375,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
110536
111375
|
parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
|
|
110537
111376
|
parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
|
|
110538
111377
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
111378
|
+
productLifecycleJobs?: Maybe<Array<MarketplaceConsoleProductLifecycleJob>>;
|
|
110539
111379
|
productListingAdditionalChecks?: Maybe<MarketplaceConsoleProductListingAdditionalChecks>;
|
|
110540
111380
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
110541
111381
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
@@ -110614,6 +111454,9 @@ export declare type MarketplaceConsoleQueryApiProductArgs = {
|
|
|
110614
111454
|
appKey: Scalars['ID']['input'];
|
|
110615
111455
|
productId: Scalars['ID']['input'];
|
|
110616
111456
|
};
|
|
111457
|
+
export declare type MarketplaceConsoleQueryApiProductLifecycleJobsArgs = {
|
|
111458
|
+
productId: Scalars['ID']['input'];
|
|
111459
|
+
};
|
|
110617
111460
|
export declare type MarketplaceConsoleQueryApiProductListingAdditionalChecksArgs = {
|
|
110618
111461
|
productListingAdditionalChecksInput: MarketplaceConsoleProductListingAdditionalChecksInput;
|
|
110619
111462
|
};
|
|
@@ -111101,6 +111944,11 @@ export declare type MarketplaceStoreCategoryResponse = {
|
|
|
111101
111944
|
name: Scalars['String']['output'];
|
|
111102
111945
|
slug: Scalars['String']['output'];
|
|
111103
111946
|
};
|
|
111947
|
+
export declare enum MarketplaceStoreCloudComplianceBoundary {
|
|
111948
|
+
Commercial = "COMMERCIAL",
|
|
111949
|
+
FedrampModerate = "FEDRAMP_MODERATE",
|
|
111950
|
+
IsolatedCloud = "ISOLATED_CLOUD"
|
|
111951
|
+
}
|
|
111104
111952
|
export declare type MarketplaceStoreCmtAvailabilityResponse = {
|
|
111105
111953
|
__typename?: 'MarketplaceStoreCmtAvailabilityResponse';
|
|
111106
111954
|
allowed: Scalars['Boolean']['output'];
|
|
@@ -111251,6 +112099,7 @@ export declare type MarketplaceStoreEditionsInput = {
|
|
|
111251
112099
|
appId?: InputMaybe<Scalars['String']['input']>;
|
|
111252
112100
|
};
|
|
111253
112101
|
export declare type MarketplaceStoreEligibleAppOfferingsInput = {
|
|
112102
|
+
cloudComplianceBoundaries?: InputMaybe<Array<MarketplaceStoreCloudComplianceBoundary>>;
|
|
111254
112103
|
cloudId: Scalars['String']['input'];
|
|
111255
112104
|
product: MarketplaceStoreProduct;
|
|
111256
112105
|
target?: InputMaybe<MarketplaceStoreEligibleAppOfferingsTargetInput>;
|
|
@@ -111368,6 +112217,7 @@ export declare type MarketplaceStoreInstallAppInput = {
|
|
|
111368
112217
|
chargeQuantity?: InputMaybe<Scalars['Int']['input']>;
|
|
111369
112218
|
installationId?: InputMaybe<Scalars['String']['input']>;
|
|
111370
112219
|
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
112220
|
+
secondaryTargetProducts?: InputMaybe<Array<MarketplaceStoreInstallationTargetProduct>>;
|
|
111371
112221
|
target: MarketplaceStoreInstallAppTargetInput;
|
|
111372
112222
|
};
|
|
111373
112223
|
export declare type MarketplaceStoreInstallAppResponse = {
|
|
@@ -113432,21 +114282,21 @@ export declare type MercuryFundingDeltaByStatus = {
|
|
|
113432
114282
|
amountDelta?: Maybe<Scalars['BigDecimal']['output']>;
|
|
113433
114283
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
113434
114284
|
};
|
|
113435
|
-
export declare type
|
|
113436
|
-
__typename?: '
|
|
113437
|
-
|
|
113438
|
-
|
|
113439
|
-
investmentCategorySummaries?: Maybe<Array<Maybe<MercuryFundsInvestmentCategorySummary>>>;
|
|
113440
|
-
};
|
|
113441
|
-
export declare type MercuryFundsInvestmentCategorySummary = {
|
|
113442
|
-
__typename?: 'MercuryFundsInvestmentCategorySummary';
|
|
113443
|
-
budgetAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
113444
|
-
investmentCategoryId: Scalars['ID']['output'];
|
|
113445
|
-
investmentCategoryKey?: Maybe<Scalars['String']['output']>;
|
|
113446
|
-
investmentCategoryName?: Maybe<Scalars['String']['output']>;
|
|
113447
|
-
spendAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
114285
|
+
export declare type MercuryFundsAmountSummary = {
|
|
114286
|
+
__typename?: 'MercuryFundsAmountSummary';
|
|
114287
|
+
aggregatedAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
114288
|
+
assignedAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
113448
114289
|
totalAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
113449
114290
|
};
|
|
114291
|
+
export declare type MercuryFundsMonthlySummary = {
|
|
114292
|
+
__typename?: 'MercuryFundsMonthlySummary';
|
|
114293
|
+
amountSummary?: Maybe<MercuryFundsAmountSummary>;
|
|
114294
|
+
costSubtype?: Maybe<MercuryCostSubtype>;
|
|
114295
|
+
fundsType?: Maybe<MercuryFundsType>;
|
|
114296
|
+
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
114297
|
+
investmentCategorySet?: Maybe<MercuryInvestmentCategorySet>;
|
|
114298
|
+
monthStartDate?: Maybe<Scalars['String']['output']>;
|
|
114299
|
+
};
|
|
113450
114300
|
export declare type MercuryFundsMutationApi = {
|
|
113451
114301
|
__typename?: 'MercuryFundsMutationApi';
|
|
113452
114302
|
createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
|
|
@@ -113557,20 +114407,14 @@ export declare type MercuryFundsQueryApiInvestmentCategorySetsSearchArgs = {
|
|
|
113557
114407
|
};
|
|
113558
114408
|
export declare type MercuryFundsSummary = {
|
|
113559
114409
|
__typename?: 'MercuryFundsSummary';
|
|
113560
|
-
budgetAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
113561
114410
|
focusAreaId: Scalars['ID']['output'];
|
|
113562
|
-
|
|
113563
|
-
nonLaborSummary?: Maybe<MercuryFundsTypeSummary>;
|
|
113564
|
-
spendAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
113565
|
-
totalAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
113566
|
-
};
|
|
113567
|
-
export declare type MercuryFundsTypeSummary = {
|
|
113568
|
-
__typename?: 'MercuryFundsTypeSummary';
|
|
113569
|
-
budgetAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
113570
|
-
investmentCategorySetSummaries?: Maybe<Array<Maybe<MercuryFundsInvestmentCategorySetSummary>>>;
|
|
113571
|
-
spendAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
113572
|
-
totalAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
114411
|
+
monthlySummaries?: Maybe<Array<Maybe<MercuryFundsMonthlySummary>>>;
|
|
113573
114412
|
};
|
|
114413
|
+
export declare enum MercuryFundsType {
|
|
114414
|
+
Actual = "ACTUAL",
|
|
114415
|
+
Budget = "BUDGET",
|
|
114416
|
+
Forecast = "FORECAST"
|
|
114417
|
+
}
|
|
113574
114418
|
export declare type MercuryGoalAggregatedStatusCount = {
|
|
113575
114419
|
__typename?: 'MercuryGoalAggregatedStatusCount';
|
|
113576
114420
|
krAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
|
|
@@ -115940,7 +116784,7 @@ export declare type Mutation = {
|
|
|
115940
116784
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
115941
116785
|
admin_activateUser?: Maybe<AdminActiveUserResponsePayload>;
|
|
115942
116786
|
admin_assignRole?: Maybe<AdminAssignRoleResponsePayload>;
|
|
115943
|
-
admin_auditLogEventExport?: Maybe<
|
|
116787
|
+
admin_auditLogEventExport?: Maybe<AdminAuditLogEventExportResponsePayload>;
|
|
115944
116788
|
admin_createAccessUrl?: Maybe<AdminAccessUrlCreationResponsePayload>;
|
|
115945
116789
|
admin_createInvitePolicy?: Maybe<AdminCreateInvitePolicyResponsePayload>;
|
|
115946
116790
|
admin_deactivateUser?: Maybe<AdminDeactivateResponsePayload>;
|
|
@@ -115958,11 +116802,8 @@ export declare type Mutation = {
|
|
|
115958
116802
|
agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
115959
116803
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
115960
116804
|
agentStudio_createAndRunBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
115961
|
-
agentStudio_createBatchEvaluationJob: AgentStudioCreateBatchEvaluationJobPayload;
|
|
115962
116805
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
115963
116806
|
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
115964
|
-
agentStudio_deleteDataset: AgentStudioDeleteDatasetPayload;
|
|
115965
|
-
agentStudio_deleteDatasetItem: AgentStudioDeleteDatasetItemPayload;
|
|
115966
116807
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
115967
116808
|
agentStudio_deleteWidget?: Maybe<AgentStudioDeleteWidgetPayload>;
|
|
115968
116809
|
agentStudio_modifyDatasetItem?: Maybe<AgentStudioUpdateDatasetItemPayload>;
|
|
@@ -115980,7 +116821,6 @@ export declare type Mutation = {
|
|
|
115980
116821
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
115981
116822
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
115982
116823
|
agentStudio_updateCreatePermissionMode?: Maybe<AgentStudioUpdateCreatePermissionModePayload>;
|
|
115983
|
-
agentStudio_updateDatasetItem: AgentStudioUpdateDatasetItemPayload;
|
|
115984
116824
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
115985
116825
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
115986
116826
|
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
@@ -116001,6 +116841,8 @@ export declare type Mutation = {
|
|
|
116001
116841
|
assetsDM_configureDefaultDataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
116002
116842
|
assetsDM_createAttributePriority?: Maybe<AssetsDmCreateAttributePriorityPayload>;
|
|
116003
116843
|
assetsDM_createCleansingReason?: Maybe<AssetsDmCreateCleansingReasonResponse>;
|
|
116844
|
+
assetsDM_createDataDictionaryGroup?: Maybe<AssetsDmCreateDataDictionaryGroupResponse>;
|
|
116845
|
+
assetsDM_createDataDictionaryGroupValue?: Maybe<AssetsDmCreateDataDictionaryGroupValueResponse>;
|
|
116004
116846
|
assetsDM_createDataSource?: Maybe<AssetsDmCreateDataSourcePayload>;
|
|
116005
116847
|
assetsDM_createDataSourceType?: Maybe<AssetsDmCreateDataSourceTypeResponse>;
|
|
116006
116848
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
@@ -116014,6 +116856,8 @@ export declare type Mutation = {
|
|
|
116014
116856
|
assetsDM_deleteAttributePriority?: Maybe<AssetsDmAttributePriorityResponse>;
|
|
116015
116857
|
assetsDM_deleteCleansingReason?: Maybe<AssetsDmDeleteCleansingReasonResponse>;
|
|
116016
116858
|
assetsDM_deleteDataDictionary?: Maybe<AssetsDmDeleteDataDictionaryResponse>;
|
|
116859
|
+
assetsDM_deleteDataDictionaryGroup?: Maybe<AssetsDmDeleteDataDictionaryGroupResponse>;
|
|
116860
|
+
assetsDM_deleteDataDictionaryGroupValue?: Maybe<AssetsDmDeleteDataDictionaryGroupValueResponse>;
|
|
116017
116861
|
assetsDM_deleteDataSource?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
116018
116862
|
assetsDM_deleteDataSourceType?: Maybe<AssetsDmDeleteDataSourceTypeResponse>;
|
|
116019
116863
|
assetsDM_deleteDefaultAttributeMapping?: Maybe<AssetsDmDeleteDefaultAttributeMappingResponse>;
|
|
@@ -116021,6 +116865,8 @@ export declare type Mutation = {
|
|
|
116021
116865
|
assetsDM_deleteSavedSearch?: Maybe<AssetsDmSavedSearchesDeleteResponse>;
|
|
116022
116866
|
assetsDM_dissociateObjectTag?: Maybe<AssetsDmObjectTagDissociateResponse>;
|
|
116023
116867
|
assetsDM_editDataDictionary?: Maybe<AssetsDmEditDataDictionaryResponse>;
|
|
116868
|
+
assetsDM_editDataDictionaryGroup?: Maybe<AssetsDmEditDataDictionaryGroupResponse>;
|
|
116869
|
+
assetsDM_editDataDictionaryGroupValue?: Maybe<AssetsDmEditDataDictionaryGroupValueResponse>;
|
|
116024
116870
|
assetsDM_editDefaultAttributeMapping?: Maybe<AssetsDmEditDefaultAttributeMappingResponse>;
|
|
116025
116871
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
116026
116872
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
@@ -116118,6 +116964,7 @@ export declare type Mutation = {
|
|
|
116118
116964
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
116119
116965
|
confluence_generateForgeContextToken?: Maybe<ConfluenceForgeContextTokenPayload>;
|
|
116120
116966
|
confluence_generateLegacyEditorReport?: Maybe<ConfluenceSpaceReportPayload>;
|
|
116967
|
+
confluence_generateSearchPerformedEvent?: Maybe<ConfluenceGenerateSearchPerformedEventPayload>;
|
|
116121
116968
|
confluence_generateSpacePermissionAuditReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
116122
116969
|
confluence_insertOfflineVersion?: Maybe<ConfluenceInsertOfflineVersionPayload>;
|
|
116123
116970
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
@@ -116168,6 +117015,7 @@ export declare type Mutation = {
|
|
|
116168
117015
|
confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
|
|
116169
117016
|
confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
|
|
116170
117017
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
117018
|
+
confluence_updateShareableLink?: Maybe<ConfluenceUpdateShareableLinksPayload>;
|
|
116171
117019
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
116172
117020
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
116173
117021
|
confluence_updateTitleEmoji?: Maybe<ConfluenceUpdateTitleEmojiPayload>;
|
|
@@ -116189,10 +117037,12 @@ export declare type Mutation = {
|
|
|
116189
117037
|
cpls_addContributions?: Maybe<CplsAddContributionsPayload>;
|
|
116190
117038
|
cpls_addContributorScopeAssociation?: Maybe<CplsAddContributorScopeAssociationPayload>;
|
|
116191
117039
|
cpls_addContributorWorkAssociation?: Maybe<CplsAddContributorWorkAssociationPayload>;
|
|
117040
|
+
cpls_addWorkScopeAssociations?: Maybe<CplsAddWorkScopeAssociationsPayload>;
|
|
116192
117041
|
cpls_createCustomContributionTarget?: Maybe<CplsCreateCustomContributionTargetPayload>;
|
|
116193
117042
|
cpls_createCustomContributionTargetWithWorkAssociation?: Maybe<CplsCreateCustomContributionTargetWithWorkAssociationPayload>;
|
|
116194
117043
|
cpls_deleteContributorScopeAssociation?: Maybe<CplsDeleteContributorScopeAssociationPayload>;
|
|
116195
117044
|
cpls_deleteContributorWorkAssociation?: Maybe<CplsDeleteContributorWorkAssociationPayload>;
|
|
117045
|
+
cpls_deleteWorkScopeAssociations?: Maybe<CplsDeleteWorkScopeAssociationsPayload>;
|
|
116196
117046
|
cpls_importCapacityData?: Maybe<CplsImportCapacityDataPayload>;
|
|
116197
117047
|
cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
|
|
116198
117048
|
cpls_updateFilters?: Maybe<CplsUpdateFiltersPayload>;
|
|
@@ -116428,6 +117278,8 @@ export declare type Mutation = {
|
|
|
116428
117278
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
116429
117279
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
116430
117280
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
117281
|
+
jira_applySuggestionAction?: Maybe<JiraApplySuggestionActionPayload>;
|
|
117282
|
+
jira_applySuggestionGroupAction?: Maybe<JiraApplySuggestionGroupActionPayload>;
|
|
116431
117283
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
116432
117284
|
jira_archiveIssueAsync?: Maybe<JiraIssueArchiveAsyncPayload>;
|
|
116433
117285
|
jira_associateProjectToFieldScheme?: Maybe<JiraAssociateProjectToFieldSchemePayload>;
|
|
@@ -116443,6 +117295,7 @@ export declare type Mutation = {
|
|
|
116443
117295
|
jira_createIssueSearchFormattingRule?: Maybe<JiraCreateIssueSearchFormattingRulePayload>;
|
|
116444
117296
|
jira_createIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
116445
117297
|
jira_customizeProjectLevelSidebarMenuItem?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
|
|
117298
|
+
jira_declineBoardViewsForWorkflows?: Maybe<JiraDeclineBoardViewsForWorkflowsPayload>;
|
|
116446
117299
|
jira_deleteBoardViewStatusColumn?: Maybe<JiraDeleteBoardViewStatusColumnPayload>;
|
|
116447
117300
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
116448
117301
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
@@ -116452,6 +117305,8 @@ export declare type Mutation = {
|
|
|
116452
117305
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
116453
117306
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
116454
117307
|
jira_dismissAiAgentSession?: Maybe<JiraDismissAiAgentSessionPayload>;
|
|
117308
|
+
jira_dismissSuggestion?: Maybe<JiraDismissSuggestionPayload>;
|
|
117309
|
+
jira_dismissSuggestionGroup?: Maybe<JiraDismissSuggestionGroupPayload>;
|
|
116455
117310
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
116456
117311
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
116457
117312
|
jira_listSettingMigrationMutation?: Maybe<JiraListSettingMigrationPayload>;
|
|
@@ -116520,6 +117375,7 @@ export declare type Mutation = {
|
|
|
116520
117375
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
116521
117376
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
116522
117377
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
117378
|
+
jsmAgentWorkspace_updateLocations?: Maybe<Scalars['String']['output']>;
|
|
116523
117379
|
jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
|
|
116524
117380
|
jsmChannels_executeResolutionPlanAction: JsmChannelsResolutionPlanActionPayload;
|
|
116525
117381
|
jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
|
|
@@ -116713,18 +117569,22 @@ export declare type Mutation = {
|
|
|
116713
117569
|
shepherd?: Maybe<ShepherdMutation>;
|
|
116714
117570
|
signInvocationTokenForUI?: Maybe<SignInvocationTokenForUiResponse>;
|
|
116715
117571
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
117572
|
+
spf_addPlanOwner?: Maybe<SpfUpsertPlanOwnerPayload>;
|
|
116716
117573
|
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
116717
117574
|
spf_createAsk?: Maybe<SpfUpsertAskPayload>;
|
|
116718
117575
|
spf_createAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
116719
117576
|
spf_createAskUpdate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
116720
117577
|
spf_createPlan?: Maybe<SpfUpsertPlanPayload>;
|
|
116721
117578
|
spf_createPlanScenario?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
117579
|
+
spf_createPlanScenarioInvestment?: Maybe<SpfUpsertPlanScenarioInvestmentPayload>;
|
|
116722
117580
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
116723
117581
|
spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
|
|
116724
117582
|
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
116725
117583
|
spf_deleteAskUpdate?: Maybe<SpfDeleteAskUpdatePayload>;
|
|
116726
117584
|
spf_deletePlan?: Maybe<SpfDeletePlanPayload>;
|
|
116727
117585
|
spf_deletePlanScenario?: Maybe<SpfDeletePlanScenarioPayload>;
|
|
117586
|
+
spf_deletePlanScenarioInvestment?: Maybe<SpfDeletePlanScenarioInvestmentPayload>;
|
|
117587
|
+
spf_removePlanOwner?: Maybe<SpfRemovePlanOwnerPayload>;
|
|
116728
117588
|
spf_updateAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
116729
117589
|
spf_updateAskDescription?: Maybe<SpfUpsertAskPayload>;
|
|
116730
117590
|
spf_updateAskImpactedWork?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -116741,6 +117601,9 @@ export declare type Mutation = {
|
|
|
116741
117601
|
spf_updatePlanDescription?: Maybe<SpfUpsertPlanPayload>;
|
|
116742
117602
|
spf_updatePlanName?: Maybe<SpfUpsertPlanPayload>;
|
|
116743
117603
|
spf_updatePlanPortfolio?: Maybe<SpfUpsertPlanPayload>;
|
|
117604
|
+
spf_updatePlanScenarioInvestmentCommittedEffort?: Maybe<SpfUpsertPlanScenarioInvestmentPayload>;
|
|
117605
|
+
spf_updatePlanScenarioInvestmentCommittedOwner?: Maybe<SpfUpsertPlanScenarioInvestmentPayload>;
|
|
117606
|
+
spf_updatePlanScenarioInvestmentInvestment?: Maybe<SpfUpsertPlanScenarioInvestmentPayload>;
|
|
116744
117607
|
spf_updatePlanScenarioName?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
116745
117608
|
spf_updatePlanScenarioStatus?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
116746
117609
|
spf_updatePlanStatus?: Maybe<SpfUpsertPlanPayload>;
|
|
@@ -116761,6 +117624,7 @@ export declare type Mutation = {
|
|
|
116761
117624
|
stakeholderComms_deleteStakeholder?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
116762
117625
|
stakeholderComms_deleteSubscribers?: Maybe<Scalars['Boolean']['output']>;
|
|
116763
117626
|
stakeholderComms_getPreSignedUrl?: Maybe<StakeholderCommsPreSignedUrlResponse>;
|
|
117627
|
+
stakeholderComms_issueSsl?: Maybe<StakeholderCommsIssueSslResponse>;
|
|
116764
117628
|
stakeholderComms_publishPage?: Maybe<StakeholderCommsPageResponse>;
|
|
116765
117629
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
116766
117630
|
stakeholderComms_removeStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
@@ -116768,12 +117632,14 @@ export declare type Mutation = {
|
|
|
116768
117632
|
stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
116769
117633
|
stakeholderComms_resendStakeholderInvite?: Maybe<StakeholderCommsResendInviteResponse>;
|
|
116770
117634
|
stakeholderComms_unsubscribeSubscriber?: Maybe<StakeholderCommsUnsubscribeSubscriberResponse>;
|
|
117635
|
+
stakeholderComms_updateCustomDomain?: Maybe<StakeholderCommsUpdateCustomDomainResponse>;
|
|
116771
117636
|
stakeholderComms_updateDraftPage?: Maybe<StakeholderCommsPageResponse>;
|
|
116772
117637
|
stakeholderComms_updateIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
116773
117638
|
stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
|
|
116774
117639
|
stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
116775
117640
|
stakeholderComms_updateStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
116776
117641
|
stakeholderComms_validateSubscriberToken?: Maybe<Scalars['Boolean']['output']>;
|
|
117642
|
+
stakeholderComms_verifyDns?: Maybe<StakeholderCommsVerifyDnsResponse>;
|
|
116777
117643
|
startSprint?: Maybe<SprintResponse>;
|
|
116778
117644
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
116779
117645
|
team?: Maybe<TeamMutation>;
|
|
@@ -116968,12 +117834,6 @@ export declare type MutationAgentStudio_CreateAndRunBatchEvaluationJobArgs = {
|
|
|
116968
117834
|
productType: AgentStudioProductType;
|
|
116969
117835
|
projectContainerAri: Scalars['ID']['input'];
|
|
116970
117836
|
};
|
|
116971
|
-
export declare type MutationAgentStudio_CreateBatchEvaluationJobArgs = {
|
|
116972
|
-
cloudId: Scalars['String']['input'];
|
|
116973
|
-
input: AgentStudioCreateBatchEvaluationJobInput;
|
|
116974
|
-
productType: AgentStudioProductType;
|
|
116975
|
-
projectContainerAri: Scalars['ID']['input'];
|
|
116976
|
-
};
|
|
116977
117837
|
export declare type MutationAgentStudio_CreateScenarioArgs = {
|
|
116978
117838
|
cloudId: Scalars['String']['input'];
|
|
116979
117839
|
input: AgentStudioCreateScenarioInput;
|
|
@@ -116981,18 +117841,6 @@ export declare type MutationAgentStudio_CreateScenarioArgs = {
|
|
|
116981
117841
|
export declare type MutationAgentStudio_DeleteAgentArgs = {
|
|
116982
117842
|
id: Scalars['ID']['input'];
|
|
116983
117843
|
};
|
|
116984
|
-
export declare type MutationAgentStudio_DeleteDatasetArgs = {
|
|
116985
|
-
cloudId: Scalars['String']['input'];
|
|
116986
|
-
id: Scalars['ID']['input'];
|
|
116987
|
-
productType: AgentStudioProductType;
|
|
116988
|
-
projectContainerAri: Scalars['ID']['input'];
|
|
116989
|
-
};
|
|
116990
|
-
export declare type MutationAgentStudio_DeleteDatasetItemArgs = {
|
|
116991
|
-
cloudId: Scalars['String']['input'];
|
|
116992
|
-
id: Scalars['ID']['input'];
|
|
116993
|
-
productType: AgentStudioProductType;
|
|
116994
|
-
projectContainerAri: Scalars['ID']['input'];
|
|
116995
|
-
};
|
|
116996
117844
|
export declare type MutationAgentStudio_DeleteScenarioArgs = {
|
|
116997
117845
|
id: Scalars['ID']['input'];
|
|
116998
117846
|
};
|
|
@@ -117071,12 +117919,6 @@ export declare type MutationAgentStudio_UpdateCreatePermissionModeArgs = {
|
|
|
117071
117919
|
cloudId: Scalars['ID']['input'];
|
|
117072
117920
|
mode: AgentStudioCreateAgentPermissionMode;
|
|
117073
117921
|
};
|
|
117074
|
-
export declare type MutationAgentStudio_UpdateDatasetItemArgs = {
|
|
117075
|
-
cloudId: Scalars['String']['input'];
|
|
117076
|
-
input: AgentStudioUpdateDatasetItemInput;
|
|
117077
|
-
productType: AgentStudioProductType;
|
|
117078
|
-
projectContainerAri: Scalars['ID']['input'];
|
|
117079
|
-
};
|
|
117080
117922
|
export declare type MutationAgentStudio_UpdateScenarioArgs = {
|
|
117081
117923
|
id: Scalars['ID']['input'];
|
|
117082
117924
|
input: AgentStudioUpdateScenarioInput;
|
|
@@ -117151,6 +117993,16 @@ export declare type MutationAssetsDm_CreateCleansingReasonArgs = {
|
|
|
117151
117993
|
input: AssetsDmCreateCleansingReasonInput;
|
|
117152
117994
|
workspaceId: Scalars['ID']['input'];
|
|
117153
117995
|
};
|
|
117996
|
+
export declare type MutationAssetsDm_CreateDataDictionaryGroupArgs = {
|
|
117997
|
+
cloudId: Scalars['ID']['input'];
|
|
117998
|
+
input: AssetsDmCreateDataDictionaryGroupInput;
|
|
117999
|
+
workspaceId: Scalars['ID']['input'];
|
|
118000
|
+
};
|
|
118001
|
+
export declare type MutationAssetsDm_CreateDataDictionaryGroupValueArgs = {
|
|
118002
|
+
cloudId: Scalars['ID']['input'];
|
|
118003
|
+
input: AssetsDmCreateDataDictionaryGroupValueInput;
|
|
118004
|
+
workspaceId: Scalars['ID']['input'];
|
|
118005
|
+
};
|
|
117154
118006
|
export declare type MutationAssetsDm_CreateDataSourceArgs = {
|
|
117155
118007
|
cloudId: Scalars['ID']['input'];
|
|
117156
118008
|
input: AssetsDmCreateDataSourceInput;
|
|
@@ -117226,6 +118078,16 @@ export declare type MutationAssetsDm_DeleteDataDictionaryArgs = {
|
|
|
117226
118078
|
computeDictionaryId: Scalars['ID']['input'];
|
|
117227
118079
|
workspaceId: Scalars['ID']['input'];
|
|
117228
118080
|
};
|
|
118081
|
+
export declare type MutationAssetsDm_DeleteDataDictionaryGroupArgs = {
|
|
118082
|
+
cloudId: Scalars['ID']['input'];
|
|
118083
|
+
computeDictionaryGroupId: Scalars['ID']['input'];
|
|
118084
|
+
workspaceId: Scalars['ID']['input'];
|
|
118085
|
+
};
|
|
118086
|
+
export declare type MutationAssetsDm_DeleteDataDictionaryGroupValueArgs = {
|
|
118087
|
+
cloudId: Scalars['ID']['input'];
|
|
118088
|
+
computeDictionaryValueId: Scalars['ID']['input'];
|
|
118089
|
+
workspaceId: Scalars['ID']['input'];
|
|
118090
|
+
};
|
|
117229
118091
|
export declare type MutationAssetsDm_DeleteDataSourceArgs = {
|
|
117230
118092
|
cloudId: Scalars['ID']['input'];
|
|
117231
118093
|
input: AssetsDmDeleteDataSourceInput;
|
|
@@ -117261,6 +118123,16 @@ export declare type MutationAssetsDm_EditDataDictionaryArgs = {
|
|
|
117261
118123
|
payload: AssetsDmEditDataDictionaryInput;
|
|
117262
118124
|
workspaceId: Scalars['ID']['input'];
|
|
117263
118125
|
};
|
|
118126
|
+
export declare type MutationAssetsDm_EditDataDictionaryGroupArgs = {
|
|
118127
|
+
cloudId: Scalars['ID']['input'];
|
|
118128
|
+
input: AssetsDmEditDataDictionaryGroupInput;
|
|
118129
|
+
workspaceId: Scalars['ID']['input'];
|
|
118130
|
+
};
|
|
118131
|
+
export declare type MutationAssetsDm_EditDataDictionaryGroupValueArgs = {
|
|
118132
|
+
cloudId: Scalars['ID']['input'];
|
|
118133
|
+
input: AssetsDmEditDataDictionaryGroupValueInput;
|
|
118134
|
+
workspaceId: Scalars['ID']['input'];
|
|
118135
|
+
};
|
|
117264
118136
|
export declare type MutationAssetsDm_EditDefaultAttributeMappingArgs = {
|
|
117265
118137
|
cloudId: Scalars['ID']['input'];
|
|
117266
118138
|
payload: AssetsDmEditDefaultAttributeMappingInput;
|
|
@@ -117603,6 +118475,10 @@ export declare type MutationConfluence_GenerateLegacyEditorReportArgs = {
|
|
|
117603
118475
|
contentType: ConfluenceLegacyEditorReportType;
|
|
117604
118476
|
spaceId: Scalars['ID']['input'];
|
|
117605
118477
|
};
|
|
118478
|
+
export declare type MutationConfluence_GenerateSearchPerformedEventArgs = {
|
|
118479
|
+
cloudId: Scalars['ID']['input'];
|
|
118480
|
+
input: ConfluenceGenerateSearchPerformedEventInput;
|
|
118481
|
+
};
|
|
117606
118482
|
export declare type MutationConfluence_GenerateSpacePermissionAuditReportArgs = {
|
|
117607
118483
|
cloudId: Scalars['ID']['input'];
|
|
117608
118484
|
reportType: ConfluenceSpacePermissionAuditReportType;
|
|
@@ -117808,6 +118684,10 @@ export declare type MutationConfluence_UpdateQuestionArgs = {
|
|
|
117808
118684
|
cloudId: Scalars['ID']['input'];
|
|
117809
118685
|
input: ConfluenceUpdateQuestionInput;
|
|
117810
118686
|
};
|
|
118687
|
+
export declare type MutationConfluence_UpdateShareableLinkArgs = {
|
|
118688
|
+
cloudId: Scalars['ID']['input'];
|
|
118689
|
+
input: ConfluenceUpdateShareableLinksInput;
|
|
118690
|
+
};
|
|
117811
118691
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
117812
118692
|
cloudId: Scalars['ID']['input'];
|
|
117813
118693
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -117885,6 +118765,9 @@ export declare type MutationCpls_AddContributorScopeAssociationArgs = {
|
|
|
117885
118765
|
export declare type MutationCpls_AddContributorWorkAssociationArgs = {
|
|
117886
118766
|
input: CplsAddContributorWorkAssociationInput;
|
|
117887
118767
|
};
|
|
118768
|
+
export declare type MutationCpls_AddWorkScopeAssociationsArgs = {
|
|
118769
|
+
input: CplsAddWorkScopeAssociationsInput;
|
|
118770
|
+
};
|
|
117888
118771
|
export declare type MutationCpls_CreateCustomContributionTargetArgs = {
|
|
117889
118772
|
input: CplsCreateCustomContributionTargetInput;
|
|
117890
118773
|
};
|
|
@@ -117897,6 +118780,9 @@ export declare type MutationCpls_DeleteContributorScopeAssociationArgs = {
|
|
|
117897
118780
|
export declare type MutationCpls_DeleteContributorWorkAssociationArgs = {
|
|
117898
118781
|
input: CplsDeleteContributorWorkAssociationInput;
|
|
117899
118782
|
};
|
|
118783
|
+
export declare type MutationCpls_DeleteWorkScopeAssociationsArgs = {
|
|
118784
|
+
input: CplsDeleteWorkScopeAssociationsInput;
|
|
118785
|
+
};
|
|
117900
118786
|
export declare type MutationCpls_ImportCapacityDataArgs = {
|
|
117901
118787
|
input: CplsImportCapacityDataInput;
|
|
117902
118788
|
};
|
|
@@ -118421,6 +119307,7 @@ export declare type MutationEnableExperimentArgs = {
|
|
|
118421
119307
|
experimentKey: Scalars['String']['input'];
|
|
118422
119308
|
};
|
|
118423
119309
|
export declare type MutationEnablePublicLinkForPageArgs = {
|
|
119310
|
+
accessType?: InputMaybe<ConfluencePublicLinkAccessType>;
|
|
118424
119311
|
pageId: Scalars['ID']['input'];
|
|
118425
119312
|
};
|
|
118426
119313
|
export declare type MutationFavouritePageArgs = {
|
|
@@ -118667,6 +119554,12 @@ export declare type MutationJira_AddTimelineIssueLinkArgs = {
|
|
|
118667
119554
|
cloudId: Scalars['ID']['input'];
|
|
118668
119555
|
input: JiraAddTimelineIssueLinkInput;
|
|
118669
119556
|
};
|
|
119557
|
+
export declare type MutationJira_ApplySuggestionActionArgs = {
|
|
119558
|
+
input: JiraApplySuggestionInput;
|
|
119559
|
+
};
|
|
119560
|
+
export declare type MutationJira_ApplySuggestionGroupActionArgs = {
|
|
119561
|
+
input: JiraApplySuggestionGroupInput;
|
|
119562
|
+
};
|
|
118670
119563
|
export declare type MutationJira_ArchiveIssueArgs = {
|
|
118671
119564
|
input: JiraIssueArchiveInput;
|
|
118672
119565
|
};
|
|
@@ -118717,6 +119610,9 @@ export declare type MutationJira_CreateIssueTypeArgs = {
|
|
|
118717
119610
|
export declare type MutationJira_CustomizeProjectLevelSidebarMenuItemArgs = {
|
|
118718
119611
|
input: JiraCustomizeProjectLevelSidebarMenuItemInput;
|
|
118719
119612
|
};
|
|
119613
|
+
export declare type MutationJira_DeclineBoardViewsForWorkflowsArgs = {
|
|
119614
|
+
input: JiraDeclineBoardViewsForWorkflowsInput;
|
|
119615
|
+
};
|
|
118720
119616
|
export declare type MutationJira_DeleteBoardViewStatusColumnArgs = {
|
|
118721
119617
|
input: JiraDeleteBoardViewStatusColumnInput;
|
|
118722
119618
|
};
|
|
@@ -118745,6 +119641,12 @@ export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
|
118745
119641
|
export declare type MutationJira_DismissAiAgentSessionArgs = {
|
|
118746
119642
|
input?: InputMaybe<JiraDismissAiAgentSessionInput>;
|
|
118747
119643
|
};
|
|
119644
|
+
export declare type MutationJira_DismissSuggestionArgs = {
|
|
119645
|
+
input: JiraDismissSuggestionInput;
|
|
119646
|
+
};
|
|
119647
|
+
export declare type MutationJira_DismissSuggestionGroupArgs = {
|
|
119648
|
+
input: JiraDismissSuggestionGroupInput;
|
|
119649
|
+
};
|
|
118748
119650
|
export declare type MutationJira_DragAndDropBoardViewIssueArgs = {
|
|
118749
119651
|
input: JiraDragAndDropBoardViewIssueInput;
|
|
118750
119652
|
};
|
|
@@ -118993,7 +119895,7 @@ export declare type MutationJsmConversation_CloseConversationArgs = {
|
|
|
118993
119895
|
input: JsmConversationCloseConversationInput;
|
|
118994
119896
|
};
|
|
118995
119897
|
export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
118996
|
-
content: Scalars['
|
|
119898
|
+
content: Scalars['KitsuneADF']['input'];
|
|
118997
119899
|
source?: InputMaybe<KitsuneSourceInput>;
|
|
118998
119900
|
spaceAri: Scalars['ID']['input'];
|
|
118999
119901
|
title: Scalars['String']['input'];
|
|
@@ -119561,6 +120463,9 @@ export declare type MutationSignInvocationTokenForUiArgs = {
|
|
|
119561
120463
|
export declare type MutationSoftDeleteSpaceArgs = {
|
|
119562
120464
|
spaceKey: Scalars['String']['input'];
|
|
119563
120465
|
};
|
|
120466
|
+
export declare type MutationSpf_AddPlanOwnerArgs = {
|
|
120467
|
+
input: SpfAddPlanOwnerInput;
|
|
120468
|
+
};
|
|
119564
120469
|
export declare type MutationSpf_AttachAskLinkArgs = {
|
|
119565
120470
|
input: SpfAttachAskLinkInput;
|
|
119566
120471
|
};
|
|
@@ -119579,6 +120484,9 @@ export declare type MutationSpf_CreatePlanArgs = {
|
|
|
119579
120484
|
export declare type MutationSpf_CreatePlanScenarioArgs = {
|
|
119580
120485
|
input: SpfCreatePlanScenarioInput;
|
|
119581
120486
|
};
|
|
120487
|
+
export declare type MutationSpf_CreatePlanScenarioInvestmentArgs = {
|
|
120488
|
+
input: SpfCreatePlanScenarioInvestmentInput;
|
|
120489
|
+
};
|
|
119582
120490
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
119583
120491
|
input: SpfDeleteAskInput;
|
|
119584
120492
|
};
|
|
@@ -119597,6 +120505,12 @@ export declare type MutationSpf_DeletePlanArgs = {
|
|
|
119597
120505
|
export declare type MutationSpf_DeletePlanScenarioArgs = {
|
|
119598
120506
|
input: SpfDeletePlanScenarioInput;
|
|
119599
120507
|
};
|
|
120508
|
+
export declare type MutationSpf_DeletePlanScenarioInvestmentArgs = {
|
|
120509
|
+
input: SpfDeletePlanScenarioInvestmentInput;
|
|
120510
|
+
};
|
|
120511
|
+
export declare type MutationSpf_RemovePlanOwnerArgs = {
|
|
120512
|
+
input: SpfRemovePlanOwnerInput;
|
|
120513
|
+
};
|
|
119600
120514
|
export declare type MutationSpf_UpdateAskCommentArgs = {
|
|
119601
120515
|
input: SpfUpdateAskCommentDataInput;
|
|
119602
120516
|
};
|
|
@@ -119645,6 +120559,15 @@ export declare type MutationSpf_UpdatePlanNameArgs = {
|
|
|
119645
120559
|
export declare type MutationSpf_UpdatePlanPortfolioArgs = {
|
|
119646
120560
|
input: SpfUpdatePlanPortfolioInput;
|
|
119647
120561
|
};
|
|
120562
|
+
export declare type MutationSpf_UpdatePlanScenarioInvestmentCommittedEffortArgs = {
|
|
120563
|
+
input: SpfUpdatePlanScenarioInvestmentCommittedEffortInput;
|
|
120564
|
+
};
|
|
120565
|
+
export declare type MutationSpf_UpdatePlanScenarioInvestmentCommittedOwnerArgs = {
|
|
120566
|
+
input: SpfUpdatePlanScenarioInvestmentCommittedOwnerInput;
|
|
120567
|
+
};
|
|
120568
|
+
export declare type MutationSpf_UpdatePlanScenarioInvestmentInvestmentArgs = {
|
|
120569
|
+
input: SpfUpdatePlanScenarioInvestmentInvestmentInput;
|
|
120570
|
+
};
|
|
119648
120571
|
export declare type MutationSpf_UpdatePlanScenarioNameArgs = {
|
|
119649
120572
|
input: SpfUpdatePlanScenarioNameInput;
|
|
119650
120573
|
};
|
|
@@ -119709,6 +120632,9 @@ export declare type MutationStakeholderComms_DeleteSubscribersArgs = {
|
|
|
119709
120632
|
export declare type MutationStakeholderComms_GetPreSignedUrlArgs = {
|
|
119710
120633
|
input: StakeholderCommsPreSignedUrlInput;
|
|
119711
120634
|
};
|
|
120635
|
+
export declare type MutationStakeholderComms_IssueSslArgs = {
|
|
120636
|
+
input: StakeholderCommsIssueSslInput;
|
|
120637
|
+
};
|
|
119712
120638
|
export declare type MutationStakeholderComms_PublishPageArgs = {
|
|
119713
120639
|
draftPageId: Scalars['String']['input'];
|
|
119714
120640
|
};
|
|
@@ -119731,6 +120657,9 @@ export declare type MutationStakeholderComms_ResendStakeholderInviteArgs = {
|
|
|
119731
120657
|
export declare type MutationStakeholderComms_UnsubscribeSubscriberArgs = {
|
|
119732
120658
|
token: Scalars['String']['input'];
|
|
119733
120659
|
};
|
|
120660
|
+
export declare type MutationStakeholderComms_UpdateCustomDomainArgs = {
|
|
120661
|
+
input: StakeholderCommsUpdateCustomDomainInput;
|
|
120662
|
+
};
|
|
119734
120663
|
export declare type MutationStakeholderComms_UpdateDraftPageArgs = {
|
|
119735
120664
|
page: StakeholderCommsUpdatePageInputType;
|
|
119736
120665
|
};
|
|
@@ -119750,6 +120679,9 @@ export declare type MutationStakeholderComms_UpdateStakeholderGroupArgs = {
|
|
|
119750
120679
|
export declare type MutationStakeholderComms_ValidateSubscriberTokenArgs = {
|
|
119751
120680
|
token: Scalars['String']['input'];
|
|
119752
120681
|
};
|
|
120682
|
+
export declare type MutationStakeholderComms_VerifyDnsArgs = {
|
|
120683
|
+
input: StakeholderCommsVerifyDnsInput;
|
|
120684
|
+
};
|
|
119753
120685
|
export declare type MutationStartSprintArgs = {
|
|
119754
120686
|
input?: InputMaybe<StartSprintInput>;
|
|
119755
120687
|
};
|
|
@@ -122647,6 +123579,7 @@ export declare type PublicLinkOnboardingReference = {
|
|
|
122647
123579
|
};
|
|
122648
123580
|
export declare type PublicLinkPage = {
|
|
122649
123581
|
__typename?: 'PublicLinkPage';
|
|
123582
|
+
accessType?: Maybe<ConfluencePublicLinkAccessType>;
|
|
122650
123583
|
lastEnabledBy?: Maybe<Scalars['String']['output']>;
|
|
122651
123584
|
lastEnabledByUser?: Maybe<Person>;
|
|
122652
123585
|
lastEnabledDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -122920,15 +123853,12 @@ export declare type Query = {
|
|
|
122920
123853
|
agentStudio_batchEvalConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
|
|
122921
123854
|
agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
|
|
122922
123855
|
agentStudio_batchEvaluationJobList?: Maybe<AgentStudioBatchEvaluationJobsResult>;
|
|
122923
|
-
agentStudio_batchEvaluationJobsResult: AgentStudioBatchEvaluationJobsResult;
|
|
122924
|
-
agentStudio_batchEvaluationResults: AgentStudioEvaluationResultsResult;
|
|
122925
123856
|
agentStudio_batchEvaluationSummary?: Maybe<AgentStudioEvaluationSummary>;
|
|
123857
|
+
agentStudio_canAddMcpServer?: Maybe<AgentStudioCanAddMcpServerResult>;
|
|
122926
123858
|
agentStudio_conversationReportByAgentId?: Maybe<AgentStudioConversationReportByAgentIdResult>;
|
|
122927
123859
|
agentStudio_dataset?: Maybe<AgentStudioDataset>;
|
|
122928
123860
|
agentStudio_datasetItemList?: Maybe<AgentStudioDatasetItemsResult>;
|
|
122929
|
-
agentStudio_datasetItems: AgentStudioDatasetItemsResult;
|
|
122930
123861
|
agentStudio_datasetList?: Maybe<AgentStudioDatasetsResult>;
|
|
122931
|
-
agentStudio_datasets: AgentStudioDatasetsResult;
|
|
122932
123862
|
agentStudio_evaluationProject?: Maybe<AgentStudioBatchEvaluationProject>;
|
|
122933
123863
|
agentStudio_evaluationResultList?: Maybe<AgentStudioEvaluationResultsResult>;
|
|
122934
123864
|
agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
|
|
@@ -122939,11 +123869,9 @@ export declare type Query = {
|
|
|
122939
123869
|
agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
|
|
122940
123870
|
agentStudio_getWidgetsByAgentIdAndContainerType?: Maybe<AgentStudioWidgetsByAgentIdAndContainerTypeResult>;
|
|
122941
123871
|
agentStudio_insightsConfiguration?: Maybe<AgentStudioInsightsConfigurationResult>;
|
|
122942
|
-
agentStudio_jobExecutionHistory: AgentStudioJobExecutionHistory;
|
|
122943
123872
|
agentStudio_jobExecutionHistoryList?: Maybe<AgentStudioJobExecutionHistory>;
|
|
122944
123873
|
agentStudio_jobRun?: Maybe<AgentStudioBatchEvaluationJobRun>;
|
|
122945
123874
|
agentStudio_jobRunList?: Maybe<AgentStudioBatchEvaluationJobRunResult>;
|
|
122946
|
-
agentStudio_jobRuns: AgentStudioBatchEvaluationJobRunResult;
|
|
122947
123875
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
122948
123876
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
122949
123877
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
@@ -122991,6 +123919,8 @@ export declare type Query = {
|
|
|
122991
123919
|
assetsDM_attributePrioritiesList?: Maybe<AssetsDmAttributePrioritiesList>;
|
|
122992
123920
|
assetsDM_attributePriority?: Maybe<AssetsDmAttributePriority>;
|
|
122993
123921
|
assetsDM_dataDictionaries?: Maybe<AssetsDmDataDictionaryResponse>;
|
|
123922
|
+
assetsDM_dataDictionaryGroupValues?: Maybe<AssetsDmDataDictionaryGroupValuesResponse>;
|
|
123923
|
+
assetsDM_dataDictionaryGroups?: Maybe<AssetsDmDataDictionaryGroupsResponse>;
|
|
122994
123924
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceDetailResponse>;
|
|
122995
123925
|
assetsDM_dataSourceConfig?: Maybe<AssetsDmDataSourceConfig>;
|
|
122996
123926
|
assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
|
|
@@ -123039,6 +123969,7 @@ export declare type Query = {
|
|
|
123039
123969
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
123040
123970
|
avpPermissions_hello?: Maybe<AvpPermissionsHelloResponse>;
|
|
123041
123971
|
avp_getChart?: Maybe<AvpChart>;
|
|
123972
|
+
avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
|
|
123042
123973
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
123043
123974
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
123044
123975
|
avpanalytics_listModels?: Maybe<AvpAnalyticsListModelsResponse>;
|
|
@@ -123190,8 +124121,10 @@ export declare type Query = {
|
|
|
123190
124121
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
123191
124122
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
123192
124123
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
124124
|
+
confluence_shareConfiguration?: Maybe<ConfluenceShareConfiguration>;
|
|
123193
124125
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
123194
124126
|
confluence_spacePermissionCombinationsByCriteria?: Maybe<ConfluenceSpacePermissionCombinationConnection>;
|
|
124127
|
+
confluence_spacePermissionsByCombinationId?: Maybe<ConfluenceSpacePermissionConnection>;
|
|
123195
124128
|
confluence_spaceProperty?: Maybe<ConfluenceSpaceProperty>;
|
|
123196
124129
|
confluence_spaceRecommendations?: Maybe<ConfluenceSpaceRecommendations>;
|
|
123197
124130
|
confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
|
|
@@ -123257,6 +124190,7 @@ export declare type Query = {
|
|
|
123257
124190
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
123258
124191
|
cpls_filters?: Maybe<CplsFilterConfigurationType>;
|
|
123259
124192
|
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
124193
|
+
cpls_testFeatureGate?: Maybe<Scalars['Boolean']['output']>;
|
|
123260
124194
|
cpls_workView?: Maybe<CplsWorkView>;
|
|
123261
124195
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
123262
124196
|
crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -123396,6 +124330,7 @@ export declare type Query = {
|
|
|
123396
124330
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
123397
124331
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
123398
124332
|
goals_goalTypeById?: Maybe<TownsquareGoalType>;
|
|
124333
|
+
goals_goalTypesByIds?: Maybe<Array<Maybe<TownsquareGoalType>>>;
|
|
123399
124334
|
goals_metricSearch?: Maybe<TownsquareMetricConnection>;
|
|
123400
124335
|
goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
|
|
123401
124336
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
@@ -123497,10 +124432,12 @@ export declare type Query = {
|
|
|
123497
124432
|
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
|
|
123498
124433
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
123499
124434
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
124435
|
+
jira_suggestionsByContext?: Maybe<JiraSuggestionsConnection>;
|
|
123500
124436
|
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
|
|
123501
124437
|
jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
|
|
123502
124438
|
jira_view?: Maybe<JiraViewResult>;
|
|
123503
124439
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
124440
|
+
jsmAgentWorkspace_locations?: Maybe<JsmAgentWorkspaceLocations>;
|
|
123504
124441
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
123505
124442
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
123506
124443
|
jsmChannels_getExperienceConfigurationByProjectId: JsmChannelsExperienceConfigurationResult;
|
|
@@ -123740,12 +124677,15 @@ export declare type Query = {
|
|
|
123740
124677
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
123741
124678
|
spf_getMediaToken?: Maybe<SpfMediaTokenResult>;
|
|
123742
124679
|
spf_plan?: Maybe<SpfPlanResult>;
|
|
124680
|
+
spf_planScenarioInvestment?: Maybe<SpfPlanScenarioInvestmentResult>;
|
|
124681
|
+
spf_planScenarioInvestmentsByIds?: Maybe<Array<Maybe<SpfPlanScenarioInvestment>>>;
|
|
123743
124682
|
spf_planScenariosByIds?: Maybe<Array<Maybe<SpfPlanScenario>>>;
|
|
123744
124683
|
spf_plans?: Maybe<SpfPlanConnection>;
|
|
123745
124684
|
spf_plansByIds?: Maybe<Array<Maybe<SpfPlan>>>;
|
|
123746
124685
|
spf_resolveImpactedWorkUrl?: Maybe<SpfResolveImpactedWorkUrlPayload>;
|
|
123747
124686
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
123748
124687
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
124688
|
+
stakeholderComms_customDomainStatus?: Maybe<StakeholderCommsCustomDomainStatusResponse>;
|
|
123749
124689
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
123750
124690
|
stakeholderComms_getAssignmentsByStakeholderV2?: Maybe<StakeholderCommsAssignmentConnection>;
|
|
123751
124691
|
stakeholderComms_getComponentUptimePercentage?: Maybe<StakeholderCommsComponentUptimePercentageResponse>;
|
|
@@ -123794,6 +124734,7 @@ export declare type Query = {
|
|
|
123794
124734
|
stakeholderComms_listIncidentsV2?: Maybe<StakeholderCommsIncidentWithUpdatesConnection>;
|
|
123795
124735
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
123796
124736
|
stakeholderComms_listSubscribers?: Maybe<StakeholderCommsListSubscriberResponse>;
|
|
124737
|
+
stakeholderComms_listSubscribersConnection?: Maybe<StakeholderCommsSubscriberConnection>;
|
|
123797
124738
|
stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
|
|
123798
124739
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
123799
124740
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
@@ -124030,8 +124971,8 @@ export declare type QueryAdmin_UserAuthPolicyArgs = {
|
|
|
124030
124971
|
export declare type QueryAdmin_UserProvisioningScimLinksArgs = {
|
|
124031
124972
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
124032
124973
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
124033
|
-
email: AdminUserEmailInput;
|
|
124034
124974
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124975
|
+
input: AdminUserEmailInput;
|
|
124035
124976
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
124036
124977
|
orgId: Scalars['ID']['input'];
|
|
124037
124978
|
};
|
|
@@ -124131,27 +125072,14 @@ export declare type QueryAgentStudio_BatchEvaluationJobListArgs = {
|
|
|
124131
125072
|
productType: AgentStudioProductType;
|
|
124132
125073
|
projectContainerAri: Scalars['ID']['input'];
|
|
124133
125074
|
};
|
|
124134
|
-
export declare type
|
|
124135
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
124136
|
-
agentId: Scalars['String']['input'];
|
|
124137
|
-
cloudId: Scalars['String']['input'];
|
|
124138
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124139
|
-
productType: AgentStudioProductType;
|
|
124140
|
-
projectContainerAri: Scalars['ID']['input'];
|
|
124141
|
-
};
|
|
124142
|
-
export declare type QueryAgentStudio_BatchEvaluationResultsArgs = {
|
|
124143
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
125075
|
+
export declare type QueryAgentStudio_BatchEvaluationSummaryArgs = {
|
|
124144
125076
|
cloudId: Scalars['String']['input'];
|
|
124145
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124146
125077
|
productType: AgentStudioProductType;
|
|
124147
125078
|
projectContainerAri: Scalars['ID']['input'];
|
|
124148
125079
|
runId: Scalars['ID']['input'];
|
|
124149
125080
|
};
|
|
124150
|
-
export declare type
|
|
125081
|
+
export declare type QueryAgentStudio_CanAddMcpServerArgs = {
|
|
124151
125082
|
cloudId: Scalars['String']['input'];
|
|
124152
|
-
productType: AgentStudioProductType;
|
|
124153
|
-
projectContainerAri: Scalars['ID']['input'];
|
|
124154
|
-
runId: Scalars['ID']['input'];
|
|
124155
125083
|
};
|
|
124156
125084
|
export declare type QueryAgentStudio_ConversationReportByAgentIdArgs = {
|
|
124157
125085
|
cloudId: Scalars['String']['input'];
|
|
@@ -124174,14 +125102,6 @@ export declare type QueryAgentStudio_DatasetItemListArgs = {
|
|
|
124174
125102
|
productType: AgentStudioProductType;
|
|
124175
125103
|
projectContainerAri: Scalars['ID']['input'];
|
|
124176
125104
|
};
|
|
124177
|
-
export declare type QueryAgentStudio_DatasetItemsArgs = {
|
|
124178
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
124179
|
-
cloudId: Scalars['String']['input'];
|
|
124180
|
-
datasetId: Scalars['ID']['input'];
|
|
124181
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124182
|
-
productType: AgentStudioProductType;
|
|
124183
|
-
projectContainerAri: Scalars['ID']['input'];
|
|
124184
|
-
};
|
|
124185
125105
|
export declare type QueryAgentStudio_DatasetListArgs = {
|
|
124186
125106
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
124187
125107
|
cloudId: Scalars['String']['input'];
|
|
@@ -124189,13 +125109,6 @@ export declare type QueryAgentStudio_DatasetListArgs = {
|
|
|
124189
125109
|
productType: AgentStudioProductType;
|
|
124190
125110
|
projectContainerAri: Scalars['ID']['input'];
|
|
124191
125111
|
};
|
|
124192
|
-
export declare type QueryAgentStudio_DatasetsArgs = {
|
|
124193
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
124194
|
-
cloudId: Scalars['String']['input'];
|
|
124195
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124196
|
-
productType: AgentStudioProductType;
|
|
124197
|
-
projectContainerAri: Scalars['ID']['input'];
|
|
124198
|
-
};
|
|
124199
125112
|
export declare type QueryAgentStudio_EvaluationProjectArgs = {
|
|
124200
125113
|
cloudId: Scalars['String']['input'];
|
|
124201
125114
|
productType: AgentStudioProductType;
|
|
@@ -124249,13 +125162,6 @@ export declare type QueryAgentStudio_InsightsConfigurationArgs = {
|
|
|
124249
125162
|
cloudId: Scalars['String']['input'];
|
|
124250
125163
|
id: Scalars['ID']['input'];
|
|
124251
125164
|
};
|
|
124252
|
-
export declare type QueryAgentStudio_JobExecutionHistoryArgs = {
|
|
124253
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
124254
|
-
cloudId: Scalars['String']['input'];
|
|
124255
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124256
|
-
productType: AgentStudioProductType;
|
|
124257
|
-
projectContainerAri: Scalars['ID']['input'];
|
|
124258
|
-
};
|
|
124259
125165
|
export declare type QueryAgentStudio_JobExecutionHistoryListArgs = {
|
|
124260
125166
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
124261
125167
|
cloudId: Scalars['String']['input'];
|
|
@@ -124278,15 +125184,6 @@ export declare type QueryAgentStudio_JobRunListArgs = {
|
|
|
124278
125184
|
projectContainerAri: Scalars['ID']['input'];
|
|
124279
125185
|
status?: InputMaybe<AgentStudioJobRunStatus>;
|
|
124280
125186
|
};
|
|
124281
|
-
export declare type QueryAgentStudio_JobRunsArgs = {
|
|
124282
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
124283
|
-
cloudId: Scalars['String']['input'];
|
|
124284
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124285
|
-
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
124286
|
-
productType: AgentStudioProductType;
|
|
124287
|
-
projectContainerAri: Scalars['ID']['input'];
|
|
124288
|
-
status?: InputMaybe<AgentStudioJobRunStatus>;
|
|
124289
|
-
};
|
|
124290
125187
|
export declare type QueryAgentStudio_ScenarioByIdArgs = {
|
|
124291
125188
|
containerId: Scalars['ID']['input'];
|
|
124292
125189
|
id: Scalars['ID']['input'];
|
|
@@ -124513,6 +125410,22 @@ export declare type QueryAssetsDm_DataDictionariesArgs = {
|
|
|
124513
125410
|
sortBy?: InputMaybe<AssetsDmDataDictionarySortBy>;
|
|
124514
125411
|
workspaceId: Scalars['ID']['input'];
|
|
124515
125412
|
};
|
|
125413
|
+
export declare type QueryAssetsDm_DataDictionaryGroupValuesArgs = {
|
|
125414
|
+
cloudId: Scalars['ID']['input'];
|
|
125415
|
+
computeDictionaryGroupId: Scalars['ID']['input'];
|
|
125416
|
+
orders?: InputMaybe<Scalars['String']['input']>;
|
|
125417
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
125418
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
125419
|
+
workspaceId: Scalars['ID']['input'];
|
|
125420
|
+
};
|
|
125421
|
+
export declare type QueryAssetsDm_DataDictionaryGroupsArgs = {
|
|
125422
|
+
cloudId: Scalars['ID']['input'];
|
|
125423
|
+
computeDictionaryId: Scalars['ID']['input'];
|
|
125424
|
+
orders?: InputMaybe<Scalars['String']['input']>;
|
|
125425
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
125426
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
125427
|
+
workspaceId: Scalars['ID']['input'];
|
|
125428
|
+
};
|
|
124516
125429
|
export declare type QueryAssetsDm_DataSourceArgs = {
|
|
124517
125430
|
cloudId: Scalars['ID']['input'];
|
|
124518
125431
|
dataSourceId: Scalars['ID']['input'];
|
|
@@ -124775,6 +125688,11 @@ export declare type QueryAvpPermissions_HelloArgs = {
|
|
|
124775
125688
|
export declare type QueryAvp_GetChartArgs = {
|
|
124776
125689
|
chartAri: Scalars['ID']['input'];
|
|
124777
125690
|
};
|
|
125691
|
+
export declare type QueryAvp_GetChartTemplatesArgs = {
|
|
125692
|
+
cloudId: Scalars['ID']['input'];
|
|
125693
|
+
locations: Array<Scalars['String']['input']>;
|
|
125694
|
+
workspaceId: Scalars['ID']['input'];
|
|
125695
|
+
};
|
|
124778
125696
|
export declare type QueryAvp_GetDashboardArgs = {
|
|
124779
125697
|
dashboardAri: Scalars['ID']['input'];
|
|
124780
125698
|
};
|
|
@@ -125427,6 +126345,9 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
125427
126345
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
125428
126346
|
sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
125429
126347
|
};
|
|
126348
|
+
export declare type QueryConfluence_ShareConfigurationArgs = {
|
|
126349
|
+
cloudId: Scalars['ID']['input'];
|
|
126350
|
+
};
|
|
125430
126351
|
export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
125431
126352
|
cloudId: Scalars['ID']['input'];
|
|
125432
126353
|
contentType: Scalars['String']['input'];
|
|
@@ -125441,6 +126362,12 @@ export declare type QueryConfluence_SpacePermissionCombinationsByCriteriaArgs =
|
|
|
125441
126362
|
orderBy?: InputMaybe<ConfluenceSpacePermissionCombinationsByCriteriaOrder>;
|
|
125442
126363
|
spacePermissionIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
125443
126364
|
};
|
|
126365
|
+
export declare type QueryConfluence_SpacePermissionsByCombinationIdArgs = {
|
|
126366
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126367
|
+
cloudId: Scalars['ID']['input'];
|
|
126368
|
+
combinationId: Scalars['String']['input'];
|
|
126369
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126370
|
+
};
|
|
125444
126371
|
export declare type QueryConfluence_SpacePropertyArgs = {
|
|
125445
126372
|
cloudId: Scalars['ID']['input'];
|
|
125446
126373
|
key: Scalars['String']['input'];
|
|
@@ -125811,6 +126738,9 @@ export declare type QueryCpls_PeopleViewArgs = {
|
|
|
125811
126738
|
filters?: InputMaybe<CplsFiltersInput>;
|
|
125812
126739
|
id: Scalars['ID']['input'];
|
|
125813
126740
|
};
|
|
126741
|
+
export declare type QueryCpls_TestFeatureGateArgs = {
|
|
126742
|
+
cloudId: Scalars['ID']['input'];
|
|
126743
|
+
};
|
|
125814
126744
|
export declare type QueryCpls_WorkViewArgs = {
|
|
125815
126745
|
filters?: InputMaybe<CplsFiltersInput>;
|
|
125816
126746
|
id: Scalars['ID']['input'];
|
|
@@ -126349,6 +127279,9 @@ export declare type QueryGoals_ByIdsArgs = {
|
|
|
126349
127279
|
export declare type QueryGoals_GoalTypeByIdArgs = {
|
|
126350
127280
|
goalTypeId: Scalars['ID']['input'];
|
|
126351
127281
|
};
|
|
127282
|
+
export declare type QueryGoals_GoalTypesByIdsArgs = {
|
|
127283
|
+
goalTypeIds: Array<Scalars['ID']['input']>;
|
|
127284
|
+
};
|
|
126352
127285
|
export declare type QueryGoals_MetricSearchArgs = {
|
|
126353
127286
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126354
127287
|
containerId: Scalars['ID']['input'];
|
|
@@ -126714,6 +127647,9 @@ export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
126714
127647
|
cloudId: Scalars['ID']['input'];
|
|
126715
127648
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
126716
127649
|
};
|
|
127650
|
+
export declare type QueryJira_SuggestionsByContextArgs = {
|
|
127651
|
+
input: JiraSuggestionsByContextInput;
|
|
127652
|
+
};
|
|
126717
127653
|
export declare type QueryJira_UserSegRedirectAdviceArgs = {
|
|
126718
127654
|
accountId: Scalars['ID']['input'];
|
|
126719
127655
|
cloudId: Scalars['ID']['input'];
|
|
@@ -126738,6 +127674,14 @@ export declare type QueryJpdViewsService_EchoArgs = {
|
|
|
126738
127674
|
cloudId: Scalars['ID']['input'];
|
|
126739
127675
|
message: Scalars['String']['input'];
|
|
126740
127676
|
};
|
|
127677
|
+
export declare type QueryJsmAgentWorkspace_LocationsArgs = {
|
|
127678
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
127679
|
+
cloudId: Scalars['ID']['input'];
|
|
127680
|
+
conversationAssignee?: InputMaybe<Scalars['String']['input']>;
|
|
127681
|
+
conversationStatus?: InputMaybe<Scalars['String']['input']>;
|
|
127682
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127683
|
+
projectKey: Scalars['String']['input'];
|
|
127684
|
+
};
|
|
126741
127685
|
export declare type QueryJsmChannels_ConversationsByContainerAriArgs = {
|
|
126742
127686
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126743
127687
|
containerAri: Scalars['ID']['input'];
|
|
@@ -127606,6 +128550,12 @@ export declare type QuerySpf_GetMediaTokenArgs = {
|
|
|
127606
128550
|
export declare type QuerySpf_PlanArgs = {
|
|
127607
128551
|
id: Scalars['ID']['input'];
|
|
127608
128552
|
};
|
|
128553
|
+
export declare type QuerySpf_PlanScenarioInvestmentArgs = {
|
|
128554
|
+
id: Scalars['ID']['input'];
|
|
128555
|
+
};
|
|
128556
|
+
export declare type QuerySpf_PlanScenarioInvestmentsByIdsArgs = {
|
|
128557
|
+
ids: Array<Scalars['ID']['input']>;
|
|
128558
|
+
};
|
|
127609
128559
|
export declare type QuerySpf_PlanScenariosByIdsArgs = {
|
|
127610
128560
|
ids: Array<Scalars['ID']['input']>;
|
|
127611
128561
|
};
|
|
@@ -127632,6 +128582,10 @@ export declare type QuerySqlSlowQueryLogsArgs = {
|
|
|
127632
128582
|
interval: QueryInterval;
|
|
127633
128583
|
queryType: Array<QueryType>;
|
|
127634
128584
|
};
|
|
128585
|
+
export declare type QueryStakeholderComms_CustomDomainStatusArgs = {
|
|
128586
|
+
domain: Scalars['String']['input'];
|
|
128587
|
+
pageId: Scalars['String']['input'];
|
|
128588
|
+
};
|
|
127635
128589
|
export declare type QueryStakeholderComms_GetAssignmentsByStakeholderArgs = {
|
|
127636
128590
|
paginatedAssignmentByStakeholderIdInput: StakeholderCommsPaginatedAssignmentByStakeholderInput;
|
|
127637
128591
|
};
|
|
@@ -127790,6 +128744,17 @@ export declare type QueryStakeholderComms_ListStakeholdersArgs = {
|
|
|
127790
128744
|
export declare type QueryStakeholderComms_ListSubscribersArgs = {
|
|
127791
128745
|
listSubscribersInput: StakeholderCommsListSubscriberInput;
|
|
127792
128746
|
};
|
|
128747
|
+
export declare type QueryStakeholderComms_ListSubscribersConnectionArgs = {
|
|
128748
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128749
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
128750
|
+
filter?: InputMaybe<StakeholderCommsSubscriberConnectionFilter>;
|
|
128751
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128752
|
+
itemId: Scalars['String']['input'];
|
|
128753
|
+
itemType: StakeholderCommsSubscriberItemType;
|
|
128754
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
128755
|
+
order?: InputMaybe<StakeholderCommsSubscriberConnectionOrder>;
|
|
128756
|
+
search?: InputMaybe<StakeholderCommsSubscriberConnectionSearch>;
|
|
128757
|
+
};
|
|
127793
128758
|
export declare type QueryStakeholderComms_UnifiedSearchArgs = {
|
|
127794
128759
|
input: StakeholderCommsUnifiedSearchInput;
|
|
127795
128760
|
};
|
|
@@ -129160,6 +130125,7 @@ export declare type RemoveUserSpacePermissionsInput = {
|
|
|
129160
130125
|
};
|
|
129161
130126
|
export declare type RenderedMacro = {
|
|
129162
130127
|
__typename?: 'RenderedMacro';
|
|
130128
|
+
appKey?: Maybe<Scalars['String']['output']>;
|
|
129163
130129
|
macroBodyStorage?: Maybe<Scalars['String']['output']>;
|
|
129164
130130
|
macroRenderedRepresentation?: Maybe<ContentRepresentationV2>;
|
|
129165
130131
|
mediaToken?: Maybe<EmbeddedMediaTokenV2>;
|
|
@@ -130415,6 +131381,7 @@ export declare enum Scope {
|
|
|
130415
131381
|
ReadTownsquareProject = "READ_TOWNSQUARE_PROJECT",
|
|
130416
131382
|
ReadTownsquareWorkspace = "READ_TOWNSQUARE_WORKSPACE",
|
|
130417
131383
|
ResolutionRead = "RESOLUTION_READ",
|
|
131384
|
+
RovoAtlassianExternal = "ROVO_ATLASSIAN_EXTERNAL",
|
|
130418
131385
|
ScreenableFieldDelete = "SCREENABLE_FIELD_DELETE",
|
|
130419
131386
|
ScreenableFieldRead = "SCREENABLE_FIELD_READ",
|
|
130420
131387
|
ScreenableFieldWrite = "SCREENABLE_FIELD_WRITE",
|
|
@@ -151741,6 +152708,10 @@ export declare type SpaceWithExemption = {
|
|
|
151741
152708
|
status?: Maybe<Scalars['String']['output']>;
|
|
151742
152709
|
type?: Maybe<Scalars['String']['output']>;
|
|
151743
152710
|
};
|
|
152711
|
+
export declare type SpfAddPlanOwnerInput = {
|
|
152712
|
+
ownerId: Scalars['String']['input'];
|
|
152713
|
+
planId: Scalars['ID']['input'];
|
|
152714
|
+
};
|
|
151744
152715
|
export declare type SpfAsk = Node & {
|
|
151745
152716
|
__typename?: 'SpfAsk';
|
|
151746
152717
|
activities?: Maybe<SpfAskActivityConnection>;
|
|
@@ -152102,6 +153073,13 @@ export declare type SpfCreatePlanScenarioInput = {
|
|
|
152102
153073
|
planId: Scalars['ID']['input'];
|
|
152103
153074
|
status: SpfPlanScenarioStatus;
|
|
152104
153075
|
};
|
|
153076
|
+
export declare type SpfCreatePlanScenarioInvestmentInput = {
|
|
153077
|
+
committedEffort?: InputMaybe<Scalars['Int']['input']>;
|
|
153078
|
+
committedOwnerId?: InputMaybe<Scalars['String']['input']>;
|
|
153079
|
+
investmentId: Scalars['String']['input'];
|
|
153080
|
+
planScenarioId: Scalars['ID']['input'];
|
|
153081
|
+
ranking: Scalars['Int']['input'];
|
|
153082
|
+
};
|
|
152105
153083
|
export declare type SpfDeleteAskCommentInput = {
|
|
152106
153084
|
id: Scalars['ID']['input'];
|
|
152107
153085
|
};
|
|
@@ -152150,6 +153128,15 @@ export declare type SpfDeletePlanPayload = Payload & {
|
|
|
152150
153128
|
export declare type SpfDeletePlanScenarioInput = {
|
|
152151
153129
|
id: Scalars['ID']['input'];
|
|
152152
153130
|
};
|
|
153131
|
+
export declare type SpfDeletePlanScenarioInvestmentInput = {
|
|
153132
|
+
id: Scalars['ID']['input'];
|
|
153133
|
+
};
|
|
153134
|
+
export declare type SpfDeletePlanScenarioInvestmentPayload = Payload & {
|
|
153135
|
+
__typename?: 'SpfDeletePlanScenarioInvestmentPayload';
|
|
153136
|
+
errors?: Maybe<Array<MutationError>>;
|
|
153137
|
+
id: Scalars['ID']['output'];
|
|
153138
|
+
success: Scalars['Boolean']['output'];
|
|
153139
|
+
};
|
|
152153
153140
|
export declare type SpfDeletePlanScenarioPayload = Payload & {
|
|
152154
153141
|
__typename?: 'SpfDeletePlanScenarioPayload';
|
|
152155
153142
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -152157,6 +153144,7 @@ export declare type SpfDeletePlanScenarioPayload = Payload & {
|
|
|
152157
153144
|
success: Scalars['Boolean']['output'];
|
|
152158
153145
|
};
|
|
152159
153146
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
153147
|
+
export declare type SpfInvestment = JiraAlignAggProject | MercuryFocusArea;
|
|
152160
153148
|
export declare type SpfMediaToken = {
|
|
152161
153149
|
__typename?: 'SpfMediaToken';
|
|
152162
153150
|
value: Scalars['String']['output'];
|
|
@@ -152173,6 +153161,7 @@ export declare type SpfPlan = Node & {
|
|
|
152173
153161
|
description?: Maybe<Scalars['String']['output']>;
|
|
152174
153162
|
id: Scalars['ID']['output'];
|
|
152175
153163
|
name: Scalars['String']['output'];
|
|
153164
|
+
owners?: Maybe<SpfPlanOwnerConnection>;
|
|
152176
153165
|
portfolio?: Maybe<MercuryFocusArea>;
|
|
152177
153166
|
scenarios?: Maybe<SpfPlanScenarioConnection>;
|
|
152178
153167
|
status: SpfPlanStatus;
|
|
@@ -152181,6 +153170,11 @@ export declare type SpfPlan = Node & {
|
|
|
152181
153170
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
152182
153171
|
updatedBy?: Maybe<User>;
|
|
152183
153172
|
};
|
|
153173
|
+
export declare type SpfPlanOwnersArgs = {
|
|
153174
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
153175
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
153176
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
153177
|
+
};
|
|
152184
153178
|
export declare type SpfPlanScenariosArgs = {
|
|
152185
153179
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
152186
153180
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -152197,18 +153191,35 @@ export declare type SpfPlanEdge = {
|
|
|
152197
153191
|
cursor: Scalars['String']['output'];
|
|
152198
153192
|
node?: Maybe<SpfPlanResult>;
|
|
152199
153193
|
};
|
|
153194
|
+
export declare type SpfPlanOwnerConnection = {
|
|
153195
|
+
__typename?: 'SpfPlanOwnerConnection';
|
|
153196
|
+
edges?: Maybe<Array<Maybe<SpfPlanOwnerEdge>>>;
|
|
153197
|
+
pageInfo: PageInfo;
|
|
153198
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
153199
|
+
};
|
|
153200
|
+
export declare type SpfPlanOwnerEdge = {
|
|
153201
|
+
__typename?: 'SpfPlanOwnerEdge';
|
|
153202
|
+
cursor: Scalars['String']['output'];
|
|
153203
|
+
node?: Maybe<User>;
|
|
153204
|
+
};
|
|
152200
153205
|
export declare type SpfPlanResult = QueryError | SpfPlan;
|
|
152201
153206
|
export declare type SpfPlanScenario = Node & {
|
|
152202
153207
|
__typename?: 'SpfPlanScenario';
|
|
152203
153208
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
152204
153209
|
createdBy?: Maybe<User>;
|
|
152205
153210
|
id: Scalars['ID']['output'];
|
|
153211
|
+
investments?: Maybe<SpfPlanScenarioInvestmentConnection>;
|
|
152206
153212
|
name: Scalars['String']['output'];
|
|
152207
153213
|
planId: Scalars['String']['output'];
|
|
152208
153214
|
status: SpfPlanScenarioStatus;
|
|
152209
153215
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
152210
153216
|
updatedBy?: Maybe<User>;
|
|
152211
153217
|
};
|
|
153218
|
+
export declare type SpfPlanScenarioInvestmentsArgs = {
|
|
153219
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
153220
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
153221
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
153222
|
+
};
|
|
152212
153223
|
export declare type SpfPlanScenarioConnection = {
|
|
152213
153224
|
__typename?: 'SpfPlanScenarioConnection';
|
|
152214
153225
|
edges?: Maybe<Array<Maybe<SpfPlanScenarioEdge>>>;
|
|
@@ -152220,6 +153231,31 @@ export declare type SpfPlanScenarioEdge = {
|
|
|
152220
153231
|
cursor: Scalars['String']['output'];
|
|
152221
153232
|
node?: Maybe<SpfPlanScenarioResult>;
|
|
152222
153233
|
};
|
|
153234
|
+
export declare type SpfPlanScenarioInvestment = Node & {
|
|
153235
|
+
__typename?: 'SpfPlanScenarioInvestment';
|
|
153236
|
+
committedEffort?: Maybe<Scalars['Int']['output']>;
|
|
153237
|
+
committedOwner?: Maybe<User>;
|
|
153238
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
153239
|
+
createdBy?: Maybe<User>;
|
|
153240
|
+
id: Scalars['ID']['output'];
|
|
153241
|
+
investment?: Maybe<SpfInvestment>;
|
|
153242
|
+
planScenarioId: Scalars['String']['output'];
|
|
153243
|
+
ranking: Scalars['Int']['output'];
|
|
153244
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
153245
|
+
updatedBy?: Maybe<User>;
|
|
153246
|
+
};
|
|
153247
|
+
export declare type SpfPlanScenarioInvestmentConnection = {
|
|
153248
|
+
__typename?: 'SpfPlanScenarioInvestmentConnection';
|
|
153249
|
+
edges?: Maybe<Array<Maybe<SpfPlanScenarioInvestmentEdge>>>;
|
|
153250
|
+
pageInfo: PageInfo;
|
|
153251
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
153252
|
+
};
|
|
153253
|
+
export declare type SpfPlanScenarioInvestmentEdge = {
|
|
153254
|
+
__typename?: 'SpfPlanScenarioInvestmentEdge';
|
|
153255
|
+
cursor: Scalars['String']['output'];
|
|
153256
|
+
node?: Maybe<SpfPlanScenarioInvestmentResult>;
|
|
153257
|
+
};
|
|
153258
|
+
export declare type SpfPlanScenarioInvestmentResult = QueryError | SpfPlanScenarioInvestment;
|
|
152223
153259
|
export declare type SpfPlanScenarioResult = QueryError | SpfPlanScenario;
|
|
152224
153260
|
export declare enum SpfPlanScenarioStatus {
|
|
152225
153261
|
Draft = "DRAFT"
|
|
@@ -152251,6 +153287,17 @@ export declare type SpfPlanTransition = {
|
|
|
152251
153287
|
status?: Maybe<SpfPlanStatus>;
|
|
152252
153288
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
152253
153289
|
};
|
|
153290
|
+
export declare type SpfRemovePlanOwnerInput = {
|
|
153291
|
+
ownerId: Scalars['String']['input'];
|
|
153292
|
+
planId: Scalars['ID']['input'];
|
|
153293
|
+
};
|
|
153294
|
+
export declare type SpfRemovePlanOwnerPayload = Payload & {
|
|
153295
|
+
__typename?: 'SpfRemovePlanOwnerPayload';
|
|
153296
|
+
errors?: Maybe<Array<MutationError>>;
|
|
153297
|
+
ownerId: Scalars['String']['output'];
|
|
153298
|
+
planId: Scalars['ID']['output'];
|
|
153299
|
+
success: Scalars['Boolean']['output'];
|
|
153300
|
+
};
|
|
152254
153301
|
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
152255
153302
|
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
152256
153303
|
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
@@ -152307,6 +153354,18 @@ export declare type SpfUpdatePlanPortfolioInput = {
|
|
|
152307
153354
|
id: Scalars['ID']['input'];
|
|
152308
153355
|
portfolioId: Scalars['String']['input'];
|
|
152309
153356
|
};
|
|
153357
|
+
export declare type SpfUpdatePlanScenarioInvestmentCommittedEffortInput = {
|
|
153358
|
+
committedEffort?: InputMaybe<Scalars['Int']['input']>;
|
|
153359
|
+
id: Scalars['ID']['input'];
|
|
153360
|
+
};
|
|
153361
|
+
export declare type SpfUpdatePlanScenarioInvestmentCommittedOwnerInput = {
|
|
153362
|
+
committedOwnerId?: InputMaybe<Scalars['String']['input']>;
|
|
153363
|
+
id: Scalars['ID']['input'];
|
|
153364
|
+
};
|
|
153365
|
+
export declare type SpfUpdatePlanScenarioInvestmentInvestmentInput = {
|
|
153366
|
+
id: Scalars['ID']['input'];
|
|
153367
|
+
investmentId: Scalars['String']['input'];
|
|
153368
|
+
};
|
|
152310
153369
|
export declare type SpfUpdatePlanScenarioNameInput = {
|
|
152311
153370
|
id: Scalars['ID']['input'];
|
|
152312
153371
|
name: Scalars['String']['input'];
|
|
@@ -152342,12 +153401,26 @@ export declare type SpfUpsertAskUpdatePayload = Payload & {
|
|
|
152342
153401
|
errors?: Maybe<Array<MutationError>>;
|
|
152343
153402
|
success: Scalars['Boolean']['output'];
|
|
152344
153403
|
};
|
|
153404
|
+
export declare type SpfUpsertPlanOwnerPayload = Payload & {
|
|
153405
|
+
__typename?: 'SpfUpsertPlanOwnerPayload';
|
|
153406
|
+
errors?: Maybe<Array<MutationError>>;
|
|
153407
|
+
ownerId: Scalars['String']['output'];
|
|
153408
|
+
planId: Scalars['ID']['output'];
|
|
153409
|
+
planOwner?: Maybe<User>;
|
|
153410
|
+
success: Scalars['Boolean']['output'];
|
|
153411
|
+
};
|
|
152345
153412
|
export declare type SpfUpsertPlanPayload = Payload & {
|
|
152346
153413
|
__typename?: 'SpfUpsertPlanPayload';
|
|
152347
153414
|
errors?: Maybe<Array<MutationError>>;
|
|
152348
153415
|
plan?: Maybe<SpfPlan>;
|
|
152349
153416
|
success: Scalars['Boolean']['output'];
|
|
152350
153417
|
};
|
|
153418
|
+
export declare type SpfUpsertPlanScenarioInvestmentPayload = Payload & {
|
|
153419
|
+
__typename?: 'SpfUpsertPlanScenarioInvestmentPayload';
|
|
153420
|
+
errors?: Maybe<Array<MutationError>>;
|
|
153421
|
+
planScenarioInvestment?: Maybe<SpfPlanScenarioInvestment>;
|
|
153422
|
+
success: Scalars['Boolean']['output'];
|
|
153423
|
+
};
|
|
152351
153424
|
export declare type SpfUpsertPlanScenarioPayload = Payload & {
|
|
152352
153425
|
__typename?: 'SpfUpsertPlanScenarioPayload';
|
|
152353
153426
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -152705,12 +153778,49 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
152705
153778
|
stakeholderType: StakeholderCommsStakeholderType;
|
|
152706
153779
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
152707
153780
|
};
|
|
153781
|
+
export declare type StakeholderCommsCustomDomainConfig = {
|
|
153782
|
+
__typename?: 'StakeholderCommsCustomDomainConfig';
|
|
153783
|
+
certificateExpiresAt?: Maybe<Scalars['String']['output']>;
|
|
153784
|
+
domain: Scalars['String']['output'];
|
|
153785
|
+
recordTypes: Array<StakeholderCommsDnsRecordType>;
|
|
153786
|
+
sslStatus: StakeholderCommsSslStatus;
|
|
153787
|
+
};
|
|
153788
|
+
export declare type StakeholderCommsCustomDomainStatusResponse = {
|
|
153789
|
+
__typename?: 'StakeholderCommsCustomDomainStatusResponse';
|
|
153790
|
+
config?: Maybe<StakeholderCommsCustomDomainConfig>;
|
|
153791
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
153792
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
153793
|
+
success: Scalars['Boolean']['output'];
|
|
153794
|
+
};
|
|
152708
153795
|
export declare type StakeholderCommsDailyComponentUptime = {
|
|
152709
153796
|
__typename?: 'StakeholderCommsDailyComponentUptime';
|
|
152710
153797
|
componentDailyAggregate?: Maybe<StakeholderCommsComponentUptimeDailyAggregate>;
|
|
152711
153798
|
componentDailyUptimePercentage?: Maybe<Scalars['Float']['output']>;
|
|
152712
153799
|
date: Scalars['String']['output'];
|
|
152713
153800
|
};
|
|
153801
|
+
export declare type StakeholderCommsDnsRecord = {
|
|
153802
|
+
__typename?: 'StakeholderCommsDnsRecord';
|
|
153803
|
+
currentValue?: Maybe<Scalars['String']['output']>;
|
|
153804
|
+
id: Scalars['ID']['output'];
|
|
153805
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
153806
|
+
name: Scalars['String']['output'];
|
|
153807
|
+
purpose: Scalars['String']['output'];
|
|
153808
|
+
status: StakeholderCommsDnsRecordStatus;
|
|
153809
|
+
type: Scalars['String']['output'];
|
|
153810
|
+
value: Scalars['String']['output'];
|
|
153811
|
+
};
|
|
153812
|
+
export declare enum StakeholderCommsDnsRecordStatus {
|
|
153813
|
+
Failed = "FAILED",
|
|
153814
|
+
Pending = "PENDING",
|
|
153815
|
+
Skipped = "SKIPPED",
|
|
153816
|
+
Verified = "VERIFIED"
|
|
153817
|
+
}
|
|
153818
|
+
export declare type StakeholderCommsDnsRecordType = {
|
|
153819
|
+
__typename?: 'StakeholderCommsDnsRecordType';
|
|
153820
|
+
description: Scalars['String']['output'];
|
|
153821
|
+
name: Scalars['String']['output'];
|
|
153822
|
+
records: Array<StakeholderCommsDnsRecord>;
|
|
153823
|
+
};
|
|
152714
153824
|
export declare enum StakeholderCommsErrorType {
|
|
152715
153825
|
SystemError = "SYSTEM_ERROR",
|
|
152716
153826
|
ValidationError = "VALIDATION_ERROR"
|
|
@@ -152899,6 +154009,19 @@ export declare type StakeholderCommsIncidentWithUpdatesEdge = {
|
|
|
152899
154009
|
cursor: Scalars['String']['output'];
|
|
152900
154010
|
node: StakeholderCommsIncidentWithUpdates;
|
|
152901
154011
|
};
|
|
154012
|
+
export declare type StakeholderCommsIssueSslInput = {
|
|
154013
|
+
domain: Scalars['String']['input'];
|
|
154014
|
+
pageId: Scalars['String']['input'];
|
|
154015
|
+
};
|
|
154016
|
+
export declare type StakeholderCommsIssueSslResponse = {
|
|
154017
|
+
__typename?: 'StakeholderCommsIssueSslResponse';
|
|
154018
|
+
certificateExpiresAt?: Maybe<Scalars['String']['output']>;
|
|
154019
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
154020
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
154021
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
154022
|
+
sslStatus: StakeholderCommsSslStatus;
|
|
154023
|
+
success: Scalars['Boolean']['output'];
|
|
154024
|
+
};
|
|
152902
154025
|
export declare type StakeholderCommsLicenseLimit = {
|
|
152903
154026
|
__typename?: 'StakeholderCommsLicenseLimit';
|
|
152904
154027
|
availableLimit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -153122,6 +154245,7 @@ export declare type StakeholderCommsPage = {
|
|
|
153122
154245
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
153123
154246
|
createdBy?: Maybe<Scalars['String']['output']>;
|
|
153124
154247
|
customCss?: Maybe<Scalars['String']['output']>;
|
|
154248
|
+
customDomainConfig?: Maybe<StakeholderCommsCustomDomainConfig>;
|
|
153125
154249
|
customFooterHtml?: Maybe<Scalars['String']['output']>;
|
|
153126
154250
|
customHeaderHtml?: Maybe<Scalars['String']['output']>;
|
|
153127
154251
|
deletedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -153337,6 +154461,12 @@ export declare type StakeholderCommsSimplifiedStakeholder = {
|
|
|
153337
154461
|
name?: Maybe<Scalars['String']['output']>;
|
|
153338
154462
|
type?: Maybe<Scalars['String']['output']>;
|
|
153339
154463
|
};
|
|
154464
|
+
export declare enum StakeholderCommsSslStatus {
|
|
154465
|
+
Expired = "EXPIRED",
|
|
154466
|
+
Failed = "FAILED",
|
|
154467
|
+
Issued = "ISSUED",
|
|
154468
|
+
Pending = "PENDING"
|
|
154469
|
+
}
|
|
153340
154470
|
export declare type StakeholderCommsStakeholder = {
|
|
153341
154471
|
__typename?: 'StakeholderCommsStakeholder';
|
|
153342
154472
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
@@ -153540,11 +154670,41 @@ export declare type StakeholderCommsSubscriber = {
|
|
|
153540
154670
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
153541
154671
|
webhookEndpoint?: Maybe<Scalars['String']['output']>;
|
|
153542
154672
|
};
|
|
154673
|
+
export declare type StakeholderCommsSubscriberConnection = {
|
|
154674
|
+
__typename?: 'StakeholderCommsSubscriberConnection';
|
|
154675
|
+
edges?: Maybe<Array<StakeholderCommsSubscriberEdge>>;
|
|
154676
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
154677
|
+
nodes?: Maybe<Array<StakeholderCommsSubscriber>>;
|
|
154678
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
154679
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
154680
|
+
};
|
|
154681
|
+
export declare type StakeholderCommsSubscriberConnectionFilter = {
|
|
154682
|
+
statuses?: InputMaybe<Array<InputMaybe<StakeholderCommsSubscriberStatus>>>;
|
|
154683
|
+
subscriptionTypes?: InputMaybe<Array<InputMaybe<StakeholderCommsSubscriptionType>>>;
|
|
154684
|
+
};
|
|
154685
|
+
export declare type StakeholderCommsSubscriberConnectionOrder = {
|
|
154686
|
+
descending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
154687
|
+
orderBy?: InputMaybe<StakeholderCommsSubscriberOrderByType>;
|
|
154688
|
+
};
|
|
154689
|
+
export declare type StakeholderCommsSubscriberConnectionSearch = {
|
|
154690
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
154691
|
+
};
|
|
154692
|
+
export declare type StakeholderCommsSubscriberEdge = {
|
|
154693
|
+
__typename?: 'StakeholderCommsSubscriberEdge';
|
|
154694
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
154695
|
+
node: StakeholderCommsSubscriber;
|
|
154696
|
+
};
|
|
153543
154697
|
export declare enum StakeholderCommsSubscriberItemType {
|
|
153544
154698
|
ComponentSubscriber = "COMPONENT_SUBSCRIBER",
|
|
153545
154699
|
IncidentSubscriber = "INCIDENT_SUBSCRIBER",
|
|
153546
154700
|
PageSubscriber = "PAGE_SUBSCRIBER"
|
|
153547
154701
|
}
|
|
154702
|
+
export declare enum StakeholderCommsSubscriberOrderByType {
|
|
154703
|
+
CreatedAt = "CREATED_AT",
|
|
154704
|
+
Email = "EMAIL",
|
|
154705
|
+
Status = "STATUS",
|
|
154706
|
+
UpdatedAt = "UPDATED_AT"
|
|
154707
|
+
}
|
|
153548
154708
|
export declare type StakeholderCommsSubscriberResponse = {
|
|
153549
154709
|
__typename?: 'StakeholderCommsSubscriberResponse';
|
|
153550
154710
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -153577,6 +154737,13 @@ export declare type StakeholderCommsSubscriptionRequest = {
|
|
|
153577
154737
|
subscriptionData?: InputMaybe<StakeholderCommsSubscriptionData>;
|
|
153578
154738
|
subscriptionType: StakeholderCommsSubscriptionChannel;
|
|
153579
154739
|
};
|
|
154740
|
+
export declare enum StakeholderCommsSubscriptionType {
|
|
154741
|
+
Email = "EMAIL",
|
|
154742
|
+
MsTeams = "MS_TEAMS",
|
|
154743
|
+
Slack = "SLACK",
|
|
154744
|
+
Sms = "SMS",
|
|
154745
|
+
Webhook = "WEBHOOK"
|
|
154746
|
+
}
|
|
153580
154747
|
export declare type StakeholderCommsUnifiedSearchInput = {
|
|
153581
154748
|
filters?: InputMaybe<Array<InputMaybe<StakeholderCommsSearchFilterType>>>;
|
|
153582
154749
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -153593,6 +154760,18 @@ export declare type StakeholderCommsUnsubscribeSubscriberResponse = {
|
|
|
153593
154760
|
message?: Maybe<Scalars['String']['output']>;
|
|
153594
154761
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
153595
154762
|
};
|
|
154763
|
+
export declare type StakeholderCommsUpdateCustomDomainInput = {
|
|
154764
|
+
domain: Scalars['String']['input'];
|
|
154765
|
+
pageId: Scalars['String']['input'];
|
|
154766
|
+
};
|
|
154767
|
+
export declare type StakeholderCommsUpdateCustomDomainResponse = {
|
|
154768
|
+
__typename?: 'StakeholderCommsUpdateCustomDomainResponse';
|
|
154769
|
+
customDomain?: Maybe<Scalars['String']['output']>;
|
|
154770
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
154771
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
154772
|
+
recordTypes?: Maybe<Array<StakeholderCommsDnsRecordType>>;
|
|
154773
|
+
success: Scalars['Boolean']['output'];
|
|
154774
|
+
};
|
|
153596
154775
|
export declare type StakeholderCommsUpdatePageInputType = {
|
|
153597
154776
|
activityScore?: InputMaybe<Scalars['Int']['input']>;
|
|
153598
154777
|
allowPageSubscribers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -153650,6 +154829,18 @@ export declare enum StakeholderCommsUptimeStyle {
|
|
|
153650
154829
|
DetailCard = "DETAIL_CARD",
|
|
153651
154830
|
OnlyStatus = "ONLY_STATUS"
|
|
153652
154831
|
}
|
|
154832
|
+
export declare type StakeholderCommsVerifyDnsInput = {
|
|
154833
|
+
domain: Scalars['String']['input'];
|
|
154834
|
+
pageId: Scalars['String']['input'];
|
|
154835
|
+
};
|
|
154836
|
+
export declare type StakeholderCommsVerifyDnsResponse = {
|
|
154837
|
+
__typename?: 'StakeholderCommsVerifyDnsResponse';
|
|
154838
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
154839
|
+
isVerified: Scalars['Boolean']['output'];
|
|
154840
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
154841
|
+
recordTypes: Array<StakeholderCommsDnsRecordType>;
|
|
154842
|
+
success: Scalars['Boolean']['output'];
|
|
154843
|
+
};
|
|
153653
154844
|
export declare type StakeholderCommsWorkspaceAriMapping = {
|
|
153654
154845
|
__typename?: 'StakeholderCommsWorkspaceAriMapping';
|
|
153655
154846
|
customDomain?: Maybe<Scalars['String']['output']>;
|
|
@@ -153806,6 +154997,7 @@ export declare type Subscription = {
|
|
|
153806
154997
|
jiraProductDiscovery?: Maybe<JpdSubscriptions>;
|
|
153807
154998
|
jira_onIssueUpdateSuggestions?: Maybe<JiraIssueUpdatesSuggestion>;
|
|
153808
154999
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
155000
|
+
jsmAgentWorkspace_dummy?: Maybe<Scalars['String']['output']>;
|
|
153809
155001
|
jsmChannels_getResolutionPlanGraphUpdate: JsmChannelsResolutionPlanGraphResult;
|
|
153810
155002
|
jsmChannels_onServiceAgentResolutionStateByTicketIdUpdate: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
153811
155003
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
@@ -154348,6 +155540,7 @@ export declare type SupportRequestUser = {
|
|
|
154348
155540
|
__typename?: 'SupportRequestUser';
|
|
154349
155541
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
154350
155542
|
email?: Maybe<Scalars['String']['output']>;
|
|
155543
|
+
icId?: Maybe<Scalars['String']['output']>;
|
|
154351
155544
|
user?: Maybe<SupportRequestIdentityUser>;
|
|
154352
155545
|
userType?: Maybe<SupportRequestUserType>;
|
|
154353
155546
|
username?: Maybe<Scalars['String']['output']>;
|
|
@@ -155780,6 +156973,10 @@ export declare type TownsquareEditGoalTypePayload = {
|
|
|
155780
156973
|
__typename?: 'TownsquareEditGoalTypePayload';
|
|
155781
156974
|
goalType?: Maybe<TownsquareGoalType>;
|
|
155782
156975
|
};
|
|
156976
|
+
export declare type TownsquareFocusAppCapabilities = {
|
|
156977
|
+
__typename?: 'TownsquareFocusAppCapabilities';
|
|
156978
|
+
canViewFocusAreas?: Maybe<Scalars['Boolean']['output']>;
|
|
156979
|
+
};
|
|
155783
156980
|
export declare type TownsquareFusionDetails = {
|
|
155784
156981
|
__typename?: 'TownsquareFusionDetails';
|
|
155785
156982
|
issue?: Maybe<JiraIssue>;
|
|
@@ -155951,8 +157148,13 @@ export declare enum TownsquareGoalAccessRoleInput {
|
|
|
155951
157148
|
Editor = "EDITOR",
|
|
155952
157149
|
Viewer = "VIEWER"
|
|
155953
157150
|
}
|
|
157151
|
+
export declare type TownsquareGoalAppCapabilities = {
|
|
157152
|
+
__typename?: 'TownsquareGoalAppCapabilities';
|
|
157153
|
+
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
157154
|
+
};
|
|
155954
157155
|
export declare type TownsquareGoalCapabilities = {
|
|
155955
157156
|
__typename?: 'TownsquareGoalCapabilities';
|
|
157157
|
+
apps?: Maybe<TownsquareGoalAppCapabilities>;
|
|
155956
157158
|
canAddJiraAlignItems?: Maybe<Scalars['Boolean']['output']>;
|
|
155957
157159
|
canAddLinkedFocusAreas?: Maybe<Scalars['Boolean']['output']>;
|
|
155958
157160
|
canAddLinkedGoals?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -160747,6 +161949,7 @@ export declare type TrelloMemberNonPublicData = {
|
|
|
160747
161949
|
export declare type TrelloMemberNotificationsUpdated = TrelloInboxNotificationsUpdated;
|
|
160748
161950
|
export declare type TrelloMemberPlannerEventCardsUpdated = {
|
|
160749
161951
|
__typename?: 'TrelloMemberPlannerEventCardsUpdated';
|
|
161952
|
+
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
160750
161953
|
boardOrInboxUpdated?: Maybe<TrelloBaseBoardUpdated>;
|
|
160751
161954
|
};
|
|
160752
161955
|
export declare type TrelloMemberPrefs = {
|
|
@@ -160988,6 +162191,7 @@ export declare type TrelloMutationApi = {
|
|
|
160988
162191
|
updatePrimaryPlannerAccount?: Maybe<TrelloUpdatePrimaryPlannerAccountPayload>;
|
|
160989
162192
|
updateProactiveSmartScheduleStatus?: Maybe<TrelloUpdateProactiveSmartScheduleStatusPayload>;
|
|
160990
162193
|
updateProposedEvent?: Maybe<TrelloUpdateProposedEventPayload>;
|
|
162194
|
+
updateSmartScheduleLastActivity?: Maybe<TrelloUpdateSmartScheduleLastActivityPayload>;
|
|
160991
162195
|
updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
|
|
160992
162196
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
160993
162197
|
};
|
|
@@ -162687,6 +163891,11 @@ export declare type TrelloUpdateProposedEventPayload = Payload & {
|
|
|
162687
163891
|
proposedEvent?: Maybe<TrelloProposedEvent>;
|
|
162688
163892
|
success: Scalars['Boolean']['output'];
|
|
162689
163893
|
};
|
|
163894
|
+
export declare type TrelloUpdateSmartScheduleLastActivityPayload = Payload & {
|
|
163895
|
+
__typename?: 'TrelloUpdateSmartScheduleLastActivityPayload';
|
|
163896
|
+
errors?: Maybe<Array<MutationError>>;
|
|
163897
|
+
success: Scalars['Boolean']['output'];
|
|
163898
|
+
};
|
|
162690
163899
|
export declare type TrelloUpdateWorkspaceTagInput = {
|
|
162691
163900
|
name: Scalars['String']['input'];
|
|
162692
163901
|
tagId: Scalars['ID']['input'];
|
|
@@ -162911,6 +164120,21 @@ export declare type UnifiedAccountMutationSetPrimaryAccountArgs = {
|
|
|
162911
164120
|
export declare type UnifiedAccountMutationUnlinkAccountArgs = {
|
|
162912
164121
|
aaid: Scalars['String']['input'];
|
|
162913
164122
|
};
|
|
164123
|
+
export declare type UnifiedAdminLinkAccountsPayload = {
|
|
164124
|
+
__typename?: 'UnifiedAdminLinkAccountsPayload';
|
|
164125
|
+
account1?: Maybe<UnifiedAccountDetails>;
|
|
164126
|
+
account2?: Maybe<UnifiedAccountDetails>;
|
|
164127
|
+
primaryAccountIndex?: Maybe<Scalars['Int']['output']>;
|
|
164128
|
+
success: Scalars['Boolean']['output'];
|
|
164129
|
+
};
|
|
164130
|
+
export declare type UnifiedAdminLinkingMutation = {
|
|
164131
|
+
__typename?: 'UnifiedAdminLinkingMutation';
|
|
164132
|
+
linkAccounts?: Maybe<UnifiedUAdminLinkAccountsPayload>;
|
|
164133
|
+
};
|
|
164134
|
+
export declare type UnifiedAdminLinkingMutationLinkAccountsArgs = {
|
|
164135
|
+
primaryAccountEmail: Scalars['String']['input'];
|
|
164136
|
+
secondaryAccountEmail: Scalars['String']['input'];
|
|
164137
|
+
};
|
|
162914
164138
|
export declare type UnifiedAdmins = UnifiedINode & {
|
|
162915
164139
|
__typename?: 'UnifiedAdmins';
|
|
162916
164140
|
admins?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -163830,6 +165054,7 @@ export declare type UnifiedLinkingStatusPayload = UnifiedPayload & {
|
|
|
163830
165054
|
export declare type UnifiedMutation = {
|
|
163831
165055
|
__typename?: 'UnifiedMutation';
|
|
163832
165056
|
account?: Maybe<UnifiedAccountMutation>;
|
|
165057
|
+
adminLinking?: Maybe<UnifiedAdminLinkingMutation>;
|
|
163833
165058
|
ai?: Maybe<UnifiedAiMutation>;
|
|
163834
165059
|
atlassianOneUser?: Maybe<UnifiedAtlassianOneUserMutation>;
|
|
163835
165060
|
caching?: Maybe<UnifiedCachingMutation>;
|
|
@@ -164028,6 +165253,7 @@ export declare enum UnifiedSortDirection {
|
|
|
164028
165253
|
export declare type UnifiedUAccountBasicsResult = UnifiedAccountBasics | UnifiedQueryError;
|
|
164029
165254
|
export declare type UnifiedUAccountDetailsResult = UnifiedAccountDetails | UnifiedQueryError;
|
|
164030
165255
|
export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
165256
|
+
export declare type UnifiedUAdminLinkAccountsPayload = UnifiedAdminLinkAccountsPayload | UnifiedLinkingStatusPayload;
|
|
164031
165257
|
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
164032
165258
|
export declare type UnifiedUAiCategoriesResult = UnifiedAiCategoriesResult | UnifiedQueryError;
|
|
164033
165259
|
export declare type UnifiedUAiPostResult = UnifiedAiPostResult | UnifiedQueryError;
|
|
@@ -164259,12 +165485,6 @@ export declare type UpdateCompassFieldInput = {
|
|
|
164259
165485
|
definition: Scalars['ID']['input'];
|
|
164260
165486
|
value: CompassFieldValueInput;
|
|
164261
165487
|
};
|
|
164262
|
-
export declare type UpdateCompassFreeformUserDefinedParameterInput = {
|
|
164263
|
-
defaultValue?: InputMaybe<Scalars['String']['input']>;
|
|
164264
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
164265
|
-
id: Scalars['ID']['input'];
|
|
164266
|
-
name: Scalars['String']['input'];
|
|
164267
|
-
};
|
|
164268
165488
|
export declare type UpdateCompassHasDescriptionScorecardCriteriaInput = {
|
|
164269
165489
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
164270
165490
|
id: Scalars['ID']['input'];
|
|
@@ -164363,21 +165583,6 @@ export declare type UpdateCompassScorecardPayload = Payload & {
|
|
|
164363
165583
|
scorecardDetails?: Maybe<CompassScorecard>;
|
|
164364
165584
|
success: Scalars['Boolean']['output'];
|
|
164365
165585
|
};
|
|
164366
|
-
export declare type UpdateCompassUserDefinedParameterInput = {
|
|
164367
|
-
freeformField?: InputMaybe<UpdateCompassFreeformUserDefinedParameterInput>;
|
|
164368
|
-
};
|
|
164369
|
-
export declare type UpdateCompassUserDefinedParametersInput = {
|
|
164370
|
-
componentId: Scalars['ID']['input'];
|
|
164371
|
-
createParameters?: InputMaybe<Array<CreateCompassUserDefinedParameterInput>>;
|
|
164372
|
-
deleteParameters?: InputMaybe<Array<DeleteCompassUserDefinedParameterInput>>;
|
|
164373
|
-
updateParameters?: InputMaybe<Array<UpdateCompassUserDefinedParameterInput>>;
|
|
164374
|
-
};
|
|
164375
|
-
export declare type UpdateCompassUserDefinedParametersPayload = Payload & {
|
|
164376
|
-
__typename?: 'UpdateCompassUserDefinedParametersPayload';
|
|
164377
|
-
errors?: Maybe<Array<MutationError>>;
|
|
164378
|
-
success: Scalars['Boolean']['output'];
|
|
164379
|
-
userParameterDetails?: Maybe<CompassUserDefinedParameters>;
|
|
164380
|
-
};
|
|
164381
165586
|
export declare type UpdateComponentApiInput = {
|
|
164382
165587
|
componentId: Scalars['String']['input'];
|
|
164383
165588
|
defaultTag?: InputMaybe<Scalars['String']['input']>;
|