@forge/cli-shared 3.17.1-next.7 → 3.17.1-next.8

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,13 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.17.1-next.8
4
+
5
+ ### Patch Changes
6
+
7
+ - a777103: Minor refactoring
8
+ - Updated dependencies [161031c]
9
+ - @forge/manifest@4.19.0-next.4
10
+
3
11
  ## 3.17.1-next.7
4
12
 
5
13
  ### Patch Changes
@@ -9,7 +9,7 @@ class ConfigFileSectionReader {
9
9
  }
10
10
  async readConfigSection(key, schema) {
11
11
  const config = await this.configReader.readConfig();
12
- const keyedSchema = t.interface({ [key]: schema });
12
+ const keyedSchema = t.type({ [key]: schema });
13
13
  if (keyedSchema.is(config)) {
14
14
  return config[key];
15
15
  }
@@ -10378,11 +10378,15 @@ export type HelpLayout = Node & {
10378
10378
  __typename?: 'HelpLayout';
10379
10379
  id: Scalars['ID'];
10380
10380
  sections?: Maybe<HelpLayoutSectionConnection>;
10381
+ mediaConfig?: Maybe<HelpLayoutMediaConfig>;
10381
10382
  };
10382
10383
  export type HelpLayoutSectionsArgs = {
10383
10384
  first?: Maybe<Scalars['Int']>;
10384
10385
  after?: Maybe<Scalars['String']>;
10385
10386
  };
10387
+ export type HelpLayoutMediaConfigArgs = {
10388
+ parentAri: Scalars['ID'];
10389
+ };
10386
10390
  export type HelpLayoutAtomicElement = HelpLayoutImageAtomicElement | HelpLayoutHeadingAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement;
10387
10391
  export type HelpLayoutAtomicElementInput = {
10388
10392
  elementTypeKey: HelpLayoutAtomicElementKey;
@@ -10475,7 +10479,7 @@ export type HelpLayoutHeadingAtomicElementConfig = {
10475
10479
  export type HelpLayoutHeadingConfigInput = {
10476
10480
  text: Scalars['String'];
10477
10481
  headingType: HelpLayoutHeadingType;
10478
- visualConfig: Scalars['String'];
10482
+ visualConfig?: Maybe<Scalars['String']>;
10479
10483
  };
10480
10484
  export declare enum HelpLayoutHeadingType {
10481
10485
  H1 = "h1",
@@ -10514,7 +10518,7 @@ export type HelpLayoutImageConfigInput = {
10514
10518
  fit?: Maybe<Scalars['String']>;
10515
10519
  position?: Maybe<Scalars['String']>;
10516
10520
  scale?: Maybe<Scalars['Int']>;
10517
- visualConfig: Scalars['String'];
10521
+ visualConfig?: Maybe<Scalars['String']>;
10518
10522
  };
10519
10523
  export type HelpLayoutLinkCardCompositeElement = HelpLayoutVisualEntity & HelpLayoutCompositeElement & Node & {
10520
10524
  __typename?: 'HelpLayoutLinkCardCompositeElement';
@@ -10527,7 +10531,7 @@ export type HelpLayoutLinkCardCompositeElement = HelpLayoutVisualEntity & HelpLa
10527
10531
  export type HelpLayoutLinkCardInput = {
10528
10532
  children: Array<HelpLayoutAtomicElementInput>;
10529
10533
  type: HelpLayoutCompositeElementKey;
10530
- visualConfig: Scalars['String'];
10534
+ visualConfig?: Maybe<Scalars['String']>;
10531
10535
  config: Scalars['String'];
10532
10536
  };
10533
10537
  export type HelpLayoutMediaConfig = {
@@ -10565,7 +10569,7 @@ export type HelpLayoutParagraphAtomicElementConfig = {
10565
10569
  };
10566
10570
  export type HelpLayoutParagraphConfigInput = {
10567
10571
  adf: Scalars['String'];
10568
- visualConfig: Scalars['String'];
10572
+ visualConfig?: Maybe<Scalars['String']>;
10569
10573
  };
10570
10574
  export type HelpLayoutQueryApi = {
10571
10575
  __typename?: 'HelpLayoutQueryApi';
@@ -10589,7 +10593,7 @@ export type HelpLayoutSearchAtomicElementConfig = {
10589
10593
  };
10590
10594
  export type HelpLayoutSearchConfigInput = {
10591
10595
  placeHolderText: Scalars['String'];
10592
- visualConfig: Scalars['String'];
10596
+ visualConfig?: Maybe<Scalars['String']>;
10593
10597
  };
10594
10598
  export type HelpLayoutSection = Node & {
10595
10599
  __typename?: 'HelpLayoutSection';
@@ -15895,6 +15899,7 @@ export type JiraProject = Node & {
15895
15899
  devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
15896
15900
  devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
15897
15901
  linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
15902
+ totalLinkedSecurityVulnerabilityCount?: Maybe<Scalars['Int']>;
15898
15903
  totalLinkedSecurityContainerCount?: Maybe<Scalars['Int']>;
15899
15904
  linkedSecurityVulnerabilities?: Maybe<AriGraphRelationshipConnection>;
15900
15905
  linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
@@ -16451,6 +16456,7 @@ export type JiraQuery = {
16451
16456
  labelsFieldOptions?: Maybe<JiraLabelConnection>;
16452
16457
  jqlBuilder?: Maybe<JiraJqlBuilder>;
16453
16458
  fields?: Maybe<JiraJqlFieldConnectionResult>;
16459
+ isIssueViewEditorAiEnabled?: Maybe<Scalars['Boolean']>;
16454
16460
  issueNavigatorUserJQLHistory?: Maybe<JiraJqlHistoryConnection>;
16455
16461
  devOps?: Maybe<JiraDevOpsQuery>;
16456
16462
  bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
@@ -16834,6 +16840,10 @@ export type JiraQueryFieldsArgs = {
16834
16840
  after?: Maybe<Scalars['String']>;
16835
16841
  viewContext?: Maybe<JiraJqlViewContext>;
16836
16842
  };
16843
+ export type JiraQueryIsIssueViewEditorAiEnabledArgs = {
16844
+ jiraProjectType: JiraProjectType;
16845
+ cloudId: Scalars['ID'];
16846
+ };
16837
16847
  export type JiraQueryIssueNavigatorUserJqlHistoryArgs = {
16838
16848
  cloudId: Scalars['ID'];
16839
16849
  first?: Maybe<Scalars['Int']>;