@forge/cli-shared 3.1.1-next.4 → 3.2.0-next.0

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,22 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.2.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 7a27bcd: Display an error when prompting if not run in a terminal
8
+
9
+ ## 3.1.1
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [0871a3b]
14
+ - Updated dependencies [1c51c99]
15
+ - Updated dependencies [f8d567a]
16
+ - Updated dependencies [47a47a4]
17
+ - Updated dependencies [aa3a70e]
18
+ - @forge/manifest@4.3.0
19
+
3
20
  ## 3.1.1-next.4
4
21
 
5
22
  ### Patch Changes
@@ -6204,10 +6204,12 @@ export declare type DevOpsTool = Node & {
6204
6204
  group: DevOpsToolGroup;
6205
6205
  category: DevOpsToolCategory;
6206
6206
  supportsContainers: Scalars['Boolean'];
6207
+ containerRelationshipType?: Maybe<Scalars['ID']>;
6207
6208
  recommended: Scalars['Boolean'];
6208
6209
  integration?: Maybe<DevOpsToolIntegration>;
6209
6210
  namespaces?: Maybe<DevOpsToolNamespaceConnection>;
6210
6211
  auth?: Maybe<DevOpsToolAuth>;
6212
+ containerRelationships?: Maybe<AriGraphRelationshipConnection>;
6211
6213
  jiraProjectRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
6212
6214
  };
6213
6215
  export declare type DevOpsToolNamespacesArgs = {
@@ -6215,6 +6217,13 @@ export declare type DevOpsToolNamespacesArgs = {
6215
6217
  first?: Maybe<Scalars['Int']>;
6216
6218
  after?: Maybe<Scalars['String']>;
6217
6219
  };
6220
+ export declare type DevOpsToolContainerRelationshipsArgs = {
6221
+ jiraProjectId: Scalars['ID'];
6222
+ filter?: Maybe<AriGraphRelationshipsFilter>;
6223
+ first?: Maybe<Scalars['Int']>;
6224
+ after?: Maybe<Scalars['String']>;
6225
+ sort?: Maybe<AriGraphRelationshipsSort>;
6226
+ };
6218
6227
  export declare type DevOpsToolJiraProjectRelationshipsArgs = {
6219
6228
  jiraProjectId?: Maybe<Scalars['ID']>;
6220
6229
  first?: Maybe<Scalars['Int']>;
@@ -6702,6 +6711,7 @@ export declare type Extension = {
6702
6711
  appOwner?: Maybe<User>;
6703
6712
  appVersion?: Maybe<Scalars['String']>;
6704
6713
  properties: Scalars['JSON'];
6714
+ scopes: Array<Scalars['String']>;
6705
6715
  principal?: Maybe<AppPrincipal>;
6706
6716
  migrationKey?: Maybe<Scalars['String']>;
6707
6717
  license?: Maybe<AppInstallationLicense>;
@@ -7099,7 +7109,9 @@ export declare type FortifiedMetricsIntervalRange = {
7099
7109
  export declare type FortifiedMetricsQuery = {
7100
7110
  __typename?: 'FortifiedMetricsQuery';
7101
7111
  appKey: Scalars['ID'];
7112
+ appAvailability?: Maybe<FortifiedSuccessRateMetricQuery>;
7102
7113
  installationCallbacks?: Maybe<FortifiedSuccessRateMetricQuery>;
7114
+ webhooks?: Maybe<FortifiedSuccessRateMetricQuery>;
7103
7115
  };
7104
7116
  export declare type FortifiedMetricsQueryFilters = {
7105
7117
  interval: FortifiedMetricsIntervalInput;
@@ -8300,6 +8312,7 @@ export declare type JiraCmdbObjectAttributeValue = {
8300
8312
  user?: Maybe<User>;
8301
8313
  group?: Maybe<JiraGroup>;
8302
8314
  status?: Maybe<JiraCmdbStatusType>;
8315
+ project?: Maybe<JiraProject>;
8303
8316
  value?: Maybe<Scalars['String']>;
8304
8317
  displayValue?: Maybe<Scalars['String']>;
8305
8318
  searchValue?: Maybe<Scalars['String']>;
@@ -13152,6 +13165,7 @@ export declare type JiraVersion = Node & {
13152
13165
  canAddAndRemoveIssues?: Maybe<Scalars['Boolean']>;
13153
13166
  releaseNotesOptionsIssueTypes?: Maybe<JiraIssueTypeConnection>;
13154
13167
  releaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
13168
+ nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
13155
13169
  releaseNotes?: Maybe<JiraAdf>;
13156
13170
  releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
13157
13171
  };
@@ -13181,6 +13195,13 @@ export declare type JiraVersionReleaseNotesOptionsIssueFieldsArgs = {
13181
13195
  before?: Maybe<Scalars['String']>;
13182
13196
  searchString?: Maybe<Scalars['String']>;
13183
13197
  };
13198
+ export declare type JiraVersionNativeReleaseNotesOptionsIssueFieldsArgs = {
13199
+ first?: Maybe<Scalars['Int']>;
13200
+ after?: Maybe<Scalars['String']>;
13201
+ last?: Maybe<Scalars['Int']>;
13202
+ before?: Maybe<Scalars['String']>;
13203
+ searchString?: Maybe<Scalars['String']>;
13204
+ };
13184
13205
  export declare type JiraVersionReleaseNotesArgs = {
13185
13206
  releaseNoteConfiguration?: Maybe<JiraVersionReleaseNotesConfigurationInput>;
13186
13207
  };
@@ -13448,6 +13469,17 @@ export declare type MarketplaceAppCategory = {
13448
13469
  __typename?: 'MarketplaceAppCategory';
13449
13470
  name: Scalars['String'];
13450
13471
  };
13472
+ export declare type MarketplaceAppConnection = {
13473
+ __typename?: 'MarketplaceAppConnection';
13474
+ edges?: Maybe<Array<Maybe<MarketplaceAppConnectionEdge>>>;
13475
+ pageInfo: PageInfo;
13476
+ totalCount: Scalars['Int'];
13477
+ };
13478
+ export declare type MarketplaceAppConnectionEdge = {
13479
+ __typename?: 'MarketplaceAppConnectionEdge';
13480
+ cursor: Scalars['String'];
13481
+ node?: Maybe<MarketplaceApp>;
13482
+ };
13451
13483
  export declare type MarketplaceAppDeployment = {
13452
13484
  compatibleProducts: Array<CompatibleAtlassianProduct>;
13453
13485
  };
@@ -13539,6 +13571,10 @@ export declare type MarketplaceAppWatchersInfo = {
13539
13571
  isUserWatchingApp: Scalars['Boolean'];
13540
13572
  watchersCount: Scalars['Int'];
13541
13573
  };
13574
+ export declare type MarketplaceAppsFilter = {
13575
+ productHostingOptions?: Maybe<Array<AtlassianProductHostingType>>;
13576
+ cloudFortifiedStatus?: Maybe<Array<MarketplaceProgramStatus>>;
13577
+ };
13542
13578
  export declare enum MarketplaceBillingCycle {
13543
13579
  Annual = "ANNUAL",
13544
13580
  Monthly = "MONTHLY"
@@ -15893,6 +15929,7 @@ export declare type Query = {
15893
15929
  marketplaceApp?: Maybe<MarketplaceApp>;
15894
15930
  marketplaceAppByKey?: Maybe<MarketplaceApp>;
15895
15931
  marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
15932
+ myMarketplaceApps?: Maybe<MarketplaceAppConnection>;
15896
15933
  marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
15897
15934
  marketplaceUser?: Maybe<MarketplaceUser>;
15898
15935
  compass?: Maybe<CompassCatalogQueryApi>;
@@ -16138,6 +16175,11 @@ export declare type QueryMarketplaceAppByKeyArgs = {
16138
16175
  export declare type QueryMarketplaceAppByCloudAppIdArgs = {
16139
16176
  cloudAppId: Scalars['ID'];
16140
16177
  };
16178
+ export declare type QueryMyMarketplaceAppsArgs = {
16179
+ filter?: Maybe<MarketplaceAppsFilter>;
16180
+ first?: Maybe<Scalars['Int']>;
16181
+ after?: Maybe<Scalars['String']>;
16182
+ };
16141
16183
  export declare type QueryMarketplacePricingPlanArgs = {
16142
16184
  appId: Scalars['ID'];
16143
16185
  hostingType: AtlassianProductHostingType;
@@ -17577,18 +17619,23 @@ export declare enum ShepherdAlertTemplateType {
17577
17619
  CreatedPolicy = "CREATED_POLICY",
17578
17620
  CreatedSamlConfig = "CREATED_SAML_CONFIG",
17579
17621
  CreatedTunnel = "CREATED_TUNNEL",
17622
+ CreateUserProvisioning = "CREATE_USER_PROVISIONING",
17580
17623
  Default = "DEFAULT",
17581
17624
  DeletedAuthPolicy = "DELETED_AUTH_POLICY",
17625
+ DeletedDomain = "DELETED_DOMAIN",
17582
17626
  DeletedPolicy = "DELETED_POLICY",
17583
17627
  DeletedTunnel = "DELETED_TUNNEL",
17584
17628
  EnableScimSync = "ENABLE_SCIM_SYNC",
17629
+ ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
17585
17630
  InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
17631
+ RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
17586
17632
  TokenCreated = "TOKEN_CREATED",
17587
17633
  UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
17588
17634
  UpdatedPolicy = "UPDATED_POLICY",
17589
17635
  UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
17590
17636
  UserGrantedRole = "USER_GRANTED_ROLE",
17591
- UserRevokedRole = "USER_REVOKED_ROLE"
17637
+ UserRevokedRole = "USER_REVOKED_ROLE",
17638
+ VerifiedDomainVerification = "VERIFIED_DOMAIN_VERIFICATION"
17592
17639
  }
17593
17640
  export declare type ShepherdAlertsConnection = {
17594
17641
  __typename?: 'ShepherdAlertsConnection';