@forge/cli-shared 3.17.2-next.1 → 3.17.2-next.2
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
CHANGED
|
@@ -4320,6 +4320,7 @@ export type CompassRichTextObject = {
|
|
|
4320
4320
|
export type CompassScorecard = Node & {
|
|
4321
4321
|
__typename?: 'CompassScorecard';
|
|
4322
4322
|
id: Scalars['ID'];
|
|
4323
|
+
type: Scalars['String'];
|
|
4323
4324
|
name: Scalars['String'];
|
|
4324
4325
|
description?: Maybe<Scalars['String']>;
|
|
4325
4326
|
criterias?: Maybe<Array<CompassScorecardCriteria>>;
|
|
@@ -10654,6 +10655,15 @@ export type HelpLayoutSectionsArgs = {
|
|
|
10654
10655
|
first?: Maybe<Scalars['Int']>;
|
|
10655
10656
|
after?: Maybe<Scalars['String']>;
|
|
10656
10657
|
};
|
|
10658
|
+
export type HelpLayoutAlignmentSettings = {
|
|
10659
|
+
__typename?: 'HelpLayoutAlignmentSettings';
|
|
10660
|
+
horizontalAlignment?: Maybe<HelpLayoutHorizontalAlignment>;
|
|
10661
|
+
verticalAlignment?: Maybe<HelpLayoutVerticalAlignment>;
|
|
10662
|
+
};
|
|
10663
|
+
export type HelpLayoutAlignmentSettingsInput = {
|
|
10664
|
+
horizontalAlignment?: Maybe<HelpLayoutHorizontalAlignment>;
|
|
10665
|
+
verticalAlignment?: Maybe<HelpLayoutVerticalAlignment>;
|
|
10666
|
+
};
|
|
10657
10667
|
export type HelpLayoutAtomicElement = HelpLayoutImageAtomicElement | HelpLayoutHeadingAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement;
|
|
10658
10668
|
export type HelpLayoutAtomicElementInput = {
|
|
10659
10669
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
@@ -10679,9 +10689,18 @@ export type HelpLayoutAtomicElementType = HelpLayoutElementType & {
|
|
|
10679
10689
|
export type HelpLayoutAtomicElementTypeMediaConfigArgs = {
|
|
10680
10690
|
parentAri: Scalars['ID'];
|
|
10681
10691
|
};
|
|
10692
|
+
export type HelpLayoutBackgroundImage = {
|
|
10693
|
+
__typename?: 'HelpLayoutBackgroundImage';
|
|
10694
|
+
url?: Maybe<Scalars['String']>;
|
|
10695
|
+
fileId?: Maybe<Scalars['String']>;
|
|
10696
|
+
};
|
|
10697
|
+
export type HelpLayoutBackgroundImageInput = {
|
|
10698
|
+
url?: Maybe<Scalars['String']>;
|
|
10699
|
+
fileId?: Maybe<Scalars['String']>;
|
|
10700
|
+
};
|
|
10682
10701
|
export type HelpLayoutCompositeElement = {
|
|
10683
10702
|
id: Scalars['ID'];
|
|
10684
|
-
visualConfig?: Maybe<
|
|
10703
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10685
10704
|
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
10686
10705
|
elementType?: Maybe<HelpLayoutCompositeElementType>;
|
|
10687
10706
|
};
|
|
@@ -10734,7 +10753,7 @@ export type HelpLayoutElementType = {
|
|
|
10734
10753
|
export type HelpLayoutHeadingAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
10735
10754
|
__typename?: 'HelpLayoutHeadingAtomicElement';
|
|
10736
10755
|
id: Scalars['ID'];
|
|
10737
|
-
visualConfig?: Maybe<
|
|
10756
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10738
10757
|
config?: Maybe<HelpLayoutHeadingAtomicElementConfig>;
|
|
10739
10758
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
10740
10759
|
};
|
|
@@ -10746,7 +10765,7 @@ export type HelpLayoutHeadingAtomicElementConfig = {
|
|
|
10746
10765
|
export type HelpLayoutHeadingConfigInput = {
|
|
10747
10766
|
text: Scalars['String'];
|
|
10748
10767
|
headingType: HelpLayoutHeadingType;
|
|
10749
|
-
visualConfig?: Maybe<
|
|
10768
|
+
visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
|
|
10750
10769
|
};
|
|
10751
10770
|
export declare enum HelpLayoutHeadingType {
|
|
10752
10771
|
H1 = "h1",
|
|
@@ -10756,10 +10775,15 @@ export declare enum HelpLayoutHeadingType {
|
|
|
10756
10775
|
H5 = "h5",
|
|
10757
10776
|
H6 = "h6"
|
|
10758
10777
|
}
|
|
10778
|
+
export declare enum HelpLayoutHorizontalAlignment {
|
|
10779
|
+
Left = "LEFT",
|
|
10780
|
+
Center = "CENTER",
|
|
10781
|
+
Right = "RIGHT"
|
|
10782
|
+
}
|
|
10759
10783
|
export type HelpLayoutImageAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
10760
10784
|
__typename?: 'HelpLayoutImageAtomicElement';
|
|
10761
10785
|
id: Scalars['ID'];
|
|
10762
|
-
visualConfig?: Maybe<
|
|
10786
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10763
10787
|
config?: Maybe<HelpLayoutImageAtomicElementConfig>;
|
|
10764
10788
|
data?: Maybe<HelpLayoutImageAtomicElementData>;
|
|
10765
10789
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
@@ -10785,12 +10809,12 @@ export type HelpLayoutImageConfigInput = {
|
|
|
10785
10809
|
fit?: Maybe<Scalars['String']>;
|
|
10786
10810
|
position?: Maybe<Scalars['String']>;
|
|
10787
10811
|
scale?: Maybe<Scalars['Int']>;
|
|
10788
|
-
visualConfig?: Maybe<
|
|
10812
|
+
visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
|
|
10789
10813
|
};
|
|
10790
10814
|
export type HelpLayoutLinkCardCompositeElement = HelpLayoutVisualEntity & HelpLayoutCompositeElement & Node & {
|
|
10791
10815
|
__typename?: 'HelpLayoutLinkCardCompositeElement';
|
|
10792
10816
|
id: Scalars['ID'];
|
|
10793
|
-
visualConfig?: Maybe<
|
|
10817
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10794
10818
|
config?: Maybe<Scalars['String']>;
|
|
10795
10819
|
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
10796
10820
|
elementType?: Maybe<HelpLayoutCompositeElementType>;
|
|
@@ -10798,7 +10822,7 @@ export type HelpLayoutLinkCardCompositeElement = HelpLayoutVisualEntity & HelpLa
|
|
|
10798
10822
|
export type HelpLayoutLinkCardInput = {
|
|
10799
10823
|
children: Array<HelpLayoutAtomicElementInput>;
|
|
10800
10824
|
type: HelpLayoutCompositeElementKey;
|
|
10801
|
-
visualConfig?: Maybe<
|
|
10825
|
+
visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
|
|
10802
10826
|
config: Scalars['String'];
|
|
10803
10827
|
};
|
|
10804
10828
|
export type HelpLayoutMediaConfig = {
|
|
@@ -10826,7 +10850,7 @@ export type HelpLayoutMutationApiUpdateLayoutArgs = {
|
|
|
10826
10850
|
export type HelpLayoutParagraphAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
10827
10851
|
__typename?: 'HelpLayoutParagraphAtomicElement';
|
|
10828
10852
|
id: Scalars['ID'];
|
|
10829
|
-
visualConfig?: Maybe<
|
|
10853
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10830
10854
|
config?: Maybe<HelpLayoutParagraphAtomicElementConfig>;
|
|
10831
10855
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
10832
10856
|
};
|
|
@@ -10836,7 +10860,7 @@ export type HelpLayoutParagraphAtomicElementConfig = {
|
|
|
10836
10860
|
};
|
|
10837
10861
|
export type HelpLayoutParagraphConfigInput = {
|
|
10838
10862
|
adf: Scalars['String'];
|
|
10839
|
-
visualConfig?: Maybe<
|
|
10863
|
+
visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
|
|
10840
10864
|
};
|
|
10841
10865
|
export type HelpLayoutQueryApi = {
|
|
10842
10866
|
__typename?: 'HelpLayoutQueryApi';
|
|
@@ -10854,7 +10878,7 @@ export type HelpLayoutResult = HelpLayout | QueryError;
|
|
|
10854
10878
|
export type HelpLayoutSearchAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
10855
10879
|
__typename?: 'HelpLayoutSearchAtomicElement';
|
|
10856
10880
|
id: Scalars['ID'];
|
|
10857
|
-
visualConfig?: Maybe<
|
|
10881
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10858
10882
|
config?: Maybe<HelpLayoutSearchAtomicElementConfig>;
|
|
10859
10883
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
10860
10884
|
};
|
|
@@ -10864,12 +10888,13 @@ export type HelpLayoutSearchAtomicElementConfig = {
|
|
|
10864
10888
|
};
|
|
10865
10889
|
export type HelpLayoutSearchConfigInput = {
|
|
10866
10890
|
placeHolderText: Scalars['String'];
|
|
10867
|
-
visualConfig?: Maybe<
|
|
10891
|
+
visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
|
|
10868
10892
|
};
|
|
10869
|
-
export type HelpLayoutSection = Node & {
|
|
10893
|
+
export type HelpLayoutSection = Node & HelpLayoutVisualEntity & {
|
|
10870
10894
|
__typename?: 'HelpLayoutSection';
|
|
10871
10895
|
id: Scalars['ID'];
|
|
10872
10896
|
subsections?: Maybe<Array<Maybe<HelpLayoutSubsection>>>;
|
|
10897
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10873
10898
|
};
|
|
10874
10899
|
export type HelpLayoutSectionConnection = {
|
|
10875
10900
|
__typename?: 'HelpLayoutSectionConnection';
|
|
@@ -10882,13 +10907,15 @@ export type HelpLayoutSectionEdge = {
|
|
|
10882
10907
|
node?: Maybe<HelpLayoutSection>;
|
|
10883
10908
|
};
|
|
10884
10909
|
export type HelpLayoutSectionInput = {
|
|
10910
|
+
visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
|
|
10885
10911
|
subsections: Array<HelpLayoutSubsectionInput>;
|
|
10886
10912
|
};
|
|
10887
|
-
export type HelpLayoutSubsection = Node & {
|
|
10913
|
+
export type HelpLayoutSubsection = Node & HelpLayoutVisualEntity & {
|
|
10888
10914
|
__typename?: 'HelpLayoutSubsection';
|
|
10889
10915
|
id: Scalars['ID'];
|
|
10890
10916
|
config?: Maybe<HelpLayoutSubsectionConfig>;
|
|
10891
10917
|
elements?: Maybe<Array<Maybe<HelpLayoutElement>>>;
|
|
10918
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10892
10919
|
};
|
|
10893
10920
|
export type HelpLayoutSubsectionConfig = {
|
|
10894
10921
|
__typename?: 'HelpLayoutSubsectionConfig';
|
|
@@ -10899,6 +10926,7 @@ export type HelpLayoutSubsectionConfigInput = {
|
|
|
10899
10926
|
};
|
|
10900
10927
|
export type HelpLayoutSubsectionInput = {
|
|
10901
10928
|
config: HelpLayoutSubsectionConfigInput;
|
|
10929
|
+
visualConfig?: Maybe<HelpLayoutVisualConfigInput>;
|
|
10902
10930
|
elements: Array<HelpLayoutElementInput>;
|
|
10903
10931
|
};
|
|
10904
10932
|
export type HelpLayoutUpdateInput = {
|
|
@@ -10911,8 +10939,24 @@ export type HelpLayoutUpdatePayload = Payload & {
|
|
|
10911
10939
|
errors?: Maybe<Array<MutationError>>;
|
|
10912
10940
|
layoutId?: Maybe<Scalars['ID']>;
|
|
10913
10941
|
};
|
|
10942
|
+
export declare enum HelpLayoutVerticalAlignment {
|
|
10943
|
+
Top = "TOP",
|
|
10944
|
+
Middle = "MIDDLE",
|
|
10945
|
+
Bottom = "BOTTOM"
|
|
10946
|
+
}
|
|
10947
|
+
export type HelpLayoutVisualConfig = {
|
|
10948
|
+
__typename?: 'HelpLayoutVisualConfig';
|
|
10949
|
+
backgroundImage?: Maybe<HelpLayoutBackgroundImage>;
|
|
10950
|
+
alignment?: Maybe<HelpLayoutAlignmentSettings>;
|
|
10951
|
+
themeTemplateId?: Maybe<Scalars['String']>;
|
|
10952
|
+
};
|
|
10953
|
+
export type HelpLayoutVisualConfigInput = {
|
|
10954
|
+
backgroundImage?: Maybe<HelpLayoutBackgroundImageInput>;
|
|
10955
|
+
alignment?: Maybe<HelpLayoutAlignmentSettingsInput>;
|
|
10956
|
+
themeTemplateId?: Maybe<Scalars['String']>;
|
|
10957
|
+
};
|
|
10914
10958
|
export type HelpLayoutVisualEntity = {
|
|
10915
|
-
visualConfig?: Maybe<
|
|
10959
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
10916
10960
|
};
|
|
10917
10961
|
export type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
|
|
10918
10962
|
__typename?: 'HelpObjectStoreArticle';
|
|
@@ -13798,6 +13842,16 @@ export type JiraIssueEdge = {
|
|
|
13798
13842
|
node?: Maybe<JiraIssue>;
|
|
13799
13843
|
cursor: Scalars['String'];
|
|
13800
13844
|
};
|
|
13845
|
+
export type JiraIssueEmailBatchingWindowPayload = Payload & {
|
|
13846
|
+
__typename?: 'JiraIssueEmailBatchingWindowPayload';
|
|
13847
|
+
success: Scalars['Boolean'];
|
|
13848
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13849
|
+
};
|
|
13850
|
+
export type JiraIssueEmailMaxIdleTimePayload = Payload & {
|
|
13851
|
+
__typename?: 'JiraIssueEmailMaxIdleTimePayload';
|
|
13852
|
+
success: Scalars['Boolean'];
|
|
13853
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13854
|
+
};
|
|
13801
13855
|
export type JiraIssueField = {
|
|
13802
13856
|
id: Scalars['ID'];
|
|
13803
13857
|
fieldId: Scalars['String'];
|
|
@@ -16173,6 +16227,7 @@ export type JiraProject = Node & {
|
|
|
16173
16227
|
totalLinkedSecurityVulnerabilityCount?: Maybe<Scalars['Int']>;
|
|
16174
16228
|
totalLinkedSecurityContainerCount?: Maybe<Scalars['Int']>;
|
|
16175
16229
|
linkedSecurityVulnerabilities?: Maybe<AriGraphRelationshipConnection>;
|
|
16230
|
+
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
16176
16231
|
linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
16177
16232
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
16178
16233
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
@@ -16225,6 +16280,11 @@ export type JiraProjectLinkedSecurityVulnerabilitiesArgs = {
|
|
|
16225
16280
|
type?: Maybe<Scalars['String']>;
|
|
16226
16281
|
sort?: Maybe<AriGraphRelationshipsSort>;
|
|
16227
16282
|
};
|
|
16283
|
+
export type JiraProjectLinkedSecurityVulnerabilitiesByProjectArgs = {
|
|
16284
|
+
first?: Maybe<Scalars['Int']>;
|
|
16285
|
+
after?: Maybe<Scalars['String']>;
|
|
16286
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInput>;
|
|
16287
|
+
};
|
|
16228
16288
|
export type JiraProjectLinkedDocumentationContainersArgs = {
|
|
16229
16289
|
first?: Maybe<Scalars['Int']>;
|
|
16230
16290
|
after?: Maybe<Scalars['String']>;
|
|
@@ -19362,6 +19422,8 @@ export type JiraUserPreferences = {
|
|
|
19362
19422
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
19363
19423
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
19364
19424
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']>;
|
|
19425
|
+
issueEmailBatchingWindow?: Maybe<Scalars['String']>;
|
|
19426
|
+
issueEmailMaxIdleTime?: Maybe<Scalars['String']>;
|
|
19365
19427
|
};
|
|
19366
19428
|
export type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
19367
19429
|
projectKey: Scalars['String'];
|
|
@@ -19371,6 +19433,8 @@ export type JiraUserPreferencesMutation = {
|
|
|
19371
19433
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
19372
19434
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
19373
19435
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
19436
|
+
setIssueEmailBatchingWindow?: Maybe<JiraIssueEmailBatchingWindowPayload>;
|
|
19437
|
+
setIssueEmailMaxIdleTime?: Maybe<JiraIssueEmailMaxIdleTimePayload>;
|
|
19374
19438
|
};
|
|
19375
19439
|
export type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
19376
19440
|
searchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
@@ -19381,6 +19445,12 @@ export type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
|
19381
19445
|
export type JiraUserPreferencesMutationSetNaturalLanguageSpotlightTourEnabledArgs = {
|
|
19382
19446
|
isEnabled: Scalars['Boolean'];
|
|
19383
19447
|
};
|
|
19448
|
+
export type JiraUserPreferencesMutationSetIssueEmailBatchingWindowArgs = {
|
|
19449
|
+
batchWindow: Scalars['String'];
|
|
19450
|
+
};
|
|
19451
|
+
export type JiraUserPreferencesMutationSetIssueEmailMaxIdleTimeArgs = {
|
|
19452
|
+
maxIdleTime: Scalars['String'];
|
|
19453
|
+
};
|
|
19384
19454
|
export type JiraUserSegmentation = {
|
|
19385
19455
|
__typename?: 'JiraUserSegmentation';
|
|
19386
19456
|
role?: Maybe<Scalars['String']>;
|
|
@@ -24870,7 +24940,8 @@ export declare enum Scope {
|
|
|
24870
24940
|
ReadTeam = "READ_TEAM",
|
|
24871
24941
|
ReadTeamMembers = "READ_TEAM_MEMBERS",
|
|
24872
24942
|
TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL",
|
|
24873
|
-
CatalogRead = "CATALOG_READ"
|
|
24943
|
+
CatalogRead = "CATALOG_READ",
|
|
24944
|
+
ApiAccess = "API_ACCESS"
|
|
24874
24945
|
}
|
|
24875
24946
|
export type ScopeSprintIssue = {
|
|
24876
24947
|
__typename?: 'ScopeSprintIssue';
|
|
@@ -25406,6 +25477,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
25406
25477
|
ConfluenceDataDiscovery = "CONFLUENCE_DATA_DISCOVERY",
|
|
25407
25478
|
ConfluenceDataDiscoveryCreditCard = "CONFLUENCE_DATA_DISCOVERY_CREDIT_CARD",
|
|
25408
25479
|
ConfluenceDataDiscoveryCrypto = "CONFLUENCE_DATA_DISCOVERY_CRYPTO",
|
|
25480
|
+
ConfluenceDataDiscoveryIban = "CONFLUENCE_DATA_DISCOVERY_IBAN",
|
|
25409
25481
|
ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
|
|
25410
25482
|
ConfluencePageExports = "CONFLUENCE_PAGE_EXPORTS",
|
|
25411
25483
|
ConfluenceSpaceExports = "CONFLUENCE_SPACE_EXPORTS",
|