|
@@ -1816,6 +1816,8 @@ export type Mutation = {
|
|
|
createZone: Zone;
|
|
createZone: Zone;
|
|
|
/** Delete an Asset */
|
|
/** Delete an Asset */
|
|
|
deleteAsset: DeletionResponse;
|
|
deleteAsset: DeletionResponse;
|
|
|
|
|
+ /** Delete multiple Assets */
|
|
|
|
|
+ deleteAssets: DeletionResponse;
|
|
|
/** Delete a Channel */
|
|
/** Delete a Channel */
|
|
|
deleteChannel: DeletionResponse;
|
|
deleteChannel: DeletionResponse;
|
|
|
/** Delete a Collection and all of its descendants */
|
|
/** Delete a Collection and all of its descendants */
|
|
@@ -2075,6 +2077,12 @@ export type MutationDeleteAssetArgs = {
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+export type MutationDeleteAssetsArgs = {
|
|
|
|
|
+ ids: Array<Scalars['ID']>;
|
|
|
|
|
+ force?: Maybe<Scalars['Boolean']>;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
export type MutationDeleteChannelArgs = {
|
|
export type MutationDeleteChannelArgs = {
|
|
|
id: Scalars['ID'];
|
|
id: Scalars['ID'];
|
|
|
};
|
|
};
|
|
@@ -5310,15 +5318,15 @@ export type UpdateAssetMutation = (
|
|
|
) }
|
|
) }
|
|
|
);
|
|
);
|
|
|
|
|
|
|
|
-export type DeleteAssetMutationVariables = {
|
|
|
|
|
- id: Scalars['ID'];
|
|
|
|
|
|
|
+export type DeleteAssetsMutationVariables = {
|
|
|
|
|
+ ids: Array<Scalars['ID']>;
|
|
|
force?: Maybe<Scalars['Boolean']>;
|
|
force?: Maybe<Scalars['Boolean']>;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
-export type DeleteAssetMutation = (
|
|
|
|
|
|
|
+export type DeleteAssetsMutation = (
|
|
|
{ __typename?: 'Mutation' }
|
|
{ __typename?: 'Mutation' }
|
|
|
- & { deleteAsset: (
|
|
|
|
|
|
|
+ & { deleteAssets: (
|
|
|
{ __typename?: 'DeletionResponse' }
|
|
{ __typename?: 'DeletionResponse' }
|
|
|
& Pick<DeletionResponse, 'result' | 'message'>
|
|
& Pick<DeletionResponse, 'result' | 'message'>
|
|
|
) }
|
|
) }
|
|
@@ -7389,10 +7397,10 @@ export namespace UpdateAsset {
|
|
|
export type UpdateAsset = AssetFragment;
|
|
export type UpdateAsset = AssetFragment;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-export namespace DeleteAsset {
|
|
|
|
|
- export type Variables = DeleteAssetMutationVariables;
|
|
|
|
|
- export type Mutation = DeleteAssetMutation;
|
|
|
|
|
- export type DeleteAsset = DeleteAssetMutation['deleteAsset'];
|
|
|
|
|
|
|
+export namespace DeleteAssets {
|
|
|
|
|
+ export type Variables = DeleteAssetsMutationVariables;
|
|
|
|
|
+ export type Mutation = DeleteAssetsMutation;
|
|
|
|
|
+ export type DeleteAssets = DeleteAssetsMutation['deleteAssets'];
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
export namespace SearchProducts {
|
|
export namespace SearchProducts {
|