@forge/cli-shared 3.14.1-next.0 → 3.14.1-next.1
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
|
@@ -8506,6 +8506,11 @@ export declare type ForgeMetricsLabelGroup = {
|
|
|
8506
8506
|
key: Scalars['String'];
|
|
8507
8507
|
value: Scalars['String'];
|
|
8508
8508
|
};
|
|
8509
|
+
export declare enum ForgeMetricsLabels {
|
|
8510
|
+
ForgeBackendInvocationCount = "FORGE_BACKEND_INVOCATION_COUNT",
|
|
8511
|
+
ForgeBackendInvocationErrors = "FORGE_BACKEND_INVOCATION_ERRORS",
|
|
8512
|
+
ForgeBackendInvocationLatency = "FORGE_BACKEND_INVOCATION_LATENCY"
|
|
8513
|
+
}
|
|
8509
8514
|
export declare type ForgeMetricsLatenciesData = ForgeMetricsData & {
|
|
8510
8515
|
__typename?: 'ForgeMetricsLatenciesData';
|
|
8511
8516
|
name: Scalars['String'];
|
|
@@ -8540,6 +8545,19 @@ export declare type ForgeMetricsLatencyBucketsQueryInput = {
|
|
|
8540
8545
|
filters: ForgeMetricsLatencyBucketsQueryFilters;
|
|
8541
8546
|
groupBy?: Maybe<Array<ForgeMetricsGroupByDimensions>>;
|
|
8542
8547
|
};
|
|
8548
|
+
export declare type ForgeMetricsOtlpData = {
|
|
8549
|
+
__typename?: 'ForgeMetricsOtlpData';
|
|
8550
|
+
resourceMetrics: Scalars['JSON'];
|
|
8551
|
+
};
|
|
8552
|
+
export declare type ForgeMetricsOtlpQueryFilters = {
|
|
8553
|
+
environments: Array<Scalars['ID']>;
|
|
8554
|
+
interval: ForgeMetricsIntervalInput;
|
|
8555
|
+
metrics: Array<ForgeMetricsLabels>;
|
|
8556
|
+
};
|
|
8557
|
+
export declare type ForgeMetricsOtlpQueryInput = {
|
|
8558
|
+
filters: ForgeMetricsOtlpQueryFilters;
|
|
8559
|
+
};
|
|
8560
|
+
export declare type ForgeMetricsOtlpResult = ForgeMetricsOtlpData | QueryError;
|
|
8543
8561
|
export declare type ForgeMetricsQuery = {
|
|
8544
8562
|
__typename?: 'ForgeMetricsQuery';
|
|
8545
8563
|
appId: Scalars['ID'];
|
|
@@ -8552,6 +8570,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
8552
8570
|
sites: ForgeMetricsSitesResult;
|
|
8553
8571
|
latencies: ForgeMetricsLatenciesResult;
|
|
8554
8572
|
latencyBuckets: ForgeMetricsLatenciesResult;
|
|
8573
|
+
exportMetrics: ForgeMetricsOtlpResult;
|
|
8555
8574
|
};
|
|
8556
8575
|
export declare type ForgeMetricsQuerySuccessRateArgs = {
|
|
8557
8576
|
query: ForgeMetricsQueryInput;
|
|
@@ -8582,6 +8601,9 @@ export declare type ForgeMetricsQueryLatencyBucketsArgs = {
|
|
|
8582
8601
|
query: ForgeMetricsLatencyBucketsQueryInput;
|
|
8583
8602
|
percentiles?: Maybe<Array<Scalars['Float']>>;
|
|
8584
8603
|
};
|
|
8604
|
+
export declare type ForgeMetricsQueryExportMetricsArgs = {
|
|
8605
|
+
query: ForgeMetricsOtlpQueryInput;
|
|
8606
|
+
};
|
|
8585
8607
|
export declare type ForgeMetricsQueryFilters = {
|
|
8586
8608
|
environment?: Maybe<Scalars['ID']>;
|
|
8587
8609
|
contextAris?: Maybe<Array<Scalars['ID']>>;
|
|
@@ -9253,6 +9275,7 @@ export declare type HelpLayoutAtomicElementType = {
|
|
|
9253
9275
|
key?: Maybe<HelpLayoutAtomicElementKey>;
|
|
9254
9276
|
displayName?: Maybe<Scalars['String']>;
|
|
9255
9277
|
iconUrl?: Maybe<Scalars['String']>;
|
|
9278
|
+
category?: Maybe<HelpLayoutElementCategory>;
|
|
9256
9279
|
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
9257
9280
|
};
|
|
9258
9281
|
export declare type HelpLayoutCompositeElement = {
|
|
@@ -9269,6 +9292,7 @@ export declare type HelpLayoutCompositeElementType = {
|
|
|
9269
9292
|
key?: Maybe<HelpLayoutCompositeElementKey>;
|
|
9270
9293
|
displayName?: Maybe<Scalars['String']>;
|
|
9271
9294
|
iconUrl?: Maybe<Scalars['String']>;
|
|
9295
|
+
category?: Maybe<HelpLayoutElementCategory>;
|
|
9272
9296
|
allowedElements?: Maybe<Array<Maybe<HelpLayoutAtomicElementKey>>>;
|
|
9273
9297
|
};
|
|
9274
9298
|
export declare type HelpLayoutCreatePayload = Payload & {
|
|
@@ -9282,6 +9306,10 @@ export declare type HelpLayoutCreationInput = {
|
|
|
9282
9306
|
sections: Array<HelpLayoutSectionInput>;
|
|
9283
9307
|
};
|
|
9284
9308
|
export declare type HelpLayoutElement = HelpLayoutImageAtomicElement | HelpLayoutHeadingAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement | HelpLayoutLinkCardCompositeElement;
|
|
9309
|
+
export declare enum HelpLayoutElementCategory {
|
|
9310
|
+
Basic = "BASIC",
|
|
9311
|
+
Navigation = "NAVIGATION"
|
|
9312
|
+
}
|
|
9285
9313
|
export declare type HelpLayoutElementInput = {
|
|
9286
9314
|
elementTypeKey: HelpLayoutElementKey;
|
|
9287
9315
|
imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
|
|
@@ -9396,7 +9424,7 @@ export declare type HelpLayoutParagraphConfigInput = {
|
|
|
9396
9424
|
export declare type HelpLayoutQueryApi = {
|
|
9397
9425
|
__typename?: 'HelpLayoutQueryApi';
|
|
9398
9426
|
layout?: Maybe<HelpLayoutResult>;
|
|
9399
|
-
elementTypes?: Maybe<Array<
|
|
9427
|
+
elementTypes?: Maybe<Array<HelpLayoutElementTypes>>;
|
|
9400
9428
|
};
|
|
9401
9429
|
export declare type HelpLayoutQueryApiLayoutArgs = {
|
|
9402
9430
|
id: Scalars['ID'];
|
|
@@ -10997,6 +11025,16 @@ export declare type JiraConnectTextField = Node & JiraIssueField & JiraIssueFiel
|
|
|
10997
11025
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
10998
11026
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
10999
11027
|
};
|
|
11028
|
+
export declare type JiraCreateApproverListFieldInput = {
|
|
11029
|
+
fieldName: Scalars['String'];
|
|
11030
|
+
projectId: Scalars['Int'];
|
|
11031
|
+
};
|
|
11032
|
+
export declare type JiraCreateApproverListFieldPayload = Payload & {
|
|
11033
|
+
__typename?: 'JiraCreateApproverListFieldPayload';
|
|
11034
|
+
success: Scalars['Boolean'];
|
|
11035
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11036
|
+
fieldId?: Maybe<Scalars['String']>;
|
|
11037
|
+
};
|
|
11000
11038
|
export declare type JiraCreateCustomFilterInput = {
|
|
11001
11039
|
jql: Scalars['String'];
|
|
11002
11040
|
name: Scalars['String'];
|
|
@@ -13258,6 +13296,7 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
13258
13296
|
};
|
|
13259
13297
|
export declare type JiraMutation = {
|
|
13260
13298
|
__typename?: 'JiraMutation';
|
|
13299
|
+
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
13261
13300
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
13262
13301
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
13263
13302
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
@@ -13319,6 +13358,10 @@ export declare type JiraMutation = {
|
|
|
13319
13358
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
13320
13359
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
13321
13360
|
};
|
|
13361
|
+
export declare type JiraMutationCreateApproverListFieldArgs = {
|
|
13362
|
+
cloudId: Scalars['ID'];
|
|
13363
|
+
input: JiraCreateApproverListFieldInput;
|
|
13364
|
+
};
|
|
13322
13365
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
13323
13366
|
cloudId: Scalars['ID'];
|
|
13324
13367
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -15888,6 +15931,7 @@ export declare type JiraServiceManagementRequestTypeTemplate = {
|
|
|
15888
15931
|
description?: Maybe<Scalars['String']>;
|
|
15889
15932
|
groups?: Maybe<Array<JiraServiceManagementRequestTypeTemplateGroup>>;
|
|
15890
15933
|
requestTypeIcon?: Maybe<JiraServiceManagementRequestTypeTemplateRequestTypeIcon>;
|
|
15934
|
+
requestTypePortalDescription?: Maybe<Scalars['String']>;
|
|
15891
15935
|
previewImageUrl?: Maybe<Scalars['URL']>;
|
|
15892
15936
|
};
|
|
15893
15937
|
export declare type JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies = {
|