@forge/cli-shared 6.8.0-next.19 → 6.8.0-next.20
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 +6 -0
- package/out/graphql/graphql-types.d.ts +217 -14
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +116 -7
- package/out/ui/text.d.ts +1 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -16168,6 +16168,7 @@ export declare type ConfluenceSpace = {
|
|
|
16168
16168
|
spaceId: Scalars['ID']['output'];
|
|
16169
16169
|
status?: Maybe<ConfluenceSpaceStatus>;
|
|
16170
16170
|
type?: Maybe<ConfluenceSpaceType>;
|
|
16171
|
+
typeSettings?: Maybe<ConfluenceSpaceTypeSettings>;
|
|
16171
16172
|
};
|
|
16172
16173
|
export declare type ConfluenceSpaceConnection = {
|
|
16173
16174
|
__typename?: 'ConfluenceSpaceConnection';
|
|
@@ -16195,6 +16196,25 @@ export declare type ConfluenceSpaceEdge = {
|
|
|
16195
16196
|
cursor: Scalars['String']['output'];
|
|
16196
16197
|
node?: Maybe<ConfluenceSpace>;
|
|
16197
16198
|
};
|
|
16199
|
+
export declare type ConfluenceSpaceEnabledContentTypes = {
|
|
16200
|
+
__typename?: 'ConfluenceSpaceEnabledContentTypes';
|
|
16201
|
+
isBlogsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16202
|
+
isDatabasesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16203
|
+
isEmbedsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16204
|
+
isFoldersEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16205
|
+
isLivePagesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16206
|
+
isWhiteboardsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16207
|
+
};
|
|
16208
|
+
export declare type ConfluenceSpaceEnabledFeatures = {
|
|
16209
|
+
__typename?: 'ConfluenceSpaceEnabledFeatures';
|
|
16210
|
+
isAnalyticsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16211
|
+
isAppsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16212
|
+
isAutomationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16213
|
+
isCalendarsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16214
|
+
isContentManagerEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16215
|
+
isQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16216
|
+
isShortcutsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16217
|
+
};
|
|
16198
16218
|
export declare type ConfluenceSpaceFilters = {
|
|
16199
16219
|
type?: InputMaybe<ConfluenceSpaceType>;
|
|
16200
16220
|
};
|
|
@@ -16247,6 +16267,11 @@ export declare enum ConfluenceSpaceType {
|
|
|
16247
16267
|
Global = "GLOBAL",
|
|
16248
16268
|
Personal = "PERSONAL"
|
|
16249
16269
|
}
|
|
16270
|
+
export declare type ConfluenceSpaceTypeSettings = {
|
|
16271
|
+
__typename?: 'ConfluenceSpaceTypeSettings';
|
|
16272
|
+
enabledContentTypes?: Maybe<ConfluenceSpaceEnabledContentTypes>;
|
|
16273
|
+
enabledFeatures?: Maybe<ConfluenceSpaceEnabledFeatures>;
|
|
16274
|
+
};
|
|
16250
16275
|
export declare type ConfluenceStorage = {
|
|
16251
16276
|
__typename?: 'ConfluenceStorage';
|
|
16252
16277
|
bytesLimit?: Maybe<Scalars['Long']['output']>;
|
|
@@ -54744,19 +54769,6 @@ export declare type JiraBoardViewCardOptionsArgs = {
|
|
|
54744
54769
|
export declare type JiraBoardViewColumnsArgs = {
|
|
54745
54770
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54746
54771
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54747
|
-
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
54748
|
-
};
|
|
54749
|
-
export declare type JiraBoardViewFilterConfigArgs = {
|
|
54750
|
-
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
54751
|
-
};
|
|
54752
|
-
export declare type JiraBoardViewGroupByConfigArgs = {
|
|
54753
|
-
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
54754
|
-
};
|
|
54755
|
-
export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
54756
|
-
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
54757
|
-
};
|
|
54758
|
-
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
54759
|
-
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
54760
54772
|
};
|
|
54761
54773
|
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
54762
54774
|
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
@@ -54811,6 +54823,7 @@ export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
|
54811
54823
|
};
|
|
54812
54824
|
export declare type JiraBoardViewInput = {
|
|
54813
54825
|
jiraBoardViewQueryInput: JiraBoardViewQueryInput;
|
|
54826
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
54814
54827
|
};
|
|
54815
54828
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & {
|
|
54816
54829
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
@@ -72653,6 +72666,24 @@ export declare enum LoomMeetingSource {
|
|
|
72653
72666
|
MicrosoftOutlook = "MICROSOFT_OUTLOOK",
|
|
72654
72667
|
Zoom = "ZOOM"
|
|
72655
72668
|
}
|
|
72669
|
+
export declare type LoomPhrase = {
|
|
72670
|
+
__typename?: 'LoomPhrase';
|
|
72671
|
+
ranges?: Maybe<Array<LoomPhraseRange>>;
|
|
72672
|
+
speakerName?: Maybe<Scalars['String']['output']>;
|
|
72673
|
+
ts: Scalars['Float']['output'];
|
|
72674
|
+
value: Scalars['String']['output'];
|
|
72675
|
+
};
|
|
72676
|
+
export declare type LoomPhraseRange = {
|
|
72677
|
+
__typename?: 'LoomPhraseRange';
|
|
72678
|
+
length: Scalars['Int']['output'];
|
|
72679
|
+
source: LoomTranscriptElementIndex;
|
|
72680
|
+
start: Scalars['Int']['output'];
|
|
72681
|
+
type: LoomPhraseRangeType;
|
|
72682
|
+
};
|
|
72683
|
+
export declare enum LoomPhraseRangeType {
|
|
72684
|
+
Punct = "punct",
|
|
72685
|
+
Text = "text"
|
|
72686
|
+
}
|
|
72656
72687
|
export declare type LoomSettings = {
|
|
72657
72688
|
__typename?: 'LoomSettings';
|
|
72658
72689
|
meetingNotesAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -72667,6 +72698,113 @@ export declare type LoomToken = {
|
|
|
72667
72698
|
__typename?: 'LoomToken';
|
|
72668
72699
|
token: Scalars['String']['output'];
|
|
72669
72700
|
};
|
|
72701
|
+
export declare type LoomTranscript = {
|
|
72702
|
+
__typename?: 'LoomTranscript';
|
|
72703
|
+
phrases?: Maybe<Array<LoomPhrase>>;
|
|
72704
|
+
schemaVersion?: Maybe<Scalars['String']['output']>;
|
|
72705
|
+
};
|
|
72706
|
+
export declare type LoomTranscriptElementIndex = {
|
|
72707
|
+
__typename?: 'LoomTranscriptElementIndex';
|
|
72708
|
+
element: Scalars['Int']['output'];
|
|
72709
|
+
monologue: Scalars['Int']['output'];
|
|
72710
|
+
};
|
|
72711
|
+
export declare enum LoomTranscriptLanguage {
|
|
72712
|
+
Af = "af",
|
|
72713
|
+
Am = "am",
|
|
72714
|
+
As = "as",
|
|
72715
|
+
Ba = "ba",
|
|
72716
|
+
Be = "be",
|
|
72717
|
+
Bg = "bg",
|
|
72718
|
+
Bn = "bn",
|
|
72719
|
+
Bo = "bo",
|
|
72720
|
+
Br = "br",
|
|
72721
|
+
Bs = "bs",
|
|
72722
|
+
Ca = "ca",
|
|
72723
|
+
Cs = "cs",
|
|
72724
|
+
Cy = "cy",
|
|
72725
|
+
Da = "da",
|
|
72726
|
+
De = "de",
|
|
72727
|
+
El = "el",
|
|
72728
|
+
En = "en",
|
|
72729
|
+
Es = "es",
|
|
72730
|
+
Et = "et",
|
|
72731
|
+
Eu = "eu",
|
|
72732
|
+
Fi = "fi",
|
|
72733
|
+
Fo = "fo",
|
|
72734
|
+
Fr = "fr",
|
|
72735
|
+
Gl = "gl",
|
|
72736
|
+
Gu = "gu",
|
|
72737
|
+
Ha = "ha",
|
|
72738
|
+
Haw = "haw",
|
|
72739
|
+
Hi = "hi",
|
|
72740
|
+
Hr = "hr",
|
|
72741
|
+
Ht = "ht",
|
|
72742
|
+
Hu = "hu",
|
|
72743
|
+
Hy = "hy",
|
|
72744
|
+
Id = "id",
|
|
72745
|
+
Is = "is",
|
|
72746
|
+
It = "it",
|
|
72747
|
+
Ja = "ja",
|
|
72748
|
+
Jw = "jw",
|
|
72749
|
+
Ka = "ka",
|
|
72750
|
+
Kk = "kk",
|
|
72751
|
+
Km = "km",
|
|
72752
|
+
Kn = "kn",
|
|
72753
|
+
Ko = "ko",
|
|
72754
|
+
La = "la",
|
|
72755
|
+
Lb = "lb",
|
|
72756
|
+
Ln = "ln",
|
|
72757
|
+
Lo = "lo",
|
|
72758
|
+
Lt = "lt",
|
|
72759
|
+
Lv = "lv",
|
|
72760
|
+
Mg = "mg",
|
|
72761
|
+
Mi = "mi",
|
|
72762
|
+
Mk = "mk",
|
|
72763
|
+
Ml = "ml",
|
|
72764
|
+
Mn = "mn",
|
|
72765
|
+
Mr = "mr",
|
|
72766
|
+
Ms = "ms",
|
|
72767
|
+
Mt = "mt",
|
|
72768
|
+
My = "my",
|
|
72769
|
+
Ne = "ne",
|
|
72770
|
+
Nl = "nl",
|
|
72771
|
+
Nn = "nn",
|
|
72772
|
+
No = "no",
|
|
72773
|
+
Oc = "oc",
|
|
72774
|
+
Pa = "pa",
|
|
72775
|
+
Pl = "pl",
|
|
72776
|
+
Ps = "ps",
|
|
72777
|
+
Pt = "pt",
|
|
72778
|
+
Ro = "ro",
|
|
72779
|
+
Ru = "ru",
|
|
72780
|
+
Sa = "sa",
|
|
72781
|
+
Sd = "sd",
|
|
72782
|
+
Si = "si",
|
|
72783
|
+
Sk = "sk",
|
|
72784
|
+
Sl = "sl",
|
|
72785
|
+
Sn = "sn",
|
|
72786
|
+
So = "so",
|
|
72787
|
+
Sq = "sq",
|
|
72788
|
+
Sr = "sr",
|
|
72789
|
+
Su = "su",
|
|
72790
|
+
Sv = "sv",
|
|
72791
|
+
Sw = "sw",
|
|
72792
|
+
Ta = "ta",
|
|
72793
|
+
Te = "te",
|
|
72794
|
+
Tg = "tg",
|
|
72795
|
+
Th = "th",
|
|
72796
|
+
Tk = "tk",
|
|
72797
|
+
Tl = "tl",
|
|
72798
|
+
Tr = "tr",
|
|
72799
|
+
Tt = "tt",
|
|
72800
|
+
Uk = "uk",
|
|
72801
|
+
Unknown = "unknown",
|
|
72802
|
+
Uz = "uz",
|
|
72803
|
+
Vi = "vi",
|
|
72804
|
+
Yi = "yi",
|
|
72805
|
+
Yo = "yo",
|
|
72806
|
+
Zh = "zh"
|
|
72807
|
+
}
|
|
72670
72808
|
export declare type LoomUserPrimaryAuthType = {
|
|
72671
72809
|
__typename?: 'LoomUserPrimaryAuthType';
|
|
72672
72810
|
authType: Scalars['String']['output'];
|
|
@@ -72686,6 +72824,8 @@ export declare type LoomVideo = Node & {
|
|
|
72686
72824
|
name: Scalars['String']['output'];
|
|
72687
72825
|
owner?: Maybe<User>;
|
|
72688
72826
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
72827
|
+
transcript?: Maybe<LoomTranscript>;
|
|
72828
|
+
transcriptLanguage?: Maybe<LoomTranscriptLanguage>;
|
|
72689
72829
|
url: Scalars['String']['output'];
|
|
72690
72830
|
};
|
|
72691
72831
|
export declare type LpCertSort = {
|
|
@@ -75834,6 +75974,23 @@ export declare type MercuryHumanResourcesAllocation = {
|
|
|
75834
75974
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
75835
75975
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
75836
75976
|
};
|
|
75977
|
+
export declare type MercuryJiraAlignProjectType = {
|
|
75978
|
+
__typename?: 'MercuryJiraAlignProjectType';
|
|
75979
|
+
displayName: Scalars['String']['output'];
|
|
75980
|
+
key: MercuryJiraAlignProjectTypeKey;
|
|
75981
|
+
};
|
|
75982
|
+
export declare enum MercuryJiraAlignProjectTypeKey {
|
|
75983
|
+
JiraAlignCapability = "JIRA_ALIGN_CAPABILITY",
|
|
75984
|
+
JiraAlignEpic = "JIRA_ALIGN_EPIC",
|
|
75985
|
+
JiraAlignTheme = "JIRA_ALIGN_THEME"
|
|
75986
|
+
}
|
|
75987
|
+
export declare type MercuryJiraAlignProviderQueryApi = {
|
|
75988
|
+
__typename?: 'MercuryJiraAlignProviderQueryApi';
|
|
75989
|
+
userAccessibleJiraAlignProjectTypes?: Maybe<Array<MercuryJiraAlignProjectType>>;
|
|
75990
|
+
};
|
|
75991
|
+
export declare type MercuryJiraAlignProviderQueryApiUserAccessibleJiraAlignProjectTypesArgs = {
|
|
75992
|
+
cloudId: Scalars['ID']['input'];
|
|
75993
|
+
};
|
|
75837
75994
|
export declare type MercuryLinkAtlassianWorkToFocusAreaInput = {
|
|
75838
75995
|
focusAreaAri: Scalars['String']['input'];
|
|
75839
75996
|
workAris: Array<Scalars['String']['input']>;
|
|
@@ -76198,11 +76355,21 @@ export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaAr
|
|
|
76198
76355
|
export declare type MercuryProviderOrchestrationQueryApi = {
|
|
76199
76356
|
__typename?: 'MercuryProviderOrchestrationQueryApi';
|
|
76200
76357
|
isWorkspaceConnected: Array<MercuryWorkspaceConnectionStatus>;
|
|
76358
|
+
searchWorkByFocusArea?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
76201
76359
|
};
|
|
76202
76360
|
export declare type MercuryProviderOrchestrationQueryApiIsWorkspaceConnectedArgs = {
|
|
76203
76361
|
cloudId: Scalars['ID']['input'];
|
|
76204
76362
|
workspaceAris: Array<Scalars['String']['input']>;
|
|
76205
76363
|
};
|
|
76364
|
+
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArgs = {
|
|
76365
|
+
cloudId: Scalars['ID']['input'];
|
|
76366
|
+
filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
|
|
76367
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76368
|
+
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
76369
|
+
providerKey: Scalars['String']['input'];
|
|
76370
|
+
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
76371
|
+
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
76372
|
+
};
|
|
76206
76373
|
export declare type MercuryProviderUser = {
|
|
76207
76374
|
id: Scalars['ID']['output'];
|
|
76208
76375
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -76244,6 +76411,31 @@ export declare enum MercuryProviderWorkErrorType {
|
|
|
76244
76411
|
NotFound = "NOT_FOUND",
|
|
76245
76412
|
NoPermissions = "NO_PERMISSIONS"
|
|
76246
76413
|
}
|
|
76414
|
+
export declare type MercuryProviderWorkSearchConnection = {
|
|
76415
|
+
__typename?: 'MercuryProviderWorkSearchConnection';
|
|
76416
|
+
edges?: Maybe<Array<Maybe<MercuryProviderWorkSearchEdge>>>;
|
|
76417
|
+
pageInfo: PageInfo;
|
|
76418
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
76419
|
+
};
|
|
76420
|
+
export declare type MercuryProviderWorkSearchEdge = {
|
|
76421
|
+
__typename?: 'MercuryProviderWorkSearchEdge';
|
|
76422
|
+
cursor: Scalars['String']['output'];
|
|
76423
|
+
node?: Maybe<MercuryProviderWorkSearchItem>;
|
|
76424
|
+
};
|
|
76425
|
+
export declare type MercuryProviderWorkSearchFilters = {
|
|
76426
|
+
project?: InputMaybe<MercuryProviderWorkSearchProjectFilters>;
|
|
76427
|
+
};
|
|
76428
|
+
export declare type MercuryProviderWorkSearchItem = {
|
|
76429
|
+
__typename?: 'MercuryProviderWorkSearchItem';
|
|
76430
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
76431
|
+
id: Scalars['ID']['output'];
|
|
76432
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
76433
|
+
name: Scalars['String']['output'];
|
|
76434
|
+
url: Scalars['String']['output'];
|
|
76435
|
+
};
|
|
76436
|
+
export declare type MercuryProviderWorkSearchProjectFilters = {
|
|
76437
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
76438
|
+
};
|
|
76247
76439
|
export declare type MercuryProviderWorkStatus = {
|
|
76248
76440
|
__typename?: 'MercuryProviderWorkStatus';
|
|
76249
76441
|
color: MercuryProviderWorkStatusColor;
|
|
@@ -82542,6 +82734,7 @@ export declare type Query = {
|
|
|
82542
82734
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
82543
82735
|
me: AuthenticationContext;
|
|
82544
82736
|
mercury?: Maybe<MercuryQueryApi>;
|
|
82737
|
+
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
82545
82738
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
82546
82739
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
82547
82740
|
migration: MigrationQuery;
|
|
@@ -85751,6 +85944,11 @@ export declare type RadarNumericFieldValue = {
|
|
|
85751
85944
|
displayValue?: Maybe<Scalars['Int']['output']>;
|
|
85752
85945
|
value?: Maybe<Scalars['Int']['output']>;
|
|
85753
85946
|
};
|
|
85947
|
+
export declare type RadarPermissions = {
|
|
85948
|
+
__typename?: 'RadarPermissions';
|
|
85949
|
+
canManagersAllocate: Scalars['Boolean']['output'];
|
|
85950
|
+
canManagersViewSensitiveFields: Scalars['Boolean']['output'];
|
|
85951
|
+
};
|
|
85754
85952
|
export declare type RadarPosition = Node & RadarEntity & {
|
|
85755
85953
|
__typename?: 'RadarPosition';
|
|
85756
85954
|
directReports?: Maybe<Array<RadarPosition>>;
|
|
@@ -85775,6 +85973,10 @@ export declare type RadarPositionEdge = RadarEdge & {
|
|
|
85775
85973
|
cursor: Scalars['String']['output'];
|
|
85776
85974
|
node: RadarPosition;
|
|
85777
85975
|
};
|
|
85976
|
+
export declare type RadarSettings = {
|
|
85977
|
+
__typename?: 'RadarSettings';
|
|
85978
|
+
permissions: RadarPermissions;
|
|
85979
|
+
};
|
|
85778
85980
|
export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
85779
85981
|
__typename?: 'RadarStaticStringFilterOptions';
|
|
85780
85982
|
functions: Array<RadarFunctionId>;
|
|
@@ -85841,6 +86043,7 @@ export declare type RadarWorkspace = {
|
|
|
85841
86043
|
functions: Array<RadarFunction>;
|
|
85842
86044
|
id: Scalars['ID']['output'];
|
|
85843
86045
|
positionFields: Array<RadarFieldDefinition>;
|
|
86046
|
+
settings: RadarSettings;
|
|
85844
86047
|
userContext?: Maybe<RadarUserContext>;
|
|
85845
86048
|
workerFields: Array<RadarFieldDefinition>;
|
|
85846
86049
|
};
|
|
@@ -87895,7 +88098,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
87895
88098
|
type: SearchResultType;
|
|
87896
88099
|
url: Scalars['URL']['output'];
|
|
87897
88100
|
};
|
|
87898
|
-
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
88101
|
+
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
87899
88102
|
export declare type SearchResultFederated = SearchResult & {
|
|
87900
88103
|
__typename?: 'SearchResultFederated';
|
|
87901
88104
|
description: Scalars['String']['output'];
|