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

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.6.2-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 78a006f: Fixed handling of product and site params without any value
8
+
3
9
  ## 6.6.2-next.2
4
10
 
5
11
  ### 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']>>;
@@ -52700,6 +52754,7 @@ export declare type JiraAutodevJob = {
52700
52754
  issue?: Maybe<JiraIssue>;
52701
52755
  issueAri?: Maybe<Scalars['ID']['output']>;
52702
52756
  issueScopingScore?: Maybe<DevAiIssueScopingResult>;
52757
+ jobAri?: Maybe<Scalars['ID']['output']>;
52703
52758
  jobLogs?: Maybe<DevAiAutodevLogConnection>;
52704
52759
  logGroups?: Maybe<DevAiAutodevLogGroupConnection>;
52705
52760
  logs?: Maybe<DevAiAutodevLogConnection>;
@@ -74777,6 +74832,7 @@ export declare type Mutation = {
74777
74832
  agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
74778
74833
  agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
74779
74834
  agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
74835
+ appRecommendations?: Maybe<AppRecMutation>;
74780
74836
  appStorage?: Maybe<AppStorageMutation>;
74781
74837
  appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
74782
74838
  applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;