@forge/cli-shared 8.8.1-next.8 → 8.8.2-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,32 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.8.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8962080]
8
+ - @forge/manifest@11.0.0-next.0
9
+
10
+ ## 8.8.1
11
+
12
+ ### Patch Changes
13
+
14
+ - f751b9b:
15
+ - 9cb69da: Enable force forge container deletion
16
+ - 4a9136d: Add Halloween spinner during October deployments
17
+ - 94243f1: Split development and contribution guidelines
18
+ - 8183db5: added cli command to hit decoupled state endpoint
19
+ - Updated dependencies [b3792e4]
20
+ - Updated dependencies [fae0e71]
21
+ - Updated dependencies [0ea6722]
22
+ - Updated dependencies [4718346]
23
+ - Updated dependencies [94243f1]
24
+ - Updated dependencies [0ef937d]
25
+ - Updated dependencies [dcd46a4]
26
+ - Updated dependencies [8ec0d92]
27
+ - @forge/manifest@10.8.0
28
+ - @forge/util@2.0.1
29
+
3
30
  ## 8.8.1-next.8
4
31
 
5
32
  ### Patch Changes
@@ -69203,6 +69203,18 @@ export declare type JiraGlobalPermissionGrantsList = {
69203
69203
  globalPermissionGrants?: Maybe<Array<Maybe<JiraGlobalPermissionGrants>>>;
69204
69204
  };
69205
69205
  export declare type JiraGlobalPermissionGrantsResult = JiraGlobalPermissionGrantsList | QueryError;
69206
+ export declare type JiraGlobalPermissionSetUserGroupsInput = {
69207
+ groupAris: Array<Scalars['ID']['input']>;
69208
+ key: Scalars['String']['input'];
69209
+ };
69210
+ export declare type JiraGlobalPermissionSetUserGroupsPayload = Payload & {
69211
+ __typename?: 'JiraGlobalPermissionSetUserGroupsPayload';
69212
+ errors?: Maybe<Array<MutationError>>;
69213
+ groupArisFailedToBeAdded?: Maybe<Array<Scalars['ID']['output']>>;
69214
+ groupArisFailedToBeRemoved?: Maybe<Array<Scalars['ID']['output']>>;
69215
+ resultingGroupAris?: Maybe<Array<Scalars['ID']['output']>>;
69216
+ success: Scalars['Boolean']['output'];
69217
+ };
69206
69218
  export declare enum JiraGlobalPermissionType {
69207
69219
  Administer = "ADMINISTER",
69208
69220
  ManageCustomOnboarding = "MANAGE_CUSTOM_ONBOARDING",
@@ -93755,6 +93767,7 @@ export declare type Mutation = {
93755
93767
  jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
93756
93768
  jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
93757
93769
  jira_setFieldSetsPreferences?: Maybe<JiraSetFieldSetsPreferencesPayload>;
93770
+ jira_setGlobalPermissionUserGroups?: Maybe<JiraGlobalPermissionSetUserGroupsPayload>;
93758
93771
  jira_setIssueSearchAggregationConfig?: Maybe<JiraSetIssueSearchAggregationConfigPayload>;
93759
93772
  jira_setIssueSearchFieldSets?: Maybe<JiraSetIssueSearchFieldSetsPayload>;
93760
93773
  jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
@@ -95714,6 +95727,10 @@ export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
95714
95727
  export declare type MutationJira_SetFieldSetsPreferencesArgs = {
95715
95728
  input: JiraSetFieldSetsPreferencesInput;
95716
95729
  };
95730
+ export declare type MutationJira_SetGlobalPermissionUserGroupsArgs = {
95731
+ cloudId: Scalars['ID']['input'];
95732
+ input: JiraGlobalPermissionSetUserGroupsInput;
95733
+ };
95717
95734
  export declare type MutationJira_SetIssueSearchAggregationConfigArgs = {
95718
95735
  input: JiraSetIssueSearchAggregationConfigInput;
95719
95736
  };
@@ -100011,6 +100028,7 @@ export declare type Query = {
100011
100028
  jira_backlog?: Maybe<JiraBacklog>;
100012
100029
  jira_backlogView?: Maybe<JiraBacklogView>;
100013
100030
  jira_boardView?: Maybe<JiraBoardView>;
100031
+ jira_boardViewCellsByIds?: Maybe<Array<Maybe<JiraBoardViewCell>>>;
100014
100032
  jira_boardsByIds?: Maybe<Array<Maybe<JiraBoard>>>;
100015
100033
  jira_categoryField?: Maybe<JiraJqlField>;
100016
100034
  jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
@@ -102624,6 +102642,9 @@ export declare type QueryJira_BacklogViewArgs = {
102624
102642
  export declare type QueryJira_BoardViewArgs = {
102625
102643
  input: JiraBoardViewInput;
102626
102644
  };
102645
+ export declare type QueryJira_BoardViewCellsByIdsArgs = {
102646
+ ids: Array<Scalars['ID']['input']>;
102647
+ };
102627
102648
  export declare type QueryJira_BoardsByIdsArgs = {
102628
102649
  ids: Array<Scalars['ID']['input']>;
102629
102650
  };