@forge/cli-shared 5.0.0-next.3 → 5.0.0-next.4-experimental-c6147b1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +48 -0
- package/out/graphql/graphql-types.d.ts +292 -136
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +37 -13
- package/package.json +2 -2
|
@@ -438,7 +438,7 @@ export declare type ActivityObject = {
|
|
|
438
438
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
439
439
|
type: Scalars['String']['output'];
|
|
440
440
|
};
|
|
441
|
-
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
|
|
441
|
+
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
|
|
442
442
|
export declare enum ActivityObjectType {
|
|
443
443
|
Blogpost = "BLOGPOST",
|
|
444
444
|
Comment = "COMMENT",
|
|
@@ -2019,6 +2019,18 @@ export declare type BoardScopeEdge = {
|
|
|
2019
2019
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
2020
2020
|
node?: Maybe<BoardScope>;
|
|
2021
2021
|
};
|
|
2022
|
+
export declare enum BoardSwimlaneStrategy {
|
|
2023
|
+
AssigneeUnassignedFirst = "ASSIGNEE_UNASSIGNED_FIRST",
|
|
2024
|
+
AssigneeUnassignedLast = "ASSIGNEE_UNASSIGNED_LAST",
|
|
2025
|
+
Custom = "CUSTOM",
|
|
2026
|
+
Epic = "EPIC",
|
|
2027
|
+
IssueChildren = "ISSUE_CHILDREN",
|
|
2028
|
+
IssueParent = "ISSUE_PARENT",
|
|
2029
|
+
None = "NONE",
|
|
2030
|
+
ParentChild = "PARENT_CHILD",
|
|
2031
|
+
Project = "PROJECT",
|
|
2032
|
+
RequestType = "REQUEST_TYPE"
|
|
2033
|
+
}
|
|
2022
2034
|
export declare type Book = {
|
|
2023
2035
|
__typename?: 'Book';
|
|
2024
2036
|
author?: Maybe<Array<Maybe<Author>>>;
|
|
@@ -6300,6 +6312,21 @@ export declare type ConfluenceDeletePagePropertyPayload = Payload & {
|
|
|
6300
6312
|
errors?: Maybe<Array<MutationError>>;
|
|
6301
6313
|
success: Scalars['Boolean']['output'];
|
|
6302
6314
|
};
|
|
6315
|
+
export declare type ConfluenceEmbed = {
|
|
6316
|
+
__typename?: 'ConfluenceEmbed';
|
|
6317
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
6318
|
+
embedId: Scalars['ID']['output'];
|
|
6319
|
+
id: Scalars['ID']['output'];
|
|
6320
|
+
links?: Maybe<ConfluenceEmbedLinks>;
|
|
6321
|
+
owner?: Maybe<ConfluenceUserInfo>;
|
|
6322
|
+
space?: Maybe<ConfluenceSpace>;
|
|
6323
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
6324
|
+
};
|
|
6325
|
+
export declare type ConfluenceEmbedLinks = {
|
|
6326
|
+
__typename?: 'ConfluenceEmbedLinks';
|
|
6327
|
+
base?: Maybe<Scalars['String']['output']>;
|
|
6328
|
+
webUi?: Maybe<Scalars['String']['output']>;
|
|
6329
|
+
};
|
|
6303
6330
|
export declare type ConfluenceFavoritedSummary = {
|
|
6304
6331
|
__typename?: 'ConfluenceFavoritedSummary';
|
|
6305
6332
|
favoritedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -6668,6 +6695,8 @@ export declare type ConfluenceQueryApi = {
|
|
|
6668
6695
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
6669
6696
|
database?: Maybe<ConfluenceDatabase>;
|
|
6670
6697
|
databases?: Maybe<Array<Maybe<ConfluenceDatabase>>>;
|
|
6698
|
+
embed?: Maybe<ConfluenceEmbed>;
|
|
6699
|
+
embeds?: Maybe<Array<Maybe<ConfluenceEmbed>>>;
|
|
6671
6700
|
findSpaces?: Maybe<ConfluenceSpaceConnection>;
|
|
6672
6701
|
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
6673
6702
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
@@ -6698,6 +6727,12 @@ export declare type ConfluenceQueryApiDatabaseArgs = {
|
|
|
6698
6727
|
export declare type ConfluenceQueryApiDatabasesArgs = {
|
|
6699
6728
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
6700
6729
|
};
|
|
6730
|
+
export declare type ConfluenceQueryApiEmbedArgs = {
|
|
6731
|
+
id: Scalars['ID']['input'];
|
|
6732
|
+
};
|
|
6733
|
+
export declare type ConfluenceQueryApiEmbedsArgs = {
|
|
6734
|
+
ids: Array<Scalars['ID']['input']>;
|
|
6735
|
+
};
|
|
6701
6736
|
export declare type ConfluenceQueryApiFindSpacesArgs = {
|
|
6702
6737
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6703
6738
|
cloudId: Scalars['ID']['input'];
|
|
@@ -10005,6 +10040,7 @@ export declare type DevOpsDocument = Node & {
|
|
|
10005
10040
|
__typename?: 'DevOpsDocument';
|
|
10006
10041
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
10007
10042
|
collaborators?: Maybe<Array<Maybe<User>>>;
|
|
10043
|
+
content?: Maybe<DevOpsDocumentContent>;
|
|
10008
10044
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
10009
10045
|
createdBy?: Maybe<User>;
|
|
10010
10046
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -10034,6 +10070,11 @@ export declare enum DevOpsDocumentCategory {
|
|
|
10034
10070
|
Spreadsheet = "SPREADSHEET",
|
|
10035
10071
|
Video = "VIDEO"
|
|
10036
10072
|
}
|
|
10073
|
+
export declare type DevOpsDocumentContent = {
|
|
10074
|
+
__typename?: 'DevOpsDocumentContent';
|
|
10075
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
10076
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
10077
|
+
};
|
|
10037
10078
|
export declare type DevOpsDocumentExportLink = {
|
|
10038
10079
|
__typename?: 'DevOpsDocumentExportLink';
|
|
10039
10080
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
@@ -10954,6 +10995,7 @@ export declare type DevOpsSupportedActions = {
|
|
|
10954
10995
|
associate?: Maybe<Scalars['Boolean']['output']>;
|
|
10955
10996
|
associateEntity?: Maybe<Scalars['Boolean']['output']>;
|
|
10956
10997
|
checkAuth?: Maybe<Scalars['Boolean']['output']>;
|
|
10998
|
+
createContainer?: Maybe<Scalars['Boolean']['output']>;
|
|
10957
10999
|
disassociate?: Maybe<Scalars['Boolean']['output']>;
|
|
10958
11000
|
disassociateEntity?: Maybe<Scalars['Boolean']['output']>;
|
|
10959
11001
|
listContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -28594,7 +28636,7 @@ export declare type JsmReporter = {
|
|
|
28594
28636
|
__typename?: 'JSMReporter';
|
|
28595
28637
|
id: Scalars['ID']['output'];
|
|
28596
28638
|
};
|
|
28597
|
-
export declare type JsmResponder = AppUser | AtlassianAccountUser | CustomerUser | OpsgenieTeam;
|
|
28639
|
+
export declare type JsmResponder = AppUser | AtlassianAccountUser | CustomerUser | OpsgenieTeam | ThirdPartyUser;
|
|
28598
28640
|
export declare type JsmStatus = {
|
|
28599
28641
|
__typename?: 'JSMStatus';
|
|
28600
28642
|
id: Scalars['ID']['output'];
|
|
@@ -29141,6 +29183,7 @@ export declare type JiraAutodevJob = {
|
|
|
29141
29183
|
__typename?: 'JiraAutodevJob';
|
|
29142
29184
|
codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
|
|
29143
29185
|
currentWorkflow?: Maybe<Scalars['String']['output']>;
|
|
29186
|
+
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
29144
29187
|
id: Scalars['ID']['output'];
|
|
29145
29188
|
plan?: Maybe<JiraAutodevPlan>;
|
|
29146
29189
|
progressText?: Maybe<Scalars['String']['output']>;
|
|
@@ -30777,6 +30820,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
30777
30820
|
__typename?: 'JiraDevOpsMutation';
|
|
30778
30821
|
approveJiraBitbucketWorkspaceAccessRequest?: Maybe<JiraApproveJiraBitbucketWorkspaceAccessRequestPayload>;
|
|
30779
30822
|
createAutodevJob?: Maybe<JiraAutodevCreateJobPayload>;
|
|
30823
|
+
createAutodevPullRequest?: Maybe<JiraAutodevBasicPayload>;
|
|
30780
30824
|
createAutofixJob?: Maybe<JiraAutofixCreateJobPayload>;
|
|
30781
30825
|
deleteAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
30782
30826
|
dismissBitbucketPendingAccessRequestBanner?: Maybe<JiraDismissBitbucketPendingAccessRequestBannerPayload>;
|
|
@@ -30802,6 +30846,10 @@ export declare type JiraDevOpsMutationCreateAutodevJobArgs = {
|
|
|
30802
30846
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
30803
30847
|
repoUrl: Scalars['String']['input'];
|
|
30804
30848
|
};
|
|
30849
|
+
export declare type JiraDevOpsMutationCreateAutodevPullRequestArgs = {
|
|
30850
|
+
issueAri: Scalars['ID']['input'];
|
|
30851
|
+
jobId: Scalars['ID']['input'];
|
|
30852
|
+
};
|
|
30805
30853
|
export declare type JiraDevOpsMutationCreateAutofixJobArgs = {
|
|
30806
30854
|
cloudId: Scalars['ID']['input'];
|
|
30807
30855
|
input: JiraAutofixInput;
|
|
@@ -30853,6 +30901,7 @@ export declare type JiraDevOpsMutationSetProjectSelectedDeploymentAppsPropertyAr
|
|
|
30853
30901
|
};
|
|
30854
30902
|
export declare type JiraDevOpsMutationStartAutodevArgs = {
|
|
30855
30903
|
acceptanceCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
30904
|
+
createPr?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30856
30905
|
currentState?: InputMaybe<Scalars['String']['input']>;
|
|
30857
30906
|
desiredState?: InputMaybe<Scalars['String']['input']>;
|
|
30858
30907
|
issueAri: Scalars['ID']['input'];
|
|
@@ -32731,6 +32780,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
32731
32780
|
export declare type JiraIssueTransitionComment = {
|
|
32732
32781
|
__typename?: 'JiraIssueTransitionComment';
|
|
32733
32782
|
adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
|
|
32783
|
+
enableCannedResponses?: Maybe<Scalars['Boolean']['output']>;
|
|
32734
32784
|
enableCommentVisibility?: Maybe<Scalars['Boolean']['output']>;
|
|
32735
32785
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
32736
32786
|
types?: Maybe<Array<Maybe<JiraIssueTransitionCommentType>>>;
|
|
@@ -38716,7 +38766,7 @@ export declare type JiraSingleSelectUserPickerFieldPayload = Payload & {
|
|
|
38716
38766
|
export declare enum JiraSingleValueFieldOperations {
|
|
38717
38767
|
Set = "SET"
|
|
38718
38768
|
}
|
|
38719
|
-
export declare type JiraSingleVersionPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38769
|
+
export declare type JiraSingleVersionPickerField = JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38720
38770
|
__typename?: 'JiraSingleVersionPickerField';
|
|
38721
38771
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
38722
38772
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -38725,11 +38775,20 @@ export declare type JiraSingleVersionPickerField = JiraIssueField & JiraIssueFie
|
|
|
38725
38775
|
id: Scalars['ID']['output'];
|
|
38726
38776
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
38727
38777
|
name: Scalars['String']['output'];
|
|
38778
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
38728
38779
|
type: Scalars['String']['output'];
|
|
38729
38780
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
38730
38781
|
version?: Maybe<JiraVersion>;
|
|
38731
38782
|
versions?: Maybe<JiraVersionConnection>;
|
|
38732
38783
|
};
|
|
38784
|
+
export declare type JiraSingleVersionPickerFieldSelectableValueOptionsArgs = {
|
|
38785
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38786
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
38787
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
38788
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38789
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38790
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
38791
|
+
};
|
|
38733
38792
|
export declare type JiraSingleVersionPickerFieldVersionsArgs = {
|
|
38734
38793
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38735
38794
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -39324,6 +39383,7 @@ export declare type JiraTimeTrackingField = JiraIssueField & JiraIssueFieldConfi
|
|
|
39324
39383
|
};
|
|
39325
39384
|
export declare type JiraTimeTrackingFieldInput = {
|
|
39326
39385
|
originalEstimate?: InputMaybe<Scalars['String']['input']>;
|
|
39386
|
+
timeRemaining?: InputMaybe<Scalars['String']['input']>;
|
|
39327
39387
|
};
|
|
39328
39388
|
export declare type JiraTimeTrackingFieldPayload = Payload & {
|
|
39329
39389
|
__typename?: 'JiraTimeTrackingFieldPayload';
|
|
@@ -41007,6 +41067,10 @@ export declare enum JsmChatChannelType {
|
|
|
41007
41067
|
Agent = "AGENT",
|
|
41008
41068
|
Request = "REQUEST"
|
|
41009
41069
|
}
|
|
41070
|
+
export declare enum JsmChatConnectedApps {
|
|
41071
|
+
Slack = "SLACK",
|
|
41072
|
+
Teams = "TEAMS"
|
|
41073
|
+
}
|
|
41010
41074
|
export declare type JsmChatCreateChannelInput = {
|
|
41011
41075
|
channelName: Scalars['String']['input'];
|
|
41012
41076
|
channelType: JsmChatChannelType;
|
|
@@ -41058,6 +41122,7 @@ export declare type JsmChatInitializeConfigResponse = {
|
|
|
41058
41122
|
};
|
|
41059
41123
|
export declare type JsmChatInitializeNativeConfigResponse = {
|
|
41060
41124
|
__typename?: 'JsmChatInitializeNativeConfigResponse';
|
|
41125
|
+
connectedApp?: Maybe<JsmChatConnectedApps>;
|
|
41061
41126
|
nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
41062
41127
|
};
|
|
41063
41128
|
export declare enum JsmChatMessageSource {
|
|
@@ -41066,12 +41131,46 @@ export declare enum JsmChatMessageSource {
|
|
|
41066
41131
|
export declare enum JsmChatMessageType {
|
|
41067
41132
|
Adf = "ADF"
|
|
41068
41133
|
}
|
|
41134
|
+
export declare type JsmChatMsTeamsChannelRequestTypeMapping = {
|
|
41135
|
+
__typename?: 'JsmChatMsTeamsChannelRequestTypeMapping';
|
|
41136
|
+
channels?: Maybe<Array<Maybe<JsmChatMsTeamsChannels>>>;
|
|
41137
|
+
teamId: Scalars['ID']['output'];
|
|
41138
|
+
teamName?: Maybe<Scalars['String']['output']>;
|
|
41139
|
+
};
|
|
41140
|
+
export declare type JsmChatMsTeamsChannels = {
|
|
41141
|
+
__typename?: 'JsmChatMsTeamsChannels';
|
|
41142
|
+
channelId: Scalars['ID']['output'];
|
|
41143
|
+
channelName?: Maybe<Scalars['String']['output']>;
|
|
41144
|
+
channelType?: Maybe<Scalars['String']['output']>;
|
|
41145
|
+
channelUrl?: Maybe<Scalars['String']['output']>;
|
|
41146
|
+
requestTypes?: Maybe<Array<Maybe<JsmChatRequestTypesMappedResponse>>>;
|
|
41147
|
+
};
|
|
41148
|
+
export declare type JsmChatMsTeamsConfig = {
|
|
41149
|
+
__typename?: 'JsmChatMsTeamsConfig';
|
|
41150
|
+
channelRequestTypeMapping: Array<JsmChatMsTeamsChannelRequestTypeMapping>;
|
|
41151
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
41152
|
+
projectSettings?: Maybe<JsmChatMsTeamsProjectSettings>;
|
|
41153
|
+
siteId?: Maybe<Scalars['String']['output']>;
|
|
41154
|
+
tenantId?: Maybe<Scalars['String']['output']>;
|
|
41155
|
+
tenantTeamName?: Maybe<Scalars['String']['output']>;
|
|
41156
|
+
tenantTeamUrl?: Maybe<Scalars['String']['output']>;
|
|
41157
|
+
uninstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
41158
|
+
};
|
|
41159
|
+
export declare type JsmChatMsTeamsProjectSettings = {
|
|
41160
|
+
__typename?: 'JsmChatMsTeamsProjectSettings';
|
|
41161
|
+
jsmApproversEnabled: Scalars['Boolean']['output'];
|
|
41162
|
+
};
|
|
41163
|
+
export declare type JsmChatMsTeamsUpdatedProjectSettings = {
|
|
41164
|
+
jsmApproversEnabled: Scalars['Boolean']['input'];
|
|
41165
|
+
};
|
|
41069
41166
|
export declare type JsmChatMutation = {
|
|
41070
41167
|
__typename?: 'JsmChatMutation';
|
|
41071
41168
|
createChannel: JsmChatCreateChannelOutput;
|
|
41072
41169
|
createComment?: Maybe<JsmChatCreateCommentOutput>;
|
|
41073
41170
|
disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
41074
41171
|
updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
|
|
41172
|
+
updateMsTeamsChannelSettings: JsmChatUpdateMsTeamsChannelSettingsOutput;
|
|
41173
|
+
updateMsTeamsProjectSettings: JsmChatUpdateMsTeamsProjectSettingsOutput;
|
|
41075
41174
|
updateProjectSettings?: Maybe<JsmChatUpdateProjectSettingsOutput>;
|
|
41076
41175
|
};
|
|
41077
41176
|
export declare type JsmChatMutationCreateChannelArgs = {
|
|
@@ -41091,6 +41190,15 @@ export declare type JsmChatMutationUpdateChannelSettingsArgs = {
|
|
|
41091
41190
|
jiraProjectAri: Scalars['ID']['input'];
|
|
41092
41191
|
slackChannelAri?: InputMaybe<Scalars['ID']['input']>;
|
|
41093
41192
|
};
|
|
41193
|
+
export declare type JsmChatMutationUpdateMsTeamsChannelSettingsArgs = {
|
|
41194
|
+
input: JsmChatUpdateMsTeamsChannelSettingsInput;
|
|
41195
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
41196
|
+
msTeamsAri: Scalars['ID']['input'];
|
|
41197
|
+
};
|
|
41198
|
+
export declare type JsmChatMutationUpdateMsTeamsProjectSettingsArgs = {
|
|
41199
|
+
input: JsmChatUpdateMsTeamsProjectSettingsInput;
|
|
41200
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
41201
|
+
};
|
|
41094
41202
|
export declare type JsmChatMutationUpdateProjectSettingsArgs = {
|
|
41095
41203
|
input: JsmChatUpdateProjectSettingsInput;
|
|
41096
41204
|
};
|
|
@@ -41114,10 +41222,14 @@ export declare type JsmChatProjectSettingsSlack = {
|
|
|
41114
41222
|
};
|
|
41115
41223
|
export declare type JsmChatQuery = {
|
|
41116
41224
|
__typename?: 'JsmChatQuery';
|
|
41225
|
+
getMsTeamsChatConfig?: Maybe<JsmChatMsTeamsConfig>;
|
|
41117
41226
|
getSlackChatConfig?: Maybe<JsmChatSlackConfig>;
|
|
41118
41227
|
initializeConfig: JsmChatInitializeConfigResponse;
|
|
41119
41228
|
initializeNativeConfig: JsmChatInitializeNativeConfigResponse;
|
|
41120
41229
|
};
|
|
41230
|
+
export declare type JsmChatQueryGetMsTeamsChatConfigArgs = {
|
|
41231
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
41232
|
+
};
|
|
41121
41233
|
export declare type JsmChatQueryGetSlackChatConfigArgs = {
|
|
41122
41234
|
jiraProjectAri: Scalars['ID']['input'];
|
|
41123
41235
|
};
|
|
@@ -41167,6 +41279,29 @@ export declare type JsmChatUpdateChannelSettingsOutput = {
|
|
|
41167
41279
|
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
41168
41280
|
status: Scalars['Boolean']['output'];
|
|
41169
41281
|
};
|
|
41282
|
+
export declare type JsmChatUpdateMsTeamsChannelSettingsInput = {
|
|
41283
|
+
requestTypeIds: Array<Scalars['String']['input']>;
|
|
41284
|
+
};
|
|
41285
|
+
export declare type JsmChatUpdateMsTeamsChannelSettingsOutput = {
|
|
41286
|
+
__typename?: 'JsmChatUpdateMsTeamsChannelSettingsOutput';
|
|
41287
|
+
channelId?: Maybe<Scalars['String']['output']>;
|
|
41288
|
+
channelName?: Maybe<Scalars['String']['output']>;
|
|
41289
|
+
channelType?: Maybe<Scalars['String']['output']>;
|
|
41290
|
+
message: Scalars['String']['output'];
|
|
41291
|
+
requestTypes?: Maybe<Array<Maybe<JsmChatRequestTypesMappedResponse>>>;
|
|
41292
|
+
status: Scalars['Boolean']['output'];
|
|
41293
|
+
};
|
|
41294
|
+
export declare type JsmChatUpdateMsTeamsProjectSettingsInput = {
|
|
41295
|
+
settings?: InputMaybe<JsmChatMsTeamsUpdatedProjectSettings>;
|
|
41296
|
+
};
|
|
41297
|
+
export declare type JsmChatUpdateMsTeamsProjectSettingsOutput = {
|
|
41298
|
+
__typename?: 'JsmChatUpdateMsTeamsProjectSettingsOutput';
|
|
41299
|
+
message: Scalars['String']['output'];
|
|
41300
|
+
projectId?: Maybe<Scalars['String']['output']>;
|
|
41301
|
+
settings?: Maybe<JsmChatMsTeamsProjectSettings>;
|
|
41302
|
+
siteId?: Maybe<Scalars['String']['output']>;
|
|
41303
|
+
status: Scalars['Boolean']['output'];
|
|
41304
|
+
};
|
|
41170
41305
|
export declare type JsmChatUpdateProjectSettingsInput = {
|
|
41171
41306
|
activationId: Scalars['String']['input'];
|
|
41172
41307
|
projectId: Scalars['String']['input'];
|
|
@@ -41249,15 +41384,18 @@ export declare type KnowledgeBaseSources = {
|
|
|
41249
41384
|
};
|
|
41250
41385
|
export declare type KnowledgeDiscoveryConfluenceBlogpost = KnowledgeDiscoveryEntity & {
|
|
41251
41386
|
__typename?: 'KnowledgeDiscoveryConfluenceBlogpost';
|
|
41387
|
+
confluenceBlogpost?: Maybe<ConfluenceBlogPost>;
|
|
41252
41388
|
id: Scalars['ID']['output'];
|
|
41253
41389
|
};
|
|
41254
41390
|
export declare type KnowledgeDiscoveryConfluenceEntity = ConfluenceBlogPost | ConfluencePage;
|
|
41255
41391
|
export declare type KnowledgeDiscoveryConfluencePage = KnowledgeDiscoveryEntity & {
|
|
41256
41392
|
__typename?: 'KnowledgeDiscoveryConfluencePage';
|
|
41393
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
41257
41394
|
id: Scalars['ID']['output'];
|
|
41258
41395
|
};
|
|
41259
41396
|
export declare type KnowledgeDiscoveryConfluenceSpace = KnowledgeDiscoveryEntity & {
|
|
41260
41397
|
__typename?: 'KnowledgeDiscoveryConfluenceSpace';
|
|
41398
|
+
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
41261
41399
|
id: Scalars['ID']['output'];
|
|
41262
41400
|
};
|
|
41263
41401
|
export declare type KnowledgeDiscoveryCreateDefinitionInput = {
|
|
@@ -41315,6 +41453,7 @@ export declare enum KnowledgeDiscoveryEntityType {
|
|
|
41315
41453
|
export declare type KnowledgeDiscoveryJiraProject = KnowledgeDiscoveryEntity & {
|
|
41316
41454
|
__typename?: 'KnowledgeDiscoveryJiraProject';
|
|
41317
41455
|
id: Scalars['ID']['output'];
|
|
41456
|
+
jiraProject?: Maybe<JiraProject>;
|
|
41318
41457
|
};
|
|
41319
41458
|
export declare type KnowledgeDiscoveryKeyPhrase = {
|
|
41320
41459
|
__typename?: 'KnowledgeDiscoveryKeyPhrase';
|
|
@@ -41436,6 +41575,7 @@ export declare enum KnowledgeDiscoveryTopicType {
|
|
|
41436
41575
|
export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
|
|
41437
41576
|
__typename?: 'KnowledgeDiscoveryUser';
|
|
41438
41577
|
id: Scalars['ID']['output'];
|
|
41578
|
+
user?: Maybe<User>;
|
|
41439
41579
|
};
|
|
41440
41580
|
export declare type LabelUsage = {
|
|
41441
41581
|
__typename?: 'LabelUsage';
|
|
@@ -42487,9 +42627,22 @@ export declare enum MercuryMetricType {
|
|
|
42487
42627
|
}
|
|
42488
42628
|
export declare type MercuryQueryApi = {
|
|
42489
42629
|
__typename?: 'MercuryQueryApi';
|
|
42630
|
+
focusArea: MercuryFocusArea;
|
|
42631
|
+
focusAreaStatusTransitions: Array<MercuryFocusAreaStatusTransition>;
|
|
42632
|
+
focusAreaTypes: Array<MercuryFocusAreaType>;
|
|
42490
42633
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
42491
42634
|
focusAreasByCloudId?: Maybe<MercuryFocusAreaConnection>;
|
|
42492
42635
|
};
|
|
42636
|
+
export declare type MercuryQueryApiFocusAreaArgs = {
|
|
42637
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
42638
|
+
id: Scalars['ID']['input'];
|
|
42639
|
+
};
|
|
42640
|
+
export declare type MercuryQueryApiFocusAreaStatusTransitionsArgs = {
|
|
42641
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
42642
|
+
};
|
|
42643
|
+
export declare type MercuryQueryApiFocusAreaTypesArgs = {
|
|
42644
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
42645
|
+
};
|
|
42493
42646
|
export declare type MercuryQueryApiFocusAreasByArisArgs = {
|
|
42494
42647
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
42495
42648
|
};
|
|
@@ -42691,7 +42844,7 @@ export declare type Mutation = {
|
|
|
42691
42844
|
trello: TrelloMutationApi;
|
|
42692
42845
|
unarchivePolarisInsights?: Maybe<UnarchivePolarisInsightsPayload>;
|
|
42693
42846
|
unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
|
|
42694
|
-
unified
|
|
42847
|
+
unified?: Maybe<UnifiedMutation>;
|
|
42695
42848
|
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
42696
42849
|
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
42697
42850
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
@@ -45440,8 +45593,8 @@ export declare type Query = {
|
|
|
45440
45593
|
signup?: Maybe<SignupQueryApi>;
|
|
45441
45594
|
smarts?: Maybe<SmartsQueryApi>;
|
|
45442
45595
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
45443
|
-
squadNameById?: Maybe<SupportInquirySquad>;
|
|
45444
45596
|
suggestions?: Maybe<AutoSuggestionApi>;
|
|
45597
|
+
supportInquiry?: Maybe<SupportInquiryApi>;
|
|
45445
45598
|
surfacePlatform: SurfacePlatformQueryApi;
|
|
45446
45599
|
team?: Maybe<TeamQuery>;
|
|
45447
45600
|
template?: Maybe<ContentPlatformTemplate>;
|
|
@@ -45454,7 +45607,7 @@ export declare type Query = {
|
|
|
45454
45607
|
topicOverviews: ContentPlatformTopicOverviewContentSearchConnection;
|
|
45455
45608
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
45456
45609
|
trello: TrelloQueryApi;
|
|
45457
|
-
unified
|
|
45610
|
+
unified?: Maybe<UnifiedQuery>;
|
|
45458
45611
|
user?: Maybe<User>;
|
|
45459
45612
|
users?: Maybe<Array<User>>;
|
|
45460
45613
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
@@ -47033,6 +47186,8 @@ export declare enum Scope {
|
|
|
47033
47186
|
ProjectVersionRead = "PROJECT_VERSION_READ",
|
|
47034
47187
|
ProjectVersionWrite = "PROJECT_VERSION_WRITE",
|
|
47035
47188
|
ProjectWrite = "PROJECT_WRITE",
|
|
47189
|
+
PullRequest = "PULL_REQUEST",
|
|
47190
|
+
PullRequestWrite = "PULL_REQUEST_WRITE",
|
|
47036
47191
|
ReadAccount = "READ_ACCOUNT",
|
|
47037
47192
|
ReadCompassAttentionItem = "READ_COMPASS_ATTENTION_ITEM",
|
|
47038
47193
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
@@ -47241,7 +47396,7 @@ export declare enum SearchConfluenceDocumentStatus {
|
|
|
47241
47396
|
Current = "CURRENT",
|
|
47242
47397
|
Draft = "DRAFT"
|
|
47243
47398
|
}
|
|
47244
|
-
export declare type SearchConfluenceEntity = ConfluenceBlogPost | ConfluencePage | ConfluenceWhiteboard;
|
|
47399
|
+
export declare type SearchConfluenceEntity = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluencePage | ConfluenceWhiteboard;
|
|
47245
47400
|
export declare type SearchConfluenceFilter = {
|
|
47246
47401
|
ancestorIdsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
47247
47402
|
containerARIs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -49105,6 +49260,7 @@ export declare type SmartsRecommendedUser = {
|
|
|
49105
49260
|
export declare type SoftwareBoard = {
|
|
49106
49261
|
__typename?: 'SoftwareBoard';
|
|
49107
49262
|
assignees?: Maybe<Array<Maybe<User>>>;
|
|
49263
|
+
boardSwimlaneStrategy?: Maybe<BoardSwimlaneStrategy>;
|
|
49108
49264
|
cardChildren?: Maybe<Array<Maybe<SoftwareCard>>>;
|
|
49109
49265
|
cardMedia?: Maybe<CardMediaConfig>;
|
|
49110
49266
|
cardTypes: Array<Maybe<CardType>>;
|
|
@@ -49358,6 +49514,13 @@ export declare type Subscription = {
|
|
|
49358
49514
|
testing?: Maybe<TestingSubscription>;
|
|
49359
49515
|
trello: TrelloSubscriptionApi;
|
|
49360
49516
|
};
|
|
49517
|
+
export declare type SupportInquiryApi = {
|
|
49518
|
+
__typename?: 'SupportInquiryApi';
|
|
49519
|
+
squad?: Maybe<SupportInquirySquad>;
|
|
49520
|
+
};
|
|
49521
|
+
export declare type SupportInquiryApiSquadArgs = {
|
|
49522
|
+
id: Scalars['ID']['input'];
|
|
49523
|
+
};
|
|
49361
49524
|
export declare type SupportInquirySquad = {
|
|
49362
49525
|
__typename?: 'SupportInquirySquad';
|
|
49363
49526
|
id: Scalars['ID']['output'];
|
|
@@ -50116,6 +50279,21 @@ export declare type ThirdPartySecurityWorkspace = Node & SecurityWorkspace & {
|
|
|
50116
50279
|
providerName?: Maybe<Scalars['String']['output']>;
|
|
50117
50280
|
url?: Maybe<Scalars['URL']['output']>;
|
|
50118
50281
|
};
|
|
50282
|
+
export declare type ThirdPartyUser = LocalizationContext & User & {
|
|
50283
|
+
__typename?: 'ThirdPartyUser';
|
|
50284
|
+
accountId: Scalars['ID']['output'];
|
|
50285
|
+
accountStatus: AccountStatus;
|
|
50286
|
+
canonicalAccountId: Scalars['ID']['output'];
|
|
50287
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50288
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
50289
|
+
externalId: Scalars['String']['output'];
|
|
50290
|
+
id: Scalars['ID']['output'];
|
|
50291
|
+
locale?: Maybe<Scalars['String']['output']>;
|
|
50292
|
+
name: Scalars['String']['output'];
|
|
50293
|
+
picture: Scalars['URL']['output'];
|
|
50294
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
50295
|
+
zoneinfo?: Maybe<Scalars['String']['output']>;
|
|
50296
|
+
};
|
|
50119
50297
|
export declare type TimeSeriesPoint = {
|
|
50120
50298
|
__typename?: 'TimeSeriesPoint';
|
|
50121
50299
|
id: Scalars['ID']['output'];
|
|
@@ -50380,6 +50558,7 @@ export declare type TownsquareCreateGoalInput = {
|
|
|
50380
50558
|
containerId: Scalars['String']['input'];
|
|
50381
50559
|
name: Scalars['String']['input'];
|
|
50382
50560
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
50561
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
50383
50562
|
};
|
|
50384
50563
|
export declare type TownsquareCreateGoalPayload = {
|
|
50385
50564
|
__typename?: 'TownsquareCreateGoalPayload';
|
|
@@ -51137,6 +51316,8 @@ export declare type TrelloCardBadges = {
|
|
|
51137
51316
|
comments?: Maybe<Scalars['Int']['output']>;
|
|
51138
51317
|
description?: Maybe<Scalars['Boolean']['output']>;
|
|
51139
51318
|
due?: Maybe<TrelloCardBadgeDueInfo>;
|
|
51319
|
+
externalSource?: Maybe<TrelloCardExternalSource>;
|
|
51320
|
+
lastUpdatedByAi?: Maybe<Scalars['Boolean']['output']>;
|
|
51140
51321
|
location?: Maybe<Scalars['Boolean']['output']>;
|
|
51141
51322
|
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
51142
51323
|
viewer?: Maybe<TrelloCardViewer>;
|
|
@@ -51210,6 +51391,9 @@ export declare type TrelloCardEdge = {
|
|
|
51210
51391
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
51211
51392
|
node?: Maybe<TrelloCard>;
|
|
51212
51393
|
};
|
|
51394
|
+
export declare enum TrelloCardExternalSource {
|
|
51395
|
+
Email = "EMAIL"
|
|
51396
|
+
}
|
|
51213
51397
|
export declare type TrelloCardLimit = {
|
|
51214
51398
|
__typename?: 'TrelloCardLimit';
|
|
51215
51399
|
perCard?: Maybe<TrelloLimitProps>;
|
|
@@ -51460,6 +51644,7 @@ export declare type TrelloList = Node & {
|
|
|
51460
51644
|
objectId: Scalars['ID']['output'];
|
|
51461
51645
|
position: Scalars['Float']['output'];
|
|
51462
51646
|
softLimit?: Maybe<Scalars['Int']['output']>;
|
|
51647
|
+
suggestedCardName?: Maybe<Scalars['String']['output']>;
|
|
51463
51648
|
viewer?: Maybe<TrelloListViewer>;
|
|
51464
51649
|
};
|
|
51465
51650
|
export declare type TrelloListCardsArgs = {
|
|
@@ -51985,93 +52170,96 @@ export declare type UnassignIssueParentOutput = MutationResponse & {
|
|
|
51985
52170
|
statusCode: Scalars['Int']['output'];
|
|
51986
52171
|
success: Scalars['Boolean']['output'];
|
|
51987
52172
|
};
|
|
51988
|
-
export declare type UnifiedAccount = {
|
|
52173
|
+
export declare type UnifiedAccount = UnifiedINode & {
|
|
51989
52174
|
__typename?: 'UnifiedAccount';
|
|
51990
|
-
aaid
|
|
52175
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
51991
52176
|
connectedProductsReferenceId?: Maybe<Scalars['String']['output']>;
|
|
52177
|
+
id: Scalars['ID']['output'];
|
|
52178
|
+
linkedAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
51992
52179
|
parentAccountEmailId?: Maybe<Scalars['String']['output']>;
|
|
51993
|
-
parentAccountInternalId?: Maybe<Scalars['
|
|
51994
|
-
};
|
|
51995
|
-
export declare type UnifiedCreateAccountSuccess = {
|
|
51996
|
-
__typename?: 'UnifiedCreateAccountSuccess';
|
|
51997
|
-
data: UnifiedParentAccount;
|
|
52180
|
+
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
51998
52181
|
};
|
|
51999
|
-
export declare type
|
|
52000
|
-
|
|
52001
|
-
|
|
52002
|
-
|
|
52182
|
+
export declare type UnifiedAtlassianProduct = {
|
|
52183
|
+
__typename?: 'UnifiedAtlassianProduct';
|
|
52184
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
52185
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
52186
|
+
viewHref?: Maybe<Scalars['String']['output']>;
|
|
52187
|
+
};
|
|
52188
|
+
export declare type UnifiedForumSnapshot = {
|
|
52189
|
+
__typename?: 'UnifiedForumSnapshot';
|
|
52190
|
+
acceptedAnswersCreated?: Maybe<Scalars['Int']['output']>;
|
|
52191
|
+
answersCreated?: Maybe<Scalars['Int']['output']>;
|
|
52192
|
+
badgesEarned?: Maybe<Scalars['Int']['output']>;
|
|
52193
|
+
kudosGiven?: Maybe<Scalars['Int']['output']>;
|
|
52194
|
+
kudosReceived?: Maybe<Scalars['Int']['output']>;
|
|
52195
|
+
lastPostTime?: Maybe<Scalars['String']['output']>;
|
|
52196
|
+
lastVisitTime?: Maybe<Scalars['String']['output']>;
|
|
52197
|
+
minutesOnline?: Maybe<Scalars['Int']['output']>;
|
|
52198
|
+
rank?: Maybe<Scalars['String']['output']>;
|
|
52199
|
+
repliesCreated?: Maybe<Scalars['Int']['output']>;
|
|
52200
|
+
roles?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
52201
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
52202
|
+
topicsCreated?: Maybe<Scalars['Int']['output']>;
|
|
52203
|
+
totalLoginsRecorded?: Maybe<Scalars['String']['output']>;
|
|
52204
|
+
totalPosts?: Maybe<Scalars['Int']['output']>;
|
|
52003
52205
|
};
|
|
52004
|
-
export declare type
|
|
52005
|
-
|
|
52006
|
-
__typename?: 'UnifiedError';
|
|
52007
|
-
message: Scalars['String']['output'];
|
|
52206
|
+
export declare type UnifiedINode = {
|
|
52207
|
+
id: Scalars['ID']['output'];
|
|
52008
52208
|
};
|
|
52009
|
-
export declare type
|
|
52010
|
-
__typename?: '
|
|
52011
|
-
|
|
52012
|
-
|
|
52013
|
-
|
|
52014
|
-
|
|
52015
|
-
|
|
52016
|
-
|
|
52017
|
-
|
|
52018
|
-
minutesOnline: Scalars['Int']['output'];
|
|
52019
|
-
rank: Scalars['String']['output'];
|
|
52020
|
-
repliesCreated: Scalars['Int']['output'];
|
|
52021
|
-
roles: Array<Scalars['String']['output']>;
|
|
52022
|
-
status: Scalars['String']['output'];
|
|
52023
|
-
topicsCreated: Scalars['Int']['output'];
|
|
52024
|
-
totalLoginsRecorded: Scalars['String']['output'];
|
|
52025
|
-
totalPosts: Scalars['Int']['output'];
|
|
52209
|
+
export declare type UnifiedLearningCertification = {
|
|
52210
|
+
__typename?: 'UnifiedLearningCertification';
|
|
52211
|
+
activeDate?: Maybe<Scalars['String']['output']>;
|
|
52212
|
+
expireDate?: Maybe<Scalars['String']['output']>;
|
|
52213
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
52214
|
+
inactiveDate?: Maybe<Scalars['String']['output']>;
|
|
52215
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
52216
|
+
nameAbbr?: Maybe<Scalars['String']['output']>;
|
|
52217
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
52026
52218
|
};
|
|
52027
|
-
export declare type UnifiedLinkedAccount = {
|
|
52219
|
+
export declare type UnifiedLinkedAccount = UnifiedINode & {
|
|
52028
52220
|
__typename?: 'UnifiedLinkedAccount';
|
|
52029
|
-
aaid
|
|
52221
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
52030
52222
|
connectedProductsReferenceId?: Maybe<Scalars['String']['output']>;
|
|
52031
|
-
|
|
52032
|
-
|
|
52033
|
-
|
|
52034
|
-
aaid: Scalars['String']['input'];
|
|
52035
|
-
connectedProductsReferenceId?: InputMaybe<Scalars['String']['input']>;
|
|
52036
|
-
parentAccountInternalId?: InputMaybe<Scalars['String']['input']>;
|
|
52037
|
-
};
|
|
52038
|
-
export declare type UnifiedLinkedCreateAccountSuccess = {
|
|
52039
|
-
__typename?: 'UnifiedLinkedCreateAccountSuccess';
|
|
52040
|
-
data: UnifiedLinkedAccount;
|
|
52223
|
+
id: Scalars['ID']['output'];
|
|
52224
|
+
linkedAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
52225
|
+
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
52041
52226
|
};
|
|
52042
|
-
export declare type UnifiedLinkedCreateAccountUnion = UnifiedError | UnifiedLinkedCreateAccountSuccess;
|
|
52043
52227
|
export declare type UnifiedMutation = {
|
|
52044
52228
|
__typename?: 'UnifiedMutation';
|
|
52045
|
-
createLinkedAccount
|
|
52046
|
-
createParentAccount
|
|
52047
|
-
createUnifiedSystem
|
|
52048
|
-
updateUnifiedProfile
|
|
52229
|
+
createLinkedAccount?: Maybe<UnifiedLinkedAccount>;
|
|
52230
|
+
createParentAccount?: Maybe<UnifiedParentAccount>;
|
|
52231
|
+
createUnifiedSystem?: Maybe<UnifiedProfile>;
|
|
52232
|
+
updateUnifiedProfile?: Maybe<UnifiedProfile>;
|
|
52049
52233
|
};
|
|
52050
52234
|
export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
52051
|
-
|
|
52235
|
+
aaid: Scalars['String']['input'];
|
|
52236
|
+
connectedProductsReferenceId: Scalars['String']['input'];
|
|
52237
|
+
parentAccountInternalId: Scalars['String']['input'];
|
|
52052
52238
|
};
|
|
52053
52239
|
export declare type UnifiedMutationCreateParentAccountArgs = {
|
|
52054
|
-
|
|
52240
|
+
parentAccountEmailId: Scalars['String']['input'];
|
|
52055
52241
|
};
|
|
52056
52242
|
export declare type UnifiedMutationCreateUnifiedSystemArgs = {
|
|
52057
|
-
|
|
52243
|
+
aaid: Scalars['String']['input'];
|
|
52244
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
52245
|
+
parentAccountEmailId: Scalars['String']['input'];
|
|
52246
|
+
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
52058
52247
|
};
|
|
52059
52248
|
export declare type UnifiedMutationUpdateUnifiedProfileArgs = {
|
|
52060
|
-
|
|
52249
|
+
unifiedProfileInput?: InputMaybe<UnifiedProfileInput>;
|
|
52061
52250
|
};
|
|
52062
|
-
export declare type UnifiedParentAccount = {
|
|
52251
|
+
export declare type UnifiedParentAccount = UnifiedINode & {
|
|
52063
52252
|
__typename?: 'UnifiedParentAccount';
|
|
52253
|
+
id: Scalars['ID']['output'];
|
|
52064
52254
|
parentAccountEmailId?: Maybe<Scalars['String']['output']>;
|
|
52065
|
-
parentAccountInternalId?: Maybe<Scalars['
|
|
52255
|
+
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
52066
52256
|
};
|
|
52067
|
-
export declare type
|
|
52068
|
-
parentAccountEmailId?: InputMaybe<Scalars['String']['input']>;
|
|
52069
|
-
};
|
|
52070
|
-
export declare type UnifiedProfile = {
|
|
52257
|
+
export declare type UnifiedProfile = UnifiedINode & {
|
|
52071
52258
|
__typename?: 'UnifiedProfile';
|
|
52072
52259
|
bio?: Maybe<Scalars['String']['output']>;
|
|
52073
52260
|
company?: Maybe<Scalars['String']['output']>;
|
|
52074
52261
|
forumsId?: Maybe<Scalars['String']['output']>;
|
|
52262
|
+
id: Scalars['ID']['output'];
|
|
52075
52263
|
learnId?: Maybe<Scalars['String']['output']>;
|
|
52076
52264
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
52077
52265
|
location?: Maybe<Scalars['String']['output']>;
|
|
@@ -52090,6 +52278,7 @@ export declare type UnifiedProfileInput = {
|
|
|
52090
52278
|
bio?: InputMaybe<Scalars['String']['input']>;
|
|
52091
52279
|
company?: InputMaybe<Scalars['String']['input']>;
|
|
52092
52280
|
forumsId?: InputMaybe<Scalars['String']['input']>;
|
|
52281
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
52093
52282
|
learnId?: InputMaybe<Scalars['String']['input']>;
|
|
52094
52283
|
linkedinUrl?: InputMaybe<Scalars['String']['input']>;
|
|
52095
52284
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -52107,73 +52296,35 @@ export declare type UnifiedProfileInput = {
|
|
|
52107
52296
|
};
|
|
52108
52297
|
export declare type UnifiedQuery = {
|
|
52109
52298
|
__typename?: 'UnifiedQuery';
|
|
52110
|
-
|
|
52111
|
-
|
|
52112
|
-
|
|
52113
|
-
|
|
52114
|
-
|
|
52115
|
-
|
|
52299
|
+
atlassianProducts?: Maybe<Array<Maybe<UnifiedAtlassianProduct>>>;
|
|
52300
|
+
forumSnapshot?: Maybe<UnifiedForumSnapshot>;
|
|
52301
|
+
learningCertications?: Maybe<Array<Maybe<UnifiedLearningCertification>>>;
|
|
52302
|
+
node?: Maybe<UnifiedINode>;
|
|
52303
|
+
unifiedAccount?: Maybe<UnifiedAccount>;
|
|
52304
|
+
unifiedAccounts?: Maybe<Array<Maybe<UnifiedAccount>>>;
|
|
52305
|
+
unifiedProfile?: Maybe<UnifiedProfile>;
|
|
52306
|
+
unifiedProfiles?: Maybe<Array<Maybe<UnifiedProfile>>>;
|
|
52307
|
+
};
|
|
52308
|
+
export declare type UnifiedQueryAtlassianProductsArgs = {
|
|
52309
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
52116
52310
|
};
|
|
52117
52311
|
export declare type UnifiedQueryForumSnapshotArgs = {
|
|
52118
|
-
aaid
|
|
52312
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
52119
52313
|
};
|
|
52120
|
-
export declare type
|
|
52314
|
+
export declare type UnifiedQueryLearningCerticationsArgs = {
|
|
52121
52315
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
52122
52316
|
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
52123
52317
|
};
|
|
52318
|
+
export declare type UnifiedQueryNodeArgs = {
|
|
52319
|
+
id: Scalars['ID']['input'];
|
|
52320
|
+
};
|
|
52124
52321
|
export declare type UnifiedQueryUnifiedAccountArgs = {
|
|
52125
|
-
aaid
|
|
52322
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
52126
52323
|
};
|
|
52127
52324
|
export declare type UnifiedQueryUnifiedProfileArgs = {
|
|
52128
52325
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
52129
52326
|
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
52130
52327
|
};
|
|
52131
|
-
export declare type UnifiedQueryAccountSuccess = {
|
|
52132
|
-
__typename?: 'UnifiedQueryAccountSuccess';
|
|
52133
|
-
data: UnifiedAccount;
|
|
52134
|
-
};
|
|
52135
|
-
export declare type UnifiedQueryAccountUnion = UnifiedError | UnifiedQueryAccountSuccess;
|
|
52136
|
-
export declare type UnifiedQueryForumSnapshotSuccess = {
|
|
52137
|
-
__typename?: 'UnifiedQueryForumSnapshotSuccess';
|
|
52138
|
-
data: UnifiedForumsUser;
|
|
52139
|
-
};
|
|
52140
|
-
export declare type UnifiedQueryForumSnapshotUnion = UnifiedError | UnifiedQueryForumSnapshotSuccess;
|
|
52141
|
-
export declare type UnifiedQueryLearningCertificationSuccess = {
|
|
52142
|
-
__typename?: 'UnifiedQueryLearningCertificationSuccess';
|
|
52143
|
-
data: Array<UnifiedUserCertificateDataRes>;
|
|
52144
|
-
};
|
|
52145
|
-
export declare type UnifiedQueryLearningCertificationUnion = UnifiedError | UnifiedQueryLearningCertificationSuccess;
|
|
52146
|
-
export declare type UnifiedQueryProfileSuccess = {
|
|
52147
|
-
__typename?: 'UnifiedQueryProfileSuccess';
|
|
52148
|
-
data: UnifiedProfile;
|
|
52149
|
-
};
|
|
52150
|
-
export declare type UnifiedQueryProfileUnion = UnifiedError | UnifiedQueryProfileSuccess;
|
|
52151
|
-
export declare type UnifiedQueryProfilesSuccess = {
|
|
52152
|
-
__typename?: 'UnifiedQueryProfilesSuccess';
|
|
52153
|
-
data: Array<UnifiedProfile>;
|
|
52154
|
-
};
|
|
52155
|
-
export declare type UnifiedQueryProfilesUnion = UnifiedError | UnifiedQueryProfilesSuccess;
|
|
52156
|
-
export declare type UnifiedSystemCreateAccountSuccess = {
|
|
52157
|
-
__typename?: 'UnifiedSystemCreateAccountSuccess';
|
|
52158
|
-
data: UnifiedProfile;
|
|
52159
|
-
};
|
|
52160
|
-
export declare type UnifiedSystemCreateAccountUnion = UnifiedError | UnifiedSystemCreateAccountSuccess;
|
|
52161
|
-
export declare type UnifiedSystemInput = {
|
|
52162
|
-
aaid: Scalars['String']['input'];
|
|
52163
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
52164
|
-
parentAccountEmailId: Scalars['String']['input'];
|
|
52165
|
-
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
52166
|
-
};
|
|
52167
|
-
export declare type UnifiedUserCertificateDataRes = {
|
|
52168
|
-
__typename?: 'UnifiedUserCertificateDataRes';
|
|
52169
|
-
activeDate: Scalars['String']['output'];
|
|
52170
|
-
expireDate: Scalars['String']['output'];
|
|
52171
|
-
imageUrl: Scalars['String']['output'];
|
|
52172
|
-
inactiveDate: Scalars['String']['output'];
|
|
52173
|
-
name: Scalars['String']['output'];
|
|
52174
|
-
nameAbbr: Scalars['String']['output'];
|
|
52175
|
-
status: Scalars['String']['output'];
|
|
52176
|
-
};
|
|
52177
52328
|
export declare type UnlinkExternalSourceInput = {
|
|
52178
52329
|
cloudId: Scalars['ID']['input'];
|
|
52179
52330
|
ecosystemAppId: Scalars['ID']['input'];
|
|
@@ -53290,8 +53441,12 @@ export declare type WebTriggerUrlInput = {
|
|
|
53290
53441
|
};
|
|
53291
53442
|
export declare type WorkSuggestions = {
|
|
53292
53443
|
__typename?: 'WorkSuggestions';
|
|
53444
|
+
userProfileByCloudId?: Maybe<WorkSuggestionsUserProfile>;
|
|
53293
53445
|
workSuggestionsByContextAri: WorkSuggestionsConnection;
|
|
53294
53446
|
};
|
|
53447
|
+
export declare type WorkSuggestionsUserProfileByCloudIdArgs = {
|
|
53448
|
+
cloudId: Scalars['ID']['input'];
|
|
53449
|
+
};
|
|
53295
53450
|
export declare type WorkSuggestionsWorkSuggestionsByContextAriArgs = {
|
|
53296
53451
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
53297
53452
|
contextAri: WorkSuggestionsContextAri;
|
|
@@ -53354,17 +53509,6 @@ export declare type WorkSuggestionsContextAri = {
|
|
|
53354
53509
|
projectAri: Scalars['ID']['input'];
|
|
53355
53510
|
sprintAri?: InputMaybe<Scalars['ID']['input']>;
|
|
53356
53511
|
};
|
|
53357
|
-
export declare type WorkSuggestionsCreateUserProfileInput = {
|
|
53358
|
-
cloudId: Scalars['ID']['input'];
|
|
53359
|
-
persona?: InputMaybe<WorkSuggestionsUserPersona>;
|
|
53360
|
-
projectAris: Array<Scalars['ID']['input']>;
|
|
53361
|
-
};
|
|
53362
|
-
export declare type WorkSuggestionsCreateUserProfilePayload = Payload & {
|
|
53363
|
-
__typename?: 'WorkSuggestionsCreateUserProfilePayload';
|
|
53364
|
-
errors?: Maybe<Array<MutationError>>;
|
|
53365
|
-
success: Scalars['Boolean']['output'];
|
|
53366
|
-
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
53367
|
-
};
|
|
53368
53512
|
export declare type WorkSuggestionsCriticalVulnerabilityTask = WorkSuggestionsCommon & {
|
|
53369
53513
|
__typename?: 'WorkSuggestionsCriticalVulnerabilityTask';
|
|
53370
53514
|
id: Scalars['String']['output'];
|
|
@@ -53404,15 +53548,12 @@ export declare enum WorkSuggestionsEnvironmentType {
|
|
|
53404
53548
|
}
|
|
53405
53549
|
export declare type WorkSuggestionsMutation = {
|
|
53406
53550
|
__typename?: 'WorkSuggestionsMutation';
|
|
53407
|
-
createUserProfile?: Maybe<WorkSuggestionsCreateUserProfilePayload>;
|
|
53408
53551
|
purgeUserActionStateForCurrentUser?: Maybe<WorkSuggestionsActionPayload>;
|
|
53409
53552
|
purgeUserProfileForCurrentUser?: Maybe<WorkSuggestionsPurgeUserProfilePayload>;
|
|
53410
53553
|
removeTask?: Maybe<WorkSuggestionsActionPayload>;
|
|
53554
|
+
saveUserProfile?: Maybe<WorkSuggestionsSaveUserProfilePayload>;
|
|
53411
53555
|
snoozeTask?: Maybe<WorkSuggestionsActionPayload>;
|
|
53412
53556
|
};
|
|
53413
|
-
export declare type WorkSuggestionsMutationCreateUserProfileArgs = {
|
|
53414
|
-
input: WorkSuggestionsCreateUserProfileInput;
|
|
53415
|
-
};
|
|
53416
53557
|
export declare type WorkSuggestionsMutationPurgeUserActionStateForCurrentUserArgs = {
|
|
53417
53558
|
input: WorkSuggestionsPurgeUserActionStateInput;
|
|
53418
53559
|
};
|
|
@@ -53422,6 +53563,9 @@ export declare type WorkSuggestionsMutationPurgeUserProfileForCurrentUserArgs =
|
|
|
53422
53563
|
export declare type WorkSuggestionsMutationRemoveTaskArgs = {
|
|
53423
53564
|
input: WorkSuggestionsActionInput;
|
|
53424
53565
|
};
|
|
53566
|
+
export declare type WorkSuggestionsMutationSaveUserProfileArgs = {
|
|
53567
|
+
input: WorkSuggestionsSaveUserProfileInput;
|
|
53568
|
+
};
|
|
53425
53569
|
export declare type WorkSuggestionsMutationSnoozeTaskArgs = {
|
|
53426
53570
|
input: WorkSuggestionsActionInput;
|
|
53427
53571
|
};
|
|
@@ -53466,6 +53610,18 @@ export declare type WorkSuggestionsPurgeUserProfilePayload = Payload & {
|
|
|
53466
53610
|
success: Scalars['Boolean']['output'];
|
|
53467
53611
|
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
53468
53612
|
};
|
|
53613
|
+
export declare type WorkSuggestionsSaveUserProfileInput = {
|
|
53614
|
+
cloudId: Scalars['ID']['input'];
|
|
53615
|
+
isUpdate: Scalars['Boolean']['input'];
|
|
53616
|
+
persona?: InputMaybe<WorkSuggestionsUserPersona>;
|
|
53617
|
+
projectAris: Array<Scalars['ID']['input']>;
|
|
53618
|
+
};
|
|
53619
|
+
export declare type WorkSuggestionsSaveUserProfilePayload = Payload & {
|
|
53620
|
+
__typename?: 'WorkSuggestionsSaveUserProfilePayload';
|
|
53621
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53622
|
+
success: Scalars['Boolean']['output'];
|
|
53623
|
+
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
53624
|
+
};
|
|
53469
53625
|
export declare type WorkSuggestionsUserActionState = {
|
|
53470
53626
|
__typename?: 'WorkSuggestionsUserActionState';
|
|
53471
53627
|
expireAt: Scalars['String']['output'];
|