@forge/cli-shared 6.6.2-next.2 → 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 +13 -0
- package/out/graphql/graphql-types.d.ts +98 -1
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/service/index.d.ts +0 -1
- package/out/service/index.d.ts.map +1 -1
- package/out/service/index.js +0 -1
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -0
- package/package.json +2 -2
- package/out/service/feature-flag-service.d.ts +0 -44
- package/out/service/feature-flag-service.d.ts.map +0 -1
- package/out/service/feature-flag-service.js +0 -120
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
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
|
+
|
|
10
|
+
## 6.6.2-next.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 78a006f: Fixed handling of product and site params without any value
|
|
15
|
+
|
|
3
16
|
## 6.6.2-next.2
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -1715,6 +1715,60 @@ export declare type AppPrincipal = {
|
|
|
1715
1715
|
__typename?: 'AppPrincipal';
|
|
1716
1716
|
id?: Maybe<Scalars['ID']['output']>;
|
|
1717
1717
|
};
|
|
1718
|
+
export declare type AppRecContext = {
|
|
1719
|
+
anonymousId?: InputMaybe<Scalars['ID']['input']>;
|
|
1720
|
+
containers?: InputMaybe<Scalars['JSON']['input']>;
|
|
1721
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
1722
|
+
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
1723
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
1724
|
+
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
1725
|
+
subproduct?: InputMaybe<Scalars['String']['input']>;
|
|
1726
|
+
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
1727
|
+
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
1728
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
1729
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
1730
|
+
};
|
|
1731
|
+
export declare type AppRecDismissRecommendationInput = {
|
|
1732
|
+
context?: InputMaybe<AppRecContext>;
|
|
1733
|
+
productId: Scalars['ID']['input'];
|
|
1734
|
+
};
|
|
1735
|
+
export declare type AppRecDismissRecommendationPayload = Payload & {
|
|
1736
|
+
__typename?: 'AppRecDismissRecommendationPayload';
|
|
1737
|
+
dismissal?: Maybe<AppRecDismissal>;
|
|
1738
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1739
|
+
success: Scalars['Boolean']['output'];
|
|
1740
|
+
};
|
|
1741
|
+
export declare type AppRecDismissal = {
|
|
1742
|
+
__typename?: 'AppRecDismissal';
|
|
1743
|
+
dismissedAt: Scalars['String']['output'];
|
|
1744
|
+
productId: Scalars['ID']['output'];
|
|
1745
|
+
};
|
|
1746
|
+
export declare type AppRecMutation = {
|
|
1747
|
+
__typename?: 'AppRecMutation';
|
|
1748
|
+
dismissRecommendation?: Maybe<AppRecDismissRecommendationPayload>;
|
|
1749
|
+
undoDismissal?: Maybe<AppRecUndoDismissalPayload>;
|
|
1750
|
+
};
|
|
1751
|
+
export declare type AppRecMutationDismissRecommendationArgs = {
|
|
1752
|
+
input: AppRecDismissRecommendationInput;
|
|
1753
|
+
};
|
|
1754
|
+
export declare type AppRecMutationUndoDismissalArgs = {
|
|
1755
|
+
input: AppRecUndoDismissalInput;
|
|
1756
|
+
};
|
|
1757
|
+
export declare type AppRecUndoDismissalInput = {
|
|
1758
|
+
context: AppRecContext;
|
|
1759
|
+
productId: Scalars['ID']['input'];
|
|
1760
|
+
};
|
|
1761
|
+
export declare type AppRecUndoDismissalPayload = Payload & {
|
|
1762
|
+
__typename?: 'AppRecUndoDismissalPayload';
|
|
1763
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1764
|
+
result?: Maybe<AppRecUndoDismissalResult>;
|
|
1765
|
+
success: Scalars['Boolean']['output'];
|
|
1766
|
+
};
|
|
1767
|
+
export declare type AppRecUndoDismissalResult = {
|
|
1768
|
+
__typename?: 'AppRecUndoDismissalResult';
|
|
1769
|
+
description: Scalars['String']['output'];
|
|
1770
|
+
undone: Scalars['Boolean']['output'];
|
|
1771
|
+
};
|
|
1718
1772
|
export declare type AppSecurityPoliciesPermission = {
|
|
1719
1773
|
__typename?: 'AppSecurityPoliciesPermission';
|
|
1720
1774
|
policies?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -48939,6 +48993,7 @@ export declare enum GrowthUnifiedProfileEntryType {
|
|
|
48939
48993
|
New = "NEW"
|
|
48940
48994
|
}
|
|
48941
48995
|
export declare type GrowthUnifiedProfileInput = {
|
|
48996
|
+
marketingContext?: InputMaybe<GrowthUnifiedProfileMarketingContextInput>;
|
|
48942
48997
|
onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
|
|
48943
48998
|
};
|
|
48944
48999
|
export declare type GrowthUnifiedProfileIssueType = {
|
|
@@ -49013,6 +49068,31 @@ export declare type GrowthUnifiedProfileLinkedEntities = {
|
|
|
49013
49068
|
entityType?: Maybe<GrowthUnifiedProfileEntityType>;
|
|
49014
49069
|
linkedId?: Maybe<Scalars['String']['output']>;
|
|
49015
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
|
+
};
|
|
49016
49096
|
export declare type GrowthUnifiedProfileOnboardingContext = {
|
|
49017
49097
|
__typename?: 'GrowthUnifiedProfileOnboardingContext';
|
|
49018
49098
|
confluence?: Maybe<GrowthUnifiedProfileConfluenceOnboardingContext>;
|
|
@@ -49071,6 +49151,7 @@ export declare type GrowthUnifiedProfileResult = {
|
|
|
49071
49151
|
enrichmentStatus?: Maybe<GrowthUnifiedProfileEnrichmentStatus>;
|
|
49072
49152
|
entityType?: Maybe<GrowthUnifiedProfileEntityType>;
|
|
49073
49153
|
linkedEntities?: Maybe<Array<Maybe<GrowthUnifiedProfileLinkedEntities>>>;
|
|
49154
|
+
marketingContext?: Maybe<GrowthUnifiedProfileMarketingContext>;
|
|
49074
49155
|
onboardingContext?: Maybe<GrowthUnifiedProfileOnboardingContext>;
|
|
49075
49156
|
paidChannelContext?: Maybe<GrowthUnifiedProfilePaidChannelContextByProduct>;
|
|
49076
49157
|
seoContext?: Maybe<GrowthUnifiedProfileSeoContext>;
|
|
@@ -52700,6 +52781,7 @@ export declare type JiraAutodevJob = {
|
|
|
52700
52781
|
issue?: Maybe<JiraIssue>;
|
|
52701
52782
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
52702
52783
|
issueScopingScore?: Maybe<DevAiIssueScopingResult>;
|
|
52784
|
+
jobAri?: Maybe<Scalars['ID']['output']>;
|
|
52703
52785
|
jobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
52704
52786
|
logGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
52705
52787
|
logs?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -69968,6 +70050,16 @@ export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
|
|
|
69968
70050
|
success: Scalars['Boolean']['output'];
|
|
69969
70051
|
successCount?: Maybe<Scalars['Int']['output']>;
|
|
69970
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
|
+
};
|
|
69971
70063
|
export declare type KnowledgeDiscoveryEntity = {
|
|
69972
70064
|
id: Scalars['ID']['output'];
|
|
69973
70065
|
};
|
|
@@ -70024,6 +70116,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
70024
70116
|
createBookmarks?: Maybe<KnowledgeDiscoveryCreateAdminhubBookmarksPayload>;
|
|
70025
70117
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
70026
70118
|
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
70119
|
+
dismissBookmarkSuggestion?: Maybe<KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionPayload>;
|
|
70027
70120
|
updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
|
|
70028
70121
|
updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
|
|
70029
70122
|
updateUserKeyPhraseInteraction?: Maybe<KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload>;
|
|
@@ -70043,6 +70136,9 @@ export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
|
|
|
70043
70136
|
export declare type KnowledgeDiscoveryMutationApiDeleteBookmarksArgs = {
|
|
70044
70137
|
input: KnowledgeDiscoveryDeleteBookmarksInput;
|
|
70045
70138
|
};
|
|
70139
|
+
export declare type KnowledgeDiscoveryMutationApiDismissBookmarkSuggestionArgs = {
|
|
70140
|
+
input: KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionInput;
|
|
70141
|
+
};
|
|
70046
70142
|
export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
|
|
70047
70143
|
input: KnowledgeDiscoveryUpdateAdminhubBookmarkInput;
|
|
70048
70144
|
};
|
|
@@ -73066,7 +73162,7 @@ export declare type MercuryCreateChangeProposalInput = {
|
|
|
73066
73162
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73067
73163
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
73068
73164
|
name: Scalars['String']['input'];
|
|
73069
|
-
owner?: InputMaybe<Scalars['
|
|
73165
|
+
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
73070
73166
|
strategicEventId: Scalars['ID']['input'];
|
|
73071
73167
|
};
|
|
73072
73168
|
export declare type MercuryCreateChangeProposalPayload = Payload & {
|
|
@@ -74777,6 +74873,7 @@ export declare type Mutation = {
|
|
|
74777
74873
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
74778
74874
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
74779
74875
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
74876
|
+
appRecommendations?: Maybe<AppRecMutation>;
|
|
74780
74877
|
appStorage?: Maybe<AppStorageMutation>;
|
|
74781
74878
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
74782
74879
|
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|