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

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,16 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [0871a3b]
8
+ - Updated dependencies [1c51c99]
9
+ - Updated dependencies [f8d567a]
10
+ - Updated dependencies [47a47a4]
11
+ - Updated dependencies [aa3a70e]
12
+ - @forge/manifest@4.3.0
13
+
3
14
  ## 3.1.1-next.4
4
15
 
5
16
  ### 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']>;
@@ -13448,6 +13461,17 @@ export declare type MarketplaceAppCategory = {
13448
13461
  __typename?: 'MarketplaceAppCategory';
13449
13462
  name: Scalars['String'];
13450
13463
  };
13464
+ export declare type MarketplaceAppConnection = {
13465
+ __typename?: 'MarketplaceAppConnection';
13466
+ edges?: Maybe<Array<Maybe<MarketplaceAppConnectionEdge>>>;
13467
+ pageInfo: PageInfo;
13468
+ totalCount: Scalars['Int'];
13469
+ };
13470
+ export declare type MarketplaceAppConnectionEdge = {
13471
+ __typename?: 'MarketplaceAppConnectionEdge';
13472
+ cursor: Scalars['String'];
13473
+ node?: Maybe<MarketplaceApp>;
13474
+ };
13451
13475
  export declare type MarketplaceAppDeployment = {
13452
13476
  compatibleProducts: Array<CompatibleAtlassianProduct>;
13453
13477
  };
@@ -13539,6 +13563,10 @@ export declare type MarketplaceAppWatchersInfo = {
13539
13563
  isUserWatchingApp: Scalars['Boolean'];
13540
13564
  watchersCount: Scalars['Int'];
13541
13565
  };
13566
+ export declare type MarketplaceAppsFilter = {
13567
+ productHostingOptions?: Maybe<Array<AtlassianProductHostingType>>;
13568
+ cloudFortifiedStatus?: Maybe<Array<MarketplaceProgramStatus>>;
13569
+ };
13542
13570
  export declare enum MarketplaceBillingCycle {
13543
13571
  Annual = "ANNUAL",
13544
13572
  Monthly = "MONTHLY"
@@ -15893,6 +15921,7 @@ export declare type Query = {
15893
15921
  marketplaceApp?: Maybe<MarketplaceApp>;
15894
15922
  marketplaceAppByKey?: Maybe<MarketplaceApp>;
15895
15923
  marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
15924
+ myMarketplaceApps?: Maybe<MarketplaceAppConnection>;
15896
15925
  marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
15897
15926
  marketplaceUser?: Maybe<MarketplaceUser>;
15898
15927
  compass?: Maybe<CompassCatalogQueryApi>;
@@ -16138,6 +16167,11 @@ export declare type QueryMarketplaceAppByKeyArgs = {
16138
16167
  export declare type QueryMarketplaceAppByCloudAppIdArgs = {
16139
16168
  cloudAppId: Scalars['ID'];
16140
16169
  };
16170
+ export declare type QueryMyMarketplaceAppsArgs = {
16171
+ filter?: Maybe<MarketplaceAppsFilter>;
16172
+ first?: Maybe<Scalars['Int']>;
16173
+ after?: Maybe<Scalars['String']>;
16174
+ };
16141
16175
  export declare type QueryMarketplacePricingPlanArgs = {
16142
16176
  appId: Scalars['ID'];
16143
16177
  hostingType: AtlassianProductHostingType;
@@ -17577,18 +17611,23 @@ export declare enum ShepherdAlertTemplateType {
17577
17611
  CreatedPolicy = "CREATED_POLICY",
17578
17612
  CreatedSamlConfig = "CREATED_SAML_CONFIG",
17579
17613
  CreatedTunnel = "CREATED_TUNNEL",
17614
+ CreateUserProvisioning = "CREATE_USER_PROVISIONING",
17580
17615
  Default = "DEFAULT",
17581
17616
  DeletedAuthPolicy = "DELETED_AUTH_POLICY",
17617
+ DeletedDomain = "DELETED_DOMAIN",
17582
17618
  DeletedPolicy = "DELETED_POLICY",
17583
17619
  DeletedTunnel = "DELETED_TUNNEL",
17584
17620
  EnableScimSync = "ENABLE_SCIM_SYNC",
17621
+ ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
17585
17622
  InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
17623
+ RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
17586
17624
  TokenCreated = "TOKEN_CREATED",
17587
17625
  UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
17588
17626
  UpdatedPolicy = "UPDATED_POLICY",
17589
17627
  UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
17590
17628
  UserGrantedRole = "USER_GRANTED_ROLE",
17591
- UserRevokedRole = "USER_REVOKED_ROLE"
17629
+ UserRevokedRole = "USER_REVOKED_ROLE",
17630
+ VerifiedDomainVerification = "VERIFIED_DOMAIN_VERIFICATION"
17592
17631
  }
17593
17632
  export declare type ShepherdAlertsConnection = {
17594
17633
  __typename?: 'ShepherdAlertsConnection';