npm package diff
Package: @forge/cli-shared
Versions: 6.8.0-next.12 - 6.8.0-next.13
File: package/out/graphql/graphql-types.d.ts
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -4780,8 +4780,9 @@
updateCampaign?: Maybe<CompassUpdateCampaignPayload>;
updateComponent?: Maybe<UpdateCompassComponentPayload>;
updateComponentApi?: Maybe<UpdateComponentApiPayload>;
updateComponentApiUpload?: Maybe<UpdateComponentApiUploadPayload>;
+ updateComponentByReference?: Maybe<UpdateCompassComponentPayload>;
updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
@@ -5025,8 +5026,11 @@
};
export declare type CompassCatalogMutationApiUpdateComponentApiUploadArgs = {
input: UpdateComponentApiUploadInput;
};
+export declare type CompassCatalogMutationApiUpdateComponentByReferenceArgs = {
+ input: UpdateCompassComponentByReferenceInput;
+};
export declare type CompassCatalogMutationApiUpdateComponentDataManagerMetadataArgs = {
input: UpdateCompassComponentDataManagerMetadataInput;
};
export declare type CompassCatalogMutationApiUpdateComponentLinkArgs = {
@@ -7918,8 +7922,9 @@
sort?: InputMaybe<CompassScorecardAppliedToComponentsQuerySort>;
};
export declare type CompassScorecardAppliedToComponentsQueryFilter = {
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
+ labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
owners?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
score?: InputMaybe<CompassScorecardAppliedToComponentsThresholdFilter>;
scoreRanges?: InputMaybe<CompassScorecardAppliedToComponentsScoreRangeFilter>;
scorecardCriteria?: InputMaybe<Array<CompassScorecardAppliedToComponentsCriteriaFilter>>;
@@ -50196,8 +50201,9 @@
};
export declare type GrowthUnifiedProfileUserProfile = {
__typename?: 'GrowthUnifiedProfileUserProfile';
domainType?: Maybe<GrowthUnifiedProfileDomainType>;
+ teamType?: Maybe<Scalars['String']['output']>;
userType?: Maybe<GrowthUnifiedProfileEntryType>;
};
export declare type GrowthUnifiedProfileUtm = {
__typename?: 'GrowthUnifiedProfileUtm';
@@ -96000,8 +96006,19 @@
commentBody: CommentBody;
commentId: Scalars['ID']['input'];
version?: InputMaybe<Scalars['Int']['input']>;
};
+export declare type UpdateCompassComponentByReferenceInput = {
+ componentDescriptionDetails?: InputMaybe<CompassComponentDescriptionDetailsInput>;
+ customFields?: InputMaybe<Array<CompassCustomFieldInput>>;
+ description?: InputMaybe<Scalars['String']['input']>;
+ fields?: InputMaybe<Array<UpdateCompassFieldInput>>;
+ name?: InputMaybe<Scalars['String']['input']>;
+ ownerId?: InputMaybe<Scalars['ID']['input']>;
+ reference: ComponentReferenceInput;
+ slug?: InputMaybe<Scalars['String']['input']>;
+ state?: InputMaybe<Scalars['String']['input']>;
+};
export declare type UpdateCompassComponentDataManagerMetadataInput = {
componentId: Scalars['ID']['input'];
externalSourceURL?: InputMaybe<Scalars['URL']['input']>;
lastSyncEvent?: InputMaybe<ComponentSyncEventInput>;