@forge/cli-shared 6.8.0-next.19 → 6.8.0-next.21
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 +14 -0
- package/out/graphql/graphql-types.d.ts +342 -25
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +132 -13
- 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 +3 -3
|
@@ -958,6 +958,7 @@ export declare type AgentStudioUpdateAgentActionsPayload = Payload & {
|
|
|
958
958
|
};
|
|
959
959
|
export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
960
960
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
961
|
+
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
961
962
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
962
963
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
963
964
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6009,7 +6010,7 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
6009
6010
|
};
|
|
6010
6011
|
export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput = {
|
|
6011
6012
|
collectionComparator: CompassCriteriaCollectionComparatorOptions;
|
|
6012
|
-
collectionComparatorValue
|
|
6013
|
+
collectionComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6013
6014
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
6014
6015
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
6015
6016
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6021,7 +6022,7 @@ export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
6021
6022
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
6022
6023
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6023
6024
|
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
6024
|
-
numberComparatorValue
|
|
6025
|
+
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
6025
6026
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6026
6027
|
weight: Scalars['Int']['input'];
|
|
6027
6028
|
};
|
|
@@ -6029,7 +6030,7 @@ export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
6029
6030
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
6030
6031
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
6031
6032
|
membershipComparator: CompassCriteriaMembershipComparatorOptions;
|
|
6032
|
-
membershipComparatorValue
|
|
6033
|
+
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6033
6034
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6034
6035
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6035
6036
|
weight: Scalars['Int']['input'];
|
|
@@ -6278,16 +6279,19 @@ export declare enum CompassCriteriaBooleanComparatorOptions {
|
|
|
6278
6279
|
export declare enum CompassCriteriaCollectionComparatorOptions {
|
|
6279
6280
|
AllOf = "ALL_OF",
|
|
6280
6281
|
AnyOf = "ANY_OF",
|
|
6282
|
+
IsPresent = "IS_PRESENT",
|
|
6281
6283
|
NoneOf = "NONE_OF"
|
|
6282
6284
|
}
|
|
6283
6285
|
export declare enum CompassCriteriaMembershipComparatorOptions {
|
|
6284
6286
|
In = "IN",
|
|
6287
|
+
IsPresent = "IS_PRESENT",
|
|
6285
6288
|
NotIn = "NOT_IN"
|
|
6286
6289
|
}
|
|
6287
6290
|
export declare enum CompassCriteriaNumberComparatorOptions {
|
|
6288
6291
|
Equals = "EQUALS",
|
|
6289
6292
|
GreaterThan = "GREATER_THAN",
|
|
6290
6293
|
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
6294
|
+
IsPresent = "IS_PRESENT",
|
|
6291
6295
|
LessThan = "LESS_THAN",
|
|
6292
6296
|
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
|
|
6293
6297
|
}
|
|
@@ -8340,6 +8344,7 @@ export declare type CompassScorecardDeactivatedComponentsQuery = {
|
|
|
8340
8344
|
};
|
|
8341
8345
|
export declare type CompassScorecardDeactivatedComponentsQueryFilter = {
|
|
8342
8346
|
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
8347
|
+
labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
|
|
8343
8348
|
owners?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
|
|
8344
8349
|
types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
8345
8350
|
};
|
|
@@ -8772,6 +8777,7 @@ export declare type CompassUpdateAnnouncementPayload = Payload & {
|
|
|
8772
8777
|
export declare type CompassUpdateCampaignInput = {
|
|
8773
8778
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
8774
8779
|
dueDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
8780
|
+
goalId?: InputMaybe<Scalars['ID']['input']>;
|
|
8775
8781
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
8776
8782
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
8777
8783
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -16168,6 +16174,7 @@ export declare type ConfluenceSpace = {
|
|
|
16168
16174
|
spaceId: Scalars['ID']['output'];
|
|
16169
16175
|
status?: Maybe<ConfluenceSpaceStatus>;
|
|
16170
16176
|
type?: Maybe<ConfluenceSpaceType>;
|
|
16177
|
+
typeSettings?: Maybe<ConfluenceSpaceTypeSettings>;
|
|
16171
16178
|
};
|
|
16172
16179
|
export declare type ConfluenceSpaceConnection = {
|
|
16173
16180
|
__typename?: 'ConfluenceSpaceConnection';
|
|
@@ -16195,6 +16202,25 @@ export declare type ConfluenceSpaceEdge = {
|
|
|
16195
16202
|
cursor: Scalars['String']['output'];
|
|
16196
16203
|
node?: Maybe<ConfluenceSpace>;
|
|
16197
16204
|
};
|
|
16205
|
+
export declare type ConfluenceSpaceEnabledContentTypes = {
|
|
16206
|
+
__typename?: 'ConfluenceSpaceEnabledContentTypes';
|
|
16207
|
+
isBlogsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16208
|
+
isDatabasesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16209
|
+
isEmbedsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16210
|
+
isFoldersEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16211
|
+
isLivePagesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16212
|
+
isWhiteboardsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16213
|
+
};
|
|
16214
|
+
export declare type ConfluenceSpaceEnabledFeatures = {
|
|
16215
|
+
__typename?: 'ConfluenceSpaceEnabledFeatures';
|
|
16216
|
+
isAnalyticsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16217
|
+
isAppsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16218
|
+
isAutomationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16219
|
+
isCalendarsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16220
|
+
isContentManagerEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16221
|
+
isQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16222
|
+
isShortcutsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16223
|
+
};
|
|
16198
16224
|
export declare type ConfluenceSpaceFilters = {
|
|
16199
16225
|
type?: InputMaybe<ConfluenceSpaceType>;
|
|
16200
16226
|
};
|
|
@@ -16247,6 +16273,11 @@ export declare enum ConfluenceSpaceType {
|
|
|
16247
16273
|
Global = "GLOBAL",
|
|
16248
16274
|
Personal = "PERSONAL"
|
|
16249
16275
|
}
|
|
16276
|
+
export declare type ConfluenceSpaceTypeSettings = {
|
|
16277
|
+
__typename?: 'ConfluenceSpaceTypeSettings';
|
|
16278
|
+
enabledContentTypes?: Maybe<ConfluenceSpaceEnabledContentTypes>;
|
|
16279
|
+
enabledFeatures?: Maybe<ConfluenceSpaceEnabledFeatures>;
|
|
16280
|
+
};
|
|
16250
16281
|
export declare type ConfluenceStorage = {
|
|
16251
16282
|
__typename?: 'ConfluenceStorage';
|
|
16252
16283
|
bytesLimit?: Maybe<Scalars['Long']['output']>;
|
|
@@ -17846,6 +17877,24 @@ export declare type ContentPlatformCategory = {
|
|
|
17846
17877
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
17847
17878
|
urlSlug?: Maybe<Scalars['String']['output']>;
|
|
17848
17879
|
};
|
|
17880
|
+
export declare type ContentPlatformCdnImageModel = {
|
|
17881
|
+
__typename?: 'ContentPlatformCdnImageModel';
|
|
17882
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
17883
|
+
id: Scalars['String']['output'];
|
|
17884
|
+
imageAltText: Scalars['String']['output'];
|
|
17885
|
+
imageUrl: Scalars['String']['output'];
|
|
17886
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
17887
|
+
};
|
|
17888
|
+
export declare type ContentPlatformCdnImageModelResultEdge = {
|
|
17889
|
+
__typename?: 'ContentPlatformCdnImageModelResultEdge';
|
|
17890
|
+
cursor: Scalars['String']['output'];
|
|
17891
|
+
node: ContentPlatformCdnImageModel;
|
|
17892
|
+
};
|
|
17893
|
+
export declare type ContentPlatformCdnImageModelSearchConnection = {
|
|
17894
|
+
__typename?: 'ContentPlatformCdnImageModelSearchConnection';
|
|
17895
|
+
edges: Array<ContentPlatformCdnImageModelResultEdge>;
|
|
17896
|
+
pageInfo: PageInfo;
|
|
17897
|
+
};
|
|
17849
17898
|
export declare type ContentPlatformContentClause = {
|
|
17850
17899
|
and?: InputMaybe<Array<ContentPlatformContentClause>>;
|
|
17851
17900
|
fieldNamed?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -18144,7 +18193,8 @@ export declare type ContentPlatformIpmCompImage = {
|
|
|
18144
18193
|
imageAltText?: Maybe<Scalars['String']['output']>;
|
|
18145
18194
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
18146
18195
|
};
|
|
18147
|
-
export declare type
|
|
18196
|
+
export declare type ContentPlatformIpmCompImageAndCdnImageModelUnion = ContentPlatformCdnImageModel | ContentPlatformIpmCompImage;
|
|
18197
|
+
export declare type ContentPlatformIpmCompImageAndIpmComponentEmbeddedVideoAndCdnImageModelUnion = ContentPlatformCdnImageModel | ContentPlatformIpmCompImage | ContentPlatformIpmComponentEmbeddedVideo;
|
|
18148
18198
|
export declare type ContentPlatformIpmComponentBackButton = {
|
|
18149
18199
|
__typename?: 'ContentPlatformIpmComponentBackButton';
|
|
18150
18200
|
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
@@ -18162,7 +18212,7 @@ export declare type ContentPlatformIpmComponentEmbeddedVideo = {
|
|
|
18162
18212
|
videoProvider?: Maybe<Scalars['String']['output']>;
|
|
18163
18213
|
videoUrl?: Maybe<Scalars['String']['output']>;
|
|
18164
18214
|
};
|
|
18165
|
-
export declare type
|
|
18215
|
+
export declare type ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageAndCdnImageModelUnion = ContentPlatformCdnImageModel | ContentPlatformIpmCompImage | ContentPlatformIpmComponentEmbeddedVideo;
|
|
18166
18216
|
export declare type ContentPlatformIpmComponentGsacButton = {
|
|
18167
18217
|
__typename?: 'ContentPlatformIpmComponentGsacButton';
|
|
18168
18218
|
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
@@ -18207,7 +18257,7 @@ export declare type ContentPlatformIpmFlag = {
|
|
|
18207
18257
|
__typename?: 'ContentPlatformIpmFlag';
|
|
18208
18258
|
body?: Maybe<Scalars['JSON']['output']>;
|
|
18209
18259
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
18210
|
-
featuredDigitalAsset?: Maybe<
|
|
18260
|
+
featuredDigitalAsset?: Maybe<ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageAndCdnImageModelUnion>;
|
|
18211
18261
|
id: Scalars['String']['output'];
|
|
18212
18262
|
ipmNumber?: Maybe<Scalars['String']['output']>;
|
|
18213
18263
|
location?: Maybe<ContentPlatformIpmPositionAndIpmAnchoredUnion>;
|
|
@@ -18255,7 +18305,7 @@ export declare type ContentPlatformIpmInlineDialog = {
|
|
|
18255
18305
|
anchored: ContentPlatformIpmAnchored;
|
|
18256
18306
|
body: Scalars['JSON']['output'];
|
|
18257
18307
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
18258
|
-
featuredImage?: Maybe<
|
|
18308
|
+
featuredImage?: Maybe<ContentPlatformIpmCompImageAndCdnImageModelUnion>;
|
|
18259
18309
|
id: Scalars['String']['output'];
|
|
18260
18310
|
ipmNumber: Scalars['String']['output'];
|
|
18261
18311
|
primaryButton: ContentPlatformIpmComponentLinkButtonAndIpmComponentGsacButtonUnion;
|
|
@@ -18279,7 +18329,7 @@ export declare type ContentPlatformIpmMultiStep = {
|
|
|
18279
18329
|
__typename?: 'ContentPlatformIpmMultiStep';
|
|
18280
18330
|
body: Scalars['JSON']['output'];
|
|
18281
18331
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
18282
|
-
featuredDigitalAsset?: Maybe<
|
|
18332
|
+
featuredDigitalAsset?: Maybe<ContentPlatformIpmCompImageAndIpmComponentEmbeddedVideoAndCdnImageModelUnion>;
|
|
18283
18333
|
id: Scalars['String']['output'];
|
|
18284
18334
|
ipmNumber: Scalars['String']['output'];
|
|
18285
18335
|
location?: Maybe<ContentPlatformIpmAnchoredAndIpmPositionUnion>;
|
|
@@ -18314,7 +18364,7 @@ export declare type ContentPlatformIpmSingleStep = {
|
|
|
18314
18364
|
anchored?: Maybe<ContentPlatformIpmAnchored>;
|
|
18315
18365
|
body: Scalars['JSON']['output'];
|
|
18316
18366
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
18317
|
-
featuredDigitalAsset?: Maybe<
|
|
18367
|
+
featuredDigitalAsset?: Maybe<ContentPlatformIpmCompImageAndIpmComponentEmbeddedVideoAndCdnImageModelUnion>;
|
|
18318
18368
|
id: Scalars['String']['output'];
|
|
18319
18369
|
primaryButton: ContentPlatformIpmComponentNextButton;
|
|
18320
18370
|
secondaryButton?: Maybe<ContentPlatformIpmComponentBackButton>;
|
|
@@ -19474,7 +19524,7 @@ export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
|
19474
19524
|
export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
19475
19525
|
automaticallyCreateMetricSources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19476
19526
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
19477
|
-
comparatorValue
|
|
19527
|
+
comparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
19478
19528
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
19479
19529
|
metricDefinitionId: Scalars['ID']['input'];
|
|
19480
19530
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -24215,6 +24265,7 @@ export declare type EcosystemMarketplaceData = {
|
|
|
24215
24265
|
partner?: Maybe<EcosystemMarketplacePartner>;
|
|
24216
24266
|
privacyPolicyUrl?: Maybe<Scalars['String']['output']>;
|
|
24217
24267
|
slug?: Maybe<Scalars['String']['output']>;
|
|
24268
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
24218
24269
|
supportTicketSystemUrl?: Maybe<Scalars['String']['output']>;
|
|
24219
24270
|
versions?: Maybe<EcosystemMarketplaceVersionConnection>;
|
|
24220
24271
|
wikiUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -50659,11 +50710,23 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
50659
50710
|
d1to6Active?: Maybe<Scalars['Boolean']['output']>;
|
|
50660
50711
|
d1to6Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
50661
50712
|
isTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
50713
|
+
nbeRecommendation?: Maybe<GrowthUnifiedProfileProductNbe>;
|
|
50662
50714
|
productEdition?: Maybe<Scalars['String']['output']>;
|
|
50663
50715
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
50664
50716
|
productName?: Maybe<Scalars['String']['output']>;
|
|
50665
50717
|
provisionedAt?: Maybe<Scalars['String']['output']>;
|
|
50666
50718
|
};
|
|
50719
|
+
export declare enum GrowthUnifiedProfileProductEdition {
|
|
50720
|
+
Enterprise = "ENTERPRISE",
|
|
50721
|
+
Free = "FREE",
|
|
50722
|
+
Premium = "PREMIUM",
|
|
50723
|
+
Standard = "STANDARD"
|
|
50724
|
+
}
|
|
50725
|
+
export declare type GrowthUnifiedProfileProductNbe = {
|
|
50726
|
+
__typename?: 'GrowthUnifiedProfileProductNBE';
|
|
50727
|
+
edition?: Maybe<GrowthUnifiedProfileProductEdition>;
|
|
50728
|
+
recommendationDate?: Maybe<Scalars['String']['output']>;
|
|
50729
|
+
};
|
|
50667
50730
|
export declare type GrowthUnifiedProfileResult = {
|
|
50668
50731
|
__typename?: 'GrowthUnifiedProfileResult';
|
|
50669
50732
|
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
@@ -50899,6 +50962,7 @@ export declare type HardDeleteSpacePayload = {
|
|
|
50899
50962
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
50900
50963
|
};
|
|
50901
50964
|
export declare type HasMercuryProjectFields = {
|
|
50965
|
+
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
50902
50966
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
50903
50967
|
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
50904
50968
|
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|
|
@@ -53816,6 +53880,10 @@ export declare type JiraAiEnablementIssueInput = {
|
|
|
53816
53880
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
53817
53881
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
53818
53882
|
};
|
|
53883
|
+
export declare type JiraAlignAggMercuryOriginalProjectStatusDto = MercuryOriginalProjectStatus & {
|
|
53884
|
+
__typename?: 'JiraAlignAggMercuryOriginalProjectStatusDTO';
|
|
53885
|
+
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
53886
|
+
};
|
|
53819
53887
|
export declare type JiraAlignAggMercuryProjectStatusDto = MercuryProjectStatus & {
|
|
53820
53888
|
__typename?: 'JiraAlignAggMercuryProjectStatusDto';
|
|
53821
53889
|
mercuryColor?: Maybe<MercuryProjectStatusColor>;
|
|
@@ -53824,6 +53892,7 @@ export declare type JiraAlignAggMercuryProjectStatusDto = MercuryProjectStatus &
|
|
|
53824
53892
|
export declare type JiraAlignAggProject = HasMercuryProjectFields & Node & {
|
|
53825
53893
|
__typename?: 'JiraAlignAggProject';
|
|
53826
53894
|
id: Scalars['ID']['output'];
|
|
53895
|
+
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
53827
53896
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
53828
53897
|
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
53829
53898
|
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|
|
@@ -54744,19 +54813,6 @@ export declare type JiraBoardViewCardOptionsArgs = {
|
|
|
54744
54813
|
export declare type JiraBoardViewColumnsArgs = {
|
|
54745
54814
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54746
54815
|
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
54816
|
};
|
|
54761
54817
|
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
54762
54818
|
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
@@ -54811,6 +54867,7 @@ export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
|
54811
54867
|
};
|
|
54812
54868
|
export declare type JiraBoardViewInput = {
|
|
54813
54869
|
jiraBoardViewQueryInput: JiraBoardViewQueryInput;
|
|
54870
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
54814
54871
|
};
|
|
54815
54872
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & {
|
|
54816
54873
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
@@ -55759,6 +55816,7 @@ export declare type JiraComment = {
|
|
|
55759
55816
|
created: Scalars['DateTime']['output'];
|
|
55760
55817
|
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
55761
55818
|
issue?: Maybe<JiraIssue>;
|
|
55819
|
+
issueCommentAri?: Maybe<Scalars['ID']['output']>;
|
|
55762
55820
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
55763
55821
|
richText?: Maybe<JiraRichText>;
|
|
55764
55822
|
threadParentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -58646,6 +58704,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
58646
58704
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
58647
58705
|
mediaReadToken?: Maybe<JiraMediaReadToken>;
|
|
58648
58706
|
mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
58707
|
+
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
58649
58708
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
58650
58709
|
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
58651
58710
|
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|
|
@@ -58674,6 +58733,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
58674
58733
|
smartSummary?: Maybe<JiraAdf>;
|
|
58675
58734
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
58676
58735
|
startDateViewField?: Maybe<JiraIssueField>;
|
|
58736
|
+
status?: Maybe<JiraStatus>;
|
|
58677
58737
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
58678
58738
|
statusField?: Maybe<JiraStatusField>;
|
|
58679
58739
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
@@ -58965,6 +59025,9 @@ export declare type JiraIssueBulkOperationsMetadata = {
|
|
|
58965
59025
|
__typename?: 'JiraIssueBulkOperationsMetadata';
|
|
58966
59026
|
maxNumberOfIssues?: Maybe<Scalars['Long']['output']>;
|
|
58967
59027
|
};
|
|
59028
|
+
export declare type JiraIssueChangeInput = {
|
|
59029
|
+
issueId: Scalars['String']['input'];
|
|
59030
|
+
};
|
|
58968
59031
|
export declare type JiraIssueCommandPaletteAction = {
|
|
58969
59032
|
id: Scalars['ID']['output'];
|
|
58970
59033
|
};
|
|
@@ -59719,6 +59782,45 @@ export declare type JiraIssueReviewDevSummaryContainer = {
|
|
|
59719
59782
|
overall?: Maybe<JiraIssueReviewDevSummary>;
|
|
59720
59783
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
59721
59784
|
};
|
|
59785
|
+
export declare type JiraIssueSearchBulkViewContextMapping = {
|
|
59786
|
+
__typename?: 'JiraIssueSearchBulkViewContextMapping';
|
|
59787
|
+
afterIssueId?: Maybe<Scalars['String']['output']>;
|
|
59788
|
+
beforeIssueId?: Maybe<Scalars['String']['output']>;
|
|
59789
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
59790
|
+
sourceIssueId?: Maybe<Scalars['String']['output']>;
|
|
59791
|
+
};
|
|
59792
|
+
export declare type JiraIssueSearchBulkViewContexts = {
|
|
59793
|
+
contexts?: Maybe<Array<JiraIssueSearchBulkViewContextMapping>>;
|
|
59794
|
+
errors?: Maybe<Array<QueryError>>;
|
|
59795
|
+
};
|
|
59796
|
+
export declare type JiraIssueSearchBulkViewContextsConnection = {
|
|
59797
|
+
__typename?: 'JiraIssueSearchBulkViewContextsConnection';
|
|
59798
|
+
edges?: Maybe<Array<Maybe<JiraIssueSearchBulkViewContextsEdge>>>;
|
|
59799
|
+
pageInfo: PageInfo;
|
|
59800
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
59801
|
+
};
|
|
59802
|
+
export declare type JiraIssueSearchBulkViewContextsEdge = {
|
|
59803
|
+
__typename?: 'JiraIssueSearchBulkViewContextsEdge';
|
|
59804
|
+
cursor: Scalars['String']['output'];
|
|
59805
|
+
node?: Maybe<JiraIssueSearchBulkViewContexts>;
|
|
59806
|
+
};
|
|
59807
|
+
export declare type JiraIssueSearchBulkViewGroupContexts = JiraIssueSearchBulkViewContexts & {
|
|
59808
|
+
__typename?: 'JiraIssueSearchBulkViewGroupContexts';
|
|
59809
|
+
contexts?: Maybe<Array<JiraIssueSearchBulkViewContextMapping>>;
|
|
59810
|
+
errors?: Maybe<Array<QueryError>>;
|
|
59811
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
59812
|
+
};
|
|
59813
|
+
export declare type JiraIssueSearchBulkViewParentContexts = JiraIssueSearchBulkViewContexts & {
|
|
59814
|
+
__typename?: 'JiraIssueSearchBulkViewParentContexts';
|
|
59815
|
+
contexts?: Maybe<Array<JiraIssueSearchBulkViewContextMapping>>;
|
|
59816
|
+
errors?: Maybe<Array<QueryError>>;
|
|
59817
|
+
parentIssueId?: Maybe<Scalars['String']['output']>;
|
|
59818
|
+
};
|
|
59819
|
+
export declare type JiraIssueSearchBulkViewTopLevelContexts = JiraIssueSearchBulkViewContexts & {
|
|
59820
|
+
__typename?: 'JiraIssueSearchBulkViewTopLevelContexts';
|
|
59821
|
+
contexts?: Maybe<Array<JiraIssueSearchBulkViewContextMapping>>;
|
|
59822
|
+
errors?: Maybe<Array<QueryError>>;
|
|
59823
|
+
};
|
|
59722
59824
|
export declare type JiraIssueSearchByFilter = JiraIssueSearchResult & {
|
|
59723
59825
|
__typename?: 'JiraIssueSearchByFilter';
|
|
59724
59826
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
@@ -63287,6 +63389,7 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
63287
63389
|
id: Scalars['ID']['output'];
|
|
63288
63390
|
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
63289
63391
|
issue?: Maybe<JiraIssue>;
|
|
63392
|
+
issueCommentAri?: Maybe<Scalars['ID']['output']>;
|
|
63290
63393
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
63291
63394
|
richText?: Maybe<JiraRichText>;
|
|
63292
63395
|
threadParentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -64516,6 +64619,7 @@ export declare type JiraQuery = {
|
|
|
64516
64619
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
64517
64620
|
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
64518
64621
|
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
64622
|
+
searchViewContexts?: Maybe<JiraIssueSearchBulkViewContextsConnection>;
|
|
64519
64623
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
64520
64624
|
sprintById?: Maybe<JiraSprint>;
|
|
64521
64625
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -65411,6 +65515,14 @@ export declare type JiraQuerySearchUserTeamMentionArgs = {
|
|
|
65411
65515
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
65412
65516
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
65413
65517
|
};
|
|
65518
|
+
export declare type JiraQuerySearchViewContextsArgs = {
|
|
65519
|
+
cloudId: Scalars['ID']['input'];
|
|
65520
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65521
|
+
issueChanges?: InputMaybe<Array<JiraIssueChangeInput>>;
|
|
65522
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
65523
|
+
searchViewContextInput: JiraIssueSearchViewContextInput;
|
|
65524
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
65525
|
+
};
|
|
65414
65526
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
65415
65527
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
65416
65528
|
cloudId: Scalars['ID']['input'];
|
|
@@ -66700,6 +66812,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
66700
66812
|
id: Scalars['ID']['output'];
|
|
66701
66813
|
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
66702
66814
|
issue?: Maybe<JiraIssue>;
|
|
66815
|
+
issueCommentAri?: Maybe<Scalars['ID']['output']>;
|
|
66703
66816
|
jsdIncidentActivityViewHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
66704
66817
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
66705
66818
|
richText?: Maybe<JiraRichText>;
|
|
@@ -68319,10 +68432,11 @@ export declare type JiraSprintUpdateInput = {
|
|
|
68319
68432
|
sprintId: Scalars['ID']['input'];
|
|
68320
68433
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
68321
68434
|
};
|
|
68322
|
-
export declare type JiraStatus = Node & {
|
|
68435
|
+
export declare type JiraStatus = MercuryOriginalProjectStatus & Node & {
|
|
68323
68436
|
__typename?: 'JiraStatus';
|
|
68324
68437
|
description?: Maybe<Scalars['String']['output']>;
|
|
68325
68438
|
id: Scalars['ID']['output'];
|
|
68439
|
+
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
68326
68440
|
name?: Maybe<Scalars['String']['output']>;
|
|
68327
68441
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
68328
68442
|
statusId: Scalars['String']['output'];
|
|
@@ -72653,6 +72767,24 @@ export declare enum LoomMeetingSource {
|
|
|
72653
72767
|
MicrosoftOutlook = "MICROSOFT_OUTLOOK",
|
|
72654
72768
|
Zoom = "ZOOM"
|
|
72655
72769
|
}
|
|
72770
|
+
export declare type LoomPhrase = {
|
|
72771
|
+
__typename?: 'LoomPhrase';
|
|
72772
|
+
ranges?: Maybe<Array<LoomPhraseRange>>;
|
|
72773
|
+
speakerName?: Maybe<Scalars['String']['output']>;
|
|
72774
|
+
ts: Scalars['Float']['output'];
|
|
72775
|
+
value: Scalars['String']['output'];
|
|
72776
|
+
};
|
|
72777
|
+
export declare type LoomPhraseRange = {
|
|
72778
|
+
__typename?: 'LoomPhraseRange';
|
|
72779
|
+
length: Scalars['Int']['output'];
|
|
72780
|
+
source: LoomTranscriptElementIndex;
|
|
72781
|
+
start: Scalars['Int']['output'];
|
|
72782
|
+
type: LoomPhraseRangeType;
|
|
72783
|
+
};
|
|
72784
|
+
export declare enum LoomPhraseRangeType {
|
|
72785
|
+
Punct = "punct",
|
|
72786
|
+
Text = "text"
|
|
72787
|
+
}
|
|
72656
72788
|
export declare type LoomSettings = {
|
|
72657
72789
|
__typename?: 'LoomSettings';
|
|
72658
72790
|
meetingNotesAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -72667,6 +72799,113 @@ export declare type LoomToken = {
|
|
|
72667
72799
|
__typename?: 'LoomToken';
|
|
72668
72800
|
token: Scalars['String']['output'];
|
|
72669
72801
|
};
|
|
72802
|
+
export declare type LoomTranscript = {
|
|
72803
|
+
__typename?: 'LoomTranscript';
|
|
72804
|
+
phrases?: Maybe<Array<LoomPhrase>>;
|
|
72805
|
+
schemaVersion?: Maybe<Scalars['String']['output']>;
|
|
72806
|
+
};
|
|
72807
|
+
export declare type LoomTranscriptElementIndex = {
|
|
72808
|
+
__typename?: 'LoomTranscriptElementIndex';
|
|
72809
|
+
element: Scalars['Int']['output'];
|
|
72810
|
+
monologue: Scalars['Int']['output'];
|
|
72811
|
+
};
|
|
72812
|
+
export declare enum LoomTranscriptLanguage {
|
|
72813
|
+
Af = "af",
|
|
72814
|
+
Am = "am",
|
|
72815
|
+
As = "as",
|
|
72816
|
+
Ba = "ba",
|
|
72817
|
+
Be = "be",
|
|
72818
|
+
Bg = "bg",
|
|
72819
|
+
Bn = "bn",
|
|
72820
|
+
Bo = "bo",
|
|
72821
|
+
Br = "br",
|
|
72822
|
+
Bs = "bs",
|
|
72823
|
+
Ca = "ca",
|
|
72824
|
+
Cs = "cs",
|
|
72825
|
+
Cy = "cy",
|
|
72826
|
+
Da = "da",
|
|
72827
|
+
De = "de",
|
|
72828
|
+
El = "el",
|
|
72829
|
+
En = "en",
|
|
72830
|
+
Es = "es",
|
|
72831
|
+
Et = "et",
|
|
72832
|
+
Eu = "eu",
|
|
72833
|
+
Fi = "fi",
|
|
72834
|
+
Fo = "fo",
|
|
72835
|
+
Fr = "fr",
|
|
72836
|
+
Gl = "gl",
|
|
72837
|
+
Gu = "gu",
|
|
72838
|
+
Ha = "ha",
|
|
72839
|
+
Haw = "haw",
|
|
72840
|
+
Hi = "hi",
|
|
72841
|
+
Hr = "hr",
|
|
72842
|
+
Ht = "ht",
|
|
72843
|
+
Hu = "hu",
|
|
72844
|
+
Hy = "hy",
|
|
72845
|
+
Id = "id",
|
|
72846
|
+
Is = "is",
|
|
72847
|
+
It = "it",
|
|
72848
|
+
Ja = "ja",
|
|
72849
|
+
Jw = "jw",
|
|
72850
|
+
Ka = "ka",
|
|
72851
|
+
Kk = "kk",
|
|
72852
|
+
Km = "km",
|
|
72853
|
+
Kn = "kn",
|
|
72854
|
+
Ko = "ko",
|
|
72855
|
+
La = "la",
|
|
72856
|
+
Lb = "lb",
|
|
72857
|
+
Ln = "ln",
|
|
72858
|
+
Lo = "lo",
|
|
72859
|
+
Lt = "lt",
|
|
72860
|
+
Lv = "lv",
|
|
72861
|
+
Mg = "mg",
|
|
72862
|
+
Mi = "mi",
|
|
72863
|
+
Mk = "mk",
|
|
72864
|
+
Ml = "ml",
|
|
72865
|
+
Mn = "mn",
|
|
72866
|
+
Mr = "mr",
|
|
72867
|
+
Ms = "ms",
|
|
72868
|
+
Mt = "mt",
|
|
72869
|
+
My = "my",
|
|
72870
|
+
Ne = "ne",
|
|
72871
|
+
Nl = "nl",
|
|
72872
|
+
Nn = "nn",
|
|
72873
|
+
No = "no",
|
|
72874
|
+
Oc = "oc",
|
|
72875
|
+
Pa = "pa",
|
|
72876
|
+
Pl = "pl",
|
|
72877
|
+
Ps = "ps",
|
|
72878
|
+
Pt = "pt",
|
|
72879
|
+
Ro = "ro",
|
|
72880
|
+
Ru = "ru",
|
|
72881
|
+
Sa = "sa",
|
|
72882
|
+
Sd = "sd",
|
|
72883
|
+
Si = "si",
|
|
72884
|
+
Sk = "sk",
|
|
72885
|
+
Sl = "sl",
|
|
72886
|
+
Sn = "sn",
|
|
72887
|
+
So = "so",
|
|
72888
|
+
Sq = "sq",
|
|
72889
|
+
Sr = "sr",
|
|
72890
|
+
Su = "su",
|
|
72891
|
+
Sv = "sv",
|
|
72892
|
+
Sw = "sw",
|
|
72893
|
+
Ta = "ta",
|
|
72894
|
+
Te = "te",
|
|
72895
|
+
Tg = "tg",
|
|
72896
|
+
Th = "th",
|
|
72897
|
+
Tk = "tk",
|
|
72898
|
+
Tl = "tl",
|
|
72899
|
+
Tr = "tr",
|
|
72900
|
+
Tt = "tt",
|
|
72901
|
+
Uk = "uk",
|
|
72902
|
+
Unknown = "unknown",
|
|
72903
|
+
Uz = "uz",
|
|
72904
|
+
Vi = "vi",
|
|
72905
|
+
Yi = "yi",
|
|
72906
|
+
Yo = "yo",
|
|
72907
|
+
Zh = "zh"
|
|
72908
|
+
}
|
|
72670
72909
|
export declare type LoomUserPrimaryAuthType = {
|
|
72671
72910
|
__typename?: 'LoomUserPrimaryAuthType';
|
|
72672
72911
|
authType: Scalars['String']['output'];
|
|
@@ -72686,6 +72925,8 @@ export declare type LoomVideo = Node & {
|
|
|
72686
72925
|
name: Scalars['String']['output'];
|
|
72687
72926
|
owner?: Maybe<User>;
|
|
72688
72927
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
72928
|
+
transcript?: Maybe<LoomTranscript>;
|
|
72929
|
+
transcriptLanguage?: Maybe<LoomTranscriptLanguage>;
|
|
72689
72930
|
url: Scalars['String']['output'];
|
|
72690
72931
|
};
|
|
72691
72932
|
export declare type LpCertSort = {
|
|
@@ -75834,6 +76075,27 @@ export declare type MercuryHumanResourcesAllocation = {
|
|
|
75834
76075
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
75835
76076
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
75836
76077
|
};
|
|
76078
|
+
export declare type MercuryJiraAlignProjectType = {
|
|
76079
|
+
__typename?: 'MercuryJiraAlignProjectType';
|
|
76080
|
+
displayName: Scalars['String']['output'];
|
|
76081
|
+
key: MercuryJiraAlignProjectTypeKey;
|
|
76082
|
+
};
|
|
76083
|
+
export declare enum MercuryJiraAlignProjectTypeKey {
|
|
76084
|
+
JiraAlignCapability = "JIRA_ALIGN_CAPABILITY",
|
|
76085
|
+
JiraAlignEpic = "JIRA_ALIGN_EPIC",
|
|
76086
|
+
JiraAlignTheme = "JIRA_ALIGN_THEME"
|
|
76087
|
+
}
|
|
76088
|
+
export declare type MercuryJiraAlignProviderQueryApi = {
|
|
76089
|
+
__typename?: 'MercuryJiraAlignProviderQueryApi';
|
|
76090
|
+
isJaConnected?: Maybe<Scalars['Boolean']['output']>;
|
|
76091
|
+
userAccessibleJiraAlignProjectTypes?: Maybe<Array<MercuryJiraAlignProjectType>>;
|
|
76092
|
+
};
|
|
76093
|
+
export declare type MercuryJiraAlignProviderQueryApiIsJaConnectedArgs = {
|
|
76094
|
+
cloudId: Scalars['ID']['input'];
|
|
76095
|
+
};
|
|
76096
|
+
export declare type MercuryJiraAlignProviderQueryApiUserAccessibleJiraAlignProjectTypesArgs = {
|
|
76097
|
+
cloudId: Scalars['ID']['input'];
|
|
76098
|
+
};
|
|
75837
76099
|
export declare type MercuryLinkAtlassianWorkToFocusAreaInput = {
|
|
75838
76100
|
focusAreaAri: Scalars['String']['input'];
|
|
75839
76101
|
workAris: Array<Scalars['String']['input']>;
|
|
@@ -76015,6 +76277,9 @@ export declare type MercuryMutationApiUpdateFocusAreaTargetDateArgs = {
|
|
|
76015
76277
|
export declare type MercuryMutationApiUpdatePortfolioNameArgs = {
|
|
76016
76278
|
input: MercuryUpdatePortfolioNameInput;
|
|
76017
76279
|
};
|
|
76280
|
+
export declare type MercuryOriginalProjectStatus = {
|
|
76281
|
+
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
76282
|
+
};
|
|
76018
76283
|
export declare type MercuryPortfolio = Node & {
|
|
76019
76284
|
__typename?: 'MercuryPortfolio';
|
|
76020
76285
|
aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedPortfolioStatusCount>;
|
|
@@ -76198,11 +76463,21 @@ export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaAr
|
|
|
76198
76463
|
export declare type MercuryProviderOrchestrationQueryApi = {
|
|
76199
76464
|
__typename?: 'MercuryProviderOrchestrationQueryApi';
|
|
76200
76465
|
isWorkspaceConnected: Array<MercuryWorkspaceConnectionStatus>;
|
|
76466
|
+
searchWorkByFocusArea?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
76201
76467
|
};
|
|
76202
76468
|
export declare type MercuryProviderOrchestrationQueryApiIsWorkspaceConnectedArgs = {
|
|
76203
76469
|
cloudId: Scalars['ID']['input'];
|
|
76204
76470
|
workspaceAris: Array<Scalars['String']['input']>;
|
|
76205
76471
|
};
|
|
76472
|
+
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArgs = {
|
|
76473
|
+
cloudId: Scalars['ID']['input'];
|
|
76474
|
+
filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
|
|
76475
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76476
|
+
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
76477
|
+
providerKey: Scalars['String']['input'];
|
|
76478
|
+
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
76479
|
+
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
76480
|
+
};
|
|
76206
76481
|
export declare type MercuryProviderUser = {
|
|
76207
76482
|
id: Scalars['ID']['output'];
|
|
76208
76483
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -76244,6 +76519,31 @@ export declare enum MercuryProviderWorkErrorType {
|
|
|
76244
76519
|
NotFound = "NOT_FOUND",
|
|
76245
76520
|
NoPermissions = "NO_PERMISSIONS"
|
|
76246
76521
|
}
|
|
76522
|
+
export declare type MercuryProviderWorkSearchConnection = {
|
|
76523
|
+
__typename?: 'MercuryProviderWorkSearchConnection';
|
|
76524
|
+
edges?: Maybe<Array<Maybe<MercuryProviderWorkSearchEdge>>>;
|
|
76525
|
+
pageInfo: PageInfo;
|
|
76526
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
76527
|
+
};
|
|
76528
|
+
export declare type MercuryProviderWorkSearchEdge = {
|
|
76529
|
+
__typename?: 'MercuryProviderWorkSearchEdge';
|
|
76530
|
+
cursor: Scalars['String']['output'];
|
|
76531
|
+
node?: Maybe<MercuryProviderWorkSearchItem>;
|
|
76532
|
+
};
|
|
76533
|
+
export declare type MercuryProviderWorkSearchFilters = {
|
|
76534
|
+
project?: InputMaybe<MercuryProviderWorkSearchProjectFilters>;
|
|
76535
|
+
};
|
|
76536
|
+
export declare type MercuryProviderWorkSearchItem = {
|
|
76537
|
+
__typename?: 'MercuryProviderWorkSearchItem';
|
|
76538
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
76539
|
+
id: Scalars['ID']['output'];
|
|
76540
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
76541
|
+
name: Scalars['String']['output'];
|
|
76542
|
+
url: Scalars['String']['output'];
|
|
76543
|
+
};
|
|
76544
|
+
export declare type MercuryProviderWorkSearchProjectFilters = {
|
|
76545
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
76546
|
+
};
|
|
76247
76547
|
export declare type MercuryProviderWorkStatus = {
|
|
76248
76548
|
__typename?: 'MercuryProviderWorkStatus';
|
|
76249
76549
|
color: MercuryProviderWorkStatusColor;
|
|
@@ -82542,6 +82842,7 @@ export declare type Query = {
|
|
|
82542
82842
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
82543
82843
|
me: AuthenticationContext;
|
|
82544
82844
|
mercury?: Maybe<MercuryQueryApi>;
|
|
82845
|
+
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
82545
82846
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
82546
82847
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
82547
82848
|
migration: MigrationQuery;
|
|
@@ -85751,6 +86052,11 @@ export declare type RadarNumericFieldValue = {
|
|
|
85751
86052
|
displayValue?: Maybe<Scalars['Int']['output']>;
|
|
85752
86053
|
value?: Maybe<Scalars['Int']['output']>;
|
|
85753
86054
|
};
|
|
86055
|
+
export declare type RadarPermissions = {
|
|
86056
|
+
__typename?: 'RadarPermissions';
|
|
86057
|
+
canManagersAllocate: Scalars['Boolean']['output'];
|
|
86058
|
+
canManagersViewSensitiveFields: Scalars['Boolean']['output'];
|
|
86059
|
+
};
|
|
85754
86060
|
export declare type RadarPosition = Node & RadarEntity & {
|
|
85755
86061
|
__typename?: 'RadarPosition';
|
|
85756
86062
|
directReports?: Maybe<Array<RadarPosition>>;
|
|
@@ -85775,6 +86081,10 @@ export declare type RadarPositionEdge = RadarEdge & {
|
|
|
85775
86081
|
cursor: Scalars['String']['output'];
|
|
85776
86082
|
node: RadarPosition;
|
|
85777
86083
|
};
|
|
86084
|
+
export declare type RadarSettings = {
|
|
86085
|
+
__typename?: 'RadarSettings';
|
|
86086
|
+
permissions: RadarPermissions;
|
|
86087
|
+
};
|
|
85778
86088
|
export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
85779
86089
|
__typename?: 'RadarStaticStringFilterOptions';
|
|
85780
86090
|
functions: Array<RadarFunctionId>;
|
|
@@ -85841,6 +86151,7 @@ export declare type RadarWorkspace = {
|
|
|
85841
86151
|
functions: Array<RadarFunction>;
|
|
85842
86152
|
id: Scalars['ID']['output'];
|
|
85843
86153
|
positionFields: Array<RadarFieldDefinition>;
|
|
86154
|
+
settings: RadarSettings;
|
|
85844
86155
|
userContext?: Maybe<RadarUserContext>;
|
|
85845
86156
|
workerFields: Array<RadarFieldDefinition>;
|
|
85846
86157
|
};
|
|
@@ -87895,7 +88206,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
87895
88206
|
type: SearchResultType;
|
|
87896
88207
|
url: Scalars['URL']['output'];
|
|
87897
88208
|
};
|
|
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;
|
|
88209
|
+
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
88210
|
export declare type SearchResultFederated = SearchResult & {
|
|
87900
88211
|
__typename?: 'SearchResultFederated';
|
|
87901
88212
|
description: Scalars['String']['output'];
|
|
@@ -88225,6 +88536,7 @@ export declare enum SearchSortOrder {
|
|
|
88225
88536
|
Desc = "DESC"
|
|
88226
88537
|
}
|
|
88227
88538
|
export declare type SearchThirdPartyFilter = {
|
|
88539
|
+
additionalTexts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88228
88540
|
ancestorAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88229
88541
|
assignees?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88230
88542
|
containerAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -93019,6 +93331,10 @@ export declare type TownsquareLocalizationField = {
|
|
|
93019
93331
|
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
93020
93332
|
messageId?: Maybe<Scalars['String']['output']>;
|
|
93021
93333
|
};
|
|
93334
|
+
export declare type TownsquareMercuryOriginalProjectStatusDto = MercuryOriginalProjectStatus & {
|
|
93335
|
+
__typename?: 'TownsquareMercuryOriginalProjectStatusDto';
|
|
93336
|
+
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
93337
|
+
};
|
|
93022
93338
|
export declare type TownsquareMercuryProjectStatusDto = MercuryProjectStatus & {
|
|
93023
93339
|
__typename?: 'TownsquareMercuryProjectStatusDto';
|
|
93024
93340
|
mercuryColor?: Maybe<MercuryProjectStatusColor>;
|
|
@@ -93077,6 +93393,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
93077
93393
|
isArchived: Scalars['Boolean']['output'];
|
|
93078
93394
|
isPrivate: Scalars['Boolean']['output'];
|
|
93079
93395
|
key: Scalars['String']['output'];
|
|
93396
|
+
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
93080
93397
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
93081
93398
|
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
93082
93399
|
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|