diff --git a/apps/avatax/e2e/generated/types.ts b/apps/avatax/e2e/generated/types.ts index 58557ed76..4a7e82741 100644 --- a/apps/avatax/e2e/generated/types.ts +++ b/apps/avatax/e2e/generated/types.ts @@ -2136,6 +2136,22 @@ export type AssignedSwatchAttributeValue = { name?: Maybe; /** Slug of the selected swatch value. */ slug?: Maybe; + /** + * Translation of the name. + * + * Added in Saleor 3.22. + */ + translation?: Maybe; +}; + + +/** + * Represents a single swatch value. + * + * Added in Saleor 3.22. + */ +export type AssignedSwatchAttributeValueTranslationArgs = { + languageCode: LanguageCodeEnum; }; /** diff --git a/apps/np-atobarai/generated/graphql.ts b/apps/np-atobarai/generated/graphql.ts index 5ac7801cd..5347fd8b5 100644 --- a/apps/np-atobarai/generated/graphql.ts +++ b/apps/np-atobarai/generated/graphql.ts @@ -2043,6 +2043,22 @@ export type AssignedSwatchAttributeValue = { readonly name?: Maybe; /** Slug of the selected swatch value. */ readonly slug?: Maybe; + /** + * Translation of the name. + * + * Added in Saleor 3.22. + */ + readonly translation?: Maybe; +}; + + +/** + * Represents a single swatch value. + * + * Added in Saleor 3.22. + */ +export type AssignedSwatchAttributeValueTranslationArgs = { + languageCode: LanguageCodeEnum; }; /** diff --git a/apps/onboarding/generated/graphql.ts b/apps/onboarding/generated/graphql.ts index 1924a9157..074a24cb2 100644 --- a/apps/onboarding/generated/graphql.ts +++ b/apps/onboarding/generated/graphql.ts @@ -2043,6 +2043,22 @@ export type AssignedSwatchAttributeValue = { readonly name?: Maybe; /** Slug of the selected swatch value. */ readonly slug?: Maybe; + /** + * Translation of the name. + * + * Added in Saleor 3.22. + */ + readonly translation?: Maybe; +}; + + +/** + * Represents a single swatch value. + * + * Added in Saleor 3.22. + */ +export type AssignedSwatchAttributeValueTranslationArgs = { + languageCode: LanguageCodeEnum; }; /** diff --git a/apps/stripe/e2e/generated/graphql.ts b/apps/stripe/e2e/generated/graphql.ts index 25fd63acb..ee8f36013 100644 --- a/apps/stripe/e2e/generated/graphql.ts +++ b/apps/stripe/e2e/generated/graphql.ts @@ -2127,6 +2127,22 @@ export type AssignedSwatchAttributeValue = { name?: Maybe; /** Slug of the selected swatch value. */ slug?: Maybe; + /** + * Translation of the name. + * + * Added in Saleor 3.22. + */ + translation?: Maybe; +}; + + +/** + * Represents a single swatch value. + * + * Added in Saleor 3.22. + */ +export type AssignedSwatchAttributeValueTranslationArgs = { + languageCode: LanguageCodeEnum; }; /** diff --git a/schema.graphql b/schema.graphql index 64e126cb9..837198119 100644 --- a/schema.graphql +++ b/schema.graphql @@ -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 } """