@forge/cli-shared 3.16.0-next.27 → 3.16.0-next.28
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
|
@@ -13895,6 +13895,16 @@ export type JiraLabelsFieldPayload = Payload & {
|
|
|
13895
13895
|
export type JiraLabelsInput = {
|
|
13896
13896
|
name?: Maybe<Scalars['String']>;
|
|
13897
13897
|
};
|
|
13898
|
+
export type JiraLegacyTeamFieldOperationInput = {
|
|
13899
|
+
operation: JiraSingleValueFieldOperations;
|
|
13900
|
+
teamId?: Maybe<Scalars['ID']>;
|
|
13901
|
+
};
|
|
13902
|
+
export type JiraLegacyTeamFieldPayload = Payload & {
|
|
13903
|
+
__typename?: 'JiraLegacyTeamFieldPayload';
|
|
13904
|
+
success: Scalars['Boolean'];
|
|
13905
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13906
|
+
field?: Maybe<JiraTeamField>;
|
|
13907
|
+
};
|
|
13898
13908
|
export type JiraLinkIssueToVersionRelatedWorkInput = {
|
|
13899
13909
|
issueId?: Maybe<Scalars['ID']>;
|
|
13900
13910
|
relatedWorkType: JiraVersionRelatedWorkType;
|
|
@@ -14162,6 +14172,7 @@ export type JiraMutation = {
|
|
|
14162
14172
|
updateTeamField?: Maybe<JiraTeamFieldPayload>;
|
|
14163
14173
|
updateResolutionField?: Maybe<JiraResolutionFieldPayload>;
|
|
14164
14174
|
updateCheckboxesField?: Maybe<JiraCheckboxesFieldPayload>;
|
|
14175
|
+
updateLegacyTeamField?: Maybe<JiraLegacyTeamFieldPayload>;
|
|
14165
14176
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
14166
14177
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
14167
14178
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -14357,6 +14368,9 @@ export type JiraMutationUpdateResolutionFieldArgs = {
|
|
|
14357
14368
|
export type JiraMutationUpdateCheckboxesFieldArgs = {
|
|
14358
14369
|
input: JiraUpdateCheckboxesFieldInput;
|
|
14359
14370
|
};
|
|
14371
|
+
export type JiraMutationUpdateLegacyTeamFieldArgs = {
|
|
14372
|
+
input: JiraUpdateLegacyTeamFieldInput;
|
|
14373
|
+
};
|
|
14360
14374
|
export type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
14361
14375
|
input: JiraPermissionSchemeAddGrantInput;
|
|
14362
14376
|
};
|
|
@@ -17811,6 +17825,10 @@ export type JiraUpdateLabelsFieldInput = {
|
|
|
17811
17825
|
id: Scalars['ID'];
|
|
17812
17826
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
17813
17827
|
};
|
|
17828
|
+
export type JiraUpdateLegacyTeamFieldInput = {
|
|
17829
|
+
id: Scalars['ID'];
|
|
17830
|
+
operation: JiraLegacyTeamFieldOperationInput;
|
|
17831
|
+
};
|
|
17814
17832
|
export type JiraUpdateMultipleSelectFieldInput = {
|
|
17815
17833
|
id: Scalars['ID'];
|
|
17816
17834
|
operations: Array<JiraMultipleSelectFieldOperationInput>;
|