@forge/cli-shared 2.1.4-next.0 → 2.1.4-next.1
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
|
@@ -1188,6 +1188,19 @@ export declare type CfdIssueColumnChangeEntry = {
|
|
|
1188
1188
|
statusTo?: Maybe<Scalars['ID']>;
|
|
1189
1189
|
point?: Maybe<TimeSeriesPoint>;
|
|
1190
1190
|
};
|
|
1191
|
+
export declare type CardCoverImageVisibilityToggleInput = {
|
|
1192
|
+
boardAri: Scalars['ID'];
|
|
1193
|
+
isVisible: Scalars['Boolean'];
|
|
1194
|
+
};
|
|
1195
|
+
export declare type CardCoverImageVisibilityToggleOutput = {
|
|
1196
|
+
__typename?: 'CardCoverImageVisibilityToggleOutput';
|
|
1197
|
+
boardAri: Scalars['ID'];
|
|
1198
|
+
isVisible: Scalars['Boolean'];
|
|
1199
|
+
statusCode: Scalars['Int'];
|
|
1200
|
+
success: Scalars['Boolean'];
|
|
1201
|
+
message: Scalars['String'];
|
|
1202
|
+
clientMutationId?: Maybe<Scalars['ID']>;
|
|
1203
|
+
};
|
|
1191
1204
|
export declare type CardCoverMedia = {
|
|
1192
1205
|
__typename?: 'CardCoverMedia';
|
|
1193
1206
|
attachmentMediaApiId?: Maybe<Scalars['ID']>;
|
|
@@ -8255,6 +8268,7 @@ export declare type Mutation = {
|
|
|
8255
8268
|
unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
|
|
8256
8269
|
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
8257
8270
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
8271
|
+
setCardCoverImageVisibility?: Maybe<CardCoverImageVisibilityToggleOutput>;
|
|
8258
8272
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
8259
8273
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
8260
8274
|
deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -8429,6 +8443,9 @@ export declare type MutationCreateCardParentArgs = {
|
|
|
8429
8443
|
export declare type MutationRankCardParentArgs = {
|
|
8430
8444
|
input: CardParentRankInput;
|
|
8431
8445
|
};
|
|
8446
|
+
export declare type MutationSetCardCoverImageVisibilityArgs = {
|
|
8447
|
+
input?: Maybe<CardCoverImageVisibilityToggleInput>;
|
|
8448
|
+
};
|
|
8432
8449
|
export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
|
|
8433
8450
|
input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
|
|
8434
8451
|
};
|