@forge/cli-shared 6.8.0-next.18 → 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 +12 -0
- package/out/graphql/graphql-types.d.ts +220 -22
- 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 +2 -2
- 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']>;
|
|
@@ -25564,11 +25589,6 @@ export declare type ExternalPosition = Node & {
|
|
|
25564
25589
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
25565
25590
|
url?: Maybe<Scalars['String']['output']>;
|
|
25566
25591
|
};
|
|
25567
|
-
export declare type ExternalProject = {
|
|
25568
|
-
__typename?: 'ExternalProject';
|
|
25569
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
25570
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
25571
|
-
};
|
|
25572
25592
|
export declare type ExternalProvider = {
|
|
25573
25593
|
__typename?: 'ExternalProvider';
|
|
25574
25594
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -25827,7 +25847,6 @@ export declare type ExternalWorkItem = Node & {
|
|
|
25827
25847
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
25828
25848
|
parent?: Maybe<ExternalEntity>;
|
|
25829
25849
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
25830
|
-
project?: Maybe<ExternalProject>;
|
|
25831
25850
|
provider?: Maybe<ExternalProvider>;
|
|
25832
25851
|
status?: Maybe<Scalars['String']['output']>;
|
|
25833
25852
|
subtype?: Maybe<ExternalWorkItemSubtype>;
|
|
@@ -36230,8 +36249,8 @@ export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
|
|
|
36230
36249
|
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
36231
36250
|
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
36232
36251
|
};
|
|
36233
|
-
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36234
|
-
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36252
|
+
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36253
|
+
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36235
36254
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
36236
36255
|
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
36237
36256
|
nodes: Array<GraphStoreAtlasHomeQueryNode>;
|
|
@@ -54750,19 +54769,6 @@ export declare type JiraBoardViewCardOptionsArgs = {
|
|
|
54750
54769
|
export declare type JiraBoardViewColumnsArgs = {
|
|
54751
54770
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54752
54771
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54753
|
-
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
54754
|
-
};
|
|
54755
|
-
export declare type JiraBoardViewFilterConfigArgs = {
|
|
54756
|
-
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
54757
|
-
};
|
|
54758
|
-
export declare type JiraBoardViewGroupByConfigArgs = {
|
|
54759
|
-
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
54760
|
-
};
|
|
54761
|
-
export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
54762
|
-
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
54763
|
-
};
|
|
54764
|
-
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
54765
|
-
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
54766
54772
|
};
|
|
54767
54773
|
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
54768
54774
|
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
@@ -54817,6 +54823,7 @@ export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
|
54817
54823
|
};
|
|
54818
54824
|
export declare type JiraBoardViewInput = {
|
|
54819
54825
|
jiraBoardViewQueryInput: JiraBoardViewQueryInput;
|
|
54826
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
54820
54827
|
};
|
|
54821
54828
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & {
|
|
54822
54829
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
@@ -69262,6 +69269,7 @@ export declare type JiraUpdateShortcutInput = {
|
|
|
69262
69269
|
};
|
|
69263
69270
|
export declare type JiraUpdateSidebarMenuDisplaySettingInput = {
|
|
69264
69271
|
cloudId: Scalars['ID']['input'];
|
|
69272
|
+
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
69265
69273
|
displayMode?: InputMaybe<JiraSidebarMenuDisplayMode>;
|
|
69266
69274
|
favouriteLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
69267
69275
|
recentLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -72658,6 +72666,24 @@ export declare enum LoomMeetingSource {
|
|
|
72658
72666
|
MicrosoftOutlook = "MICROSOFT_OUTLOOK",
|
|
72659
72667
|
Zoom = "ZOOM"
|
|
72660
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
|
+
}
|
|
72661
72687
|
export declare type LoomSettings = {
|
|
72662
72688
|
__typename?: 'LoomSettings';
|
|
72663
72689
|
meetingNotesAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -72672,6 +72698,113 @@ export declare type LoomToken = {
|
|
|
72672
72698
|
__typename?: 'LoomToken';
|
|
72673
72699
|
token: Scalars['String']['output'];
|
|
72674
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
|
+
}
|
|
72675
72808
|
export declare type LoomUserPrimaryAuthType = {
|
|
72676
72809
|
__typename?: 'LoomUserPrimaryAuthType';
|
|
72677
72810
|
authType: Scalars['String']['output'];
|
|
@@ -72691,6 +72824,8 @@ export declare type LoomVideo = Node & {
|
|
|
72691
72824
|
name: Scalars['String']['output'];
|
|
72692
72825
|
owner?: Maybe<User>;
|
|
72693
72826
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
72827
|
+
transcript?: Maybe<LoomTranscript>;
|
|
72828
|
+
transcriptLanguage?: Maybe<LoomTranscriptLanguage>;
|
|
72694
72829
|
url: Scalars['String']['output'];
|
|
72695
72830
|
};
|
|
72696
72831
|
export declare type LpCertSort = {
|
|
@@ -75839,6 +75974,23 @@ export declare type MercuryHumanResourcesAllocation = {
|
|
|
75839
75974
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
75840
75975
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
75841
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
|
+
};
|
|
75842
75994
|
export declare type MercuryLinkAtlassianWorkToFocusAreaInput = {
|
|
75843
75995
|
focusAreaAri: Scalars['String']['input'];
|
|
75844
75996
|
workAris: Array<Scalars['String']['input']>;
|
|
@@ -76203,11 +76355,21 @@ export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaAr
|
|
|
76203
76355
|
export declare type MercuryProviderOrchestrationQueryApi = {
|
|
76204
76356
|
__typename?: 'MercuryProviderOrchestrationQueryApi';
|
|
76205
76357
|
isWorkspaceConnected: Array<MercuryWorkspaceConnectionStatus>;
|
|
76358
|
+
searchWorkByFocusArea?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
76206
76359
|
};
|
|
76207
76360
|
export declare type MercuryProviderOrchestrationQueryApiIsWorkspaceConnectedArgs = {
|
|
76208
76361
|
cloudId: Scalars['ID']['input'];
|
|
76209
76362
|
workspaceAris: Array<Scalars['String']['input']>;
|
|
76210
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
|
+
};
|
|
76211
76373
|
export declare type MercuryProviderUser = {
|
|
76212
76374
|
id: Scalars['ID']['output'];
|
|
76213
76375
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -76249,6 +76411,31 @@ export declare enum MercuryProviderWorkErrorType {
|
|
|
76249
76411
|
NotFound = "NOT_FOUND",
|
|
76250
76412
|
NoPermissions = "NO_PERMISSIONS"
|
|
76251
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
|
+
};
|
|
76252
76439
|
export declare type MercuryProviderWorkStatus = {
|
|
76253
76440
|
__typename?: 'MercuryProviderWorkStatus';
|
|
76254
76441
|
color: MercuryProviderWorkStatusColor;
|
|
@@ -82547,6 +82734,7 @@ export declare type Query = {
|
|
|
82547
82734
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
82548
82735
|
me: AuthenticationContext;
|
|
82549
82736
|
mercury?: Maybe<MercuryQueryApi>;
|
|
82737
|
+
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
82550
82738
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
82551
82739
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
82552
82740
|
migration: MigrationQuery;
|
|
@@ -85756,6 +85944,11 @@ export declare type RadarNumericFieldValue = {
|
|
|
85756
85944
|
displayValue?: Maybe<Scalars['Int']['output']>;
|
|
85757
85945
|
value?: Maybe<Scalars['Int']['output']>;
|
|
85758
85946
|
};
|
|
85947
|
+
export declare type RadarPermissions = {
|
|
85948
|
+
__typename?: 'RadarPermissions';
|
|
85949
|
+
canManagersAllocate: Scalars['Boolean']['output'];
|
|
85950
|
+
canManagersViewSensitiveFields: Scalars['Boolean']['output'];
|
|
85951
|
+
};
|
|
85759
85952
|
export declare type RadarPosition = Node & RadarEntity & {
|
|
85760
85953
|
__typename?: 'RadarPosition';
|
|
85761
85954
|
directReports?: Maybe<Array<RadarPosition>>;
|
|
@@ -85780,6 +85973,10 @@ export declare type RadarPositionEdge = RadarEdge & {
|
|
|
85780
85973
|
cursor: Scalars['String']['output'];
|
|
85781
85974
|
node: RadarPosition;
|
|
85782
85975
|
};
|
|
85976
|
+
export declare type RadarSettings = {
|
|
85977
|
+
__typename?: 'RadarSettings';
|
|
85978
|
+
permissions: RadarPermissions;
|
|
85979
|
+
};
|
|
85783
85980
|
export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
85784
85981
|
__typename?: 'RadarStaticStringFilterOptions';
|
|
85785
85982
|
functions: Array<RadarFunctionId>;
|
|
@@ -85846,6 +86043,7 @@ export declare type RadarWorkspace = {
|
|
|
85846
86043
|
functions: Array<RadarFunction>;
|
|
85847
86044
|
id: Scalars['ID']['output'];
|
|
85848
86045
|
positionFields: Array<RadarFieldDefinition>;
|
|
86046
|
+
settings: RadarSettings;
|
|
85849
86047
|
userContext?: Maybe<RadarUserContext>;
|
|
85850
86048
|
workerFields: Array<RadarFieldDefinition>;
|
|
85851
86049
|
};
|
|
@@ -87900,7 +88098,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
87900
88098
|
type: SearchResultType;
|
|
87901
88099
|
url: Scalars['URL']['output'];
|
|
87902
88100
|
};
|
|
87903
|
-
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;
|
|
87904
88102
|
export declare type SearchResultFederated = SearchResult & {
|
|
87905
88103
|
__typename?: 'SearchResultFederated';
|
|
87906
88104
|
description: Scalars['String']['output'];
|