Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions apps/avatax/e2e/generated/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2136,6 +2136,22 @@ export type AssignedSwatchAttributeValue = {
name?: Maybe<Scalars['String']['output']>;
/** Slug of the selected swatch value. */
slug?: Maybe<Scalars['String']['output']>;
/**
* Translation of the name.
*
* Added in Saleor 3.22.
*/
translation?: Maybe<Scalars['String']['output']>;
};


/**
* Represents a single swatch value.
*
* Added in Saleor 3.22.
*/
export type AssignedSwatchAttributeValueTranslationArgs = {
languageCode: LanguageCodeEnum;
};

/**
Expand Down
16 changes: 16 additions & 0 deletions apps/np-atobarai/generated/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2043,6 +2043,22 @@ export type AssignedSwatchAttributeValue = {
readonly name?: Maybe<Scalars['String']['output']>;
/** Slug of the selected swatch value. */
readonly slug?: Maybe<Scalars['String']['output']>;
/**
* Translation of the name.
*
* Added in Saleor 3.22.
*/
readonly translation?: Maybe<Scalars['String']['output']>;
};


/**
* Represents a single swatch value.
*
* Added in Saleor 3.22.
*/
export type AssignedSwatchAttributeValueTranslationArgs = {
languageCode: LanguageCodeEnum;
};

/**
Expand Down
16 changes: 16 additions & 0 deletions apps/onboarding/generated/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2043,6 +2043,22 @@ export type AssignedSwatchAttributeValue = {
readonly name?: Maybe<Scalars['String']['output']>;
/** Slug of the selected swatch value. */
readonly slug?: Maybe<Scalars['String']['output']>;
/**
* Translation of the name.
*
* Added in Saleor 3.22.
*/
readonly translation?: Maybe<Scalars['String']['output']>;
};


/**
* Represents a single swatch value.
*
* Added in Saleor 3.22.
*/
export type AssignedSwatchAttributeValueTranslationArgs = {
languageCode: LanguageCodeEnum;
};

/**
Expand Down
16 changes: 16 additions & 0 deletions apps/stripe/e2e/generated/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2127,6 +2127,22 @@ export type AssignedSwatchAttributeValue = {
name?: Maybe<Scalars['String']['output']>;
/** Slug of the selected swatch value. */
slug?: Maybe<Scalars['String']['output']>;
/**
* Translation of the name.
*
* Added in Saleor 3.22.
*/
translation?: Maybe<Scalars['String']['output']>;
};


/**
* Represents a single swatch value.
*
* Added in Saleor 3.22.
*/
export type AssignedSwatchAttributeValueTranslationArgs = {
languageCode: LanguageCodeEnum;
};

/**
Expand Down
7 changes: 7 additions & 0 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -37894,6 +37894,13 @@ type AssignedSwatchAttributeValue @doc(category: "Attributes") {

"""File associated with the attribute."""
file: File

"""
Translation of the name.

Added in Saleor 3.22.
"""
translation(languageCode: LanguageCodeEnum!): String
}

"""
Expand Down
Loading