@forge/cli-shared 5.2.0-next.8 → 5.2.0-next.9

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
+ ## 5.2.0-next.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [22687bd]
8
+ - @forge/manifest@7.5.0-next.8
9
+
3
10
  ## 5.2.0-next.8
4
11
 
5
12
  ### Minor Changes
@@ -3497,6 +3497,7 @@ export declare type CompassCatalogQueryApi = {
3497
3497
  teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
3498
3498
  teamData?: Maybe<CompassTeamDataResult>;
3499
3499
  userDefinedParameters?: Maybe<CompassUserDefinedParametersConnection>;
3500
+ viewerGlobalPermissions?: Maybe<CompassGlobalPermissionsResult>;
3500
3501
  };
3501
3502
  export declare type CompassCatalogQueryApiApplicationManagedComponentsArgs = {
3502
3503
  query: CompassApplicationManagedComponentsQuery;
@@ -3616,6 +3617,9 @@ export declare type CompassCatalogQueryApiUserDefinedParametersArgs = {
3616
3617
  componentId: Scalars['ID']['input'];
3617
3618
  first?: InputMaybe<Scalars['Int']['input']>;
3618
3619
  };
3620
+ export declare type CompassCatalogQueryApiViewerGlobalPermissionsArgs = {
3621
+ cloudId: Scalars['ID']['input'];
3622
+ };
3619
3623
  export declare type CompassChangeMetadata = {
3620
3624
  __typename?: 'CompassChangeMetadata';
3621
3625
  createdAt?: Maybe<Scalars['DateTime']['output']>;
@@ -4827,6 +4831,11 @@ export declare type CompassFreeformUserDefinedParameter = CompassUserDefinedPara
4827
4831
  name: Scalars['String']['output'];
4828
4832
  type: Scalars['String']['output'];
4829
4833
  };
4834
+ export declare type CompassGlobalPermissions = {
4835
+ __typename?: 'CompassGlobalPermissions';
4836
+ createScorecards?: Maybe<CompassPermissionResult>;
4837
+ };
4838
+ export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
4830
4839
  export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
4831
4840
  __typename?: 'CompassHasCustomBooleanFieldScorecardCriteria';
4832
4841
  booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
@@ -5209,6 +5218,11 @@ export declare type CompassMetricValuesTimeseries = {
5209
5218
  values?: Maybe<Array<Maybe<CompassMetricValue>>>;
5210
5219
  };
5211
5220
  export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTimeseries | QueryError;
5221
+ export declare type CompassPermissionResult = {
5222
+ __typename?: 'CompassPermissionResult';
5223
+ allowed: Scalars['Boolean']['output'];
5224
+ denialReasons: Array<Scalars['String']['output']>;
5225
+ };
5212
5226
  export declare type CompassPlainMetricSourceConfigurationInput = {
5213
5227
  query: Scalars['String']['input'];
5214
5228
  };
@@ -53310,6 +53324,7 @@ export declare type PolarisViewSet = {
53310
53324
  name: Scalars['String']['output'];
53311
53325
  rank: Scalars['Int']['output'];
53312
53326
  type?: Maybe<PolarisViewSetType>;
53327
+ uuid: Scalars['ID']['output'];
53313
53328
  views: Array<PolarisView>;
53314
53329
  viewsets: Array<PolarisViewSet>;
53315
53330
  };