@forge/cli-shared 6.8.0-next.20 → 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 +8 -0
- package/out/graphql/graphql-types.d.ts +125 -11
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +23 -13
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -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']>;
|
|
@@ -17871,6 +17877,24 @@ export declare type ContentPlatformCategory = {
|
|
|
17871
17877
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
17872
17878
|
urlSlug?: Maybe<Scalars['String']['output']>;
|
|
17873
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
|
+
};
|
|
17874
17898
|
export declare type ContentPlatformContentClause = {
|
|
17875
17899
|
and?: InputMaybe<Array<ContentPlatformContentClause>>;
|
|
17876
17900
|
fieldNamed?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -18169,7 +18193,8 @@ export declare type ContentPlatformIpmCompImage = {
|
|
|
18169
18193
|
imageAltText?: Maybe<Scalars['String']['output']>;
|
|
18170
18194
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
18171
18195
|
};
|
|
18172
|
-
export declare type
|
|
18196
|
+
export declare type ContentPlatformIpmCompImageAndCdnImageModelUnion = ContentPlatformCdnImageModel | ContentPlatformIpmCompImage;
|
|
18197
|
+
export declare type ContentPlatformIpmCompImageAndIpmComponentEmbeddedVideoAndCdnImageModelUnion = ContentPlatformCdnImageModel | ContentPlatformIpmCompImage | ContentPlatformIpmComponentEmbeddedVideo;
|
|
18173
18198
|
export declare type ContentPlatformIpmComponentBackButton = {
|
|
18174
18199
|
__typename?: 'ContentPlatformIpmComponentBackButton';
|
|
18175
18200
|
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
@@ -18187,7 +18212,7 @@ export declare type ContentPlatformIpmComponentEmbeddedVideo = {
|
|
|
18187
18212
|
videoProvider?: Maybe<Scalars['String']['output']>;
|
|
18188
18213
|
videoUrl?: Maybe<Scalars['String']['output']>;
|
|
18189
18214
|
};
|
|
18190
|
-
export declare type
|
|
18215
|
+
export declare type ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageAndCdnImageModelUnion = ContentPlatformCdnImageModel | ContentPlatformIpmCompImage | ContentPlatformIpmComponentEmbeddedVideo;
|
|
18191
18216
|
export declare type ContentPlatformIpmComponentGsacButton = {
|
|
18192
18217
|
__typename?: 'ContentPlatformIpmComponentGsacButton';
|
|
18193
18218
|
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
@@ -18232,7 +18257,7 @@ export declare type ContentPlatformIpmFlag = {
|
|
|
18232
18257
|
__typename?: 'ContentPlatformIpmFlag';
|
|
18233
18258
|
body?: Maybe<Scalars['JSON']['output']>;
|
|
18234
18259
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
18235
|
-
featuredDigitalAsset?: Maybe<
|
|
18260
|
+
featuredDigitalAsset?: Maybe<ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageAndCdnImageModelUnion>;
|
|
18236
18261
|
id: Scalars['String']['output'];
|
|
18237
18262
|
ipmNumber?: Maybe<Scalars['String']['output']>;
|
|
18238
18263
|
location?: Maybe<ContentPlatformIpmPositionAndIpmAnchoredUnion>;
|
|
@@ -18280,7 +18305,7 @@ export declare type ContentPlatformIpmInlineDialog = {
|
|
|
18280
18305
|
anchored: ContentPlatformIpmAnchored;
|
|
18281
18306
|
body: Scalars['JSON']['output'];
|
|
18282
18307
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
18283
|
-
featuredImage?: Maybe<
|
|
18308
|
+
featuredImage?: Maybe<ContentPlatformIpmCompImageAndCdnImageModelUnion>;
|
|
18284
18309
|
id: Scalars['String']['output'];
|
|
18285
18310
|
ipmNumber: Scalars['String']['output'];
|
|
18286
18311
|
primaryButton: ContentPlatformIpmComponentLinkButtonAndIpmComponentGsacButtonUnion;
|
|
@@ -18304,7 +18329,7 @@ export declare type ContentPlatformIpmMultiStep = {
|
|
|
18304
18329
|
__typename?: 'ContentPlatformIpmMultiStep';
|
|
18305
18330
|
body: Scalars['JSON']['output'];
|
|
18306
18331
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
18307
|
-
featuredDigitalAsset?: Maybe<
|
|
18332
|
+
featuredDigitalAsset?: Maybe<ContentPlatformIpmCompImageAndIpmComponentEmbeddedVideoAndCdnImageModelUnion>;
|
|
18308
18333
|
id: Scalars['String']['output'];
|
|
18309
18334
|
ipmNumber: Scalars['String']['output'];
|
|
18310
18335
|
location?: Maybe<ContentPlatformIpmAnchoredAndIpmPositionUnion>;
|
|
@@ -18339,7 +18364,7 @@ export declare type ContentPlatformIpmSingleStep = {
|
|
|
18339
18364
|
anchored?: Maybe<ContentPlatformIpmAnchored>;
|
|
18340
18365
|
body: Scalars['JSON']['output'];
|
|
18341
18366
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
18342
|
-
featuredDigitalAsset?: Maybe<
|
|
18367
|
+
featuredDigitalAsset?: Maybe<ContentPlatformIpmCompImageAndIpmComponentEmbeddedVideoAndCdnImageModelUnion>;
|
|
18343
18368
|
id: Scalars['String']['output'];
|
|
18344
18369
|
primaryButton: ContentPlatformIpmComponentNextButton;
|
|
18345
18370
|
secondaryButton?: Maybe<ContentPlatformIpmComponentBackButton>;
|
|
@@ -19499,7 +19524,7 @@ export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
|
19499
19524
|
export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
19500
19525
|
automaticallyCreateMetricSources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19501
19526
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
19502
|
-
comparatorValue
|
|
19527
|
+
comparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
19503
19528
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
19504
19529
|
metricDefinitionId: Scalars['ID']['input'];
|
|
19505
19530
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -24240,6 +24265,7 @@ export declare type EcosystemMarketplaceData = {
|
|
|
24240
24265
|
partner?: Maybe<EcosystemMarketplacePartner>;
|
|
24241
24266
|
privacyPolicyUrl?: Maybe<Scalars['String']['output']>;
|
|
24242
24267
|
slug?: Maybe<Scalars['String']['output']>;
|
|
24268
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
24243
24269
|
supportTicketSystemUrl?: Maybe<Scalars['String']['output']>;
|
|
24244
24270
|
versions?: Maybe<EcosystemMarketplaceVersionConnection>;
|
|
24245
24271
|
wikiUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -50684,11 +50710,23 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
50684
50710
|
d1to6Active?: Maybe<Scalars['Boolean']['output']>;
|
|
50685
50711
|
d1to6Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
50686
50712
|
isTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
50713
|
+
nbeRecommendation?: Maybe<GrowthUnifiedProfileProductNbe>;
|
|
50687
50714
|
productEdition?: Maybe<Scalars['String']['output']>;
|
|
50688
50715
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
50689
50716
|
productName?: Maybe<Scalars['String']['output']>;
|
|
50690
50717
|
provisionedAt?: Maybe<Scalars['String']['output']>;
|
|
50691
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
|
+
};
|
|
50692
50730
|
export declare type GrowthUnifiedProfileResult = {
|
|
50693
50731
|
__typename?: 'GrowthUnifiedProfileResult';
|
|
50694
50732
|
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
@@ -50924,6 +50962,7 @@ export declare type HardDeleteSpacePayload = {
|
|
|
50924
50962
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
50925
50963
|
};
|
|
50926
50964
|
export declare type HasMercuryProjectFields = {
|
|
50965
|
+
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
50927
50966
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
50928
50967
|
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
50929
50968
|
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|
|
@@ -53841,6 +53880,10 @@ export declare type JiraAiEnablementIssueInput = {
|
|
|
53841
53880
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
53842
53881
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
53843
53882
|
};
|
|
53883
|
+
export declare type JiraAlignAggMercuryOriginalProjectStatusDto = MercuryOriginalProjectStatus & {
|
|
53884
|
+
__typename?: 'JiraAlignAggMercuryOriginalProjectStatusDTO';
|
|
53885
|
+
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
53886
|
+
};
|
|
53844
53887
|
export declare type JiraAlignAggMercuryProjectStatusDto = MercuryProjectStatus & {
|
|
53845
53888
|
__typename?: 'JiraAlignAggMercuryProjectStatusDto';
|
|
53846
53889
|
mercuryColor?: Maybe<MercuryProjectStatusColor>;
|
|
@@ -53849,6 +53892,7 @@ export declare type JiraAlignAggMercuryProjectStatusDto = MercuryProjectStatus &
|
|
|
53849
53892
|
export declare type JiraAlignAggProject = HasMercuryProjectFields & Node & {
|
|
53850
53893
|
__typename?: 'JiraAlignAggProject';
|
|
53851
53894
|
id: Scalars['ID']['output'];
|
|
53895
|
+
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
53852
53896
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
53853
53897
|
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
53854
53898
|
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|
|
@@ -55772,6 +55816,7 @@ export declare type JiraComment = {
|
|
|
55772
55816
|
created: Scalars['DateTime']['output'];
|
|
55773
55817
|
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
55774
55818
|
issue?: Maybe<JiraIssue>;
|
|
55819
|
+
issueCommentAri?: Maybe<Scalars['ID']['output']>;
|
|
55775
55820
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
55776
55821
|
richText?: Maybe<JiraRichText>;
|
|
55777
55822
|
threadParentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -58659,6 +58704,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
58659
58704
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
58660
58705
|
mediaReadToken?: Maybe<JiraMediaReadToken>;
|
|
58661
58706
|
mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
58707
|
+
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
58662
58708
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
58663
58709
|
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
58664
58710
|
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|
|
@@ -58687,6 +58733,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
58687
58733
|
smartSummary?: Maybe<JiraAdf>;
|
|
58688
58734
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
58689
58735
|
startDateViewField?: Maybe<JiraIssueField>;
|
|
58736
|
+
status?: Maybe<JiraStatus>;
|
|
58690
58737
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
58691
58738
|
statusField?: Maybe<JiraStatusField>;
|
|
58692
58739
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
@@ -58978,6 +59025,9 @@ export declare type JiraIssueBulkOperationsMetadata = {
|
|
|
58978
59025
|
__typename?: 'JiraIssueBulkOperationsMetadata';
|
|
58979
59026
|
maxNumberOfIssues?: Maybe<Scalars['Long']['output']>;
|
|
58980
59027
|
};
|
|
59028
|
+
export declare type JiraIssueChangeInput = {
|
|
59029
|
+
issueId: Scalars['String']['input'];
|
|
59030
|
+
};
|
|
58981
59031
|
export declare type JiraIssueCommandPaletteAction = {
|
|
58982
59032
|
id: Scalars['ID']['output'];
|
|
58983
59033
|
};
|
|
@@ -59732,6 +59782,45 @@ export declare type JiraIssueReviewDevSummaryContainer = {
|
|
|
59732
59782
|
overall?: Maybe<JiraIssueReviewDevSummary>;
|
|
59733
59783
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
59734
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
|
+
};
|
|
59735
59824
|
export declare type JiraIssueSearchByFilter = JiraIssueSearchResult & {
|
|
59736
59825
|
__typename?: 'JiraIssueSearchByFilter';
|
|
59737
59826
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
@@ -63300,6 +63389,7 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
63300
63389
|
id: Scalars['ID']['output'];
|
|
63301
63390
|
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
63302
63391
|
issue?: Maybe<JiraIssue>;
|
|
63392
|
+
issueCommentAri?: Maybe<Scalars['ID']['output']>;
|
|
63303
63393
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
63304
63394
|
richText?: Maybe<JiraRichText>;
|
|
63305
63395
|
threadParentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -64529,6 +64619,7 @@ export declare type JiraQuery = {
|
|
|
64529
64619
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
64530
64620
|
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
64531
64621
|
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
64622
|
+
searchViewContexts?: Maybe<JiraIssueSearchBulkViewContextsConnection>;
|
|
64532
64623
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
64533
64624
|
sprintById?: Maybe<JiraSprint>;
|
|
64534
64625
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -65424,6 +65515,14 @@ export declare type JiraQuerySearchUserTeamMentionArgs = {
|
|
|
65424
65515
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
65425
65516
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
65426
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
|
+
};
|
|
65427
65526
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
65428
65527
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
65429
65528
|
cloudId: Scalars['ID']['input'];
|
|
@@ -66713,6 +66812,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
66713
66812
|
id: Scalars['ID']['output'];
|
|
66714
66813
|
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
66715
66814
|
issue?: Maybe<JiraIssue>;
|
|
66815
|
+
issueCommentAri?: Maybe<Scalars['ID']['output']>;
|
|
66716
66816
|
jsdIncidentActivityViewHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
66717
66817
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
66718
66818
|
richText?: Maybe<JiraRichText>;
|
|
@@ -68332,10 +68432,11 @@ export declare type JiraSprintUpdateInput = {
|
|
|
68332
68432
|
sprintId: Scalars['ID']['input'];
|
|
68333
68433
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
68334
68434
|
};
|
|
68335
|
-
export declare type JiraStatus = Node & {
|
|
68435
|
+
export declare type JiraStatus = MercuryOriginalProjectStatus & Node & {
|
|
68336
68436
|
__typename?: 'JiraStatus';
|
|
68337
68437
|
description?: Maybe<Scalars['String']['output']>;
|
|
68338
68438
|
id: Scalars['ID']['output'];
|
|
68439
|
+
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
68339
68440
|
name?: Maybe<Scalars['String']['output']>;
|
|
68340
68441
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
68341
68442
|
statusId: Scalars['String']['output'];
|
|
@@ -75986,8 +76087,12 @@ export declare enum MercuryJiraAlignProjectTypeKey {
|
|
|
75986
76087
|
}
|
|
75987
76088
|
export declare type MercuryJiraAlignProviderQueryApi = {
|
|
75988
76089
|
__typename?: 'MercuryJiraAlignProviderQueryApi';
|
|
76090
|
+
isJaConnected?: Maybe<Scalars['Boolean']['output']>;
|
|
75989
76091
|
userAccessibleJiraAlignProjectTypes?: Maybe<Array<MercuryJiraAlignProjectType>>;
|
|
75990
76092
|
};
|
|
76093
|
+
export declare type MercuryJiraAlignProviderQueryApiIsJaConnectedArgs = {
|
|
76094
|
+
cloudId: Scalars['ID']['input'];
|
|
76095
|
+
};
|
|
75991
76096
|
export declare type MercuryJiraAlignProviderQueryApiUserAccessibleJiraAlignProjectTypesArgs = {
|
|
75992
76097
|
cloudId: Scalars['ID']['input'];
|
|
75993
76098
|
};
|
|
@@ -76172,6 +76277,9 @@ export declare type MercuryMutationApiUpdateFocusAreaTargetDateArgs = {
|
|
|
76172
76277
|
export declare type MercuryMutationApiUpdatePortfolioNameArgs = {
|
|
76173
76278
|
input: MercuryUpdatePortfolioNameInput;
|
|
76174
76279
|
};
|
|
76280
|
+
export declare type MercuryOriginalProjectStatus = {
|
|
76281
|
+
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
76282
|
+
};
|
|
76175
76283
|
export declare type MercuryPortfolio = Node & {
|
|
76176
76284
|
__typename?: 'MercuryPortfolio';
|
|
76177
76285
|
aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedPortfolioStatusCount>;
|
|
@@ -88428,6 +88536,7 @@ export declare enum SearchSortOrder {
|
|
|
88428
88536
|
Desc = "DESC"
|
|
88429
88537
|
}
|
|
88430
88538
|
export declare type SearchThirdPartyFilter = {
|
|
88539
|
+
additionalTexts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88431
88540
|
ancestorAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88432
88541
|
assignees?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88433
88542
|
containerAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -93222,6 +93331,10 @@ export declare type TownsquareLocalizationField = {
|
|
|
93222
93331
|
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
93223
93332
|
messageId?: Maybe<Scalars['String']['output']>;
|
|
93224
93333
|
};
|
|
93334
|
+
export declare type TownsquareMercuryOriginalProjectStatusDto = MercuryOriginalProjectStatus & {
|
|
93335
|
+
__typename?: 'TownsquareMercuryOriginalProjectStatusDto';
|
|
93336
|
+
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
93337
|
+
};
|
|
93225
93338
|
export declare type TownsquareMercuryProjectStatusDto = MercuryProjectStatus & {
|
|
93226
93339
|
__typename?: 'TownsquareMercuryProjectStatusDto';
|
|
93227
93340
|
mercuryColor?: Maybe<MercuryProjectStatusColor>;
|
|
@@ -93280,6 +93393,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
93280
93393
|
isArchived: Scalars['Boolean']['output'];
|
|
93281
93394
|
isPrivate: Scalars['Boolean']['output'];
|
|
93282
93395
|
key: Scalars['String']['output'];
|
|
93396
|
+
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
93283
93397
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
93284
93398
|
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
93285
93399
|
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|