@forge/cli-shared 6.6.1-next.15 → 6.6.1-next.16
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 +6 -0
- package/out/graphql/graphql-types.d.ts +80 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +1 -0
- package/out/service/supported-products-service.d.ts +3 -3
- package/out/service/supported-products-service.d.ts.map +1 -1
- package/out/service/supported-products-service.js +30 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -596,7 +596,7 @@ export declare type ActivityObject = {
|
|
|
596
596
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
597
597
|
type: Scalars['String']['output'];
|
|
598
598
|
};
|
|
599
|
-
export declare type ActivityObjectData = BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
599
|
+
export declare type ActivityObjectData = BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
600
600
|
export declare enum ActivityObjectType {
|
|
601
601
|
Blogpost = "BLOGPOST",
|
|
602
602
|
Comment = "COMMENT",
|
|
@@ -23384,6 +23384,7 @@ export declare type EcosystemMutation = {
|
|
|
23384
23384
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
23385
23385
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
23386
23386
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
23387
|
+
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
23387
23388
|
publishAppClientEvent?: Maybe<EcosystemPublishEventBody>;
|
|
23388
23389
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
23389
23390
|
updateAppContributorRole?: Maybe<UpdateAppContributorRoleResponsePayload>;
|
|
@@ -23419,6 +23420,9 @@ export declare type EcosystemMutationDeleteUserGrantArgs = {
|
|
|
23419
23420
|
export declare type EcosystemMutationForgeAlertsArgs = {
|
|
23420
23421
|
appId: Scalars['ID']['input'];
|
|
23421
23422
|
};
|
|
23423
|
+
export declare type EcosystemMutationForgeMetricsArgs = {
|
|
23424
|
+
appId: Scalars['ID']['input'];
|
|
23425
|
+
};
|
|
23422
23426
|
export declare type EcosystemMutationPublishAppClientEventArgs = {
|
|
23423
23427
|
appId: Scalars['ID']['input'];
|
|
23424
23428
|
channel: Scalars['String']['input'];
|
|
@@ -24440,7 +24444,7 @@ export declare type ExternalEntitiesV2ForHydrationWorkerArgs = {
|
|
|
24440
24444
|
};
|
|
24441
24445
|
export declare type ExternalEntitiesV2ForHydrationInput = {
|
|
24442
24446
|
ari?: InputMaybe<Scalars['ID']['input']>;
|
|
24443
|
-
|
|
24447
|
+
siteOrGraphWorkspaceAri: Scalars['ID']['input'];
|
|
24444
24448
|
};
|
|
24445
24449
|
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
24446
24450
|
export declare type ExternalEnvironment = {
|
|
@@ -24861,6 +24865,7 @@ export declare type ExternalWorkItem = Node & {
|
|
|
24861
24865
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
24862
24866
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
24863
24867
|
url?: Maybe<Scalars['String']['output']>;
|
|
24868
|
+
workItemProject?: Maybe<ExternalWorkItemProject>;
|
|
24864
24869
|
};
|
|
24865
24870
|
export declare type ExternalWorkItemAttachment = {
|
|
24866
24871
|
__typename?: 'ExternalWorkItemAttachment';
|
|
@@ -24870,12 +24875,18 @@ export declare type ExternalWorkItemAttachment = {
|
|
|
24870
24875
|
title?: Maybe<Scalars['String']['output']>;
|
|
24871
24876
|
url?: Maybe<Scalars['String']['output']>;
|
|
24872
24877
|
};
|
|
24878
|
+
export declare type ExternalWorkItemProject = {
|
|
24879
|
+
__typename?: 'ExternalWorkItemProject';
|
|
24880
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
24881
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
24882
|
+
};
|
|
24873
24883
|
export declare enum ExternalWorkItemSubtype {
|
|
24874
24884
|
Approval = "APPROVAL",
|
|
24875
24885
|
Bug = "BUG",
|
|
24876
24886
|
DefaultTask = "DEFAULT_TASK",
|
|
24877
24887
|
Epic = "EPIC",
|
|
24878
24888
|
Incident = "INCIDENT",
|
|
24889
|
+
Issue = "ISSUE",
|
|
24879
24890
|
Milestone = "MILESTONE",
|
|
24880
24891
|
Other = "OTHER",
|
|
24881
24892
|
Problem = "PROBLEM",
|
|
@@ -25755,9 +25766,32 @@ export declare enum ForgeMetricsChartName {
|
|
|
25755
25766
|
InvocationLatency = "INVOCATION_LATENCY",
|
|
25756
25767
|
InvocationSuccessRate = "INVOCATION_SUCCESS_RATE"
|
|
25757
25768
|
}
|
|
25769
|
+
export declare type ForgeMetricsCustomCreateQueryInput = {
|
|
25770
|
+
creatorId: Scalars['String']['input'];
|
|
25771
|
+
customMetric: Scalars['String']['input'];
|
|
25772
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
25773
|
+
};
|
|
25774
|
+
export declare type ForgeMetricsCustomData = {
|
|
25775
|
+
__typename?: 'ForgeMetricsCustomData';
|
|
25776
|
+
appId: Scalars['ID']['output'];
|
|
25777
|
+
createdAt: Scalars['String']['output'];
|
|
25778
|
+
creatorId: Scalars['String']['output'];
|
|
25779
|
+
customMetricName: Scalars['String']['output'];
|
|
25780
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
25781
|
+
id: Scalars['ID']['output'];
|
|
25782
|
+
type: Scalars['String']['output'];
|
|
25783
|
+
updatedAt: Scalars['String']['output'];
|
|
25784
|
+
};
|
|
25785
|
+
export declare type ForgeMetricsCustomDeleteQueryInput = {
|
|
25786
|
+
nodeId: Scalars['ID']['input'];
|
|
25787
|
+
};
|
|
25758
25788
|
export declare enum ForgeMetricsCustomGroupByDimensions {
|
|
25759
25789
|
CustomMetricName = "CUSTOM_METRIC_NAME"
|
|
25760
25790
|
}
|
|
25791
|
+
export declare type ForgeMetricsCustomMetaData = {
|
|
25792
|
+
__typename?: 'ForgeMetricsCustomMetaData';
|
|
25793
|
+
customMetricNames: Array<ForgeMetricsCustomData>;
|
|
25794
|
+
};
|
|
25761
25795
|
export declare type ForgeMetricsCustomQueryFilters = {
|
|
25762
25796
|
appVersions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
25763
25797
|
contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -25769,6 +25803,16 @@ export declare type ForgeMetricsCustomQueryInput = {
|
|
|
25769
25803
|
filters: ForgeMetricsCustomQueryFilters;
|
|
25770
25804
|
groupBy?: InputMaybe<Array<ForgeMetricsCustomGroupByDimensions>>;
|
|
25771
25805
|
};
|
|
25806
|
+
export declare type ForgeMetricsCustomResult = ForgeMetricsCustomMetaData | QueryError;
|
|
25807
|
+
export declare type ForgeMetricsCustomSuccessStatus = {
|
|
25808
|
+
__typename?: 'ForgeMetricsCustomSuccessStatus';
|
|
25809
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
25810
|
+
success: Scalars['Boolean']['output'];
|
|
25811
|
+
};
|
|
25812
|
+
export declare type ForgeMetricsCustomUpdateQueryInput = {
|
|
25813
|
+
customMetric: Scalars['String']['input'];
|
|
25814
|
+
nodeId: Scalars['ID']['input'];
|
|
25815
|
+
};
|
|
25772
25816
|
export declare type ForgeMetricsData = {
|
|
25773
25817
|
name: Scalars['String']['output'];
|
|
25774
25818
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
@@ -25899,6 +25943,22 @@ export declare type ForgeMetricsLatencyBucketsQueryInput = {
|
|
|
25899
25943
|
filters: ForgeMetricsLatencyBucketsQueryFilters;
|
|
25900
25944
|
groupBy?: InputMaybe<Array<ForgeMetricsGroupByDimensions>>;
|
|
25901
25945
|
};
|
|
25946
|
+
export declare type ForgeMetricsMutation = {
|
|
25947
|
+
__typename?: 'ForgeMetricsMutation';
|
|
25948
|
+
appId: Scalars['ID']['output'];
|
|
25949
|
+
createCustomMetric: ForgeMetricsCustomSuccessStatus;
|
|
25950
|
+
deleteCustomMetric: ForgeMetricsCustomSuccessStatus;
|
|
25951
|
+
updateCustomMetric: ForgeMetricsCustomSuccessStatus;
|
|
25952
|
+
};
|
|
25953
|
+
export declare type ForgeMetricsMutationCreateCustomMetricArgs = {
|
|
25954
|
+
query: ForgeMetricsCustomCreateQueryInput;
|
|
25955
|
+
};
|
|
25956
|
+
export declare type ForgeMetricsMutationDeleteCustomMetricArgs = {
|
|
25957
|
+
query: ForgeMetricsCustomDeleteQueryInput;
|
|
25958
|
+
};
|
|
25959
|
+
export declare type ForgeMetricsMutationUpdateCustomMetricArgs = {
|
|
25960
|
+
query: ForgeMetricsCustomUpdateQueryInput;
|
|
25961
|
+
};
|
|
25902
25962
|
export declare type ForgeMetricsOtlpData = {
|
|
25903
25963
|
__typename?: 'ForgeMetricsOtlpData';
|
|
25904
25964
|
resourceMetrics: Scalars['JSON']['output'];
|
|
@@ -25924,6 +25984,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
25924
25984
|
cacheHitRate: ForgeMetricsSuccessRateResult;
|
|
25925
25985
|
chartInsight: ForgeMetricsChartInsightResult;
|
|
25926
25986
|
customMetrics: ForgeMetricsInvocationsResult;
|
|
25987
|
+
customMetricsMetaData: ForgeMetricsCustomResult;
|
|
25927
25988
|
errors: ForgeMetricsErrorsResult;
|
|
25928
25989
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
25929
25990
|
invocations: ForgeMetricsInvocationsResult;
|
|
@@ -48909,7 +48970,7 @@ export declare type HelpCenterPage = Node & {
|
|
|
48909
48970
|
};
|
|
48910
48971
|
export declare type HelpCenterPageCreateInput = {
|
|
48911
48972
|
clonePageAri?: InputMaybe<Scalars['String']['input']>;
|
|
48912
|
-
description
|
|
48973
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
48913
48974
|
helpCenterAri: Scalars['String']['input'];
|
|
48914
48975
|
name: Scalars['String']['input'];
|
|
48915
48976
|
};
|
|
@@ -48930,7 +48991,7 @@ export declare type HelpCenterPageDeletePayload = Payload & {
|
|
|
48930
48991
|
};
|
|
48931
48992
|
export declare type HelpCenterPageDescription = {
|
|
48932
48993
|
__typename?: 'HelpCenterPageDescription';
|
|
48933
|
-
default
|
|
48994
|
+
default?: Maybe<Scalars['String']['output']>;
|
|
48934
48995
|
};
|
|
48935
48996
|
export declare type HelpCenterPageLayout = {
|
|
48936
48997
|
__typename?: 'HelpCenterPageLayout';
|
|
@@ -48956,7 +49017,7 @@ export declare enum HelpCenterPageType {
|
|
|
48956
49017
|
Custom = "CUSTOM"
|
|
48957
49018
|
}
|
|
48958
49019
|
export declare type HelpCenterPageUpdateInput = {
|
|
48959
|
-
description
|
|
49020
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
48960
49021
|
helpCenterPageAri: Scalars['String']['input'];
|
|
48961
49022
|
name: Scalars['String']['input'];
|
|
48962
49023
|
};
|
|
@@ -48970,6 +49031,7 @@ export declare type HelpCenterPermissionSettings = {
|
|
|
48970
49031
|
__typename?: 'HelpCenterPermissionSettings';
|
|
48971
49032
|
accessControlType: HelpCenterAccessControlType;
|
|
48972
49033
|
allowedAccessGroups?: Maybe<Array<Scalars['String']['output']>>;
|
|
49034
|
+
hydratedAllowedAccessGroups?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
48973
49035
|
};
|
|
48974
49036
|
export declare type HelpCenterPermissionSettingsInput = {
|
|
48975
49037
|
accessControlType: HelpCenterAccessControlType;
|
|
@@ -49092,7 +49154,11 @@ export declare type HelpCenterQueryApiHelpCenterPagesArgs = {
|
|
|
49092
49154
|
helpCenterAri: Scalars['ID']['input'];
|
|
49093
49155
|
};
|
|
49094
49156
|
export declare type HelpCenterQueryApiHelpCenterPermissionSettingsArgs = {
|
|
49157
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
49158
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
49159
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49095
49160
|
helpCenterAri: Scalars['ID']['input'];
|
|
49161
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49096
49162
|
};
|
|
49097
49163
|
export declare type HelpCenterQueryApiHelpCenterReportingByIdArgs = {
|
|
49098
49164
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -56021,6 +56087,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
56021
56087
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
56022
56088
|
comments?: Maybe<JiraCommentConnection>;
|
|
56023
56089
|
configurationUrl?: Maybe<Scalars['URL']['output']>;
|
|
56090
|
+
confluenceMentionedLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
56024
56091
|
contentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
56025
56092
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
56026
56093
|
createdField?: Maybe<JiraDateTimePickerField>;
|
|
@@ -56148,6 +56215,12 @@ export declare type JiraIssueCommentsArgs = {
|
|
|
56148
56215
|
sortBy?: InputMaybe<JiraCommentSortInput>;
|
|
56149
56216
|
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
56150
56217
|
};
|
|
56218
|
+
export declare type JiraIssueConfluenceMentionedLinksArgs = {
|
|
56219
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
56220
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
56221
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
56222
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
56223
|
+
};
|
|
56151
56224
|
export declare type JiraIssueContentPanelsArgs = {
|
|
56152
56225
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
56153
56226
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -92040,11 +92113,13 @@ export declare type UnifiedConsentObj = {
|
|
|
92040
92113
|
consent_key: Scalars['String']['output'];
|
|
92041
92114
|
consent_status: Scalars['String']['output'];
|
|
92042
92115
|
created_at: Scalars['String']['output'];
|
|
92116
|
+
data_source?: Maybe<Scalars['String']['output']>;
|
|
92043
92117
|
updated_at: Scalars['String']['output'];
|
|
92044
92118
|
};
|
|
92045
92119
|
export declare type UnifiedConsentObjInput = {
|
|
92046
92120
|
consent_key: Scalars['String']['input'];
|
|
92047
92121
|
consent_status: Scalars['String']['input'];
|
|
92122
|
+
displayed_text?: InputMaybe<Scalars['String']['input']>;
|
|
92048
92123
|
};
|
|
92049
92124
|
export declare type UnifiedConsentPayload = UnifiedPayload & {
|
|
92050
92125
|
__typename?: 'UnifiedConsentPayload';
|