@forge/cli-shared 8.8.0-next.9 → 8.8.0-next.9-experimental-75d036a
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 +22 -0
- package/out/graphql/graphql-types.d.ts +346 -78
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +45 -24
- package/package.json +2 -2
|
@@ -12018,7 +12018,7 @@ export declare enum CompassDeploymentEventState {
|
|
|
12018
12018
|
}
|
|
12019
12019
|
export declare type CompassDocument = Node & {
|
|
12020
12020
|
__typename?: 'CompassDocument';
|
|
12021
|
-
|
|
12021
|
+
autoPopulationSource?: Maybe<CompassAutoPopulationSource>;
|
|
12022
12022
|
changeMetadata: CompassChangeMetadata;
|
|
12023
12023
|
componentId: Scalars['ID']['output'];
|
|
12024
12024
|
documentationCategoryId: Scalars['ID']['output'];
|
|
@@ -18380,7 +18380,9 @@ export declare enum ConfluenceSpaceOwnerType {
|
|
|
18380
18380
|
export declare enum ConfluenceSpacePermissionAuditReportSpaceType {
|
|
18381
18381
|
All = "ALL",
|
|
18382
18382
|
AllExceptPersonal = "ALL_EXCEPT_PERSONAL",
|
|
18383
|
-
|
|
18383
|
+
AllExceptSpecific = "ALL_EXCEPT_SPECIFIC",
|
|
18384
|
+
Personal = "PERSONAL",
|
|
18385
|
+
Specific = "SPECIFIC"
|
|
18384
18386
|
}
|
|
18385
18387
|
export declare enum ConfluenceSpacePermissionAuditReportType {
|
|
18386
18388
|
FullSitePermission = "FULL_SITE_PERMISSION",
|
|
@@ -21661,6 +21663,14 @@ export declare type ConvoAiAgentMessage = {
|
|
|
21661
21663
|
status: ConvoAiAgentSessionStatus;
|
|
21662
21664
|
timeCreated: Scalars['DateTime']['output'];
|
|
21663
21665
|
};
|
|
21666
|
+
export declare enum ConvoAiAgentMessageType {
|
|
21667
|
+
ConversationChannelData = "CONVERSATION_CHANNEL_DATA",
|
|
21668
|
+
EarlyStop = "EARLY_STOP",
|
|
21669
|
+
Empty = "EMPTY",
|
|
21670
|
+
Error = "ERROR",
|
|
21671
|
+
FinalMessage = "FINAL_MESSAGE",
|
|
21672
|
+
Trace = "TRACE"
|
|
21673
|
+
}
|
|
21664
21674
|
export declare enum ConvoAiAgentSessionStatus {
|
|
21665
21675
|
Completed = "COMPLETED",
|
|
21666
21676
|
InputRequired = "INPUT_REQUIRED",
|
|
@@ -21675,6 +21685,16 @@ export declare type ConvoAiAgentTraceMessage = ConvoAiAgentMessage & {
|
|
|
21675
21685
|
status: ConvoAiAgentSessionStatus;
|
|
21676
21686
|
timeCreated: Scalars['DateTime']['output'];
|
|
21677
21687
|
};
|
|
21688
|
+
export declare type ConvoAiAsyncAgentUpdate = {
|
|
21689
|
+
__typename?: 'ConvoAiAsyncAgentUpdate';
|
|
21690
|
+
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
21691
|
+
agentMessageType: ConvoAiAgentMessageType;
|
|
21692
|
+
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
21693
|
+
messageMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
21694
|
+
messageTemplate?: Maybe<Scalars['String']['output']>;
|
|
21695
|
+
status: ConvoAiAgentSessionStatus;
|
|
21696
|
+
timeCreated: Scalars['DateTime']['output'];
|
|
21697
|
+
};
|
|
21678
21698
|
export declare type ConvoAiConfluenceSpaceRecommendation = {
|
|
21679
21699
|
__typename?: 'ConvoAiConfluenceSpaceRecommendation';
|
|
21680
21700
|
id: Scalars['ID']['output'];
|
|
@@ -21879,7 +21899,8 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
21879
21899
|
user: Scalars['Int']['output'];
|
|
21880
21900
|
};
|
|
21881
21901
|
export declare type CplsAddContributionInput = {
|
|
21882
|
-
|
|
21902
|
+
contributorDataId?: InputMaybe<Scalars['ID']['input']>;
|
|
21903
|
+
contributorId?: InputMaybe<Scalars['ID']['input']>;
|
|
21883
21904
|
endDate: Scalars['Date']['input'];
|
|
21884
21905
|
startDate: Scalars['Date']['input'];
|
|
21885
21906
|
value: Scalars['Float']['input'];
|
|
@@ -21899,7 +21920,8 @@ export declare type CplsAddContributionsPayload = Payload & {
|
|
|
21899
21920
|
};
|
|
21900
21921
|
export declare type CplsAddContributorScopeAssociationInput = {
|
|
21901
21922
|
cloudId: Scalars['ID']['input'];
|
|
21902
|
-
|
|
21923
|
+
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
21924
|
+
contributorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
21903
21925
|
scopeId: Scalars['ID']['input'];
|
|
21904
21926
|
};
|
|
21905
21927
|
export declare type CplsAddContributorScopeAssociationPayload = Payload & {
|
|
@@ -21984,7 +22006,8 @@ export declare type CplsContributorEdge = {
|
|
|
21984
22006
|
node: CplsContributor;
|
|
21985
22007
|
};
|
|
21986
22008
|
export declare type CplsContributorWorkAssociation = {
|
|
21987
|
-
|
|
22009
|
+
contributorDataId?: InputMaybe<Scalars['ID']['input']>;
|
|
22010
|
+
contributorId?: InputMaybe<Scalars['ID']['input']>;
|
|
21988
22011
|
workId: Scalars['ID']['input'];
|
|
21989
22012
|
};
|
|
21990
22013
|
export declare type CplsContributorWorkConnection = HasPageInfo & {
|
|
@@ -22010,7 +22033,8 @@ export declare type CplsCreateCustomContributionTargetPayload = Payload & {
|
|
|
22010
22033
|
};
|
|
22011
22034
|
export declare type CplsCreateCustomContributionTargetWithWorkAssociationInput = {
|
|
22012
22035
|
cloudId: Scalars['ID']['input'];
|
|
22013
|
-
|
|
22036
|
+
contributorDataId?: InputMaybe<Scalars['ID']['input']>;
|
|
22037
|
+
contributorId?: InputMaybe<Scalars['ID']['input']>;
|
|
22014
22038
|
name: Scalars['String']['input'];
|
|
22015
22039
|
};
|
|
22016
22040
|
export declare type CplsCreateCustomContributionTargetWithWorkAssociationPayload = Payload & {
|
|
@@ -22036,7 +22060,8 @@ export declare type CplsCustomContributionTargetEdge = {
|
|
|
22036
22060
|
};
|
|
22037
22061
|
export declare type CplsDeleteContributorScopeAssociationInput = {
|
|
22038
22062
|
cloudId: Scalars['ID']['input'];
|
|
22039
|
-
|
|
22063
|
+
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
22064
|
+
contributorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
22040
22065
|
scopeId: Scalars['ID']['input'];
|
|
22041
22066
|
};
|
|
22042
22067
|
export declare type CplsDeleteContributorScopeAssociationPayload = Payload & {
|
|
@@ -63290,6 +63315,11 @@ export declare type JiraBacklogData = {
|
|
|
63290
63315
|
supportsPages?: Maybe<Scalars['Boolean']['output']>;
|
|
63291
63316
|
versionData?: Maybe<JiraBacklogVersionData>;
|
|
63292
63317
|
};
|
|
63318
|
+
export declare enum JiraBacklogDestination {
|
|
63319
|
+
Backlog = "BACKLOG",
|
|
63320
|
+
Board = "BOARD",
|
|
63321
|
+
Sprint = "SPRINT"
|
|
63322
|
+
}
|
|
63293
63323
|
export declare type JiraBacklogEpicConfig = {
|
|
63294
63324
|
__typename?: 'JiraBacklogEpicConfig';
|
|
63295
63325
|
colorFieldId?: Maybe<Scalars['String']['output']>;
|
|
@@ -63567,6 +63597,8 @@ export declare type JiraBacklogView = {
|
|
|
63567
63597
|
assigneeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
63568
63598
|
cardDensity?: Maybe<JiraBacklogCardDensity>;
|
|
63569
63599
|
cardFields?: Maybe<JiraBacklogViewCardFieldConnection>;
|
|
63600
|
+
cardGroupExpanded?: Maybe<Array<Scalars['String']['output']>>;
|
|
63601
|
+
cardListCollapsed?: Maybe<Array<Scalars['String']['output']>>;
|
|
63570
63602
|
emptySprintsToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
63571
63603
|
epicFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
63572
63604
|
epicPanelToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -64811,6 +64843,7 @@ export declare type JiraCloneIssueInput = {
|
|
|
64811
64843
|
optionalFields?: InputMaybe<Array<JiraOptionalFieldInput>>;
|
|
64812
64844
|
reporter?: InputMaybe<JiraUserInfoInput>;
|
|
64813
64845
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
64846
|
+
validations?: InputMaybe<Array<JiraIssueCreateValidationRule>>;
|
|
64814
64847
|
};
|
|
64815
64848
|
export declare type JiraCloneIssueResponse = Payload & {
|
|
64816
64849
|
__typename?: 'JiraCloneIssueResponse';
|
|
@@ -68270,6 +68303,7 @@ export declare type JiraFormulaFieldPreviewIssuePreviewArgs = {
|
|
|
68270
68303
|
export declare type JiraFormulaFieldSuggestedExpressionResult = {
|
|
68271
68304
|
__typename?: 'JiraFormulaFieldSuggestedExpressionResult';
|
|
68272
68305
|
expression?: Maybe<Scalars['String']['output']>;
|
|
68306
|
+
type?: Maybe<JiraFormulaFieldType>;
|
|
68273
68307
|
};
|
|
68274
68308
|
export declare type JiraFormulaFieldSuggestionContext = {
|
|
68275
68309
|
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -68602,6 +68636,77 @@ export declare type JiraHierarchyConfigTask = {
|
|
|
68602
68636
|
issueHierarchyConfig?: Maybe<Array<JiraIssueHierarchyConfigData>>;
|
|
68603
68637
|
taskProgress?: Maybe<JiraLongRunningTaskProgress>;
|
|
68604
68638
|
};
|
|
68639
|
+
export declare type JiraHistoryActivityFeedItem = {
|
|
68640
|
+
__typename?: 'JiraHistoryActivityFeedItem';
|
|
68641
|
+
actor?: Maybe<User>;
|
|
68642
|
+
fieldDisplayName?: Maybe<Scalars['String']['output']>;
|
|
68643
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
68644
|
+
fieldSchema?: Maybe<JiraHistoryFieldSchema>;
|
|
68645
|
+
fieldType?: Maybe<Scalars['String']['output']>;
|
|
68646
|
+
from?: Maybe<JiraHistoryValue>;
|
|
68647
|
+
i18nDescription?: Maybe<Scalars['String']['output']>;
|
|
68648
|
+
id: Scalars['ID']['output'];
|
|
68649
|
+
isDueToRedaction?: Maybe<Scalars['Boolean']['output']>;
|
|
68650
|
+
isDueToRedactionRestore?: Maybe<Scalars['Boolean']['output']>;
|
|
68651
|
+
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
68652
|
+
to?: Maybe<JiraHistoryValue>;
|
|
68653
|
+
};
|
|
68654
|
+
export declare type JiraHistoryAssigneeFieldValue = {
|
|
68655
|
+
__typename?: 'JiraHistoryAssigneeFieldValue';
|
|
68656
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
68657
|
+
displayValue?: Maybe<Scalars['String']['output']>;
|
|
68658
|
+
formattedValue?: Maybe<Scalars['String']['output']>;
|
|
68659
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
68660
|
+
};
|
|
68661
|
+
export declare type JiraHistoryFieldSchema = {
|
|
68662
|
+
__typename?: 'JiraHistoryFieldSchema';
|
|
68663
|
+
customFieldType?: Maybe<Scalars['String']['output']>;
|
|
68664
|
+
itemType?: Maybe<Scalars['String']['output']>;
|
|
68665
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
68666
|
+
};
|
|
68667
|
+
export declare type JiraHistoryGenericFieldValue = {
|
|
68668
|
+
__typename?: 'JiraHistoryGenericFieldValue';
|
|
68669
|
+
displayValue?: Maybe<Scalars['String']['output']>;
|
|
68670
|
+
formattedValue?: Maybe<Scalars['String']['output']>;
|
|
68671
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
68672
|
+
};
|
|
68673
|
+
export declare type JiraHistoryPriorityFieldValue = {
|
|
68674
|
+
__typename?: 'JiraHistoryPriorityFieldValue';
|
|
68675
|
+
absoluteIconUrl?: Maybe<Scalars['String']['output']>;
|
|
68676
|
+
displayValue?: Maybe<Scalars['String']['output']>;
|
|
68677
|
+
formattedValue?: Maybe<Scalars['String']['output']>;
|
|
68678
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
68679
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
68680
|
+
};
|
|
68681
|
+
export declare type JiraHistoryResponder = {
|
|
68682
|
+
__typename?: 'JiraHistoryResponder';
|
|
68683
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
68684
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
68685
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
68686
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
68687
|
+
};
|
|
68688
|
+
export declare type JiraHistoryRespondersFieldValue = {
|
|
68689
|
+
__typename?: 'JiraHistoryRespondersFieldValue';
|
|
68690
|
+
displayValue?: Maybe<Scalars['String']['output']>;
|
|
68691
|
+
formattedValue?: Maybe<Scalars['String']['output']>;
|
|
68692
|
+
responders?: Maybe<Array<Maybe<JiraHistoryResponder>>>;
|
|
68693
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
68694
|
+
};
|
|
68695
|
+
export declare type JiraHistoryStatusFieldValue = {
|
|
68696
|
+
__typename?: 'JiraHistoryStatusFieldValue';
|
|
68697
|
+
categoryId?: Maybe<Scalars['Long']['output']>;
|
|
68698
|
+
displayValue?: Maybe<Scalars['String']['output']>;
|
|
68699
|
+
formattedValue?: Maybe<Scalars['String']['output']>;
|
|
68700
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
68701
|
+
};
|
|
68702
|
+
export declare type JiraHistoryValue = JiraHistoryAssigneeFieldValue | JiraHistoryGenericFieldValue | JiraHistoryPriorityFieldValue | JiraHistoryRespondersFieldValue | JiraHistoryStatusFieldValue | JiraHistoryWorkLogFieldValue;
|
|
68703
|
+
export declare type JiraHistoryWorkLogFieldValue = {
|
|
68704
|
+
__typename?: 'JiraHistoryWorkLogFieldValue';
|
|
68705
|
+
displayValue?: Maybe<Scalars['String']['output']>;
|
|
68706
|
+
formattedValue?: Maybe<Scalars['String']['output']>;
|
|
68707
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
68708
|
+
worklog?: Maybe<JiraWorklog>;
|
|
68709
|
+
};
|
|
68605
68710
|
export declare type JiraHomePage = {
|
|
68606
68711
|
__typename?: 'JiraHomePage';
|
|
68607
68712
|
link?: Maybe<Scalars['String']['output']>;
|
|
@@ -68634,6 +68739,28 @@ export declare type JiraInitializeProjectNotificationPreferencesPayload = Payloa
|
|
|
68634
68739
|
projectPreferences?: Maybe<JiraNotificationProjectPreferences>;
|
|
68635
68740
|
success: Scalars['Boolean']['output'];
|
|
68636
68741
|
};
|
|
68742
|
+
export declare type JiraInlineIssueCreateInput = {
|
|
68743
|
+
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
68744
|
+
destination?: InputMaybe<JiraBacklogDestination>;
|
|
68745
|
+
fields: JiraIssueFieldsInput;
|
|
68746
|
+
issueTypeId: Scalars['ID']['input'];
|
|
68747
|
+
projectId: Scalars['ID']['input'];
|
|
68748
|
+
rank?: InputMaybe<JiraIssueCreateRankInput>;
|
|
68749
|
+
};
|
|
68750
|
+
export declare type JiraInlineIssueCreatePayload = Payload & {
|
|
68751
|
+
__typename?: 'JiraInlineIssueCreatePayload';
|
|
68752
|
+
appliedFields?: Maybe<Array<JiraField>>;
|
|
68753
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68754
|
+
issue?: Maybe<JiraIssue>;
|
|
68755
|
+
skippedFields?: Maybe<Array<JiraField>>;
|
|
68756
|
+
success: Scalars['Boolean']['output'];
|
|
68757
|
+
};
|
|
68758
|
+
export declare type JiraInlineIssuesCreatePayload = Payload & {
|
|
68759
|
+
__typename?: 'JiraInlineIssuesCreatePayload';
|
|
68760
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68761
|
+
issues?: Maybe<Array<JiraInlineIssueCreatePayload>>;
|
|
68762
|
+
success: Scalars['Boolean']['output'];
|
|
68763
|
+
};
|
|
68637
68764
|
export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
68638
68765
|
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
68639
68766
|
FeatureNotEnabled = "FEATURE_NOT_ENABLED",
|
|
@@ -68704,6 +68831,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
68704
68831
|
hasRelationshipToVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
68705
68832
|
hierarchyLevelAbove?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
68706
68833
|
hierarchyLevelBelow?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
68834
|
+
history?: Maybe<JiraIssueHistoryConnection>;
|
|
68707
68835
|
id: Scalars['ID']['output'];
|
|
68708
68836
|
incidentActionItems?: Maybe<GraphIncidentHasActionItemRelationshipConnection>;
|
|
68709
68837
|
incidentLinkedJswIssues?: Maybe<GraphIncidentLinkedJswIssueRelationshipConnection>;
|
|
@@ -68927,6 +69055,13 @@ export declare type JiraIssueHasProjectPermissionArgs = {
|
|
|
68927
69055
|
export declare type JiraIssueHasRelationshipToVersionArgs = {
|
|
68928
69056
|
versionId: Scalars['ID']['input'];
|
|
68929
69057
|
};
|
|
69058
|
+
export declare type JiraIssueHistoryArgs = {
|
|
69059
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69060
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
69061
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69062
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69063
|
+
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
69064
|
+
};
|
|
68930
69065
|
export declare type JiraIssueIssueLinksArgs = {
|
|
68931
69066
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68932
69067
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69232,6 +69367,14 @@ export declare type JiraIssueContentPanelEdge = {
|
|
|
69232
69367
|
cursor: Scalars['String']['output'];
|
|
69233
69368
|
node?: Maybe<JiraIssueContentPanel>;
|
|
69234
69369
|
};
|
|
69370
|
+
export declare type JiraIssueCreateFieldValidationRule = {
|
|
69371
|
+
errorMessage?: InputMaybe<Scalars['String']['input']>;
|
|
69372
|
+
fields: Array<Scalars['String']['input']>;
|
|
69373
|
+
type: JiraIssueCreateFieldValidationType;
|
|
69374
|
+
};
|
|
69375
|
+
export declare enum JiraIssueCreateFieldValidationType {
|
|
69376
|
+
Fieldrequiredvalidator = "FIELDREQUIREDVALIDATOR"
|
|
69377
|
+
}
|
|
69235
69378
|
export declare type JiraIssueCreateInput = {
|
|
69236
69379
|
fields: JiraIssueFieldsInput;
|
|
69237
69380
|
issueTypeId: Scalars['ID']['input'];
|
|
@@ -69248,6 +69391,9 @@ export declare type JiraIssueCreateRankInput = {
|
|
|
69248
69391
|
afterIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
69249
69392
|
beforeIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
69250
69393
|
};
|
|
69394
|
+
export declare type JiraIssueCreateValidationRule = {
|
|
69395
|
+
fieldValidations?: InputMaybe<Array<JiraIssueCreateFieldValidationRule>>;
|
|
69396
|
+
};
|
|
69251
69397
|
export declare type JiraIssueCreatedStreamHubPayload = {
|
|
69252
69398
|
__typename?: 'JiraIssueCreatedStreamHubPayload';
|
|
69253
69399
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
@@ -69716,6 +69862,16 @@ export declare type JiraIssueHierarchyLimits = {
|
|
|
69716
69862
|
maxLevels: Scalars['Int']['output'];
|
|
69717
69863
|
nameLength: Scalars['Int']['output'];
|
|
69718
69864
|
};
|
|
69865
|
+
export declare type JiraIssueHistoryConnection = {
|
|
69866
|
+
__typename?: 'JiraIssueHistoryConnection';
|
|
69867
|
+
edges: Array<JiraIssueHistoryEdge>;
|
|
69868
|
+
pageInfo: PageInfo;
|
|
69869
|
+
};
|
|
69870
|
+
export declare type JiraIssueHistoryEdge = {
|
|
69871
|
+
__typename?: 'JiraIssueHistoryEdge';
|
|
69872
|
+
cursor: Scalars['String']['output'];
|
|
69873
|
+
node: JiraHistoryActivityFeedItem;
|
|
69874
|
+
};
|
|
69719
69875
|
export declare type JiraIssueItemContainer = {
|
|
69720
69876
|
__typename?: 'JiraIssueItemContainer';
|
|
69721
69877
|
containerType?: Maybe<JiraIssueItemSystemContainerType>;
|
|
@@ -71897,6 +72053,7 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
71897
72053
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
71898
72054
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
71899
72055
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
72056
|
+
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
71900
72057
|
};
|
|
71901
72058
|
export declare type JiraListViewViewSettingsArgs = {
|
|
71902
72059
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -72423,6 +72580,7 @@ export declare type JiraMutation = {
|
|
|
72423
72580
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
72424
72581
|
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
72425
72582
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
72583
|
+
trackRecentProject?: Maybe<JiraTrackRecentProjectPayload>;
|
|
72426
72584
|
unlinkIssuesFromIncident?: Maybe<JiraUnlinkIssuesFromIncidentMutationPayload>;
|
|
72427
72585
|
updateActiveBackground?: Maybe<JiraUpdateActiveBackgroundPayload>;
|
|
72428
72586
|
updateAffectedServicesField?: Maybe<JiraAffectedServicesFieldPayload>;
|
|
@@ -72955,6 +73113,9 @@ export declare type JiraMutationSubmitBulkOperationArgs = {
|
|
|
72955
73113
|
cloudId: Scalars['ID']['input'];
|
|
72956
73114
|
input: JiraSubmitBulkOperationInput;
|
|
72957
73115
|
};
|
|
73116
|
+
export declare type JiraMutationTrackRecentProjectArgs = {
|
|
73117
|
+
input: JiraTrackRecentProjectInput;
|
|
73118
|
+
};
|
|
72958
73119
|
export declare type JiraMutationUnlinkIssuesFromIncidentArgs = {
|
|
72959
73120
|
input: JiraUnlinkIssuesFromIncidentMutationInput;
|
|
72960
73121
|
};
|
|
@@ -74872,6 +75033,7 @@ export declare type JiraProject = Node & {
|
|
|
74872
75033
|
isAutomationDiscoverabilityEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
74873
75034
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
74874
75035
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
75036
|
+
isGlobalComponentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
74875
75037
|
isLiveTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
74876
75038
|
isPlaybooksEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
74877
75039
|
isVirtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -80980,6 +81142,16 @@ export declare type JiraTownsquareProjectField = JiraIssueField & JiraIssueField
|
|
|
80980
81142
|
type: Scalars['String']['output'];
|
|
80981
81143
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
80982
81144
|
};
|
|
81145
|
+
export declare type JiraTrackRecentProjectInput = {
|
|
81146
|
+
cloudId: Scalars['ID']['input'];
|
|
81147
|
+
projectKey: Scalars['String']['input'];
|
|
81148
|
+
};
|
|
81149
|
+
export declare type JiraTrackRecentProjectPayload = Payload & {
|
|
81150
|
+
__typename?: 'JiraTrackRecentProjectPayload';
|
|
81151
|
+
errors?: Maybe<Array<MutationError>>;
|
|
81152
|
+
project?: Maybe<JiraProject>;
|
|
81153
|
+
success: Scalars['Boolean']['output'];
|
|
81154
|
+
};
|
|
80983
81155
|
export declare type JiraTransition = Node & {
|
|
80984
81156
|
__typename?: 'JiraTransition';
|
|
80985
81157
|
hasPreConditions?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -89246,6 +89418,14 @@ export declare type MercuryDeleteCommentPayload = Payload & {
|
|
|
89246
89418
|
errors?: Maybe<Array<MutationError>>;
|
|
89247
89419
|
success: Scalars['Boolean']['output'];
|
|
89248
89420
|
};
|
|
89421
|
+
export declare type MercuryDeleteCostSubtypeInput = {
|
|
89422
|
+
id: Scalars['ID']['input'];
|
|
89423
|
+
};
|
|
89424
|
+
export declare type MercuryDeleteCostSubtypePayload = Payload & {
|
|
89425
|
+
__typename?: 'MercuryDeleteCostSubtypePayload';
|
|
89426
|
+
errors?: Maybe<Array<MutationError>>;
|
|
89427
|
+
success: Scalars['Boolean']['output'];
|
|
89428
|
+
};
|
|
89249
89429
|
export declare type MercuryDeleteFocusAreaGoalLinkInput = {
|
|
89250
89430
|
cloudId: Scalars['ID']['input'];
|
|
89251
89431
|
id: Scalars['ID']['input'];
|
|
@@ -89651,7 +89831,7 @@ export declare type MercuryFocusAreaStatusTransitions = {
|
|
|
89651
89831
|
__typename?: 'MercuryFocusAreaStatusTransitions';
|
|
89652
89832
|
available: Array<MercuryFocusAreaStatusTransition>;
|
|
89653
89833
|
};
|
|
89654
|
-
export declare type MercuryFocusAreaStatusUpdate = {
|
|
89834
|
+
export declare type MercuryFocusAreaStatusUpdate = Node & {
|
|
89655
89835
|
__typename?: 'MercuryFocusAreaStatusUpdate';
|
|
89656
89836
|
ari?: Maybe<Scalars['String']['output']>;
|
|
89657
89837
|
comments?: Maybe<MercuryCommentConnection>;
|
|
@@ -89738,10 +89918,14 @@ export declare type MercuryFundingDeltaByStatus = {
|
|
|
89738
89918
|
export declare type MercuryFundsMutationApi = {
|
|
89739
89919
|
__typename?: 'MercuryFundsMutationApi';
|
|
89740
89920
|
createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
|
|
89921
|
+
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
89741
89922
|
};
|
|
89742
89923
|
export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
|
|
89743
89924
|
input: MercuryCreateCostSubtypeInput;
|
|
89744
89925
|
};
|
|
89926
|
+
export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
|
|
89927
|
+
input: MercuryDeleteCostSubtypeInput;
|
|
89928
|
+
};
|
|
89745
89929
|
export declare type MercuryFundsQueryApi = {
|
|
89746
89930
|
__typename?: 'MercuryFundsQueryApi';
|
|
89747
89931
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
@@ -90669,6 +90853,22 @@ export declare type MercuryRestrictedChangeProposalEdge = {
|
|
|
90669
90853
|
cursor: Scalars['String']['output'];
|
|
90670
90854
|
node?: Maybe<MercuryRestrictedChangeProposal>;
|
|
90671
90855
|
};
|
|
90856
|
+
export declare type MercuryRestrictedStrategicEvent = {
|
|
90857
|
+
__typename?: 'MercuryRestrictedStrategicEvent';
|
|
90858
|
+
id: Scalars['ID']['output'];
|
|
90859
|
+
name: Scalars['String']['output'];
|
|
90860
|
+
};
|
|
90861
|
+
export declare type MercuryRestrictedStrategicEventConnection = {
|
|
90862
|
+
__typename?: 'MercuryRestrictedStrategicEventConnection';
|
|
90863
|
+
edges?: Maybe<Array<Maybe<MercuryRestrictedStrategicEventEdge>>>;
|
|
90864
|
+
pageInfo: PageInfo;
|
|
90865
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
90866
|
+
};
|
|
90867
|
+
export declare type MercuryRestrictedStrategicEventEdge = {
|
|
90868
|
+
__typename?: 'MercuryRestrictedStrategicEventEdge';
|
|
90869
|
+
cursor: Scalars['String']['output'];
|
|
90870
|
+
node?: Maybe<MercuryRestrictedStrategicEvent>;
|
|
90871
|
+
};
|
|
90672
90872
|
export declare type MercurySetPreferenceInput = {
|
|
90673
90873
|
cloudId: Scalars['ID']['input'];
|
|
90674
90874
|
key: Scalars['String']['input'];
|
|
@@ -90950,6 +91150,7 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
90950
91150
|
changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
90951
91151
|
changesSearch?: Maybe<MercuryChangeConnection>;
|
|
90952
91152
|
restrictedChangeProposalsSearch?: Maybe<MercuryRestrictedChangeProposalConnection>;
|
|
91153
|
+
restrictedStrategicEventsSearch?: Maybe<MercuryRestrictedStrategicEventConnection>;
|
|
90953
91154
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
90954
91155
|
strategicEventStatuses: Array<MercuryStrategicEventStatus>;
|
|
90955
91156
|
strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
|
|
@@ -91033,6 +91234,13 @@ export declare type MercuryStrategicEventsQueryApiRestrictedChangeProposalsSearc
|
|
|
91033
91234
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
91034
91235
|
sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalSort>>>;
|
|
91035
91236
|
};
|
|
91237
|
+
export declare type MercuryStrategicEventsQueryApiRestrictedStrategicEventsSearchArgs = {
|
|
91238
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91239
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91240
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91241
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
91242
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryStrategicEventSort>>>;
|
|
91243
|
+
};
|
|
91036
91244
|
export declare type MercuryStrategicEventsQueryApiStrategicEventArgs = {
|
|
91037
91245
|
id: Scalars['ID']['input'];
|
|
91038
91246
|
};
|
|
@@ -92029,6 +92237,7 @@ export declare type Mutation = {
|
|
|
92029
92237
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
92030
92238
|
jira_archiveIssueAsync?: Maybe<JiraIssueArchiveAsyncPayload>;
|
|
92031
92239
|
jira_associateProjectToFieldScheme?: Maybe<JiraAssociateProjectToFieldSchemePayload>;
|
|
92240
|
+
jira_bulkCreateInlineIssuesOptimistic?: Maybe<JiraInlineIssuesCreatePayload>;
|
|
92032
92241
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
92033
92242
|
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
92034
92243
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
@@ -92063,6 +92272,8 @@ export declare type Mutation = {
|
|
|
92063
92272
|
jira_setBacklogViewAssigneeFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
92064
92273
|
jira_setBacklogViewCardDensity?: Maybe<JiraSetBacklogViewPayload>;
|
|
92065
92274
|
jira_setBacklogViewCardFields?: Maybe<JiraSetBacklogViewPayload>;
|
|
92275
|
+
jira_setBacklogViewCardGroupExpanded?: Maybe<JiraSetBacklogViewPayload>;
|
|
92276
|
+
jira_setBacklogViewCardListCollapsed?: Maybe<JiraSetBacklogViewPayload>;
|
|
92066
92277
|
jira_setBacklogViewEmptySprintsToggle?: Maybe<JiraSetBacklogViewPayload>;
|
|
92067
92278
|
jira_setBacklogViewEpicFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
92068
92279
|
jira_setBacklogViewEpicPanelToggle?: Maybe<JiraSetBacklogViewPayload>;
|
|
@@ -92186,8 +92397,9 @@ export declare type Mutation = {
|
|
|
92186
92397
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
92187
92398
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
92188
92399
|
radar_updateFocusAreaProposalChanges?: Maybe<RadarUpdateFocusAreaProposalChangesMutationResponse>;
|
|
92189
|
-
radar_updatePositionLaborCostEstimateSettings?: Maybe<
|
|
92400
|
+
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
|
|
92190
92401
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
92402
|
+
radar_upsertLastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
92191
92403
|
radar_upsertWorkTypeAllocations?: Maybe<RadarMutationResponse>;
|
|
92192
92404
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
92193
92405
|
rankColumn?: Maybe<RankColumnOutput>;
|
|
@@ -93811,6 +94023,9 @@ export declare type MutationJira_AssociateProjectToFieldSchemeArgs = {
|
|
|
93811
94023
|
cloudId: Scalars['ID']['input'];
|
|
93812
94024
|
input: JiraAssociateProjectToFieldSchemeInput;
|
|
93813
94025
|
};
|
|
94026
|
+
export declare type MutationJira_BulkCreateInlineIssuesOptimisticArgs = {
|
|
94027
|
+
input: Array<JiraInlineIssueCreateInput>;
|
|
94028
|
+
};
|
|
93814
94029
|
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
93815
94030
|
input: JiraBulkSetBoardViewColumnStateInput;
|
|
93816
94031
|
};
|
|
@@ -93922,6 +94137,12 @@ export declare type MutationJira_SetBacklogViewCardDensityArgs = {
|
|
|
93922
94137
|
export declare type MutationJira_SetBacklogViewCardFieldsArgs = {
|
|
93923
94138
|
input: JiraSetBacklogViewCardFieldsInput;
|
|
93924
94139
|
};
|
|
94140
|
+
export declare type MutationJira_SetBacklogViewCardGroupExpandedArgs = {
|
|
94141
|
+
input: JiraSetBacklogViewStringFiltersInput;
|
|
94142
|
+
};
|
|
94143
|
+
export declare type MutationJira_SetBacklogViewCardListCollapsedArgs = {
|
|
94144
|
+
input: JiraSetBacklogViewStringFiltersInput;
|
|
94145
|
+
};
|
|
93925
94146
|
export declare type MutationJira_SetBacklogViewEmptySprintsToggleArgs = {
|
|
93926
94147
|
input: JiraSetViewSettingToggleInput;
|
|
93927
94148
|
};
|
|
@@ -94293,6 +94514,10 @@ export declare type MutationRadar_UpdateWorkspaceSettingsArgs = {
|
|
|
94293
94514
|
cloudId: Scalars['ID']['input'];
|
|
94294
94515
|
input: RadarWorkspaceSettingsInput;
|
|
94295
94516
|
};
|
|
94517
|
+
export declare type MutationRadar_UpsertLastAppliedFilterArgs = {
|
|
94518
|
+
cloudId: Scalars['ID']['input'];
|
|
94519
|
+
input: RadarLastAppliedFilterInput;
|
|
94520
|
+
};
|
|
94296
94521
|
export declare type MutationRadar_UpsertWorkTypeAllocationsArgs = {
|
|
94297
94522
|
cloudId: Scalars['ID']['input'];
|
|
94298
94523
|
input: Array<RadarWorkTypeAllocationInput>;
|
|
@@ -98429,6 +98654,7 @@ export declare type Query = {
|
|
|
98429
98654
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
98430
98655
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
98431
98656
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
98657
|
+
radar_lastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
98432
98658
|
radar_positionByAri?: Maybe<RadarPosition>;
|
|
98433
98659
|
radar_positionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
98434
98660
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
@@ -101383,6 +101609,10 @@ export declare type QueryRadar_GroupMetricsArgs = {
|
|
|
101383
101609
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
101384
101610
|
uniqueFieldIdIsIn: Array<Scalars['ID']['input']>;
|
|
101385
101611
|
};
|
|
101612
|
+
export declare type QueryRadar_LastAppliedFilterArgs = {
|
|
101613
|
+
cloudId: Scalars['ID']['input'];
|
|
101614
|
+
pageName: Scalars['String']['input'];
|
|
101615
|
+
};
|
|
101386
101616
|
export declare type QueryRadar_PositionByAriArgs = {
|
|
101387
101617
|
id: Scalars['ID']['input'];
|
|
101388
101618
|
};
|
|
@@ -102334,6 +102564,20 @@ export declare type RadarGroupPrincipal = {
|
|
|
102334
102564
|
id: Scalars['ID']['output'];
|
|
102335
102565
|
name: Scalars['String']['output'];
|
|
102336
102566
|
};
|
|
102567
|
+
export declare type RadarLastAppliedFilter = {
|
|
102568
|
+
__typename?: 'RadarLastAppliedFilter';
|
|
102569
|
+
createdAt: Scalars['DateTime']['output'];
|
|
102570
|
+
id: Scalars['ID']['output'];
|
|
102571
|
+
ownerId: Scalars['ID']['output'];
|
|
102572
|
+
pageName: Scalars['String']['output'];
|
|
102573
|
+
rqlQuery?: Maybe<Scalars['String']['output']>;
|
|
102574
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
102575
|
+
workspaceId: Scalars['ID']['output'];
|
|
102576
|
+
};
|
|
102577
|
+
export declare type RadarLastAppliedFilterInput = {
|
|
102578
|
+
pageName: Scalars['String']['input'];
|
|
102579
|
+
rqlQuery?: InputMaybe<Scalars['String']['input']>;
|
|
102580
|
+
};
|
|
102337
102581
|
export declare type RadarMoney = {
|
|
102338
102582
|
__typename?: 'RadarMoney';
|
|
102339
102583
|
amount: Scalars['String']['output'];
|
|
@@ -102539,6 +102783,11 @@ export declare type RadarUpdatePositionLaborCostEstimateSettingsInput = {
|
|
|
102539
102783
|
defaultAmount?: InputMaybe<RadarMoneyInput>;
|
|
102540
102784
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102541
102785
|
};
|
|
102786
|
+
export declare type RadarUpdatePositionLaborCostResponse = {
|
|
102787
|
+
__typename?: 'RadarUpdatePositionLaborCostResponse';
|
|
102788
|
+
radarPositionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
102789
|
+
success: Scalars['Boolean']['output'];
|
|
102790
|
+
};
|
|
102542
102791
|
export declare type RadarUrlFieldValue = {
|
|
102543
102792
|
__typename?: 'RadarUrlFieldValue';
|
|
102544
102793
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -104433,16 +104682,16 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
|
|
|
104433
104682
|
bodyText?: Maybe<Scalars['String']['output']>;
|
|
104434
104683
|
confluenceEntity?: Maybe<SearchConfluenceEntity>;
|
|
104435
104684
|
content?: Maybe<Array<Maybe<Content>>>;
|
|
104436
|
-
createdDate?: Maybe<Scalars['
|
|
104685
|
+
createdDate?: Maybe<Scalars['String']['output']>;
|
|
104437
104686
|
description: Scalars['String']['output'];
|
|
104438
104687
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
104439
104688
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
104440
104689
|
iconCssClass?: Maybe<Scalars['String']['output']>;
|
|
104441
|
-
iconUrl?: Maybe<Scalars['
|
|
104690
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104442
104691
|
id: Scalars['ID']['output'];
|
|
104443
104692
|
isVerified: Scalars['Boolean']['output'];
|
|
104444
104693
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
104445
|
-
lastModified?: Maybe<Scalars['
|
|
104694
|
+
lastModified?: Maybe<Scalars['String']['output']>;
|
|
104446
104695
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
104447
104696
|
latestUserAction?: Maybe<Scalars['String']['output']>;
|
|
104448
104697
|
latestUserActionTs?: Maybe<Scalars['String']['output']>;
|
|
@@ -104454,7 +104703,7 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
|
|
|
104454
104703
|
spaceEntity?: Maybe<ConfluenceSpace>;
|
|
104455
104704
|
title: Scalars['String']['output'];
|
|
104456
104705
|
type: SearchResultType;
|
|
104457
|
-
url: Scalars['
|
|
104706
|
+
url: Scalars['String']['output'];
|
|
104458
104707
|
};
|
|
104459
104708
|
export declare type SearchConfluencePageBlogAttachmentSocialSignalArgs = {
|
|
104460
104709
|
tenantId: Scalars['ID']['input'];
|
|
@@ -104483,11 +104732,11 @@ export declare type SearchConfluenceSpace = SearchL2FeatureProvider & SearchResu
|
|
|
104483
104732
|
description: Scalars['String']['output'];
|
|
104484
104733
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
104485
104734
|
iconPath?: Maybe<Scalars['String']['output']>;
|
|
104486
|
-
iconUrl?: Maybe<Scalars['
|
|
104735
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104487
104736
|
id: Scalars['ID']['output'];
|
|
104488
104737
|
key?: Maybe<Scalars['String']['output']>;
|
|
104489
104738
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
104490
|
-
lastModified?: Maybe<Scalars['
|
|
104739
|
+
lastModified?: Maybe<Scalars['String']['output']>;
|
|
104491
104740
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
104492
104741
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
104493
104742
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
@@ -104495,7 +104744,7 @@ export declare type SearchConfluenceSpace = SearchL2FeatureProvider & SearchResu
|
|
|
104495
104744
|
spaceEntity?: Maybe<ConfluenceSpace>;
|
|
104496
104745
|
title: Scalars['String']['output'];
|
|
104497
104746
|
type: SearchResultType;
|
|
104498
|
-
url: Scalars['
|
|
104747
|
+
url: Scalars['String']['output'];
|
|
104499
104748
|
webUiLink?: Maybe<Scalars['String']['output']>;
|
|
104500
104749
|
};
|
|
104501
104750
|
export declare type SearchConfluenceSpaceSocialSignalArgs = {
|
|
@@ -104508,14 +104757,14 @@ export declare enum SearchContainerStatus {
|
|
|
104508
104757
|
export declare type SearchDefaultResult = SearchResult & {
|
|
104509
104758
|
__typename?: 'SearchDefaultResult';
|
|
104510
104759
|
description: Scalars['String']['output'];
|
|
104511
|
-
iconUrl?: Maybe<Scalars['
|
|
104760
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104512
104761
|
id: Scalars['ID']['output'];
|
|
104513
|
-
lastModifiedDate?: Maybe<Scalars['
|
|
104762
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
104514
104763
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
104515
104764
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
104516
104765
|
title: Scalars['String']['output'];
|
|
104517
104766
|
type: SearchResultType;
|
|
104518
|
-
url: Scalars['
|
|
104767
|
+
url: Scalars['String']['output'];
|
|
104519
104768
|
};
|
|
104520
104769
|
export declare type SearchExperimentContextInput = {
|
|
104521
104770
|
experimentId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -104650,7 +104899,7 @@ export declare type SearchLinkedResult = SearchResult & {
|
|
|
104650
104899
|
__typename?: 'SearchLinkedResult';
|
|
104651
104900
|
category: SearchLinkedResultCategory;
|
|
104652
104901
|
description: Scalars['String']['output'];
|
|
104653
|
-
iconUrl?: Maybe<Scalars['
|
|
104902
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104654
104903
|
id: Scalars['ID']['output'];
|
|
104655
104904
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
104656
104905
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -104660,7 +104909,7 @@ export declare type SearchLinkedResult = SearchResult & {
|
|
|
104660
104909
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
104661
104910
|
title: Scalars['String']['output'];
|
|
104662
104911
|
type: SearchResultType;
|
|
104663
|
-
url: Scalars['
|
|
104912
|
+
url: Scalars['String']['output'];
|
|
104664
104913
|
};
|
|
104665
104914
|
export declare enum SearchLinkedResultCategory {
|
|
104666
104915
|
MentionedBy = "mentionedBy",
|
|
@@ -104751,18 +105000,18 @@ export declare type SearchRecentFilterInput = {
|
|
|
104751
105000
|
};
|
|
104752
105001
|
export declare type SearchResult = {
|
|
104753
105002
|
description: Scalars['String']['output'];
|
|
104754
|
-
iconUrl?: Maybe<Scalars['
|
|
105003
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104755
105004
|
id: Scalars['ID']['output'];
|
|
104756
105005
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
104757
105006
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
104758
105007
|
title: Scalars['String']['output'];
|
|
104759
105008
|
type: SearchResultType;
|
|
104760
|
-
url: Scalars['
|
|
105009
|
+
url: Scalars['String']['output'];
|
|
104761
105010
|
};
|
|
104762
105011
|
export declare type SearchResultAssetsObject = SearchResult & {
|
|
104763
105012
|
__typename?: 'SearchResultAssetsObject';
|
|
104764
105013
|
description: Scalars['String']['output'];
|
|
104765
|
-
iconUrl?: Maybe<Scalars['
|
|
105014
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104766
105015
|
id: Scalars['ID']['output'];
|
|
104767
105016
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
104768
105017
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -104774,12 +105023,12 @@ export declare type SearchResultAssetsObject = SearchResult & {
|
|
|
104774
105023
|
title: Scalars['String']['output'];
|
|
104775
105024
|
type: SearchResultType;
|
|
104776
105025
|
typeAri: Scalars['ID']['output'];
|
|
104777
|
-
url: Scalars['
|
|
105026
|
+
url: Scalars['String']['output'];
|
|
104778
105027
|
};
|
|
104779
105028
|
export declare type SearchResultAssetsObjectSchema = SearchResult & {
|
|
104780
105029
|
__typename?: 'SearchResultAssetsObjectSchema';
|
|
104781
105030
|
description: Scalars['String']['output'];
|
|
104782
|
-
iconUrl?: Maybe<Scalars['
|
|
105031
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104783
105032
|
id: Scalars['ID']['output'];
|
|
104784
105033
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
104785
105034
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -104787,12 +105036,12 @@ export declare type SearchResultAssetsObjectSchema = SearchResult & {
|
|
|
104787
105036
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
104788
105037
|
title: Scalars['String']['output'];
|
|
104789
105038
|
type: SearchResultType;
|
|
104790
|
-
url: Scalars['
|
|
105039
|
+
url: Scalars['String']['output'];
|
|
104791
105040
|
};
|
|
104792
105041
|
export declare type SearchResultAssetsObjectType = SearchResult & {
|
|
104793
105042
|
__typename?: 'SearchResultAssetsObjectType';
|
|
104794
105043
|
description: Scalars['String']['output'];
|
|
104795
|
-
iconUrl?: Maybe<Scalars['
|
|
105044
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104796
105045
|
id: Scalars['ID']['output'];
|
|
104797
105046
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
104798
105047
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -104802,25 +105051,25 @@ export declare type SearchResultAssetsObjectType = SearchResult & {
|
|
|
104802
105051
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
104803
105052
|
title: Scalars['String']['output'];
|
|
104804
105053
|
type: SearchResultType;
|
|
104805
|
-
url: Scalars['
|
|
105054
|
+
url: Scalars['String']['output'];
|
|
104806
105055
|
};
|
|
104807
105056
|
export declare type SearchResultAtlasGoal = SearchResult & {
|
|
104808
105057
|
__typename?: 'SearchResultAtlasGoal';
|
|
104809
105058
|
description: Scalars['String']['output'];
|
|
104810
105059
|
goal?: Maybe<TownsquareGoal>;
|
|
104811
|
-
iconUrl?: Maybe<Scalars['
|
|
105060
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104812
105061
|
id: Scalars['ID']['output'];
|
|
104813
105062
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
104814
105063
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
104815
105064
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
104816
105065
|
title: Scalars['String']['output'];
|
|
104817
105066
|
type: SearchResultType;
|
|
104818
|
-
url: Scalars['
|
|
105067
|
+
url: Scalars['String']['output'];
|
|
104819
105068
|
};
|
|
104820
105069
|
export declare type SearchResultAtlasGoalUpdate = SearchResult & {
|
|
104821
105070
|
__typename?: 'SearchResultAtlasGoalUpdate';
|
|
104822
105071
|
description: Scalars['String']['output'];
|
|
104823
|
-
iconUrl?: Maybe<Scalars['
|
|
105072
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104824
105073
|
id: Scalars['ID']['output'];
|
|
104825
105074
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
104826
105075
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -104828,12 +105077,12 @@ export declare type SearchResultAtlasGoalUpdate = SearchResult & {
|
|
|
104828
105077
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
104829
105078
|
title: Scalars['String']['output'];
|
|
104830
105079
|
type: SearchResultType;
|
|
104831
|
-
url: Scalars['
|
|
105080
|
+
url: Scalars['String']['output'];
|
|
104832
105081
|
};
|
|
104833
105082
|
export declare type SearchResultAtlasProject = SearchResult & {
|
|
104834
105083
|
__typename?: 'SearchResultAtlasProject';
|
|
104835
105084
|
description: Scalars['String']['output'];
|
|
104836
|
-
iconUrl?: Maybe<Scalars['
|
|
105085
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104837
105086
|
id: Scalars['ID']['output'];
|
|
104838
105087
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
104839
105088
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -104841,12 +105090,12 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
104841
105090
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
104842
105091
|
title: Scalars['String']['output'];
|
|
104843
105092
|
type: SearchResultType;
|
|
104844
|
-
url: Scalars['
|
|
105093
|
+
url: Scalars['String']['output'];
|
|
104845
105094
|
};
|
|
104846
105095
|
export declare type SearchResultAtlasProjectUpdate = SearchResult & {
|
|
104847
105096
|
__typename?: 'SearchResultAtlasProjectUpdate';
|
|
104848
105097
|
description: Scalars['String']['output'];
|
|
104849
|
-
iconUrl?: Maybe<Scalars['
|
|
105098
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104850
105099
|
id: Scalars['ID']['output'];
|
|
104851
105100
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
104852
105101
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -104854,27 +105103,27 @@ export declare type SearchResultAtlasProjectUpdate = SearchResult & {
|
|
|
104854
105103
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
104855
105104
|
title: Scalars['String']['output'];
|
|
104856
105105
|
type: SearchResultType;
|
|
104857
|
-
url: Scalars['
|
|
105106
|
+
url: Scalars['String']['output'];
|
|
104858
105107
|
};
|
|
104859
105108
|
export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
104860
105109
|
__typename?: 'SearchResultBitbucketRepository';
|
|
104861
105110
|
description: Scalars['String']['output'];
|
|
104862
105111
|
fullRepoName: Scalars['String']['output'];
|
|
104863
|
-
iconUrl?: Maybe<Scalars['
|
|
105112
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104864
105113
|
id: Scalars['ID']['output'];
|
|
104865
105114
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
104866
105115
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
104867
105116
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
104868
105117
|
title: Scalars['String']['output'];
|
|
104869
105118
|
type: SearchResultType;
|
|
104870
|
-
url: Scalars['
|
|
105119
|
+
url: Scalars['String']['output'];
|
|
104871
105120
|
};
|
|
104872
105121
|
export declare type SearchResultCompassComponent = SearchResult & {
|
|
104873
105122
|
__typename?: 'SearchResultCompassComponent';
|
|
104874
105123
|
component?: Maybe<CompassComponent>;
|
|
104875
105124
|
componentType?: Maybe<Scalars['String']['output']>;
|
|
104876
105125
|
description: Scalars['String']['output'];
|
|
104877
|
-
iconUrl?: Maybe<Scalars['
|
|
105126
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104878
105127
|
id: Scalars['ID']['output'];
|
|
104879
105128
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
104880
105129
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -104884,14 +105133,14 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
104884
105133
|
tier?: Maybe<Scalars['String']['output']>;
|
|
104885
105134
|
title: Scalars['String']['output'];
|
|
104886
105135
|
type: SearchResultType;
|
|
104887
|
-
url: Scalars['
|
|
105136
|
+
url: Scalars['String']['output'];
|
|
104888
105137
|
};
|
|
104889
105138
|
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
104890
105139
|
export declare type SearchResultFederated = SearchResult & {
|
|
104891
105140
|
__typename?: 'SearchResultFederated';
|
|
104892
105141
|
description: Scalars['String']['output'];
|
|
104893
105142
|
entity?: Maybe<SearchFederatedEntity>;
|
|
104894
|
-
iconUrl?: Maybe<Scalars['
|
|
105143
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104895
105144
|
id: Scalars['ID']['output'];
|
|
104896
105145
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
104897
105146
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -104899,14 +105148,14 @@ export declare type SearchResultFederated = SearchResult & {
|
|
|
104899
105148
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
104900
105149
|
title: Scalars['String']['output'];
|
|
104901
105150
|
type: SearchResultType;
|
|
104902
|
-
url: Scalars['
|
|
105151
|
+
url: Scalars['String']['output'];
|
|
104903
105152
|
};
|
|
104904
105153
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
104905
105154
|
__typename?: 'SearchResultGoogleDocument';
|
|
104906
105155
|
bodyText: Scalars['String']['output'];
|
|
104907
105156
|
description: Scalars['String']['output'];
|
|
104908
105157
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
104909
|
-
iconUrl?: Maybe<Scalars['
|
|
105158
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104910
105159
|
id: Scalars['ID']['output'];
|
|
104911
105160
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
104912
105161
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -104915,14 +105164,14 @@ export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & Searc
|
|
|
104915
105164
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
104916
105165
|
title: Scalars['String']['output'];
|
|
104917
105166
|
type: SearchResultType;
|
|
104918
|
-
url: Scalars['
|
|
105167
|
+
url: Scalars['String']['output'];
|
|
104919
105168
|
};
|
|
104920
105169
|
export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & SearchResult & {
|
|
104921
105170
|
__typename?: 'SearchResultGooglePresentation';
|
|
104922
105171
|
bodyText: Scalars['String']['output'];
|
|
104923
105172
|
description: Scalars['String']['output'];
|
|
104924
105173
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
104925
|
-
iconUrl?: Maybe<Scalars['
|
|
105174
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104926
105175
|
id: Scalars['ID']['output'];
|
|
104927
105176
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
104928
105177
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -104931,14 +105180,14 @@ export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & S
|
|
|
104931
105180
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
104932
105181
|
title: Scalars['String']['output'];
|
|
104933
105182
|
type: SearchResultType;
|
|
104934
|
-
url: Scalars['
|
|
105183
|
+
url: Scalars['String']['output'];
|
|
104935
105184
|
};
|
|
104936
105185
|
export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & SearchResult & {
|
|
104937
105186
|
__typename?: 'SearchResultGoogleSpreadsheet';
|
|
104938
105187
|
bodyText: Scalars['String']['output'];
|
|
104939
105188
|
description: Scalars['String']['output'];
|
|
104940
105189
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
104941
|
-
iconUrl?: Maybe<Scalars['
|
|
105190
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104942
105191
|
id: Scalars['ID']['output'];
|
|
104943
105192
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
104944
105193
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -104947,7 +105196,7 @@ export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & Se
|
|
|
104947
105196
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
104948
105197
|
title: Scalars['String']['output'];
|
|
104949
105198
|
type: SearchResultType;
|
|
104950
|
-
url: Scalars['
|
|
105199
|
+
url: Scalars['String']['output'];
|
|
104951
105200
|
};
|
|
104952
105201
|
export declare type SearchResultGraphDocument = SearchL2FeatureProvider & SearchResult & {
|
|
104953
105202
|
__typename?: 'SearchResultGraphDocument';
|
|
@@ -104957,7 +105206,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
104957
105206
|
description: Scalars['String']['output'];
|
|
104958
105207
|
entity?: Maybe<SearchResultEntity>;
|
|
104959
105208
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
104960
|
-
iconUrl?: Maybe<Scalars['
|
|
105209
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104961
105210
|
id: Scalars['ID']['output'];
|
|
104962
105211
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
104963
105212
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
@@ -104972,7 +105221,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
104972
105221
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
104973
105222
|
title: Scalars['String']['output'];
|
|
104974
105223
|
type: SearchResultType;
|
|
104975
|
-
url: Scalars['
|
|
105224
|
+
url: Scalars['String']['output'];
|
|
104976
105225
|
};
|
|
104977
105226
|
export declare type SearchResultItemEdge = {
|
|
104978
105227
|
__typename?: 'SearchResultItemEdge';
|
|
@@ -104985,7 +105234,7 @@ export declare type SearchResultJiraBoard = SearchResult & {
|
|
|
104985
105234
|
container?: Maybe<SearchResultJiraBoardContainer>;
|
|
104986
105235
|
description: Scalars['String']['output'];
|
|
104987
105236
|
favourite: Scalars['Boolean']['output'];
|
|
104988
|
-
iconUrl?: Maybe<Scalars['
|
|
105237
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
104989
105238
|
id: Scalars['ID']['output'];
|
|
104990
105239
|
isSimpleBoard: Scalars['Boolean']['output'];
|
|
104991
105240
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -104995,7 +105244,7 @@ export declare type SearchResultJiraBoard = SearchResult & {
|
|
|
104995
105244
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
104996
105245
|
title: Scalars['String']['output'];
|
|
104997
105246
|
type: SearchResultType;
|
|
104998
|
-
url: Scalars['
|
|
105247
|
+
url: Scalars['String']['output'];
|
|
104999
105248
|
};
|
|
105000
105249
|
export declare type SearchResultJiraBoardSocialSignalArgs = {
|
|
105001
105250
|
tenantId: Scalars['ID']['input'];
|
|
@@ -105017,7 +105266,7 @@ export declare type SearchResultJiraBoardUserContainer = {
|
|
|
105017
105266
|
export declare type SearchResultJiraDashboard = SearchResult & {
|
|
105018
105267
|
__typename?: 'SearchResultJiraDashboard';
|
|
105019
105268
|
description: Scalars['String']['output'];
|
|
105020
|
-
iconUrl?: Maybe<Scalars['
|
|
105269
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
105021
105270
|
id: Scalars['ID']['output'];
|
|
105022
105271
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
105023
105272
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -105025,7 +105274,7 @@ export declare type SearchResultJiraDashboard = SearchResult & {
|
|
|
105025
105274
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
105026
105275
|
title: Scalars['String']['output'];
|
|
105027
105276
|
type: SearchResultType;
|
|
105028
|
-
url: Scalars['
|
|
105277
|
+
url: Scalars['String']['output'];
|
|
105029
105278
|
};
|
|
105030
105279
|
export declare type SearchResultJiraDashboardSocialSignalArgs = {
|
|
105031
105280
|
tenantId: Scalars['ID']['input'];
|
|
@@ -105034,7 +105283,7 @@ export declare type SearchResultJiraFilter = SearchResult & {
|
|
|
105034
105283
|
__typename?: 'SearchResultJiraFilter';
|
|
105035
105284
|
description: Scalars['String']['output'];
|
|
105036
105285
|
filter?: Maybe<JiraFilter>;
|
|
105037
|
-
iconUrl?: Maybe<Scalars['
|
|
105286
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
105038
105287
|
id: Scalars['ID']['output'];
|
|
105039
105288
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
105040
105289
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -105042,7 +105291,7 @@ export declare type SearchResultJiraFilter = SearchResult & {
|
|
|
105042
105291
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
105043
105292
|
title: Scalars['String']['output'];
|
|
105044
105293
|
type: SearchResultType;
|
|
105045
|
-
url: Scalars['
|
|
105294
|
+
url: Scalars['String']['output'];
|
|
105046
105295
|
};
|
|
105047
105296
|
export declare type SearchResultJiraFilterSocialSignalArgs = {
|
|
105048
105297
|
tenantId: Scalars['ID']['input'];
|
|
@@ -105050,7 +105299,7 @@ export declare type SearchResultJiraFilterSocialSignalArgs = {
|
|
|
105050
105299
|
export declare type SearchResultJiraIssue = SearchResult & {
|
|
105051
105300
|
__typename?: 'SearchResultJiraIssue';
|
|
105052
105301
|
description: Scalars['String']['output'];
|
|
105053
|
-
iconUrl?: Maybe<Scalars['
|
|
105302
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
105054
105303
|
id: Scalars['ID']['output'];
|
|
105055
105304
|
issue?: Maybe<JiraIssue>;
|
|
105056
105305
|
issueTypeId: Scalars['String']['output'];
|
|
@@ -105061,7 +105310,7 @@ export declare type SearchResultJiraIssue = SearchResult & {
|
|
|
105061
105310
|
status?: Maybe<SearchResultJiraIssueStatus>;
|
|
105062
105311
|
title: Scalars['String']['output'];
|
|
105063
105312
|
type: SearchResultType;
|
|
105064
|
-
url: Scalars['
|
|
105313
|
+
url: Scalars['String']['output'];
|
|
105065
105314
|
useHydratedFields?: Maybe<Scalars['Boolean']['output']>;
|
|
105066
105315
|
};
|
|
105067
105316
|
export declare type SearchResultJiraIssueSocialSignalArgs = {
|
|
@@ -105083,21 +105332,21 @@ export declare type SearchResultJiraIssueStatusCategory = {
|
|
|
105083
105332
|
export declare type SearchResultJiraPlan = SearchResult & {
|
|
105084
105333
|
__typename?: 'SearchResultJiraPlan';
|
|
105085
105334
|
description: Scalars['String']['output'];
|
|
105086
|
-
iconUrl?: Maybe<Scalars['
|
|
105335
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
105087
105336
|
id: Scalars['ID']['output'];
|
|
105088
105337
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
105089
105338
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
105090
105339
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
105091
105340
|
title: Scalars['String']['output'];
|
|
105092
105341
|
type: SearchResultType;
|
|
105093
|
-
url: Scalars['
|
|
105342
|
+
url: Scalars['String']['output'];
|
|
105094
105343
|
};
|
|
105095
105344
|
export declare type SearchResultJiraProject = SearchResult & {
|
|
105096
105345
|
__typename?: 'SearchResultJiraProject';
|
|
105097
105346
|
canView: Scalars['Boolean']['output'];
|
|
105098
105347
|
description: Scalars['String']['output'];
|
|
105099
105348
|
favourite: Scalars['Boolean']['output'];
|
|
105100
|
-
iconUrl?: Maybe<Scalars['
|
|
105349
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
105101
105350
|
id: Scalars['ID']['output'];
|
|
105102
105351
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
105103
105352
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
@@ -105110,7 +105359,7 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
105110
105359
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
105111
105360
|
title: Scalars['String']['output'];
|
|
105112
105361
|
type: SearchResultType;
|
|
105113
|
-
url: Scalars['
|
|
105362
|
+
url: Scalars['String']['output'];
|
|
105114
105363
|
useHydratedFields?: Maybe<Scalars['Boolean']['output']>;
|
|
105115
105364
|
};
|
|
105116
105365
|
export declare type SearchResultJiraProjectSocialSignalArgs = {
|
|
@@ -105120,34 +105369,34 @@ export declare type SearchResultMercuryFocusArea = SearchResult & {
|
|
|
105120
105369
|
__typename?: 'SearchResultMercuryFocusArea';
|
|
105121
105370
|
description: Scalars['String']['output'];
|
|
105122
105371
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
105123
|
-
iconUrl?: Maybe<Scalars['
|
|
105372
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
105124
105373
|
id: Scalars['ID']['output'];
|
|
105125
105374
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
105126
105375
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
105127
105376
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
105128
105377
|
title: Scalars['String']['output'];
|
|
105129
105378
|
type: SearchResultType;
|
|
105130
|
-
url: Scalars['
|
|
105379
|
+
url: Scalars['String']['output'];
|
|
105131
105380
|
};
|
|
105132
105381
|
export declare type SearchResultMercuryFocusAreaStatusUpdate = SearchResult & {
|
|
105133
105382
|
__typename?: 'SearchResultMercuryFocusAreaStatusUpdate';
|
|
105134
105383
|
description: Scalars['String']['output'];
|
|
105135
105384
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
105136
|
-
iconUrl?: Maybe<Scalars['
|
|
105385
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
105137
105386
|
id: Scalars['ID']['output'];
|
|
105138
105387
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
105139
105388
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
105140
105389
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
105141
105390
|
title: Scalars['String']['output'];
|
|
105142
105391
|
type: SearchResultType;
|
|
105143
|
-
url: Scalars['
|
|
105392
|
+
url: Scalars['String']['output'];
|
|
105144
105393
|
};
|
|
105145
105394
|
export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & SearchResult & {
|
|
105146
105395
|
__typename?: 'SearchResultMicrosoftDocument';
|
|
105147
105396
|
bodyText: Scalars['String']['output'];
|
|
105148
105397
|
description: Scalars['String']['output'];
|
|
105149
105398
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
105150
|
-
iconUrl?: Maybe<Scalars['
|
|
105399
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
105151
105400
|
id: Scalars['ID']['output'];
|
|
105152
105401
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
105153
105402
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -105156,13 +105405,13 @@ export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & Se
|
|
|
105156
105405
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
105157
105406
|
title: Scalars['String']['output'];
|
|
105158
105407
|
type: SearchResultType;
|
|
105159
|
-
url: Scalars['
|
|
105408
|
+
url: Scalars['String']['output'];
|
|
105160
105409
|
};
|
|
105161
105410
|
export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchResult & {
|
|
105162
105411
|
__typename?: 'SearchResultSlackMessage';
|
|
105163
105412
|
channelName?: Maybe<Scalars['String']['output']>;
|
|
105164
105413
|
description: Scalars['String']['output'];
|
|
105165
|
-
iconUrl?: Maybe<Scalars['
|
|
105414
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
105166
105415
|
id: Scalars['ID']['output'];
|
|
105167
105416
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
105168
105417
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
@@ -105174,46 +105423,46 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
105174
105423
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
105175
105424
|
title: Scalars['String']['output'];
|
|
105176
105425
|
type: SearchResultType;
|
|
105177
|
-
url: Scalars['
|
|
105426
|
+
url: Scalars['String']['output'];
|
|
105178
105427
|
};
|
|
105179
105428
|
export declare type SearchResultSpfAsk = SearchResult & {
|
|
105180
105429
|
__typename?: 'SearchResultSpfAsk';
|
|
105181
105430
|
ask?: Maybe<SpfAsk>;
|
|
105182
105431
|
description: Scalars['String']['output'];
|
|
105183
|
-
iconUrl?: Maybe<Scalars['
|
|
105432
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
105184
105433
|
id: Scalars['ID']['output'];
|
|
105185
105434
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
105186
105435
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
105187
105436
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
105188
105437
|
title: Scalars['String']['output'];
|
|
105189
105438
|
type: SearchResultType;
|
|
105190
|
-
url: Scalars['
|
|
105439
|
+
url: Scalars['String']['output'];
|
|
105191
105440
|
};
|
|
105192
105441
|
export declare type SearchResultTrelloBoard = SearchResult & {
|
|
105193
105442
|
__typename?: 'SearchResultTrelloBoard';
|
|
105194
105443
|
description: Scalars['String']['output'];
|
|
105195
|
-
iconUrl?: Maybe<Scalars['
|
|
105444
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
105196
105445
|
id: Scalars['ID']['output'];
|
|
105197
105446
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
105198
105447
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
105199
105448
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
105200
105449
|
title: Scalars['String']['output'];
|
|
105201
105450
|
type: SearchResultType;
|
|
105202
|
-
url: Scalars['
|
|
105451
|
+
url: Scalars['String']['output'];
|
|
105203
105452
|
};
|
|
105204
105453
|
export declare type SearchResultTrelloCard = SearchResult & {
|
|
105205
105454
|
__typename?: 'SearchResultTrelloCard';
|
|
105206
105455
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
105207
105456
|
commentsCount: Scalars['Int']['output'];
|
|
105208
105457
|
description: Scalars['String']['output'];
|
|
105209
|
-
iconUrl?: Maybe<Scalars['
|
|
105458
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
105210
105459
|
id: Scalars['ID']['output'];
|
|
105211
105460
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
105212
105461
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
105213
105462
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
105214
105463
|
title: Scalars['String']['output'];
|
|
105215
105464
|
type: SearchResultType;
|
|
105216
|
-
url: Scalars['
|
|
105465
|
+
url: Scalars['String']['output'];
|
|
105217
105466
|
};
|
|
105218
105467
|
export declare enum SearchResultType {
|
|
105219
105468
|
Ask = "ask",
|
|
@@ -105272,7 +105521,6 @@ export declare type SearchThirdPartyFilter = {
|
|
|
105272
105521
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
105273
105522
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
105274
105523
|
lastUpdatedBy?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
105275
|
-
participants?: InputMaybe<SearchParticipants>;
|
|
105276
105524
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
105277
105525
|
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
105278
105526
|
thirdPartyProducts?: InputMaybe<Array<SearchThirdPartyProduct>>;
|
|
@@ -105293,6 +105541,7 @@ export declare type SearchThirdPartyMetadata = {
|
|
|
105293
105541
|
export declare type SearchThirdPartyProduct = {
|
|
105294
105542
|
connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
105295
105543
|
containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
105544
|
+
datasourceId?: InputMaybe<Scalars['String']['input']>;
|
|
105296
105545
|
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
105297
105546
|
linkedEntityGranularity?: InputMaybe<SearchLinkedEntityGranularity>;
|
|
105298
105547
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -126945,6 +127194,7 @@ export declare type Subscription = {
|
|
|
126945
127194
|
bitbucket?: Maybe<BitbucketSubscription>;
|
|
126946
127195
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
126947
127196
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
127197
|
+
convoai_onAsyncAgentUpdate?: Maybe<ConvoAiAsyncAgentUpdate>;
|
|
126948
127198
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
126949
127199
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
126950
127200
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -126974,6 +127224,10 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
|
|
|
126974
127224
|
cloudId: Scalars['ID']['input'];
|
|
126975
127225
|
conversationId: Scalars['ID']['input'];
|
|
126976
127226
|
};
|
|
127227
|
+
export declare type SubscriptionConvoai_OnAsyncAgentUpdateArgs = {
|
|
127228
|
+
cloudId: Scalars['ID']['input'];
|
|
127229
|
+
conversationId: Scalars['ID']['input'];
|
|
127230
|
+
};
|
|
126977
127231
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
126978
127232
|
cloudId: Scalars['ID']['input'];
|
|
126979
127233
|
jobId: Scalars['ID']['input'];
|
|
@@ -129621,14 +129875,22 @@ export declare type TownsquareProjectsAddGoalLinkPayload = {
|
|
|
129621
129875
|
export declare type TownsquareProjectsAddJiraWorkItemLinkInput = {
|
|
129622
129876
|
projectId: Scalars['ID']['input'];
|
|
129623
129877
|
replace?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129878
|
+
replaceChildWorkItemLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129879
|
+
replaceCurrentWorkItemLink?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129624
129880
|
workItemId: Scalars['ID']['input'];
|
|
129625
129881
|
};
|
|
129626
129882
|
export declare type TownsquareProjectsAddJiraWorkItemLinkPayload = {
|
|
129627
129883
|
__typename?: 'TownsquareProjectsAddJiraWorkItemLinkPayload';
|
|
129628
129884
|
errors?: Maybe<Array<MutationError>>;
|
|
129629
129885
|
success: Scalars['Boolean']['output'];
|
|
129886
|
+
successMessage?: Maybe<TownsquareProjectsAddJiraWorkItemLinkSuccessMessage>;
|
|
129630
129887
|
workItem?: Maybe<JiraIssue>;
|
|
129631
129888
|
};
|
|
129889
|
+
export declare type TownsquareProjectsAddJiraWorkItemLinkSuccessMessage = {
|
|
129890
|
+
__typename?: 'TownsquareProjectsAddJiraWorkItemLinkSuccessMessage';
|
|
129891
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
129892
|
+
messageType?: Maybe<Scalars['String']['output']>;
|
|
129893
|
+
};
|
|
129632
129894
|
export declare type TownsquareProjectsAddMembersInput = {
|
|
129633
129895
|
addAsWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129634
129896
|
projectId: Scalars['ID']['input'];
|
|
@@ -129796,6 +130058,12 @@ export declare type TownsquareProjectsEditUpdatePayload = {
|
|
|
129796
130058
|
success: Scalars['Boolean']['output'];
|
|
129797
130059
|
update?: Maybe<TownsquareProjectUpdate>;
|
|
129798
130060
|
};
|
|
130061
|
+
export declare type TownsquareProjectsParentWorkItemAlreadyLinkedToAnotherProjectMutationErrorExtension = MutationErrorExtension & {
|
|
130062
|
+
__typename?: 'TownsquareProjectsParentWorkItemAlreadyLinkedToAnotherProjectMutationErrorExtension';
|
|
130063
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
130064
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
130065
|
+
workItem?: Maybe<JiraIssue>;
|
|
130066
|
+
};
|
|
129799
130067
|
export declare type TownsquareProjectsRemoveDependencyInput = {
|
|
129800
130068
|
incomingProjectId: Scalars['ID']['input'];
|
|
129801
130069
|
outgoingProjectId: Scalars['ID']['input'];
|