|
@@ -1118,6 +1118,7 @@ export type Asset = Node & {
|
|
|
source: Scalars['String'];
|
|
source: Scalars['String'];
|
|
|
preview: Scalars['String'];
|
|
preview: Scalars['String'];
|
|
|
focalPoint?: Maybe<Coordinate>;
|
|
focalPoint?: Maybe<Coordinate>;
|
|
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
export type MimeTypeError = ErrorResult & {
|
|
export type MimeTypeError = ErrorResult & {
|
|
@@ -1142,6 +1143,7 @@ export type AssetListOptions = {
|
|
|
export type CreateAssetInput = {
|
|
export type CreateAssetInput = {
|
|
|
file: Scalars['Upload'];
|
|
file: Scalars['Upload'];
|
|
|
tags?: Maybe<Array<Scalars['String']>>;
|
|
tags?: Maybe<Array<Scalars['String']>>;
|
|
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
export type CoordinateInput = {
|
|
export type CoordinateInput = {
|
|
@@ -1166,6 +1168,7 @@ export type UpdateAssetInput = {
|
|
|
name?: Maybe<Scalars['String']>;
|
|
name?: Maybe<Scalars['String']>;
|
|
|
focalPoint?: Maybe<CoordinateInput>;
|
|
focalPoint?: Maybe<CoordinateInput>;
|
|
|
tags?: Maybe<Array<Scalars['String']>>;
|
|
tags?: Maybe<Array<Scalars['String']>>;
|
|
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
export type AssignAssetsToChannelInput = {
|
|
export type AssignAssetsToChannelInput = {
|
|
@@ -4802,6 +4805,7 @@ export type CustomFields = {
|
|
|
__typename?: 'CustomFields';
|
|
__typename?: 'CustomFields';
|
|
|
Address: Array<CustomFieldConfig>;
|
|
Address: Array<CustomFieldConfig>;
|
|
|
Administrator: Array<CustomFieldConfig>;
|
|
Administrator: Array<CustomFieldConfig>;
|
|
|
|
|
+ Asset: Array<CustomFieldConfig>;
|
|
|
Channel: Array<CustomFieldConfig>;
|
|
Channel: Array<CustomFieldConfig>;
|
|
|
Collection: Array<CustomFieldConfig>;
|
|
Collection: Array<CustomFieldConfig>;
|
|
|
Customer: Array<CustomFieldConfig>;
|
|
Customer: Array<CustomFieldConfig>;
|