@forge/cli-shared 6.8.0-next.21 → 6.8.0-next.22

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,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.8.0-next.22
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b51be39]
8
+ - @forge/manifest@8.9.0-next.10
9
+
3
10
  ## 6.8.0-next.21
4
11
 
5
12
  ### Patch Changes
@@ -58702,6 +58702,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
58702
58702
  lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
58703
58703
  legacyContentPanels?: Maybe<JiraIssueContentPanelConnection>;
58704
58704
  lifecycleState?: Maybe<JiraIssueLifecycleState>;
58705
+ matchesIssueSearch?: Maybe<Scalars['Boolean']['output']>;
58705
58706
  mediaReadToken?: Maybe<JiraMediaReadToken>;
58706
58707
  mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
58707
58708
  mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
@@ -58882,6 +58883,9 @@ export declare type JiraIssueLegacyContentPanelsArgs = {
58882
58883
  first?: InputMaybe<Scalars['Int']['input']>;
58883
58884
  last?: InputMaybe<Scalars['Int']['input']>;
58884
58885
  };
58886
+ export declare type JiraIssueMatchesIssueSearchArgs = {
58887
+ issueSearchInput: JiraIssueSearchInput;
58888
+ };
58885
58889
  export declare type JiraIssueMediaReadTokenArgs = {
58886
58890
  maxTokenLength: Scalars['Int']['input'];
58887
58891
  };
@@ -59416,6 +59420,7 @@ export declare type JiraIssueFieldsInput = {
59416
59420
  singleSelectUserPickerFields?: InputMaybe<Array<JiraSingleSelectUserPickerFieldInput>>;
59417
59421
  singleVersionPickerFields?: InputMaybe<Array<JiraSingleVersionPickerFieldInput>>;
59418
59422
  sprintsField?: InputMaybe<JiraSprintFieldInput>;
59423
+ status?: InputMaybe<JiraStatusInput>;
59419
59424
  teamFields?: InputMaybe<Array<JiraTeamFieldInput>>;
59420
59425
  timeTrackingField?: InputMaybe<JiraTimeTrackingFieldInput>;
59421
59426
  urlFields?: InputMaybe<Array<JiraUrlFieldInput>>;
@@ -68523,6 +68528,9 @@ export declare type JiraStatusFieldPayload = Payload & {
68523
68528
  field?: Maybe<JiraStatusField>;
68524
68529
  success: Scalars['Boolean']['output'];
68525
68530
  };
68531
+ export declare type JiraStatusInput = {
68532
+ statusId: Scalars['ID']['input'];
68533
+ };
68526
68534
  export declare type JiraStoryPoint = {
68527
68535
  __typename?: 'JiraStoryPoint';
68528
68536
  value: Scalars['Float']['output'];