@forge/cli-shared 5.5.3-next.2 → 5.5.3-next.4
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.
|
@@ -6787,6 +6787,7 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
|
6787
6787
|
node?: Maybe<Scalars['Int']['output']>;
|
|
6788
6788
|
success: Scalars['Boolean']['output'];
|
|
6789
6789
|
};
|
|
6790
|
+
export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
6790
6791
|
export declare type ConfluenceBlogPost = {
|
|
6791
6792
|
__typename?: 'ConfluenceBlogPost';
|
|
6792
6793
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -7044,6 +7045,7 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
7044
7045
|
};
|
|
7045
7046
|
export declare type ConfluenceDatabase = {
|
|
7046
7047
|
__typename?: 'ConfluenceDatabase';
|
|
7048
|
+
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
7047
7049
|
author?: Maybe<ConfluenceUserInfo>;
|
|
7048
7050
|
databaseId: Scalars['ID']['output'];
|
|
7049
7051
|
id: Scalars['ID']['output'];
|
|
@@ -7101,6 +7103,7 @@ export declare type ConfluenceDeletePagePropertyPayload = Payload & {
|
|
|
7101
7103
|
};
|
|
7102
7104
|
export declare type ConfluenceEmbed = {
|
|
7103
7105
|
__typename?: 'ConfluenceEmbed';
|
|
7106
|
+
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
7104
7107
|
author?: Maybe<ConfluenceUserInfo>;
|
|
7105
7108
|
embedId: Scalars['ID']['output'];
|
|
7106
7109
|
id: Scalars['ID']['output'];
|
|
@@ -7122,6 +7125,7 @@ export declare type ConfluenceFavoritedSummary = {
|
|
|
7122
7125
|
};
|
|
7123
7126
|
export declare type ConfluenceFolder = {
|
|
7124
7127
|
__typename?: 'ConfluenceFolder';
|
|
7128
|
+
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
7125
7129
|
author?: Maybe<ConfluenceUserInfo>;
|
|
7126
7130
|
folderId: Scalars['ID']['output'];
|
|
7127
7131
|
id: Scalars['ID']['output'];
|
|
@@ -13007,6 +13011,7 @@ export declare enum ConfluenceOperationTarget {
|
|
|
13007
13011
|
}
|
|
13008
13012
|
export declare type ConfluencePage = {
|
|
13009
13013
|
__typename?: 'ConfluencePage';
|
|
13014
|
+
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
13010
13015
|
ancestors?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
13011
13016
|
author?: Maybe<ConfluenceUserInfo>;
|
|
13012
13017
|
body?: Maybe<ConfluenceBodies>;
|
|
@@ -13973,6 +13978,7 @@ export declare type ConfluenceValidateSpaceKeyResponse = {
|
|
|
13973
13978
|
};
|
|
13974
13979
|
export declare type ConfluenceWhiteboard = {
|
|
13975
13980
|
__typename?: 'ConfluenceWhiteboard';
|
|
13981
|
+
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
13976
13982
|
author?: Maybe<ConfluenceUserInfo>;
|
|
13977
13983
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
13978
13984
|
id: Scalars['ID']['output'];
|
|
@@ -36991,6 +36997,7 @@ export declare type HelpCenterMutationApi = {
|
|
|
36991
36997
|
deleteHelpCenter?: Maybe<HelpCenterDeletePayload>;
|
|
36992
36998
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
36993
36999
|
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
37000
|
+
updateHelpCenterPermissions?: Maybe<HelpCenterPermissionsPayload>;
|
|
36994
37001
|
updateHomePageAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
36995
37002
|
updateLoginAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
36996
37003
|
updatePortalsConfiguration?: Maybe<HelpCenterPortalsConfigurationUpdatePayload>;
|
|
@@ -37013,6 +37020,9 @@ export declare type HelpCenterMutationApiDeleteTopicArgs = {
|
|
|
37013
37020
|
export declare type HelpCenterMutationApiUpdateHelpCenterArgs = {
|
|
37014
37021
|
input: HelpCenterUpdateInput;
|
|
37015
37022
|
};
|
|
37023
|
+
export declare type HelpCenterMutationApiUpdateHelpCenterPermissionsArgs = {
|
|
37024
|
+
input: HelpCenterPermissionsInput;
|
|
37025
|
+
};
|
|
37016
37026
|
export declare type HelpCenterMutationApiUpdateHomePageAnnouncementArgs = {
|
|
37017
37027
|
input: HelpCenterAnnouncementInput;
|
|
37018
37028
|
};
|
|
@@ -37042,8 +37052,19 @@ export declare type HelpCenterNameInput = {
|
|
|
37042
37052
|
};
|
|
37043
37053
|
export declare type HelpCenterPermissions = {
|
|
37044
37054
|
__typename?: 'HelpCenterPermissions';
|
|
37045
|
-
|
|
37046
|
-
|
|
37055
|
+
accessControlType: HelpCenterAccessControlType;
|
|
37056
|
+
allowedAccessGroups?: Maybe<Array<Scalars['String']['output']>>;
|
|
37057
|
+
};
|
|
37058
|
+
export declare type HelpCenterPermissionsInput = {
|
|
37059
|
+
accessControlType: HelpCenterAccessControlType;
|
|
37060
|
+
addedAllowedAccessGroups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
37061
|
+
deletedAllowedAccessGroups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
37062
|
+
helpCenterAri: Scalars['String']['input'];
|
|
37063
|
+
};
|
|
37064
|
+
export declare type HelpCenterPermissionsPayload = Payload & {
|
|
37065
|
+
__typename?: 'HelpCenterPermissionsPayload';
|
|
37066
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37067
|
+
success: Scalars['Boolean']['output'];
|
|
37047
37068
|
};
|
|
37048
37069
|
export declare type HelpCenterPermissionsResult = HelpCenterPermissions | QueryError;
|
|
37049
37070
|
export declare type HelpCenterPortal = {
|
|
@@ -38732,7 +38753,6 @@ export declare type InvocationResponsePayload = {
|
|
|
38732
38753
|
export declare type InvokeAuxEffectsInput = {
|
|
38733
38754
|
contextIds: Array<Scalars['ID']['input']>;
|
|
38734
38755
|
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
38735
|
-
extensionDetails?: InputMaybe<ExtensionDetailsInput>;
|
|
38736
38756
|
extensionId?: InputMaybe<Scalars['ID']['input']>;
|
|
38737
38757
|
payload: AuxEffectsInvocationPayload;
|
|
38738
38758
|
};
|
|
@@ -38745,7 +38765,6 @@ export declare type InvokeAuxEffectsResponse = Payload & {
|
|
|
38745
38765
|
export declare type InvokeExtensionInput = {
|
|
38746
38766
|
contextIds: Array<Scalars['ID']['input']>;
|
|
38747
38767
|
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
38748
|
-
extensionDetails?: InputMaybe<ExtensionDetailsInput>;
|
|
38749
38768
|
extensionId?: InputMaybe<Scalars['ID']['input']>;
|
|
38750
38769
|
payload: Scalars['JSON']['input'];
|
|
38751
38770
|
schema?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -39182,6 +39201,14 @@ export declare enum JiraActionType {
|
|
|
39182
39201
|
CreateTeamManagedProject = "CREATE_TEAM_MANAGED_PROJECT"
|
|
39183
39202
|
}
|
|
39184
39203
|
export declare type JiraActiveBackgroundDetailsResult = JiraAttachmentBackground | JiraColorBackground | JiraGradientBackground | JiraMediaBackground | QueryError;
|
|
39204
|
+
export declare type JiraActivityConfiguration = {
|
|
39205
|
+
__typename?: 'JiraActivityConfiguration';
|
|
39206
|
+
id: Scalars['ID']['output'];
|
|
39207
|
+
issueType?: Maybe<JiraIssueType>;
|
|
39208
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
39209
|
+
project?: Maybe<JiraProject>;
|
|
39210
|
+
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
39211
|
+
};
|
|
39185
39212
|
export declare type JiraAddFieldsToProjectInput = {
|
|
39186
39213
|
cloudId: Scalars['ID']['input'];
|
|
39187
39214
|
fieldIds: Array<Scalars['ID']['input']>;
|
|
@@ -41412,6 +41439,13 @@ export declare type JiraContainerNavigationQueryInput = {
|
|
|
41412
41439
|
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
41413
41440
|
};
|
|
41414
41441
|
export declare type JiraContainerNavigationResult = JiraContainerNavigation | QueryError;
|
|
41442
|
+
export declare type JiraCreateActivityConfigurationInput = {
|
|
41443
|
+
id: Scalars['ID']['input'];
|
|
41444
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
41445
|
+
name: Scalars['String']['input'];
|
|
41446
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
41447
|
+
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
41448
|
+
};
|
|
41415
41449
|
export declare type JiraCreateAppNavigationItemInput = {
|
|
41416
41450
|
appId: Scalars['ID']['input'];
|
|
41417
41451
|
scopeId: Scalars['ID']['input'];
|
|
@@ -41507,6 +41541,7 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
|
|
|
41507
41541
|
success: Scalars['Boolean']['output'];
|
|
41508
41542
|
};
|
|
41509
41543
|
export declare type JiraCreateJourneyConfigurationInput = {
|
|
41544
|
+
createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
|
|
41510
41545
|
name: Scalars['String']['input'];
|
|
41511
41546
|
parentIssue: JiraJourneyParentIssueInput;
|
|
41512
41547
|
trigger: JiraJourneyTriggerInput;
|
|
@@ -44551,6 +44586,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
44551
44586
|
JiraConnectTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
44552
44587
|
JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
44553
44588
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
44589
|
+
JiraForgeStringField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
44554
44590
|
JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
|
|
44555
44591
|
JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
|
|
44556
44592
|
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
@@ -44751,11 +44787,13 @@ export declare type JiraJqlHistoryEdge = {
|
|
|
44751
44787
|
};
|
|
44752
44788
|
export declare type JiraJourneyConfiguration = Node & {
|
|
44753
44789
|
__typename?: 'JiraJourneyConfiguration';
|
|
44790
|
+
activityConfigurations?: Maybe<Array<Maybe<JiraActivityConfiguration>>>;
|
|
44754
44791
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
44755
44792
|
createdBy?: Maybe<User>;
|
|
44756
44793
|
id: Scalars['ID']['output'];
|
|
44757
44794
|
name?: Maybe<Scalars['String']['output']>;
|
|
44758
44795
|
parentIssue?: Maybe<JiraJourneyParentIssue>;
|
|
44796
|
+
status?: Maybe<JiraJourneyStatus>;
|
|
44759
44797
|
trigger?: Maybe<JiraJourneyTrigger>;
|
|
44760
44798
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
44761
44799
|
updatedBy?: Maybe<User>;
|
|
@@ -44775,7 +44813,7 @@ export declare type JiraJourneyConfigurationEdge = {
|
|
|
44775
44813
|
};
|
|
44776
44814
|
export declare type JiraJourneyParentIssue = {
|
|
44777
44815
|
__typename?: 'JiraJourneyParentIssue';
|
|
44778
|
-
|
|
44816
|
+
project?: Maybe<JiraProject>;
|
|
44779
44817
|
value?: Maybe<JiraJourneyParentIssueValueType>;
|
|
44780
44818
|
};
|
|
44781
44819
|
export declare type JiraJourneyParentIssueInput = {
|
|
@@ -44787,6 +44825,12 @@ export declare enum JiraJourneyParentIssueType {
|
|
|
44787
44825
|
Request = "REQUEST"
|
|
44788
44826
|
}
|
|
44789
44827
|
export declare type JiraJourneyParentIssueValueType = JiraServiceManagementRequestType;
|
|
44828
|
+
export declare enum JiraJourneyStatus {
|
|
44829
|
+
Archived = "ARCHIVED",
|
|
44830
|
+
Disabled = "DISABLED",
|
|
44831
|
+
Draft = "DRAFT",
|
|
44832
|
+
Published = "PUBLISHED"
|
|
44833
|
+
}
|
|
44790
44834
|
export declare type JiraJourneyTrigger = {
|
|
44791
44835
|
__typename?: 'JiraJourneyTrigger';
|
|
44792
44836
|
type: JiraJourneyTriggerType;
|
|
@@ -45892,6 +45936,7 @@ export declare type JiraMutation = {
|
|
|
45892
45936
|
moveJiraVersionToEnd?: Maybe<JiraUpdateVersionPayload>;
|
|
45893
45937
|
moveJiraVersionToStart?: Maybe<JiraUpdateVersionPayload>;
|
|
45894
45938
|
orderFormatingRule?: Maybe<JiraOrderFormattingRulePayload>;
|
|
45939
|
+
publishJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
45895
45940
|
rankIssues?: Maybe<JiraRankMutationPayload>;
|
|
45896
45941
|
rankNavigationItem?: Maybe<JiraRankNavigationItemPayload>;
|
|
45897
45942
|
removeActiveBackground?: Maybe<JiraRemoveActiveBackgroundPayload>;
|
|
@@ -45935,6 +45980,8 @@ export declare type JiraMutation = {
|
|
|
45935
45980
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
45936
45981
|
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
45937
45982
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
45983
|
+
updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
45984
|
+
updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
45938
45985
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
45939
45986
|
updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
|
|
45940
45987
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
@@ -46184,6 +46231,10 @@ export declare type JiraMutationMoveJiraVersionToStartArgs = {
|
|
|
46184
46231
|
export declare type JiraMutationOrderFormatingRuleArgs = {
|
|
46185
46232
|
input: JiraOrderFormattingRuleInput;
|
|
46186
46233
|
};
|
|
46234
|
+
export declare type JiraMutationPublishJiraJourneyConfigurationArgs = {
|
|
46235
|
+
cloudId: Scalars['ID']['input'];
|
|
46236
|
+
input: JiraPublishJourneyConfigurationInput;
|
|
46237
|
+
};
|
|
46187
46238
|
export declare type JiraMutationRankIssuesArgs = {
|
|
46188
46239
|
rankInput: JiraRankMutationInput;
|
|
46189
46240
|
};
|
|
@@ -46330,6 +46381,14 @@ export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
|
|
|
46330
46381
|
export declare type JiraMutationUpdateIssueTypeFieldArgs = {
|
|
46331
46382
|
input: JiraUpdateIssueTypeFieldInput;
|
|
46332
46383
|
};
|
|
46384
|
+
export declare type JiraMutationUpdateJiraJourneyActivityConfigurationArgs = {
|
|
46385
|
+
cloudId: Scalars['ID']['input'];
|
|
46386
|
+
input: JiraUpdateJourneyActivityConfigurationInput;
|
|
46387
|
+
};
|
|
46388
|
+
export declare type JiraMutationUpdateJiraJourneyConfigurationArgs = {
|
|
46389
|
+
cloudId: Scalars['ID']['input'];
|
|
46390
|
+
input: JiraUpdateJourneyConfigurationInput;
|
|
46391
|
+
};
|
|
46333
46392
|
export declare type JiraMutationUpdateJiraVersionArgs = {
|
|
46334
46393
|
input: JiraVersionUpdateMutationInput;
|
|
46335
46394
|
};
|
|
@@ -48175,6 +48234,10 @@ export declare type JiraProjectsMappedToHelpCenterFilterInput = {
|
|
|
48175
48234
|
helpCenterId: Scalars['ID']['input'];
|
|
48176
48235
|
helpCenterMappingStatus?: InputMaybe<JiraProjectsHelpCenterMappingStatus>;
|
|
48177
48236
|
};
|
|
48237
|
+
export declare type JiraPublishJourneyConfigurationInput = {
|
|
48238
|
+
id: Scalars['ID']['input'];
|
|
48239
|
+
version: Scalars['Long']['input'];
|
|
48240
|
+
};
|
|
48178
48241
|
export declare type JiraPullRequestReviewer = {
|
|
48179
48242
|
__typename?: 'JiraPullRequestReviewer';
|
|
48180
48243
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -52343,6 +52406,24 @@ export declare type JiraUpdateIssueTypeFieldInput = {
|
|
|
52343
52406
|
id: Scalars['ID']['input'];
|
|
52344
52407
|
operation: JiraIssueTypeFieldOperationInput;
|
|
52345
52408
|
};
|
|
52409
|
+
export declare type JiraUpdateJourneyActivityConfigurationInput = {
|
|
52410
|
+
createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
|
|
52411
|
+
id: Scalars['ID']['input'];
|
|
52412
|
+
version: Scalars['Long']['input'];
|
|
52413
|
+
};
|
|
52414
|
+
export declare type JiraUpdateJourneyConfigurationInput = {
|
|
52415
|
+
id: Scalars['ID']['input'];
|
|
52416
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
52417
|
+
parentIssue?: InputMaybe<JiraJourneyParentIssueInput>;
|
|
52418
|
+
trigger?: InputMaybe<JiraJourneyTriggerInput>;
|
|
52419
|
+
version: Scalars['Long']['input'];
|
|
52420
|
+
};
|
|
52421
|
+
export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
|
|
52422
|
+
__typename?: 'JiraUpdateJourneyConfigurationPayload';
|
|
52423
|
+
errors?: Maybe<Array<MutationError>>;
|
|
52424
|
+
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
52425
|
+
success: Scalars['Boolean']['output'];
|
|
52426
|
+
};
|
|
52346
52427
|
export declare type JiraUpdateLabelsFieldInput = {
|
|
52347
52428
|
id: Scalars['ID']['input'];
|
|
52348
52429
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
@@ -54019,7 +54100,6 @@ export declare type JsmChatCreateConversationAnalyticsOutput = {
|
|
|
54019
54100
|
status?: Maybe<Scalars['String']['output']>;
|
|
54020
54101
|
};
|
|
54021
54102
|
export declare type JsmChatCreateConversationInput = {
|
|
54022
|
-
authorId: Scalars['String']['input'];
|
|
54023
54103
|
channelExperienceId: JsmChatChannelExperienceId;
|
|
54024
54104
|
conversationContextAri: Scalars['ID']['input'];
|
|
54025
54105
|
isTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -54762,6 +54842,17 @@ export declare type JswWorkingDaysConfig = {
|
|
|
54762
54842
|
timeZoneEditModel?: Maybe<JswTimeZoneEditModel>;
|
|
54763
54843
|
weekDays?: Maybe<JswWeekDaysConfig>;
|
|
54764
54844
|
};
|
|
54845
|
+
export declare type KnowledgeBaseArticleCountError = {
|
|
54846
|
+
__typename?: 'KnowledgeBaseArticleCountError';
|
|
54847
|
+
container: Scalars['ID']['output'];
|
|
54848
|
+
extensions: Array<QueryErrorExtension>;
|
|
54849
|
+
message: Scalars['String']['output'];
|
|
54850
|
+
};
|
|
54851
|
+
export declare type KnowledgeBaseArticleCountSource = {
|
|
54852
|
+
__typename?: 'KnowledgeBaseArticleCountSource';
|
|
54853
|
+
container: Scalars['ID']['output'];
|
|
54854
|
+
count: Scalars['Int']['output'];
|
|
54855
|
+
};
|
|
54765
54856
|
export declare type KnowledgeBaseLinkResponse = {
|
|
54766
54857
|
__typename?: 'KnowledgeBaseLinkResponse';
|
|
54767
54858
|
knowledgeBaseSource?: Maybe<KnowledgeBaseSource>;
|
|
@@ -54895,8 +54986,8 @@ export declare type KnowledgeDiscoveryAutoDefinition = {
|
|
|
54895
54986
|
export declare type KnowledgeDiscoveryAutoDefinitionResult = KnowledgeDiscoveryAutoDefinition | QueryError;
|
|
54896
54987
|
export declare type KnowledgeDiscoveryBookmark = {
|
|
54897
54988
|
__typename?: 'KnowledgeDiscoveryBookmark';
|
|
54989
|
+
id: Scalars['ID']['output'];
|
|
54898
54990
|
properties?: Maybe<KnowledgeDiscoveryBookmarkProperties>;
|
|
54899
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
54900
54991
|
};
|
|
54901
54992
|
export declare type KnowledgeDiscoveryBookmarkCollisionFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
|
|
54902
54993
|
__typename?: 'KnowledgeDiscoveryBookmarkCollisionFailureMetadata';
|
|
@@ -55125,7 +55216,6 @@ export declare type KnowledgeDiscoveryQueryApiAutoDefinitionArgs = {
|
|
|
55125
55216
|
export declare type KnowledgeDiscoveryQueryApiBookmarkArgs = {
|
|
55126
55217
|
cloudId: Scalars['String']['input'];
|
|
55127
55218
|
keyPhrase: Scalars['String']['input'];
|
|
55128
|
-
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
55129
55219
|
};
|
|
55130
55220
|
export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
55131
55221
|
confluenceScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdConfluence>;
|
|
@@ -55782,7 +55872,7 @@ export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
|
|
|
55782
55872
|
versionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
55783
55873
|
};
|
|
55784
55874
|
export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
|
|
55785
|
-
|
|
55875
|
+
appKey?: InputMaybe<Scalars['ID']['input']>;
|
|
55786
55876
|
appSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
55787
55877
|
buildNumber: Scalars['ID']['input'];
|
|
55788
55878
|
};
|
|
@@ -55809,6 +55899,10 @@ export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
|
55809
55899
|
body: Scalars['String']['output'];
|
|
55810
55900
|
screenshots: MarketplaceConsoleListingScreenshot;
|
|
55811
55901
|
};
|
|
55902
|
+
export declare type MarketplaceConsoleDeploymentInstructionInput = {
|
|
55903
|
+
body?: InputMaybe<Scalars['String']['input']>;
|
|
55904
|
+
screenshotImageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
55905
|
+
};
|
|
55812
55906
|
export declare type MarketplaceConsoleDevSpace = {
|
|
55813
55907
|
__typename?: 'MarketplaceConsoleDevSpace';
|
|
55814
55908
|
id: Scalars['ID']['output'];
|
|
@@ -56049,6 +56143,13 @@ export declare type MarketplaceConsoleLink = {
|
|
|
56049
56143
|
title?: Maybe<Scalars['String']['output']>;
|
|
56050
56144
|
type?: Maybe<Scalars['String']['output']>;
|
|
56051
56145
|
};
|
|
56146
|
+
export declare type MarketplaceConsoleListingHighLightInput = {
|
|
56147
|
+
caption?: InputMaybe<Scalars['String']['input']>;
|
|
56148
|
+
screenshotUrl: Scalars['String']['input'];
|
|
56149
|
+
summary: Scalars['String']['input'];
|
|
56150
|
+
thumbnailUrl: Scalars['String']['input'];
|
|
56151
|
+
title: Scalars['String']['input'];
|
|
56152
|
+
};
|
|
56052
56153
|
export declare type MarketplaceConsoleListingHighLights = {
|
|
56053
56154
|
__typename?: 'MarketplaceConsoleListingHighLights';
|
|
56054
56155
|
caption?: Maybe<Scalars['String']['output']>;
|
|
@@ -56061,6 +56162,51 @@ export declare type MarketplaceConsoleListingScreenshot = {
|
|
|
56061
56162
|
caption?: Maybe<Scalars['String']['output']>;
|
|
56062
56163
|
imageId: Scalars['String']['output'];
|
|
56063
56164
|
};
|
|
56165
|
+
export declare type MarketplaceConsoleListingScreenshotInput = {
|
|
56166
|
+
caption?: InputMaybe<Scalars['String']['input']>;
|
|
56167
|
+
imageUrl: Scalars['String']['input'];
|
|
56168
|
+
};
|
|
56169
|
+
export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
|
|
56170
|
+
appKey: Scalars['ID']['input'];
|
|
56171
|
+
appSoftwareId: Scalars['ID']['input'];
|
|
56172
|
+
appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56173
|
+
binaryUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56174
|
+
buildNumber: Scalars['ID']['input'];
|
|
56175
|
+
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56176
|
+
communityEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56177
|
+
compatibilities?: InputMaybe<Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>>;
|
|
56178
|
+
dataCenterReviewIssueKey?: InputMaybe<Scalars['String']['input']>;
|
|
56179
|
+
deploymentInstructions?: InputMaybe<Array<MarketplaceConsoleDeploymentInstructionInput>>;
|
|
56180
|
+
documentationUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56181
|
+
eulaUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56182
|
+
forumsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56183
|
+
googleAnalytics4Id?: InputMaybe<Scalars['String']['input']>;
|
|
56184
|
+
googleAnalyticsId?: InputMaybe<Scalars['String']['input']>;
|
|
56185
|
+
heroImageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56186
|
+
highlights?: InputMaybe<Array<MarketplaceConsoleListingHighLightInput>>;
|
|
56187
|
+
isBeta?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56188
|
+
isSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56189
|
+
issueTrackerUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56190
|
+
keywords?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56191
|
+
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56192
|
+
licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
|
|
56193
|
+
logoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56194
|
+
moreDetails?: InputMaybe<Scalars['String']['input']>;
|
|
56195
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
56196
|
+
paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
56197
|
+
privacyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56198
|
+
productId: Scalars['ID']['input'];
|
|
56199
|
+
releaseNotes?: InputMaybe<Scalars['String']['input']>;
|
|
56200
|
+
releaseSummary?: InputMaybe<Scalars['String']['input']>;
|
|
56201
|
+
screenshots?: InputMaybe<Array<MarketplaceConsoleListingScreenshotInput>>;
|
|
56202
|
+
segmentWriteKey?: InputMaybe<Scalars['String']['input']>;
|
|
56203
|
+
sourceCodeLicenseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56204
|
+
storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56205
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
56206
|
+
supportTicketSystemUrl?: InputMaybe<Scalars['String']['input']>;
|
|
56207
|
+
tagLine?: InputMaybe<Scalars['String']['input']>;
|
|
56208
|
+
youtubeId?: InputMaybe<Scalars['String']['input']>;
|
|
56209
|
+
};
|
|
56064
56210
|
export declare type MarketplaceConsoleMutationApi = {
|
|
56065
56211
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
56066
56212
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
@@ -56070,6 +56216,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
56070
56216
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
56071
56217
|
deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
56072
56218
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
56219
|
+
makeAppVersionPublic?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
56073
56220
|
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
56074
56221
|
};
|
|
56075
56222
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
@@ -56097,6 +56244,9 @@ export declare type MarketplaceConsoleMutationApiEditionsArgs = {
|
|
|
56097
56244
|
editions: Array<MarketplaceConsoleEditionInput>;
|
|
56098
56245
|
product: MarketplaceConsoleEditionsInput;
|
|
56099
56246
|
};
|
|
56247
|
+
export declare type MarketplaceConsoleMutationApiMakeAppVersionPublicArgs = {
|
|
56248
|
+
makeAppVersionPublicRequest: MarketplaceConsoleMakeAppVersionPublicRequest;
|
|
56249
|
+
};
|
|
56100
56250
|
export declare type MarketplaceConsoleMutationApiValidateArtifactUrlArgs = {
|
|
56101
56251
|
url: Scalars['String']['input'];
|
|
56102
56252
|
};
|
|
@@ -57067,6 +57217,7 @@ export declare enum MembershipState {
|
|
|
57067
57217
|
Invited = "INVITED",
|
|
57068
57218
|
RequestingToJoin = "REQUESTING_TO_JOIN"
|
|
57069
57219
|
}
|
|
57220
|
+
export declare type MercuryActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | TownsquareGoal;
|
|
57070
57221
|
export declare type MercuryAddWatcherToFocusAreaInput = {
|
|
57071
57222
|
cloudId: Scalars['ID']['input'];
|
|
57072
57223
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -57295,6 +57446,14 @@ export declare enum MercuryEntityType {
|
|
|
57295
57446
|
Program = "PROGRAM",
|
|
57296
57447
|
ProgramStatusUpdate = "PROGRAM_STATUS_UPDATE"
|
|
57297
57448
|
}
|
|
57449
|
+
export declare enum MercuryEventType {
|
|
57450
|
+
Create = "CREATE",
|
|
57451
|
+
Delete = "DELETE",
|
|
57452
|
+
Import = "IMPORT",
|
|
57453
|
+
Link = "LINK",
|
|
57454
|
+
Unlink = "UNLINK",
|
|
57455
|
+
Update = "UPDATE"
|
|
57456
|
+
}
|
|
57298
57457
|
export declare type MercuryFocusArea = Node & {
|
|
57299
57458
|
__typename?: 'MercuryFocusArea';
|
|
57300
57459
|
aboutContent: MercuryFocusAreaAbout;
|
|
@@ -57342,6 +57501,30 @@ export declare type MercuryFocusAreaAbout = {
|
|
|
57342
57501
|
__typename?: 'MercuryFocusAreaAbout';
|
|
57343
57502
|
editorAdfContent?: Maybe<Scalars['String']['output']>;
|
|
57344
57503
|
};
|
|
57504
|
+
export declare type MercuryFocusAreaActivityConnection = {
|
|
57505
|
+
__typename?: 'MercuryFocusAreaActivityConnection';
|
|
57506
|
+
edges?: Maybe<Array<Maybe<MercuryFocusAreaActivityEdge>>>;
|
|
57507
|
+
pageInfo: PageInfo;
|
|
57508
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
57509
|
+
};
|
|
57510
|
+
export declare type MercuryFocusAreaActivityEdge = {
|
|
57511
|
+
__typename?: 'MercuryFocusAreaActivityEdge';
|
|
57512
|
+
cursor: Scalars['String']['output'];
|
|
57513
|
+
node?: Maybe<MercuryFocusAreaActivityHistory>;
|
|
57514
|
+
};
|
|
57515
|
+
export declare type MercuryFocusAreaActivityHistory = Node & {
|
|
57516
|
+
__typename?: 'MercuryFocusAreaActivityHistory';
|
|
57517
|
+
eventDate?: Maybe<Scalars['String']['output']>;
|
|
57518
|
+
eventType?: Maybe<MercuryEventType>;
|
|
57519
|
+
fields?: Maybe<Array<Maybe<MercuryUpdatedField>>>;
|
|
57520
|
+
fieldsChanged?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
57521
|
+
focusAreaId?: Maybe<Scalars['String']['output']>;
|
|
57522
|
+
id: Scalars['ID']['output'];
|
|
57523
|
+
user?: Maybe<User>;
|
|
57524
|
+
};
|
|
57525
|
+
export declare type MercuryFocusAreaActivitySort = {
|
|
57526
|
+
order: SortOrder;
|
|
57527
|
+
};
|
|
57345
57528
|
export declare type MercuryFocusAreaAllocations = {
|
|
57346
57529
|
__typename?: 'MercuryFocusAreaAllocations';
|
|
57347
57530
|
human?: Maybe<MercuryHumanResourcesAllocation>;
|
|
@@ -57966,6 +58149,7 @@ export declare type MercuryQueryApi = {
|
|
|
57966
58149
|
aiFocusAreaSummary?: Maybe<MercuryFocusAreaSummary>;
|
|
57967
58150
|
comments?: Maybe<MercuryCommentConnection>;
|
|
57968
58151
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
58152
|
+
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
57969
58153
|
focusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaHierarchyNode>>>;
|
|
57970
58154
|
focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
|
|
57971
58155
|
focusAreaTeamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
|
|
@@ -58004,6 +58188,13 @@ export declare type MercuryQueryApiFocusAreaArgs = {
|
|
|
58004
58188
|
cloudId: Scalars['ID']['input'];
|
|
58005
58189
|
id: Scalars['ID']['input'];
|
|
58006
58190
|
};
|
|
58191
|
+
export declare type MercuryQueryApiFocusAreaActivityHistoryArgs = {
|
|
58192
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58193
|
+
cloudId: Scalars['ID']['input'];
|
|
58194
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58195
|
+
focusAreaId: Scalars['ID']['input'];
|
|
58196
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
|
|
58197
|
+
};
|
|
58007
58198
|
export declare type MercuryQueryApiFocusAreaHierarchyArgs = {
|
|
58008
58199
|
cloudId: Scalars['ID']['input'];
|
|
58009
58200
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -58238,6 +58429,17 @@ export declare type MercuryUpdatePortfolioPayload = Payload & {
|
|
|
58238
58429
|
success: Scalars['Boolean']['output'];
|
|
58239
58430
|
updatedPortfolio?: Maybe<MercuryPortfolio>;
|
|
58240
58431
|
};
|
|
58432
|
+
export declare type MercuryUpdatedField = {
|
|
58433
|
+
__typename?: 'MercuryUpdatedField';
|
|
58434
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
58435
|
+
fieldType?: Maybe<Scalars['String']['output']>;
|
|
58436
|
+
newData?: Maybe<MercuryActivityHistoryData>;
|
|
58437
|
+
newString?: Maybe<Scalars['String']['output']>;
|
|
58438
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
58439
|
+
oldData?: Maybe<MercuryActivityHistoryData>;
|
|
58440
|
+
oldString?: Maybe<Scalars['String']['output']>;
|
|
58441
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
58442
|
+
};
|
|
58241
58443
|
export declare type MercuryUserConnection = {
|
|
58242
58444
|
__typename?: 'MercuryUserConnection';
|
|
58243
58445
|
edges?: Maybe<Array<Maybe<MercuryUserEdge>>>;
|
|
@@ -59440,6 +59642,7 @@ export declare type MutationKnowledgeBaseArgs = {
|
|
|
59440
59642
|
cloudId: Scalars['ID']['input'];
|
|
59441
59643
|
};
|
|
59442
59644
|
export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
|
|
59645
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
59443
59646
|
input: KnowledgeBaseSpacePermissionUpdateViewInput;
|
|
59444
59647
|
};
|
|
59445
59648
|
export declare type MutationMoveSprintDownArgs = {
|
|
@@ -62203,7 +62406,10 @@ export declare type Query = {
|
|
|
62203
62406
|
pricings: ContentPlatformPricingSearchConnection;
|
|
62204
62407
|
productListing?: Maybe<ProductListingResult>;
|
|
62205
62408
|
productListings: Array<ProductListingResult>;
|
|
62409
|
+
radar_enlistment: RadarEnlistment;
|
|
62410
|
+
radar_fieldValues: RadarFieldValuesConnection;
|
|
62206
62411
|
radar_healthcheck: Scalars['String']['output'];
|
|
62412
|
+
radar_positions: RadarPositionConnection;
|
|
62207
62413
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
62208
62414
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
62209
62415
|
repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
|
|
@@ -63578,9 +63784,30 @@ export declare type QueryProductListingsArgs = {
|
|
|
63578
63784
|
ids: Array<Scalars['ID']['input']>;
|
|
63579
63785
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63580
63786
|
};
|
|
63787
|
+
export declare type QueryRadar_EnlistmentArgs = {
|
|
63788
|
+
cloudId: Scalars['ID']['input'];
|
|
63789
|
+
};
|
|
63790
|
+
export declare type QueryRadar_FieldValuesArgs = {
|
|
63791
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
63792
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
63793
|
+
cloudId: Scalars['ID']['input'];
|
|
63794
|
+
fieldId?: InputMaybe<Scalars['ID']['input']>;
|
|
63795
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63796
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63797
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
63798
|
+
};
|
|
63581
63799
|
export declare type QueryRadar_HealthcheckArgs = {
|
|
63582
63800
|
cloudId: Scalars['ID']['input'];
|
|
63583
63801
|
};
|
|
63802
|
+
export declare type QueryRadar_PositionsArgs = {
|
|
63803
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
63804
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
63805
|
+
cloudId: Scalars['ID']['input'];
|
|
63806
|
+
fieldIdIsIn?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
63807
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63808
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63809
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
63810
|
+
};
|
|
63584
63811
|
export declare type QueryReleaseNoteArgs = {
|
|
63585
63812
|
id: Scalars['String']['input'];
|
|
63586
63813
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -63698,6 +63925,147 @@ export declare type QuotaInfo = {
|
|
|
63698
63925
|
encrypted: Scalars['Boolean']['output'];
|
|
63699
63926
|
quotaUsage: Scalars['Int']['output'];
|
|
63700
63927
|
};
|
|
63928
|
+
export declare type RadarBooleanFieldValue = {
|
|
63929
|
+
__typename?: 'RadarBooleanFieldValue';
|
|
63930
|
+
value?: Maybe<Scalars['Boolean']['output']>;
|
|
63931
|
+
};
|
|
63932
|
+
export declare type RadarConnection = {
|
|
63933
|
+
pageInfo: PageInfo;
|
|
63934
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
63935
|
+
};
|
|
63936
|
+
export declare type RadarDateFieldValue = {
|
|
63937
|
+
__typename?: 'RadarDateFieldValue';
|
|
63938
|
+
value?: Maybe<Scalars['DateTime']['output']>;
|
|
63939
|
+
};
|
|
63940
|
+
export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
|
|
63941
|
+
__typename?: 'RadarDynamicFilterOptions';
|
|
63942
|
+
operators?: Maybe<Array<Maybe<RadarFilterOperators>>>;
|
|
63943
|
+
plurality?: Maybe<RadarFilterPlurality>;
|
|
63944
|
+
type?: Maybe<RadarFilterInputType>;
|
|
63945
|
+
};
|
|
63946
|
+
export declare type RadarEdge = {
|
|
63947
|
+
cursor: Scalars['String']['output'];
|
|
63948
|
+
};
|
|
63949
|
+
export declare type RadarEnlistment = {
|
|
63950
|
+
__typename?: 'RadarEnlistment';
|
|
63951
|
+
cloudId: Scalars['ID']['output'];
|
|
63952
|
+
positionFields?: Maybe<Array<Maybe<RadarEnlistment>>>;
|
|
63953
|
+
};
|
|
63954
|
+
export declare type RadarEntity = {
|
|
63955
|
+
fieldValues?: Maybe<Array<Maybe<RadarFieldValueIdPair>>>;
|
|
63956
|
+
id: Scalars['ID']['output'];
|
|
63957
|
+
type?: Maybe<RadarEntityType>;
|
|
63958
|
+
};
|
|
63959
|
+
export declare enum RadarEntityType {
|
|
63960
|
+
Position = "POSITION"
|
|
63961
|
+
}
|
|
63962
|
+
export declare type RadarFieldDefinition = Node & {
|
|
63963
|
+
__typename?: 'RadarFieldDefinition';
|
|
63964
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
63965
|
+
entity?: Maybe<RadarEntityType>;
|
|
63966
|
+
filterOptions?: Maybe<RadarFilterOptions>;
|
|
63967
|
+
id: Scalars['ID']['output'];
|
|
63968
|
+
isCustom?: Maybe<Scalars['Boolean']['output']>;
|
|
63969
|
+
type?: Maybe<RadarFieldType>;
|
|
63970
|
+
};
|
|
63971
|
+
export declare enum RadarFieldType {
|
|
63972
|
+
Boolean = "BOOLEAN",
|
|
63973
|
+
Datetime = "DATETIME",
|
|
63974
|
+
Number = "NUMBER",
|
|
63975
|
+
Status = "STATUS",
|
|
63976
|
+
String = "STRING",
|
|
63977
|
+
Url = "URL"
|
|
63978
|
+
}
|
|
63979
|
+
export declare type RadarFieldValue = RadarBooleanFieldValue | RadarDateFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
|
|
63980
|
+
export declare type RadarFieldValueIdPair = {
|
|
63981
|
+
__typename?: 'RadarFieldValueIdPair';
|
|
63982
|
+
fieldId: Scalars['ID']['output'];
|
|
63983
|
+
fieldValue?: Maybe<RadarFieldValue>;
|
|
63984
|
+
};
|
|
63985
|
+
export declare type RadarFieldValuesConnection = RadarConnection & {
|
|
63986
|
+
__typename?: 'RadarFieldValuesConnection';
|
|
63987
|
+
edges?: Maybe<Array<Maybe<RadarFieldValuesEdge>>>;
|
|
63988
|
+
nodes?: Maybe<Array<Maybe<RadarFieldValue>>>;
|
|
63989
|
+
pageInfo: PageInfo;
|
|
63990
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
63991
|
+
};
|
|
63992
|
+
export declare type RadarFieldValuesEdge = RadarEdge & {
|
|
63993
|
+
__typename?: 'RadarFieldValuesEdge';
|
|
63994
|
+
cursor: Scalars['String']['output'];
|
|
63995
|
+
node?: Maybe<RadarFieldValue>;
|
|
63996
|
+
};
|
|
63997
|
+
export declare enum RadarFilterInputType {
|
|
63998
|
+
Checkbox = "CHECKBOX",
|
|
63999
|
+
Range = "RANGE",
|
|
64000
|
+
Textfield = "TEXTFIELD"
|
|
64001
|
+
}
|
|
64002
|
+
export declare enum RadarFilterOperators {
|
|
64003
|
+
Equals = "EQUALS",
|
|
64004
|
+
GreaterThan = "GREATER_THAN",
|
|
64005
|
+
GreaterThanOrEqual = "GREATER_THAN_OR_EQUAL",
|
|
64006
|
+
LessThan = "LESS_THAN",
|
|
64007
|
+
LessThanOrEqual = "LESS_THAN_OR_EQUAL",
|
|
64008
|
+
Like = "LIKE",
|
|
64009
|
+
NotEquals = "NOT_EQUALS",
|
|
64010
|
+
NotLike = "NOT_LIKE"
|
|
64011
|
+
}
|
|
64012
|
+
export declare type RadarFilterOptions = {
|
|
64013
|
+
operators?: Maybe<Array<Maybe<RadarFilterOperators>>>;
|
|
64014
|
+
plurality?: Maybe<RadarFilterPlurality>;
|
|
64015
|
+
type?: Maybe<RadarFilterInputType>;
|
|
64016
|
+
};
|
|
64017
|
+
export declare enum RadarFilterPlurality {
|
|
64018
|
+
And = "AND",
|
|
64019
|
+
None = "NONE",
|
|
64020
|
+
Or = "OR"
|
|
64021
|
+
}
|
|
64022
|
+
export declare type RadarNumericFieldValue = {
|
|
64023
|
+
__typename?: 'RadarNumericFieldValue';
|
|
64024
|
+
displayValue?: Maybe<Scalars['Int']['output']>;
|
|
64025
|
+
value?: Maybe<Scalars['Int']['output']>;
|
|
64026
|
+
};
|
|
64027
|
+
export declare type RadarPosition = Node & RadarEntity & {
|
|
64028
|
+
__typename?: 'RadarPosition';
|
|
64029
|
+
fieldValues?: Maybe<Array<Maybe<RadarFieldValueIdPair>>>;
|
|
64030
|
+
id: Scalars['ID']['output'];
|
|
64031
|
+
type?: Maybe<RadarEntityType>;
|
|
64032
|
+
};
|
|
64033
|
+
export declare type RadarPositionConnection = RadarConnection & {
|
|
64034
|
+
__typename?: 'RadarPositionConnection';
|
|
64035
|
+
edges?: Maybe<Array<Maybe<RadarPositionEdge>>>;
|
|
64036
|
+
nodes?: Maybe<Array<Maybe<RadarPosition>>>;
|
|
64037
|
+
pageInfo: PageInfo;
|
|
64038
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
64039
|
+
};
|
|
64040
|
+
export declare type RadarPositionEdge = RadarEdge & {
|
|
64041
|
+
__typename?: 'RadarPositionEdge';
|
|
64042
|
+
cursor: Scalars['String']['output'];
|
|
64043
|
+
node?: Maybe<RadarPosition>;
|
|
64044
|
+
};
|
|
64045
|
+
export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
64046
|
+
__typename?: 'RadarStaticStringFilterOptions';
|
|
64047
|
+
operators?: Maybe<Array<Maybe<RadarFilterOperators>>>;
|
|
64048
|
+
plurality?: Maybe<RadarFilterPlurality>;
|
|
64049
|
+
type?: Maybe<RadarFilterInputType>;
|
|
64050
|
+
values?: Maybe<Array<Maybe<RadarFieldValue>>>;
|
|
64051
|
+
};
|
|
64052
|
+
export declare type RadarStatusFieldValue = {
|
|
64053
|
+
__typename?: 'RadarStatusFieldValue';
|
|
64054
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
64055
|
+
displayValue?: Maybe<Scalars['String']['output']>;
|
|
64056
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
64057
|
+
};
|
|
64058
|
+
export declare type RadarStringFieldValue = {
|
|
64059
|
+
__typename?: 'RadarStringFieldValue';
|
|
64060
|
+
displayValue?: Maybe<Scalars['String']['output']>;
|
|
64061
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
64062
|
+
};
|
|
64063
|
+
export declare type RadarUrlFieldValue = {
|
|
64064
|
+
__typename?: 'RadarUrlFieldValue';
|
|
64065
|
+
displayValue?: Maybe<Scalars['String']['output']>;
|
|
64066
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
64067
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
64068
|
+
};
|
|
63701
64069
|
export declare type RankColumnInput = {
|
|
63702
64070
|
boardId: Scalars['ID']['input'];
|
|
63703
64071
|
columnId: Scalars['ID']['input'];
|
|
@@ -66566,6 +66934,7 @@ export declare type ShepherdMutation = {
|
|
|
66566
66934
|
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
66567
66935
|
createTestAlert?: Maybe<ShepherdCreateTestAlertPayload>;
|
|
66568
66936
|
deleteAlert?: Maybe<ShepherdDeleteAlertPayload>;
|
|
66937
|
+
redaction?: Maybe<ShepherdRedactionMutations>;
|
|
66569
66938
|
subscription?: Maybe<ShepherdSubscriptionMutations>;
|
|
66570
66939
|
unlinkAlertResources?: Maybe<ShepherdUpdateAlertPayload>;
|
|
66571
66940
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
@@ -66664,6 +67033,50 @@ export declare enum ShepherdRateThresholdValue {
|
|
|
66664
67033
|
Low = "LOW",
|
|
66665
67034
|
Medium = "MEDIUM"
|
|
66666
67035
|
}
|
|
67036
|
+
export declare type ShepherdRedactedContent = {
|
|
67037
|
+
__typename?: 'ShepherdRedactedContent';
|
|
67038
|
+
contentId: Scalars['ID']['output'];
|
|
67039
|
+
status: ShepherdRedactedContentStatus;
|
|
67040
|
+
};
|
|
67041
|
+
export declare enum ShepherdRedactedContentStatus {
|
|
67042
|
+
Redacted = "REDACTED",
|
|
67043
|
+
RedactionFailed = "REDACTION_FAILED",
|
|
67044
|
+
RedactionPending = "REDACTION_PENDING"
|
|
67045
|
+
}
|
|
67046
|
+
export declare type ShepherdRedaction = Node & {
|
|
67047
|
+
__typename?: 'ShepherdRedaction';
|
|
67048
|
+
createdOn: Scalars['DateTime']['output'];
|
|
67049
|
+
id: Scalars['ID']['output'];
|
|
67050
|
+
redactedContent: Array<ShepherdRedactedContent>;
|
|
67051
|
+
resource: Scalars['ID']['output'];
|
|
67052
|
+
status: ShepherdRedactionStatus;
|
|
67053
|
+
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
67054
|
+
};
|
|
67055
|
+
export declare type ShepherdRedactionInput = {
|
|
67056
|
+
alertId: Scalars['ID']['input'];
|
|
67057
|
+
redactions: Array<Scalars['ID']['input']>;
|
|
67058
|
+
removeHistory: Scalars['Boolean']['input'];
|
|
67059
|
+
timestamp: Scalars['String']['input'];
|
|
67060
|
+
};
|
|
67061
|
+
export declare type ShepherdRedactionMutations = {
|
|
67062
|
+
__typename?: 'ShepherdRedactionMutations';
|
|
67063
|
+
redact?: Maybe<ShepherdRedactionPayload>;
|
|
67064
|
+
};
|
|
67065
|
+
export declare type ShepherdRedactionMutationsRedactArgs = {
|
|
67066
|
+
input: ShepherdRedactionInput;
|
|
67067
|
+
};
|
|
67068
|
+
export declare type ShepherdRedactionPayload = Payload & {
|
|
67069
|
+
__typename?: 'ShepherdRedactionPayload';
|
|
67070
|
+
errors?: Maybe<Array<MutationError>>;
|
|
67071
|
+
node?: Maybe<ShepherdRedaction>;
|
|
67072
|
+
success: Scalars['Boolean']['output'];
|
|
67073
|
+
};
|
|
67074
|
+
export declare enum ShepherdRedactionStatus {
|
|
67075
|
+
Failed = "FAILED",
|
|
67076
|
+
PartiallyRedacted = "PARTIALLY_REDACTED",
|
|
67077
|
+
Pending = "PENDING",
|
|
67078
|
+
Redacted = "REDACTED"
|
|
67079
|
+
}
|
|
66667
67080
|
export declare type ShepherdRelatedAlertType = {
|
|
66668
67081
|
__typename?: 'ShepherdRelatedAlertType';
|
|
66669
67082
|
product?: Maybe<ShepherdAtlassianProduct>;
|