@forge/cli-shared 6.8.0-next.12 → 6.8.0-next.13

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,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.8.0-next.13
4
+
5
+ ### Patch Changes
6
+
7
+ - c57e34a: Fix bundling when handlers are defined in subdirectories
8
+
3
9
  ## 6.8.0-next.12
4
10
 
5
11
  ### Patch Changes
@@ -4781,6 +4781,7 @@ export declare type CompassCatalogMutationApi = {
4781
4781
  updateComponent?: Maybe<UpdateCompassComponentPayload>;
4782
4782
  updateComponentApi?: Maybe<UpdateComponentApiPayload>;
4783
4783
  updateComponentApiUpload?: Maybe<UpdateComponentApiUploadPayload>;
4784
+ updateComponentByReference?: Maybe<UpdateCompassComponentPayload>;
4784
4785
  updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
4785
4786
  updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
4786
4787
  updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
@@ -5026,6 +5027,9 @@ export declare type CompassCatalogMutationApiUpdateComponentApiArgs = {
5026
5027
  export declare type CompassCatalogMutationApiUpdateComponentApiUploadArgs = {
5027
5028
  input: UpdateComponentApiUploadInput;
5028
5029
  };
5030
+ export declare type CompassCatalogMutationApiUpdateComponentByReferenceArgs = {
5031
+ input: UpdateCompassComponentByReferenceInput;
5032
+ };
5029
5033
  export declare type CompassCatalogMutationApiUpdateComponentDataManagerMetadataArgs = {
5030
5034
  input: UpdateCompassComponentDataManagerMetadataInput;
5031
5035
  };
@@ -7919,6 +7923,7 @@ export declare type CompassScorecardAppliedToComponentsQuery = {
7919
7923
  };
7920
7924
  export declare type CompassScorecardAppliedToComponentsQueryFilter = {
7921
7925
  fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
7926
+ labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
7922
7927
  owners?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
7923
7928
  score?: InputMaybe<CompassScorecardAppliedToComponentsThresholdFilter>;
7924
7929
  scoreRanges?: InputMaybe<CompassScorecardAppliedToComponentsScoreRangeFilter>;
@@ -50197,6 +50202,7 @@ export declare type GrowthUnifiedProfileUserFootprints = {
50197
50202
  export declare type GrowthUnifiedProfileUserProfile = {
50198
50203
  __typename?: 'GrowthUnifiedProfileUserProfile';
50199
50204
  domainType?: Maybe<GrowthUnifiedProfileDomainType>;
50205
+ teamType?: Maybe<Scalars['String']['output']>;
50200
50206
  userType?: Maybe<GrowthUnifiedProfileEntryType>;
50201
50207
  };
50202
50208
  export declare type GrowthUnifiedProfileUtm = {
@@ -96001,6 +96007,17 @@ export declare type UpdateCommentInput = {
96001
96007
  commentId: Scalars['ID']['input'];
96002
96008
  version?: InputMaybe<Scalars['Int']['input']>;
96003
96009
  };
96010
+ export declare type UpdateCompassComponentByReferenceInput = {
96011
+ componentDescriptionDetails?: InputMaybe<CompassComponentDescriptionDetailsInput>;
96012
+ customFields?: InputMaybe<Array<CompassCustomFieldInput>>;
96013
+ description?: InputMaybe<Scalars['String']['input']>;
96014
+ fields?: InputMaybe<Array<UpdateCompassFieldInput>>;
96015
+ name?: InputMaybe<Scalars['String']['input']>;
96016
+ ownerId?: InputMaybe<Scalars['ID']['input']>;
96017
+ reference: ComponentReferenceInput;
96018
+ slug?: InputMaybe<Scalars['String']['input']>;
96019
+ state?: InputMaybe<Scalars['String']['input']>;
96020
+ };
96004
96021
  export declare type UpdateCompassComponentDataManagerMetadataInput = {
96005
96022
  componentId: Scalars['ID']['input'];
96006
96023
  externalSourceURL?: InputMaybe<Scalars['URL']['input']>;