Skip to content

Commit e770255

Browse files
Update GraphQL schema
1 parent adf64c1 commit e770255

5 files changed

Lines changed: 71 additions & 0 deletions

File tree

apps/avatax/e2e/generated/types.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2136,6 +2136,22 @@ export type AssignedSwatchAttributeValue = {
21362136
name?: Maybe<Scalars['String']['output']>;
21372137
/** Slug of the selected swatch value. */
21382138
slug?: Maybe<Scalars['String']['output']>;
2139+
/**
2140+
* Translation of the name.
2141+
*
2142+
* Added in Saleor 3.22.
2143+
*/
2144+
translation?: Maybe<Scalars['String']['output']>;
2145+
};
2146+
2147+
2148+
/**
2149+
* Represents a single swatch value.
2150+
*
2151+
* Added in Saleor 3.22.
2152+
*/
2153+
export type AssignedSwatchAttributeValueTranslationArgs = {
2154+
languageCode: LanguageCodeEnum;
21392155
};
21402156

21412157
/**

apps/np-atobarai/generated/graphql.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2043,6 +2043,22 @@ export type AssignedSwatchAttributeValue = {
20432043
readonly name?: Maybe<Scalars['String']['output']>;
20442044
/** Slug of the selected swatch value. */
20452045
readonly slug?: Maybe<Scalars['String']['output']>;
2046+
/**
2047+
* Translation of the name.
2048+
*
2049+
* Added in Saleor 3.22.
2050+
*/
2051+
readonly translation?: Maybe<Scalars['String']['output']>;
2052+
};
2053+
2054+
2055+
/**
2056+
* Represents a single swatch value.
2057+
*
2058+
* Added in Saleor 3.22.
2059+
*/
2060+
export type AssignedSwatchAttributeValueTranslationArgs = {
2061+
languageCode: LanguageCodeEnum;
20462062
};
20472063

20482064
/**

apps/onboarding/generated/graphql.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2043,6 +2043,22 @@ export type AssignedSwatchAttributeValue = {
20432043
readonly name?: Maybe<Scalars['String']['output']>;
20442044
/** Slug of the selected swatch value. */
20452045
readonly slug?: Maybe<Scalars['String']['output']>;
2046+
/**
2047+
* Translation of the name.
2048+
*
2049+
* Added in Saleor 3.22.
2050+
*/
2051+
readonly translation?: Maybe<Scalars['String']['output']>;
2052+
};
2053+
2054+
2055+
/**
2056+
* Represents a single swatch value.
2057+
*
2058+
* Added in Saleor 3.22.
2059+
*/
2060+
export type AssignedSwatchAttributeValueTranslationArgs = {
2061+
languageCode: LanguageCodeEnum;
20462062
};
20472063

20482064
/**

apps/stripe/e2e/generated/graphql.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2127,6 +2127,22 @@ export type AssignedSwatchAttributeValue = {
21272127
name?: Maybe<Scalars['String']['output']>;
21282128
/** Slug of the selected swatch value. */
21292129
slug?: Maybe<Scalars['String']['output']>;
2130+
/**
2131+
* Translation of the name.
2132+
*
2133+
* Added in Saleor 3.22.
2134+
*/
2135+
translation?: Maybe<Scalars['String']['output']>;
2136+
};
2137+
2138+
2139+
/**
2140+
* Represents a single swatch value.
2141+
*
2142+
* Added in Saleor 3.22.
2143+
*/
2144+
export type AssignedSwatchAttributeValueTranslationArgs = {
2145+
languageCode: LanguageCodeEnum;
21302146
};
21312147

21322148
/**

schema.graphql

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37894,6 +37894,13 @@ type AssignedSwatchAttributeValue @doc(category: "Attributes") {
3789437894

3789537895
"""File associated with the attribute."""
3789637896
file: File
37897+
37898+
"""
37899+
Translation of the name.
37900+
37901+
Added in Saleor 3.22.
37902+
"""
37903+
translation(languageCode: LanguageCodeEnum!): String
3789737904
}
3789837905

3789937906
"""

0 commit comments

Comments
 (0)