@@ -107,30 +107,6 @@ class EventDeliveryFilterInput(BaseModel):
107107 eventType : Optional [WebhookEventTypeEnum ] = None
108108
109109
110- class AttributeChoicesSortingInput (BaseModel ):
111- direction : OrderDirection
112- field : AttributeChoicesSortField
113-
114-
115- class AttributeValueFilterInput (BaseModel ):
116- search : Optional [str ] = None
117- ids : Optional [List [str ]] = None
118- slugs : Optional [List [str ]] = None
119-
120-
121- class AttributeValueWhereInput (BaseModel ):
122- ids : Optional [List [str ]] = None
123- name : Optional ["StringFilterInput" ] = None
124- slug : Optional ["StringFilterInput" ] = None
125- AND : Optional [List ["AttributeValueWhereInput" ]] = None
126- OR : Optional [List ["AttributeValueWhereInput" ]] = None
127-
128-
129- class StringFilterInput (BaseModel ):
130- eq : Optional [str ] = None
131- oneOf : Optional [List [str ]] = None
132-
133-
134110class AttributeFilterInput (BaseModel ):
135111 valueRequired : Optional [bool ] = None
136112 isVariantOnly : Optional [bool ] = None
@@ -172,6 +148,11 @@ class AttributeWhereInput(BaseModel):
172148 OR : Optional [List ["AttributeWhereInput" ]] = None
173149
174150
151+ class StringFilterInput (BaseModel ):
152+ eq : Optional [str ] = None
153+ oneOf : Optional [List [str ]] = None
154+
155+
175156class AttributeInputTypeEnumFilterInput (BaseModel ):
176157 eq : Optional [AttributeInputTypeEnum ] = None
177158 oneOf : Optional [List [AttributeInputTypeEnum ]] = None
@@ -192,6 +173,25 @@ class MeasurementUnitsEnumFilterInput(BaseModel):
192173 oneOf : Optional [List [MeasurementUnitsEnum ]] = None
193174
194175
176+ class AttributeChoicesSortingInput (BaseModel ):
177+ direction : OrderDirection
178+ field : AttributeChoicesSortField
179+
180+
181+ class AttributeValueFilterInput (BaseModel ):
182+ search : Optional [str ] = None
183+ ids : Optional [List [str ]] = None
184+ slugs : Optional [List [str ]] = None
185+
186+
187+ class AttributeValueWhereInput (BaseModel ):
188+ ids : Optional [List [str ]] = None
189+ name : Optional ["StringFilterInput" ] = None
190+ slug : Optional ["StringFilterInput" ] = None
191+ AND : Optional [List ["AttributeValueWhereInput" ]] = None
192+ OR : Optional [List ["AttributeValueWhereInput" ]] = None
193+
194+
195195class ProductFilterInput (BaseModel ):
196196 isPublished : Optional [bool ] = None
197197 collections : Optional [List [str ]] = None
@@ -1098,6 +1098,10 @@ class TimePeriodInputType(BaseModel):
10981098 type : TimePeriodTypeEnum
10991099
11001100
1101+ class RefundSettingsUpdateInput (BaseModel ):
1102+ refundReasonReferenceType : str
1103+
1104+
11011105class ShippingMethodChannelListingInput (BaseModel ):
11021106 addChannels : Optional [List ["ShippingMethodChannelListingAddInput" ]] = None
11031107 removeChannels : Optional [List [str ]] = None
@@ -1785,6 +1789,7 @@ class OrderReturnFulfillmentLineInput(BaseModel):
17851789class OrderGrantRefundCreateInput (BaseModel ):
17861790 amount : Optional [Any ] = None
17871791 reason : Optional [str ] = None
1792+ reasonReference : Optional [str ] = None
17881793 lines : Optional [List ["OrderGrantRefundCreateLineInput" ]] = None
17891794 grantRefundForShipping : Optional [bool ] = None
17901795 transactionId : str
@@ -1799,6 +1804,7 @@ class OrderGrantRefundCreateLineInput(BaseModel):
17991804class OrderGrantRefundUpdateInput (BaseModel ):
18001805 amount : Optional [Any ] = None
18011806 reason : Optional [str ] = None
1807+ reasonReference : Optional [str ] = None
18021808 addLines : Optional [List ["OrderGrantRefundUpdateLineAddInput" ]] = None
18031809 removeLines : Optional [List [str ]] = None
18041810 grantRefundForShipping : Optional [bool ] = None
@@ -2370,6 +2376,7 @@ class AttributeCreateInput(BaseModel):
23702376 storefrontSearchPosition : Optional [int ] = None
23712377 availableInGrid : Optional [bool ] = None
23722378 externalReference : Optional [str ] = None
2379+ referenceTypes : Optional [List [str ]] = None
23732380
23742381
23752382class AttributeValueCreateInput (BaseModel ):
@@ -2396,6 +2403,7 @@ class AttributeUpdateInput(BaseModel):
23962403 storefrontSearchPosition : Optional [int ] = None
23972404 availableInGrid : Optional [bool ] = None
23982405 externalReference : Optional [str ] = None
2406+ referenceTypes : Optional [List [str ]] = None
23992407
24002408
24012409class AttributeValueUpdateInput (BaseModel ):
@@ -2553,9 +2561,9 @@ class PermissionGroupUpdateInput(BaseModel):
25532561 restrictedAccessToChannels : Optional [bool ] = None
25542562
25552563
2556- AttributeValueWhereInput .model_rebuild ()
25572564AttributeFilterInput .model_rebuild ()
25582565AttributeWhereInput .model_rebuild ()
2566+ AttributeValueWhereInput .model_rebuild ()
25592567ProductFilterInput .model_rebuild ()
25602568AttributeInput .model_rebuild ()
25612569AssignedAttributeValueInput .model_rebuild ()
0 commit comments