@forge/cli-shared 3.23.2-next.3 → 3.23.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,21 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.23.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 1548c5b: Don't silently fail when ngrok config path isn't set
8
+ - f26e69c: Bumping dependencies via Renovate:
9
+
10
+ - @sentry/node
11
+
12
+ - e3f15f1: Bumping dependencies via Renovate:
13
+
14
+ - @sentry/node
15
+
16
+ - Updated dependencies [0166203]
17
+ - @forge/manifest@5.5.2
18
+
3
19
  ## 3.23.2-next.3
4
20
 
5
21
  ### Patch Changes
@@ -10289,7 +10289,8 @@ export declare type EcosystemAppsInstalledInContextsOrderBy = {
10289
10289
  sortKey: EcosystemAppsInstalledInContextsSortKey;
10290
10290
  };
10291
10291
  export declare enum EcosystemAppsInstalledInContextsSortKey {
10292
- Name = "NAME"
10292
+ Name = "NAME",
10293
+ RelatedApps = "RELATED_APPS"
10293
10294
  }
10294
10295
  export declare type EcosystemConnectApp = {
10295
10296
  __typename?: 'EcosystemConnectApp';
@@ -15687,23 +15688,31 @@ export declare type GraphStoreProjectAssociatedPrRelationshipArgs = {
15687
15688
  };
15688
15689
  export declare type GraphStoreProjectAssociatedRepoArgs = {
15689
15690
  after?: InputMaybe<Scalars['String']['input']>;
15691
+ filter?: InputMaybe<GraphStoreProjectAssociatedRepoFilterInput>;
15690
15692
  first?: InputMaybe<Scalars['Int']['input']>;
15691
15693
  id: Scalars['ID']['input'];
15694
+ sort?: InputMaybe<GraphStoreProjectAssociatedRepoSortInput>;
15692
15695
  };
15693
15696
  export declare type GraphStoreProjectAssociatedRepoInverseArgs = {
15694
15697
  after?: InputMaybe<Scalars['String']['input']>;
15698
+ filter?: InputMaybe<GraphStoreProjectAssociatedRepoFilterInput>;
15695
15699
  first?: InputMaybe<Scalars['Int']['input']>;
15696
15700
  id: Scalars['ID']['input'];
15701
+ sort?: InputMaybe<GraphStoreProjectAssociatedRepoSortInput>;
15697
15702
  };
15698
15703
  export declare type GraphStoreProjectAssociatedRepoInverseRelationshipArgs = {
15699
15704
  after?: InputMaybe<Scalars['String']['input']>;
15705
+ filter?: InputMaybe<GraphStoreProjectAssociatedRepoFilterInput>;
15700
15706
  first?: InputMaybe<Scalars['Int']['input']>;
15701
15707
  id: Scalars['ID']['input'];
15708
+ sort?: InputMaybe<GraphStoreProjectAssociatedRepoSortInput>;
15702
15709
  };
15703
15710
  export declare type GraphStoreProjectAssociatedRepoRelationshipArgs = {
15704
15711
  after?: InputMaybe<Scalars['String']['input']>;
15712
+ filter?: InputMaybe<GraphStoreProjectAssociatedRepoFilterInput>;
15705
15713
  first?: InputMaybe<Scalars['Int']['input']>;
15706
15714
  id: Scalars['ID']['input'];
15715
+ sort?: InputMaybe<GraphStoreProjectAssociatedRepoSortInput>;
15707
15716
  };
15708
15717
  export declare type GraphStoreProjectAssociatedServiceInverseArgs = {
15709
15718
  after?: InputMaybe<Scalars['String']['input']>;
@@ -17054,6 +17063,7 @@ export declare type GraphStoreCreateVulnerabilityAssociatedIssueRelationshipInpu
17054
17063
  };
17055
17064
  export declare type GraphStoreCreateVulnerabilityAssociatedIssueRelationshipSubjectMetadataInput = {
17056
17065
  container?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueContainerInput>;
17066
+ introducedDate?: InputMaybe<Scalars['DateTime']['input']>;
17057
17067
  severity?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilitySeverityInput>;
17058
17068
  status?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityStatusInput>;
17059
17069
  type?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTypeInput>;
@@ -19914,6 +19924,7 @@ export declare type GraphStoreFullSprintAssociatedVulnerabilityRelationshipMetad
19914
19924
  };
19915
19925
  export declare type GraphStoreFullSprintAssociatedVulnerabilityRelationshipObjectMetadataOutput = {
19916
19926
  __typename?: 'GraphStoreFullSprintAssociatedVulnerabilityRelationshipObjectMetadataOutput';
19927
+ introducedDate?: Maybe<Scalars['Long']['output']>;
19917
19928
  severity?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityVulnerabilitySeverityOutput>;
19918
19929
  status?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityVulnerabilityStatusOutput>;
19919
19930
  };
@@ -20557,6 +20568,7 @@ export declare type GraphStoreFullVulnerabilityAssociatedIssueNode = Node & {
20557
20568
  export declare type GraphStoreFullVulnerabilityAssociatedIssueRelationshipSubjectMetadataOutput = {
20558
20569
  __typename?: 'GraphStoreFullVulnerabilityAssociatedIssueRelationshipSubjectMetadataOutput';
20559
20570
  container?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueContainerOutput>;
20571
+ introducedDate?: Maybe<Scalars['Long']['output']>;
20560
20572
  severity?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueVulnerabilitySeverityOutput>;
20561
20573
  status?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityStatusOutput>;
20562
20574
  type?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeOutput>;
@@ -20953,6 +20965,24 @@ export declare type GraphStoreProjectAssociatedPrSortInput = {
20953
20965
  to_status?: InputMaybe<GraphStoreSortInput>;
20954
20966
  to_taskCount?: InputMaybe<GraphStoreSortInput>;
20955
20967
  };
20968
+ export declare type GraphStoreProjectAssociatedRepoConditionalFilterInput = {
20969
+ createdAt?: InputMaybe<GraphStoreDateFilterInput>;
20970
+ fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
20971
+ lastModified?: InputMaybe<GraphStoreDateFilterInput>;
20972
+ toAti?: InputMaybe<GraphStoreAtiFilterInput>;
20973
+ to_providerAri?: InputMaybe<GraphStoreAriFilterInput>;
20974
+ };
20975
+ export declare type GraphStoreProjectAssociatedRepoFilterInput = {
20976
+ and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedRepoConditionalFilterInput>>>;
20977
+ or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedRepoConditionalFilterInput>>>;
20978
+ };
20979
+ export declare type GraphStoreProjectAssociatedRepoSortInput = {
20980
+ createdAt?: InputMaybe<GraphStoreSortInput>;
20981
+ fromAti?: InputMaybe<GraphStoreSortInput>;
20982
+ lastModified?: InputMaybe<GraphStoreSortInput>;
20983
+ toAti?: InputMaybe<GraphStoreSortInput>;
20984
+ to_providerAri?: InputMaybe<GraphStoreSortInput>;
20985
+ };
20956
20986
  export declare type GraphStoreProjectAssociatedVulnerabilityConditionalFilterInput = {
20957
20987
  createdAt?: InputMaybe<GraphStoreDateFilterInput>;
20958
20988
  fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
@@ -23148,6 +23178,7 @@ export declare type GraphStoreSprintAssociatedVulnerabilityConditionalFilterInpu
23148
23178
  relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
23149
23179
  relationship_statusCategory?: InputMaybe<GraphStoreSprintAssociatedVulnerabilityStatusCategoryFilterInput>;
23150
23180
  toAti?: InputMaybe<GraphStoreAtiFilterInput>;
23181
+ to_introducedDate?: InputMaybe<GraphStoreLongFilterInput>;
23151
23182
  to_severity?: InputMaybe<GraphStoreSprintAssociatedVulnerabilityVulnerabilitySeverityFilterInput>;
23152
23183
  to_status?: InputMaybe<GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatusFilterInput>;
23153
23184
  };
@@ -23163,6 +23194,7 @@ export declare type GraphStoreSprintAssociatedVulnerabilitySortInput = {
23163
23194
  relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
23164
23195
  relationship_statusCategory?: InputMaybe<GraphStoreSortInput>;
23165
23196
  toAti?: InputMaybe<GraphStoreSortInput>;
23197
+ to_introducedDate?: InputMaybe<GraphStoreSortInput>;
23166
23198
  to_severity?: InputMaybe<GraphStoreSortInput>;
23167
23199
  to_status?: InputMaybe<GraphStoreSortInput>;
23168
23200
  };
@@ -28458,6 +28490,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
28458
28490
  JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
28459
28491
  JiraMultipleSelectField?: InputMaybe<Array<JiraUpdateMultipleSelectFieldInput>>;
28460
28492
  JiraMultipleVersionPickerField?: InputMaybe<Array<JiraUpdateMultipleVersionPickerFieldInput>>;
28493
+ JiraNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
28461
28494
  JiraParentField?: InputMaybe<Array<JiraUpdateParentFieldInput>>;
28462
28495
  JiraPriorityField?: InputMaybe<Array<JiraUpdatePriorityFieldInput>>;
28463
28496
  JiraRadioSelectField?: InputMaybe<Array<JiraUpdateRadioSelectFieldInput>>;