@forge/cli-shared 6.11.0-next.13 → 6.11.0-next.13-experimental-c6e5f04

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,30 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.11.0-next.13-experimental-c6e5f04
4
+
5
+ ### Minor Changes
6
+
7
+ - d86ca2b: Migrate runtime deprecation check from @forge/manifest to @forge/cli
8
+
9
+ ### Patch Changes
10
+
11
+ - 6444f47: added new build command
12
+ - 6db64a3: Improve build tag validation
13
+ - 9a2ca12: Added new callout for buildsByApp
14
+ - 2a30889: Remove environment flag for build command
15
+ - f6ec33c: added createdby column in buildlist
16
+ - e746b9d: Add preview message to forge build command
17
+ - ddbe1f9: make environmentKey optional for build
18
+ - Updated dependencies [d86ca2b]
19
+ - Updated dependencies [a56ca61]
20
+ - Updated dependencies [8bd52d6]
21
+ - Updated dependencies [43832a8]
22
+ - Updated dependencies [743bbdc]
23
+ - Updated dependencies [065b6a2]
24
+ - Updated dependencies [a891abf]
25
+ - Updated dependencies [439551a]
26
+ - @forge/manifest@9.3.0-next.6-experimental-c6e5f04
27
+
3
28
  ## 6.11.0-next.13
4
29
 
5
30
  ### Patch Changes
@@ -68957,6 +68957,15 @@ export declare enum JiraResourceUsageRecommendationStatus {
68957
68957
  Obsolete = "OBSOLETE",
68958
68958
  Trashed = "TRASHED"
68959
68959
  }
68960
+ export declare type JiraRestoreGlobalCustomFieldsInput = {
68961
+ fieldIds: Array<Scalars['String']['input']>;
68962
+ };
68963
+ export declare type JiraRestoreGlobalCustomFieldsPayload = Payload & {
68964
+ __typename?: 'JiraRestoreGlobalCustomFieldsPayload';
68965
+ errors?: Maybe<Array<MutationError>>;
68966
+ failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
68967
+ success: Scalars['Boolean']['output'];
68968
+ };
68960
68969
  export declare type JiraRestoreJourneyConfigurationInput = {
68961
68970
  etag?: InputMaybe<Scalars['String']['input']>;
68962
68971
  id: Scalars['ID']['input'];
@@ -76605,6 +76614,7 @@ export declare enum MarketplaceConsoleDevSpaceTier {
76605
76614
  }
76606
76615
  export declare type MarketplaceConsoleEditAppVersionRequest = {
76607
76616
  appKey: Scalars['ID']['input'];
76617
+ bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
76608
76618
  buildNumber: Scalars['ID']['input'];
76609
76619
  compatibilities?: InputMaybe<Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>>;
76610
76620
  deploymentInstructions?: InputMaybe<Array<MarketplaceConsoleDeploymentInstructionInput>>;
@@ -76617,6 +76627,7 @@ export declare type MarketplaceConsoleEditAppVersionRequest = {
76617
76627
  learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
76618
76628
  licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
76619
76629
  moreDetails?: InputMaybe<Scalars['String']['input']>;
76630
+ partnerSpecificTerms?: InputMaybe<Scalars['String']['input']>;
76620
76631
  purchaseUrl?: InputMaybe<Scalars['String']['input']>;
76621
76632
  releaseNotes?: InputMaybe<Scalars['String']['input']>;
76622
76633
  releaseSummary?: InputMaybe<Scalars['String']['input']>;
@@ -77060,6 +77071,7 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
77060
77071
  canViewPartnerPaymentDetails: Scalars['Boolean']['output'];
77061
77072
  canViewSalesReport: Scalars['Boolean']['output'];
77062
77073
  canViewUsageReports: Scalars['Boolean']['output'];
77074
+ isMarketplaceReader: Scalars['Boolean']['output'];
77063
77075
  isPartnerAdmin: Scalars['Boolean']['output'];
77064
77076
  isSiteAdmin: Scalars['Boolean']['output'];
77065
77077
  partnerId: Scalars['ID']['output'];
@@ -81435,6 +81447,7 @@ export declare type Mutation = {
81435
81447
  jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
81436
81448
  jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
81437
81449
  jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
81450
+ jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
81438
81451
  jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
81439
81452
  jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
81440
81453
  jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
@@ -82894,6 +82907,10 @@ export declare type MutationJira_ReorderBoardViewColumnArgs = {
82894
82907
  export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
82895
82908
  input: JiraReorderSidebarMenuItemInput;
82896
82909
  };
82910
+ export declare type MutationJira_RestoreGlobalCustomFieldsArgs = {
82911
+ cloudId: Scalars['ID']['input'];
82912
+ input: JiraRestoreGlobalCustomFieldsInput;
82913
+ };
82897
82914
  export declare type MutationJira_SetBoardIssueCardCoverArgs = {
82898
82915
  input: JiraSetBoardIssueCardCoverInput;
82899
82916
  };