@forge/cli-shared 4.0.1-next.2 → 4.1.0-next.0

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,21 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 4.1.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - ee4e0a1: allow app developer choose location to save the bundled app code
8
+
9
+ ## 4.0.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 937db7a: Rollback manifest env var support
14
+ - Updated dependencies [d72f638]
15
+ - Updated dependencies [9eee9ac]
16
+ - Updated dependencies [937db7a]
17
+ - @forge/manifest@7.2.0
18
+
3
19
  ## 4.0.1-next.2
4
20
 
5
21
  ### Patch Changes
@@ -7460,6 +7460,7 @@ export declare type ContentPlatformTemplate = {
7460
7460
  oneLinerHeadline?: Maybe<Scalars['String']['output']>;
7461
7461
  pluginModuleKey: Scalars['String']['output'];
7462
7462
  previewBlurb?: Maybe<Scalars['String']['output']>;
7463
+ product?: Maybe<Array<ContentPlatformProduct>>;
7463
7464
  relatedTemplates?: Maybe<Array<ContentPlatformTemplate>>;
7464
7465
  targetAudience?: Maybe<Array<ContentPlatformTaxonomyUserRoleNew>>;
7465
7466
  targetOrganizationSize?: Maybe<Array<ContentPlatformTaxonomyCompanySize>>;
@@ -11813,6 +11814,7 @@ export declare enum ForgeMetricsApiRequestStatus {
11813
11814
  '5Xx' = "_5XX"
11814
11815
  }
11815
11816
  export declare enum ForgeMetricsApiRequestType {
11817
+ Cache = "CACHE",
11816
11818
  External = "EXTERNAL",
11817
11819
  Product = "PRODUCT"
11818
11820
  }
@@ -29016,6 +29018,17 @@ export declare type JiraCannedResponseUpdatePayload = Payload & {
29016
29018
  jiraCannedResponse?: Maybe<JiraCannedResponse>;
29017
29019
  success: Scalars['Boolean']['output'];
29018
29020
  };
29021
+ export declare type JiraCardCoversProjectToggleInput = {
29022
+ cardCoversEnabled: Scalars['Boolean']['input'];
29023
+ cloudId: Scalars['ID']['input'];
29024
+ projectIdOrKey: Scalars['String']['input'];
29025
+ };
29026
+ export declare type JiraCardCoversProjectTogglePayload = Payload & {
29027
+ __typename?: 'JiraCardCoversProjectTogglePayload';
29028
+ cardCoversEnabled?: Maybe<Scalars['Boolean']['output']>;
29029
+ errors?: Maybe<Array<MutationError>>;
29030
+ success: Scalars['Boolean']['output'];
29031
+ };
29019
29032
  export declare type JiraCascadingOption = {
29020
29033
  __typename?: 'JiraCascadingOption';
29021
29034
  childOptionValue?: Maybe<JiraOption>;
@@ -29773,6 +29786,15 @@ export declare type JiraCreateLargeSolutionPayload = Payload & {
29773
29786
  largeSolution?: Maybe<JiraLargeSolution>;
29774
29787
  success: Scalars['Boolean']['output'];
29775
29788
  };
29789
+ export declare type JiraCreatePlanInput = {
29790
+ cloudId: Scalars['ID']['input'];
29791
+ };
29792
+ export declare type JiraCreatePlanPayload = Payload & {
29793
+ __typename?: 'JiraCreatePlanPayload';
29794
+ errors?: Maybe<Array<MutationError>>;
29795
+ plan?: Maybe<JiraPlan>;
29796
+ success: Scalars['Boolean']['output'];
29797
+ };
29776
29798
  export declare type JiraCreateReleaseNoteConfluencePageInput = {
29777
29799
  appLinkId?: InputMaybe<Scalars['ID']['input']>;
29778
29800
  excludeIssueKey?: InputMaybe<Scalars['Boolean']['input']>;
@@ -33303,6 +33325,7 @@ export declare type JiraMutation = {
33303
33325
  createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
33304
33326
  createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
33305
33327
  createSafeGlobalData?: Maybe<JiraCreateSafeGlobalDataPayload>;
33328
+ createSafePlan?: Maybe<JiraCreatePlanPayload>;
33306
33329
  deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
33307
33330
  deleteIssueLink?: Maybe<JiraDeleteIssueLinkPayload>;
33308
33331
  deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
@@ -33348,6 +33371,7 @@ export declare type JiraMutation = {
33348
33371
  setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
33349
33372
  sprintUpdate?: Maybe<JiraSprintMutationPayload>;
33350
33373
  submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
33374
+ toggleJiraProjectCardCovers?: Maybe<JiraCardCoversProjectTogglePayload>;
33351
33375
  unlinkIssuesFromIncident?: Maybe<JiraUnlinkIssuesFromIncidentMutationPayload>;
33352
33376
  updateAttachmentField?: Maybe<JiraAttachmentFieldPayload>;
33353
33377
  updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
@@ -33477,6 +33501,9 @@ export declare type JiraMutationCreateReleaseNoteConfluencePageArgs = {
33477
33501
  export declare type JiraMutationCreateSafeGlobalDataArgs = {
33478
33502
  input: JiraCreateSafeGlobalDataInput;
33479
33503
  };
33504
+ export declare type JiraMutationCreateSafePlanArgs = {
33505
+ input: JiraCreatePlanInput;
33506
+ };
33480
33507
  export declare type JiraMutationDeleteGlobalPermissionGrantArgs = {
33481
33508
  cloudId: Scalars['ID']['input'];
33482
33509
  input: JiraGlobalPermissionDeleteGroupGrantInput;
@@ -33615,6 +33642,9 @@ export declare type JiraMutationSubmitBulkOperationArgs = {
33615
33642
  cloudId: Scalars['ID']['input'];
33616
33643
  input: JiraSubmitBulkOperationInput;
33617
33644
  };
33645
+ export declare type JiraMutationToggleJiraProjectCardCoversArgs = {
33646
+ input?: InputMaybe<JiraCardCoversProjectToggleInput>;
33647
+ };
33618
33648
  export declare type JiraMutationUnlinkIssuesFromIncidentArgs = {
33619
33649
  input: JiraUnlinkIssuesFromIncidentMutationInput;
33620
33650
  };
@@ -35961,6 +35991,7 @@ export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
35961
35991
  cloudId: Scalars['ID']['input'];
35962
35992
  first?: InputMaybe<Scalars['Int']['input']>;
35963
35993
  last?: InputMaybe<Scalars['Int']['input']>;
35994
+ projectId?: InputMaybe<Scalars['Long']['input']>;
35964
35995
  statuses?: InputMaybe<Array<InputMaybe<JiraResourceUsageRecommendationStatus>>>;
35965
35996
  userStatus?: InputMaybe<JiraProjectRoleActorUserStatus>;
35966
35997
  };
@@ -37870,6 +37901,7 @@ export declare type JiraSingleGroupPickerField = JiraIssueField & JiraIssueField
37870
37901
  export declare type JiraSingleGroupPickerFieldGroupsArgs = {
37871
37902
  after?: InputMaybe<Scalars['String']['input']>;
37872
37903
  before?: InputMaybe<Scalars['String']['input']>;
37904
+ filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
37873
37905
  first?: InputMaybe<Scalars['Int']['input']>;
37874
37906
  last?: InputMaybe<Scalars['Int']['input']>;
37875
37907
  searchBy?: InputMaybe<Scalars['String']['input']>;
@@ -38888,6 +38920,7 @@ export declare type JiraUpdateTeamFieldInput = {
38888
38920
  export declare type JiraUpdateTimeTrackingFieldInput = {
38889
38921
  id: Scalars['ID']['input'];
38890
38922
  originalEstimate?: InputMaybe<JiraEstimateInput>;
38923
+ remainingEstimate?: InputMaybe<JiraEstimateInput>;
38891
38924
  };
38892
38925
  export declare type JiraUpdateUrlFieldInput = {
38893
38926
  id: Scalars['ID']['input'];
@@ -49362,6 +49395,7 @@ export declare type TownsquareMutationApi = {
49362
49395
  createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
49363
49396
  deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
49364
49397
  editGoal?: Maybe<TownsquareEditGoalPayload>;
49398
+ setParentGoal?: Maybe<TownsquareSetParentGoalPayload>;
49365
49399
  unarchiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
49366
49400
  };
49367
49401
  export declare type TownsquareMutationApiArchiveGoalArgs = {
@@ -49379,6 +49413,9 @@ export declare type TownsquareMutationApiDeleteRelationshipsArgs = {
49379
49413
  export declare type TownsquareMutationApiEditGoalArgs = {
49380
49414
  input: TownsquareEditGoalInput;
49381
49415
  };
49416
+ export declare type TownsquareMutationApiSetParentGoalArgs = {
49417
+ input?: InputMaybe<TownsquareSetParentGoalInput>;
49418
+ };
49382
49419
  export declare type TownsquareMutationApiUnarchiveGoalArgs = {
49383
49420
  input: TownsquareArchiveGoalInput;
49384
49421
  };
@@ -49512,6 +49549,15 @@ export declare type TownsquareRelationshipInput = {
49512
49549
  from: Scalars['String']['input'];
49513
49550
  to: Scalars['String']['input'];
49514
49551
  };
49552
+ export declare type TownsquareSetParentGoalInput = {
49553
+ goalAri: Scalars['String']['input'];
49554
+ parentGoalAri?: InputMaybe<Scalars['String']['input']>;
49555
+ };
49556
+ export declare type TownsquareSetParentGoalPayload = {
49557
+ __typename?: 'TownsquareSetParentGoalPayload';
49558
+ goal?: Maybe<TownsquareGoal>;
49559
+ parentGoal?: Maybe<TownsquareGoal>;
49560
+ };
49515
49561
  export declare type TownsquareStatus = {
49516
49562
  __typename?: 'TownsquareStatus';
49517
49563
  localizedLabel?: Maybe<TownsquareLocalizationField>;