@forge/cli-shared 2.1.6-next.1 → 2.1.6-next.2

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
+ ## 2.1.6-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [af1473c]
8
+ - @forge/manifest@2.5.1-next.1
9
+
3
10
  ## 2.1.6-next.1
4
11
 
5
12
  ### Patch Changes
@@ -7640,12 +7640,13 @@ export declare type JiraServiceManagementActiveApproval = Node & {
7640
7640
  name?: Maybe<Scalars['String']>;
7641
7641
  finalDecision?: Maybe<JiraServiceManagementApprovalDecisionResponseType>;
7642
7642
  approvers?: Maybe<JiraServiceManagementApproverConnection>;
7643
+ excludedApprovers?: Maybe<JiraUserConnection>;
7643
7644
  canAnswerApproval?: Maybe<Scalars['Boolean']>;
7644
7645
  decisions?: Maybe<JiraServiceManagementDecisionConnection>;
7645
7646
  createdDate?: Maybe<Scalars['DateTime']>;
7646
- configuration?: Maybe<JiraServiceManagementApprovalConfiguration>;
7647
+ configurations?: Maybe<Array<Maybe<JiraServiceManagementApprovalConfiguration>>>;
7647
7648
  status?: Maybe<JiraServiceManagementApprovalStatus>;
7648
- approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipal>;
7649
+ approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
7649
7650
  pendingApprovalCount?: Maybe<Scalars['Int']>;
7650
7651
  };
7651
7652
  export declare type JiraServiceManagementApprovalCondition = {
@@ -7655,7 +7656,7 @@ export declare type JiraServiceManagementApprovalCondition = {
7655
7656
  };
7656
7657
  export declare type JiraServiceManagementApprovalConfiguration = {
7657
7658
  __typename?: 'JiraServiceManagementApprovalConfiguration';
7658
- approversConfiguration?: Maybe<JiraServiceManagementApproversConfiguration>;
7659
+ approversConfigurations?: Maybe<Array<Maybe<JiraServiceManagementApproversConfiguration>>>;
7659
7660
  condition?: Maybe<JiraServiceManagementApprovalCondition>;
7660
7661
  };
7661
7662
  export declare enum JiraServiceManagementApprovalDecisionResponseType {
@@ -7687,7 +7688,7 @@ export declare type JiraServiceManagementApprovalStatus = {
7687
7688
  __typename?: 'JiraServiceManagementApprovalStatus';
7688
7689
  id?: Maybe<Scalars['String']>;
7689
7690
  name?: Maybe<Scalars['String']>;
7690
- categoryId?: Maybe<Scalars['Long']>;
7691
+ categoryId?: Maybe<Scalars['String']>;
7691
7692
  };
7692
7693
  export declare type JiraServiceManagementApprover = {
7693
7694
  __typename?: 'JiraServiceManagementApprover';
@@ -7705,12 +7706,23 @@ export declare type JiraServiceManagementApproverEdge = {
7705
7706
  node?: Maybe<JiraServiceManagementApprover>;
7706
7707
  cursor: Scalars['String'];
7707
7708
  };
7708
- export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal | JiraServiceManagementUserApproverPrincipalConnection | JiraServiceManagementGroupApproverPrincipals;
7709
+ export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal | JiraServiceManagementUserApproverPrincipalConnection | JiraServiceManagementGroupApproverPrincipalConnection;
7710
+ export declare type JiraServiceManagementApproverPrincipalConnection = {
7711
+ __typename?: 'JiraServiceManagementApproverPrincipalConnection';
7712
+ totalCount?: Maybe<Scalars['Int']>;
7713
+ pageInfo: PageInfo;
7714
+ edges?: Maybe<Array<Maybe<JiraServiceManagementApproverPrincipalEdge>>>;
7715
+ };
7716
+ export declare type JiraServiceManagementApproverPrincipalEdge = {
7717
+ __typename?: 'JiraServiceManagementApproverPrincipalEdge';
7718
+ node?: Maybe<JiraServiceManagementApproverPrincipal>;
7719
+ cursor: Scalars['String'];
7720
+ };
7709
7721
  export declare type JiraServiceManagementApproversConfiguration = {
7710
7722
  __typename?: 'JiraServiceManagementApproversConfiguration';
7711
7723
  type?: Maybe<Scalars['String']>;
7712
- customFieldName?: Maybe<Scalars['String']>;
7713
- customFieldId?: Maybe<Scalars['String']>;
7724
+ fieldName?: Maybe<Scalars['String']>;
7725
+ fieldId?: Maybe<Scalars['String']>;
7714
7726
  };
7715
7727
  export declare type JiraServiceManagementAttachment = JiraAttachment & Node & {
7716
7728
  __typename?: 'JiraServiceManagementAttachment';
@@ -7797,14 +7809,21 @@ export declare type JiraServiceManagementFeedback = {
7797
7809
  };
7798
7810
  export declare type JiraServiceManagementGroupApproverPrincipal = {
7799
7811
  __typename?: 'JiraServiceManagementGroupApproverPrincipal';
7800
- groupApproverPrincipalId?: Maybe<Scalars['String']>;
7812
+ groupId?: Maybe<Scalars['String']>;
7801
7813
  name?: Maybe<Scalars['String']>;
7802
7814
  memberCount?: Maybe<Scalars['Int']>;
7803
7815
  approvedCount?: Maybe<Scalars['Int']>;
7804
7816
  };
7805
- export declare type JiraServiceManagementGroupApproverPrincipals = {
7806
- __typename?: 'JiraServiceManagementGroupApproverPrincipals';
7807
- jiraServiceManagementGroupApproverPrincipals?: Maybe<Array<Maybe<JiraServiceManagementGroupApproverPrincipal>>>;
7817
+ export declare type JiraServiceManagementGroupApproverPrincipalConnection = {
7818
+ __typename?: 'JiraServiceManagementGroupApproverPrincipalConnection';
7819
+ totalCount?: Maybe<Scalars['Int']>;
7820
+ pageInfo: PageInfo;
7821
+ edges?: Maybe<Array<Maybe<JiraServiceManagementGroupApproverPrincipalEdge>>>;
7822
+ };
7823
+ export declare type JiraServiceManagementGroupApproverPrincipalEdge = {
7824
+ __typename?: 'JiraServiceManagementGroupApproverPrincipalEdge';
7825
+ node?: Maybe<JiraServiceManagementGroupApproverPrincipal>;
7826
+ cursor: Scalars['String'];
7808
7827
  };
7809
7828
  export declare type JiraServiceManagementIncident = {
7810
7829
  __typename?: 'JiraServiceManagementIncident';