@forge/cli-shared 6.6.2-next.3 → 6.6.2-next.4

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
+ ## 6.6.2-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [359756b]
8
+ - @forge/manifest@8.7.1-next.1
9
+
3
10
  ## 6.6.2-next.3
4
11
 
5
12
  ### Patch Changes
@@ -48993,6 +48993,7 @@ export declare enum GrowthUnifiedProfileEntryType {
48993
48993
  New = "NEW"
48994
48994
  }
48995
48995
  export declare type GrowthUnifiedProfileInput = {
48996
+ marketingContext?: InputMaybe<GrowthUnifiedProfileMarketingContextInput>;
48996
48997
  onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
48997
48998
  };
48998
48999
  export declare type GrowthUnifiedProfileIssueType = {
@@ -49067,6 +49068,31 @@ export declare type GrowthUnifiedProfileLinkedEntities = {
49067
49068
  entityType?: Maybe<GrowthUnifiedProfileEntityType>;
49068
49069
  linkedId?: Maybe<Scalars['String']['output']>;
49069
49070
  };
49071
+ export declare type GrowthUnifiedProfileMarketingContext = {
49072
+ __typename?: 'GrowthUnifiedProfileMarketingContext';
49073
+ lastUpdated?: Maybe<Scalars['String']['output']>;
49074
+ sessionId?: Maybe<Scalars['String']['output']>;
49075
+ utm?: Maybe<GrowthUnifiedProfileMarketingUtm>;
49076
+ };
49077
+ export declare type GrowthUnifiedProfileMarketingContextInput = {
49078
+ sessionId?: InputMaybe<Scalars['String']['input']>;
49079
+ utm?: InputMaybe<GrowthUnifiedProfileMarketingUtmInput>;
49080
+ };
49081
+ export declare type GrowthUnifiedProfileMarketingUtm = {
49082
+ __typename?: 'GrowthUnifiedProfileMarketingUtm';
49083
+ campaign?: Maybe<Scalars['String']['output']>;
49084
+ content?: Maybe<Scalars['String']['output']>;
49085
+ medium?: Maybe<Scalars['String']['output']>;
49086
+ sfdcCampaignId?: Maybe<Scalars['String']['output']>;
49087
+ source?: Maybe<Scalars['String']['output']>;
49088
+ };
49089
+ export declare type GrowthUnifiedProfileMarketingUtmInput = {
49090
+ campaign?: InputMaybe<Scalars['String']['input']>;
49091
+ content?: InputMaybe<Scalars['String']['input']>;
49092
+ medium?: InputMaybe<Scalars['String']['input']>;
49093
+ sfdcCampaignId?: InputMaybe<Scalars['String']['input']>;
49094
+ source?: InputMaybe<Scalars['String']['input']>;
49095
+ };
49070
49096
  export declare type GrowthUnifiedProfileOnboardingContext = {
49071
49097
  __typename?: 'GrowthUnifiedProfileOnboardingContext';
49072
49098
  confluence?: Maybe<GrowthUnifiedProfileConfluenceOnboardingContext>;
@@ -49125,6 +49151,7 @@ export declare type GrowthUnifiedProfileResult = {
49125
49151
  enrichmentStatus?: Maybe<GrowthUnifiedProfileEnrichmentStatus>;
49126
49152
  entityType?: Maybe<GrowthUnifiedProfileEntityType>;
49127
49153
  linkedEntities?: Maybe<Array<Maybe<GrowthUnifiedProfileLinkedEntities>>>;
49154
+ marketingContext?: Maybe<GrowthUnifiedProfileMarketingContext>;
49128
49155
  onboardingContext?: Maybe<GrowthUnifiedProfileOnboardingContext>;
49129
49156
  paidChannelContext?: Maybe<GrowthUnifiedProfilePaidChannelContextByProduct>;
49130
49157
  seoContext?: Maybe<GrowthUnifiedProfileSeoContext>;
@@ -70023,6 +70050,16 @@ export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
70023
70050
  success: Scalars['Boolean']['output'];
70024
70051
  successCount?: Maybe<Scalars['Int']['output']>;
70025
70052
  };
70053
+ export declare type KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionInput = {
70054
+ bookmarkAdminhubId: Scalars['ID']['input'];
70055
+ cloudId: Scalars['ID']['input'];
70056
+ orgId: Scalars['String']['input'];
70057
+ };
70058
+ export declare type KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionPayload = Payload & {
70059
+ __typename?: 'KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionPayload';
70060
+ errors?: Maybe<Array<MutationError>>;
70061
+ success: Scalars['Boolean']['output'];
70062
+ };
70026
70063
  export declare type KnowledgeDiscoveryEntity = {
70027
70064
  id: Scalars['ID']['output'];
70028
70065
  };
@@ -70079,6 +70116,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
70079
70116
  createBookmarks?: Maybe<KnowledgeDiscoveryCreateAdminhubBookmarksPayload>;
70080
70117
  createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
70081
70118
  deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
70119
+ dismissBookmarkSuggestion?: Maybe<KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionPayload>;
70082
70120
  updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
70083
70121
  updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
70084
70122
  updateUserKeyPhraseInteraction?: Maybe<KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload>;
@@ -70098,6 +70136,9 @@ export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
70098
70136
  export declare type KnowledgeDiscoveryMutationApiDeleteBookmarksArgs = {
70099
70137
  input: KnowledgeDiscoveryDeleteBookmarksInput;
70100
70138
  };
70139
+ export declare type KnowledgeDiscoveryMutationApiDismissBookmarkSuggestionArgs = {
70140
+ input: KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionInput;
70141
+ };
70101
70142
  export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
70102
70143
  input: KnowledgeDiscoveryUpdateAdminhubBookmarkInput;
70103
70144
  };
@@ -73121,7 +73162,7 @@ export declare type MercuryCreateChangeProposalInput = {
73121
73162
  cloudId?: InputMaybe<Scalars['ID']['input']>;
73122
73163
  description?: InputMaybe<Scalars['String']['input']>;
73123
73164
  name: Scalars['String']['input'];
73124
- owner?: InputMaybe<Scalars['String']['input']>;
73165
+ owner?: InputMaybe<Scalars['ID']['input']>;
73125
73166
  strategicEventId: Scalars['ID']['input'];
73126
73167
  };
73127
73168
  export declare type MercuryCreateChangeProposalPayload = Payload & {