@forge/cli-shared 3.14.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
@@ -1,5 +1,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.14.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [0d528ddd]
8
+ - @forge/manifest@4.15.1-next.1
9
+
10
+ ## 3.14.1-next.0
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [270b46da]
15
+ - @forge/manifest@4.15.1-next.0
16
+
3
17
  ## 3.14.0
4
18
 
5
19
  ### Minor Changes
@@ -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<Maybe<HelpLayoutElementTypes>>>;
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'];
@@ -11740,6 +11778,7 @@ export declare type JiraIssue = Node & {
11740
11778
  webUrl?: Maybe<Scalars['URL']>;
11741
11779
  lifecycleState?: Maybe<JiraIssueLifecycleState>;
11742
11780
  isArchived?: Maybe<Scalars['Boolean']>;
11781
+ isResolved?: Maybe<Scalars['Boolean']>;
11743
11782
  fields?: Maybe<JiraIssueFieldConnection>;
11744
11783
  fieldsById?: Maybe<JiraIssueFieldConnection>;
11745
11784
  comments?: Maybe<JiraCommentConnection>;
@@ -13257,6 +13296,7 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
13257
13296
  };
13258
13297
  export declare type JiraMutation = {
13259
13298
  __typename?: 'JiraMutation';
13299
+ createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
13260
13300
  setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
13261
13301
  createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
13262
13302
  addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
@@ -13310,11 +13350,18 @@ export declare type JiraMutation = {
13310
13350
  addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
13311
13351
  removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
13312
13352
  updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
13353
+ updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
13354
+ addJiraVersionApprover?: Maybe<JiraVersionAddApproverPayload>;
13355
+ deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
13313
13356
  devOps?: Maybe<JiraDevOpsMutation>;
13314
13357
  createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
13315
13358
  updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
13316
13359
  deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
13317
13360
  };
13361
+ export declare type JiraMutationCreateApproverListFieldArgs = {
13362
+ cloudId: Scalars['ID'];
13363
+ input: JiraCreateApproverListFieldInput;
13364
+ };
13318
13365
  export declare type JiraMutationSetApplicationPropertiesArgs = {
13319
13366
  cloudId: Scalars['ID'];
13320
13367
  input: Array<JiraSetApplicationPropertyInput>;
@@ -13477,6 +13524,15 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
13477
13524
  cloudId: Scalars['ID'];
13478
13525
  input: JiraIssueHierarchyConfigurationMutationInput;
13479
13526
  };
13527
+ export declare type JiraMutationUpdateJiraVersionApproverDeclineReasonArgs = {
13528
+ input: JiraVersionUpdateApproverDeclineReasonInput;
13529
+ };
13530
+ export declare type JiraMutationAddJiraVersionApproverArgs = {
13531
+ input: JiraVersionAddApproverInput;
13532
+ };
13533
+ export declare type JiraMutationDeleteJiraVersionApproverArgs = {
13534
+ id: Scalars['ID'];
13535
+ };
13480
13536
  export declare type JiraMutationCreateProjectShortcutArgs = {
13481
13537
  input: JiraCreateShortcutInput;
13482
13538
  };
@@ -15875,6 +15931,7 @@ export declare type JiraServiceManagementRequestTypeTemplate = {
15875
15931
  description?: Maybe<Scalars['String']>;
15876
15932
  groups?: Maybe<Array<JiraServiceManagementRequestTypeTemplateGroup>>;
15877
15933
  requestTypeIcon?: Maybe<JiraServiceManagementRequestTypeTemplateRequestTypeIcon>;
15934
+ requestTypePortalDescription?: Maybe<Scalars['String']>;
15878
15935
  previewImageUrl?: Maybe<Scalars['URL']>;
15879
15936
  };
15880
15937
  export declare type JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies = {
@@ -16915,6 +16972,16 @@ export declare type JiraVersionApproversArgs = {
16915
16972
  last?: Maybe<Scalars['Int']>;
16916
16973
  before?: Maybe<Scalars['String']>;
16917
16974
  };
16975
+ export declare type JiraVersionAddApproverInput = {
16976
+ versionId: Scalars['ID'];
16977
+ approverAccountId: Scalars['ID'];
16978
+ };
16979
+ export declare type JiraVersionAddApproverPayload = Payload & {
16980
+ __typename?: 'JiraVersionAddApproverPayload';
16981
+ success: Scalars['Boolean'];
16982
+ errors?: Maybe<Array<MutationError>>;
16983
+ approverEdge?: Maybe<JiraVersionApproverEdge>;
16984
+ };
16918
16985
  export declare type JiraVersionApprover = Node & {
16919
16986
  __typename?: 'JiraVersionApprover';
16920
16987
  id: Scalars['ID'];
@@ -16971,6 +17038,12 @@ export declare type JiraVersionCreateMutationInput = {
16971
17038
  releaseDate?: Maybe<Scalars['DateTime']>;
16972
17039
  driver?: Maybe<Scalars['ID']>;
16973
17040
  };
17041
+ export declare type JiraVersionDeleteApproverPayload = Payload & {
17042
+ __typename?: 'JiraVersionDeleteApproverPayload';
17043
+ success: Scalars['Boolean'];
17044
+ errors?: Maybe<Array<MutationError>>;
17045
+ deletedApproverId?: Maybe<Scalars['ID']>;
17046
+ };
16974
17047
  export declare type JiraVersionDetailPage = {
16975
17048
  __typename?: 'JiraVersionDetailPage';
16976
17049
  warningConfig?: Maybe<JiraVersionWarningConfig>;
@@ -17188,6 +17261,16 @@ export declare type JiraVersionSuggestedApproverEdge = {
17188
17261
  node?: Maybe<User>;
17189
17262
  cursor: Scalars['String'];
17190
17263
  };
17264
+ export declare type JiraVersionUpdateApproverDeclineReasonInput = {
17265
+ approverId: Scalars['ID'];
17266
+ reason?: Maybe<Scalars['String']>;
17267
+ };
17268
+ export declare type JiraVersionUpdateApproverDeclineReasonPayload = Payload & {
17269
+ __typename?: 'JiraVersionUpdateApproverDeclineReasonPayload';
17270
+ success: Scalars['Boolean'];
17271
+ errors?: Maybe<Array<MutationError>>;
17272
+ approver?: Maybe<JiraVersionApprover>;
17273
+ };
17191
17274
  export declare type JiraVersionUpdateMutationInput = {
17192
17275
  id: Scalars['ID'];
17193
17276
  name: Scalars['String'];