@forge/cli-shared 6.8.0-next.20 → 6.8.0-next.22
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 +15 -0
- package/out/graphql/graphql-types.d.ts +133 -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
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.8.0-next.22
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [b51be39]
|
|
8
|
+
- @forge/manifest@8.9.0-next.10
|
|
9
|
+
|
|
10
|
+
## 6.8.0-next.21
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [e404ba0]
|
|
15
|
+
- @forge/i18n@0.0.5-next.1
|
|
16
|
+
- @forge/manifest@8.9.0-next.9
|
|
17
|
+
|
|
3
18
|
## 6.8.0-next.20
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -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']>;
|
|
@@ -58657,8 +58702,10 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
58657
58702
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
58658
58703
|
legacyContentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
58659
58704
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
58705
|
+
matchesIssueSearch?: Maybe<Scalars['Boolean']['output']>;
|
|
58660
58706
|
mediaReadToken?: Maybe<JiraMediaReadToken>;
|
|
58661
58707
|
mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
58708
|
+
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
58662
58709
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
58663
58710
|
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
58664
58711
|
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|
|
@@ -58687,6 +58734,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
58687
58734
|
smartSummary?: Maybe<JiraAdf>;
|
|
58688
58735
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
58689
58736
|
startDateViewField?: Maybe<JiraIssueField>;
|
|
58737
|
+
status?: Maybe<JiraStatus>;
|
|
58690
58738
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
58691
58739
|
statusField?: Maybe<JiraStatusField>;
|
|
58692
58740
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
@@ -58835,6 +58883,9 @@ export declare type JiraIssueLegacyContentPanelsArgs = {
|
|
|
58835
58883
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58836
58884
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58837
58885
|
};
|
|
58886
|
+
export declare type JiraIssueMatchesIssueSearchArgs = {
|
|
58887
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
58888
|
+
};
|
|
58838
58889
|
export declare type JiraIssueMediaReadTokenArgs = {
|
|
58839
58890
|
maxTokenLength: Scalars['Int']['input'];
|
|
58840
58891
|
};
|
|
@@ -58978,6 +59029,9 @@ export declare type JiraIssueBulkOperationsMetadata = {
|
|
|
58978
59029
|
__typename?: 'JiraIssueBulkOperationsMetadata';
|
|
58979
59030
|
maxNumberOfIssues?: Maybe<Scalars['Long']['output']>;
|
|
58980
59031
|
};
|
|
59032
|
+
export declare type JiraIssueChangeInput = {
|
|
59033
|
+
issueId: Scalars['String']['input'];
|
|
59034
|
+
};
|
|
58981
59035
|
export declare type JiraIssueCommandPaletteAction = {
|
|
58982
59036
|
id: Scalars['ID']['output'];
|
|
58983
59037
|
};
|
|
@@ -59366,6 +59420,7 @@ export declare type JiraIssueFieldsInput = {
|
|
|
59366
59420
|
singleSelectUserPickerFields?: InputMaybe<Array<JiraSingleSelectUserPickerFieldInput>>;
|
|
59367
59421
|
singleVersionPickerFields?: InputMaybe<Array<JiraSingleVersionPickerFieldInput>>;
|
|
59368
59422
|
sprintsField?: InputMaybe<JiraSprintFieldInput>;
|
|
59423
|
+
status?: InputMaybe<JiraStatusInput>;
|
|
59369
59424
|
teamFields?: InputMaybe<Array<JiraTeamFieldInput>>;
|
|
59370
59425
|
timeTrackingField?: InputMaybe<JiraTimeTrackingFieldInput>;
|
|
59371
59426
|
urlFields?: InputMaybe<Array<JiraUrlFieldInput>>;
|
|
@@ -59732,6 +59787,45 @@ export declare type JiraIssueReviewDevSummaryContainer = {
|
|
|
59732
59787
|
overall?: Maybe<JiraIssueReviewDevSummary>;
|
|
59733
59788
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
59734
59789
|
};
|
|
59790
|
+
export declare type JiraIssueSearchBulkViewContextMapping = {
|
|
59791
|
+
__typename?: 'JiraIssueSearchBulkViewContextMapping';
|
|
59792
|
+
afterIssueId?: Maybe<Scalars['String']['output']>;
|
|
59793
|
+
beforeIssueId?: Maybe<Scalars['String']['output']>;
|
|
59794
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
59795
|
+
sourceIssueId?: Maybe<Scalars['String']['output']>;
|
|
59796
|
+
};
|
|
59797
|
+
export declare type JiraIssueSearchBulkViewContexts = {
|
|
59798
|
+
contexts?: Maybe<Array<JiraIssueSearchBulkViewContextMapping>>;
|
|
59799
|
+
errors?: Maybe<Array<QueryError>>;
|
|
59800
|
+
};
|
|
59801
|
+
export declare type JiraIssueSearchBulkViewContextsConnection = {
|
|
59802
|
+
__typename?: 'JiraIssueSearchBulkViewContextsConnection';
|
|
59803
|
+
edges?: Maybe<Array<Maybe<JiraIssueSearchBulkViewContextsEdge>>>;
|
|
59804
|
+
pageInfo: PageInfo;
|
|
59805
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
59806
|
+
};
|
|
59807
|
+
export declare type JiraIssueSearchBulkViewContextsEdge = {
|
|
59808
|
+
__typename?: 'JiraIssueSearchBulkViewContextsEdge';
|
|
59809
|
+
cursor: Scalars['String']['output'];
|
|
59810
|
+
node?: Maybe<JiraIssueSearchBulkViewContexts>;
|
|
59811
|
+
};
|
|
59812
|
+
export declare type JiraIssueSearchBulkViewGroupContexts = JiraIssueSearchBulkViewContexts & {
|
|
59813
|
+
__typename?: 'JiraIssueSearchBulkViewGroupContexts';
|
|
59814
|
+
contexts?: Maybe<Array<JiraIssueSearchBulkViewContextMapping>>;
|
|
59815
|
+
errors?: Maybe<Array<QueryError>>;
|
|
59816
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
59817
|
+
};
|
|
59818
|
+
export declare type JiraIssueSearchBulkViewParentContexts = JiraIssueSearchBulkViewContexts & {
|
|
59819
|
+
__typename?: 'JiraIssueSearchBulkViewParentContexts';
|
|
59820
|
+
contexts?: Maybe<Array<JiraIssueSearchBulkViewContextMapping>>;
|
|
59821
|
+
errors?: Maybe<Array<QueryError>>;
|
|
59822
|
+
parentIssueId?: Maybe<Scalars['String']['output']>;
|
|
59823
|
+
};
|
|
59824
|
+
export declare type JiraIssueSearchBulkViewTopLevelContexts = JiraIssueSearchBulkViewContexts & {
|
|
59825
|
+
__typename?: 'JiraIssueSearchBulkViewTopLevelContexts';
|
|
59826
|
+
contexts?: Maybe<Array<JiraIssueSearchBulkViewContextMapping>>;
|
|
59827
|
+
errors?: Maybe<Array<QueryError>>;
|
|
59828
|
+
};
|
|
59735
59829
|
export declare type JiraIssueSearchByFilter = JiraIssueSearchResult & {
|
|
59736
59830
|
__typename?: 'JiraIssueSearchByFilter';
|
|
59737
59831
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
@@ -63300,6 +63394,7 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
63300
63394
|
id: Scalars['ID']['output'];
|
|
63301
63395
|
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
63302
63396
|
issue?: Maybe<JiraIssue>;
|
|
63397
|
+
issueCommentAri?: Maybe<Scalars['ID']['output']>;
|
|
63303
63398
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
63304
63399
|
richText?: Maybe<JiraRichText>;
|
|
63305
63400
|
threadParentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -64529,6 +64624,7 @@ export declare type JiraQuery = {
|
|
|
64529
64624
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
64530
64625
|
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
64531
64626
|
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
64627
|
+
searchViewContexts?: Maybe<JiraIssueSearchBulkViewContextsConnection>;
|
|
64532
64628
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
64533
64629
|
sprintById?: Maybe<JiraSprint>;
|
|
64534
64630
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -65424,6 +65520,14 @@ export declare type JiraQuerySearchUserTeamMentionArgs = {
|
|
|
65424
65520
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
65425
65521
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
65426
65522
|
};
|
|
65523
|
+
export declare type JiraQuerySearchViewContextsArgs = {
|
|
65524
|
+
cloudId: Scalars['ID']['input'];
|
|
65525
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65526
|
+
issueChanges?: InputMaybe<Array<JiraIssueChangeInput>>;
|
|
65527
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
65528
|
+
searchViewContextInput: JiraIssueSearchViewContextInput;
|
|
65529
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
65530
|
+
};
|
|
65427
65531
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
65428
65532
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
65429
65533
|
cloudId: Scalars['ID']['input'];
|
|
@@ -66713,6 +66817,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
66713
66817
|
id: Scalars['ID']['output'];
|
|
66714
66818
|
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
66715
66819
|
issue?: Maybe<JiraIssue>;
|
|
66820
|
+
issueCommentAri?: Maybe<Scalars['ID']['output']>;
|
|
66716
66821
|
jsdIncidentActivityViewHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
66717
66822
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
66718
66823
|
richText?: Maybe<JiraRichText>;
|
|
@@ -68332,10 +68437,11 @@ export declare type JiraSprintUpdateInput = {
|
|
|
68332
68437
|
sprintId: Scalars['ID']['input'];
|
|
68333
68438
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
68334
68439
|
};
|
|
68335
|
-
export declare type JiraStatus = Node & {
|
|
68440
|
+
export declare type JiraStatus = MercuryOriginalProjectStatus & Node & {
|
|
68336
68441
|
__typename?: 'JiraStatus';
|
|
68337
68442
|
description?: Maybe<Scalars['String']['output']>;
|
|
68338
68443
|
id: Scalars['ID']['output'];
|
|
68444
|
+
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
68339
68445
|
name?: Maybe<Scalars['String']['output']>;
|
|
68340
68446
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
68341
68447
|
statusId: Scalars['String']['output'];
|
|
@@ -68422,6 +68528,9 @@ export declare type JiraStatusFieldPayload = Payload & {
|
|
|
68422
68528
|
field?: Maybe<JiraStatusField>;
|
|
68423
68529
|
success: Scalars['Boolean']['output'];
|
|
68424
68530
|
};
|
|
68531
|
+
export declare type JiraStatusInput = {
|
|
68532
|
+
statusId: Scalars['ID']['input'];
|
|
68533
|
+
};
|
|
68425
68534
|
export declare type JiraStoryPoint = {
|
|
68426
68535
|
__typename?: 'JiraStoryPoint';
|
|
68427
68536
|
value: Scalars['Float']['output'];
|
|
@@ -75986,8 +76095,12 @@ export declare enum MercuryJiraAlignProjectTypeKey {
|
|
|
75986
76095
|
}
|
|
75987
76096
|
export declare type MercuryJiraAlignProviderQueryApi = {
|
|
75988
76097
|
__typename?: 'MercuryJiraAlignProviderQueryApi';
|
|
76098
|
+
isJaConnected?: Maybe<Scalars['Boolean']['output']>;
|
|
75989
76099
|
userAccessibleJiraAlignProjectTypes?: Maybe<Array<MercuryJiraAlignProjectType>>;
|
|
75990
76100
|
};
|
|
76101
|
+
export declare type MercuryJiraAlignProviderQueryApiIsJaConnectedArgs = {
|
|
76102
|
+
cloudId: Scalars['ID']['input'];
|
|
76103
|
+
};
|
|
75991
76104
|
export declare type MercuryJiraAlignProviderQueryApiUserAccessibleJiraAlignProjectTypesArgs = {
|
|
75992
76105
|
cloudId: Scalars['ID']['input'];
|
|
75993
76106
|
};
|
|
@@ -76172,6 +76285,9 @@ export declare type MercuryMutationApiUpdateFocusAreaTargetDateArgs = {
|
|
|
76172
76285
|
export declare type MercuryMutationApiUpdatePortfolioNameArgs = {
|
|
76173
76286
|
input: MercuryUpdatePortfolioNameInput;
|
|
76174
76287
|
};
|
|
76288
|
+
export declare type MercuryOriginalProjectStatus = {
|
|
76289
|
+
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
76290
|
+
};
|
|
76175
76291
|
export declare type MercuryPortfolio = Node & {
|
|
76176
76292
|
__typename?: 'MercuryPortfolio';
|
|
76177
76293
|
aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedPortfolioStatusCount>;
|
|
@@ -88428,6 +88544,7 @@ export declare enum SearchSortOrder {
|
|
|
88428
88544
|
Desc = "DESC"
|
|
88429
88545
|
}
|
|
88430
88546
|
export declare type SearchThirdPartyFilter = {
|
|
88547
|
+
additionalTexts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88431
88548
|
ancestorAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88432
88549
|
assignees?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88433
88550
|
containerAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -93222,6 +93339,10 @@ export declare type TownsquareLocalizationField = {
|
|
|
93222
93339
|
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
93223
93340
|
messageId?: Maybe<Scalars['String']['output']>;
|
|
93224
93341
|
};
|
|
93342
|
+
export declare type TownsquareMercuryOriginalProjectStatusDto = MercuryOriginalProjectStatus & {
|
|
93343
|
+
__typename?: 'TownsquareMercuryOriginalProjectStatusDto';
|
|
93344
|
+
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
93345
|
+
};
|
|
93225
93346
|
export declare type TownsquareMercuryProjectStatusDto = MercuryProjectStatus & {
|
|
93226
93347
|
__typename?: 'TownsquareMercuryProjectStatusDto';
|
|
93227
93348
|
mercuryColor?: Maybe<MercuryProjectStatusColor>;
|
|
@@ -93280,6 +93401,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
93280
93401
|
isArchived: Scalars['Boolean']['output'];
|
|
93281
93402
|
isPrivate: Scalars['Boolean']['output'];
|
|
93282
93403
|
key: Scalars['String']['output'];
|
|
93404
|
+
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
93283
93405
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
93284
93406
|
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
93285
93407
|
mercuryProjectName?: Maybe<Scalars['String']['output']>;
|