@@ -17,7 +17,7 @@ class Base
1717 @paths = T . let ( [ ] , T ::Array [ T ::Hash [ Symbol , T . any ( T ::Array [ Symbol ] , String , Symbol ) ] ] )
1818 @custom_prefix = T . let ( nil , T . nilable ( String ) )
1919 @read_only_attributes = T . let ( [ ] , T . nilable ( T ::Array [ Symbol ] ) )
20- @block_update_attributes = T . let ( [ ] , T ::Array [ Symbol ] )
20+ @atomic_hash_attributes = T . let ( [ ] , T ::Array [ Symbol ] )
2121 @aliased_properties = T . let ( { } , T ::Hash [ String , String ] )
2222
2323 sig { returns ( T ::Hash [ Symbol , T . untyped ] ) }
@@ -64,7 +64,7 @@ class << self
6464 attr_reader :has_one
6565
6666 sig { returns ( T . nilable ( T ::Array [ Symbol ] ) ) }
67- attr_reader :block_update_attributes
67+ attr_reader :atomic_hash_attributes
6868
6969 sig { returns ( T . nilable ( T ::Hash [ T . any ( Symbol , String ) , String ] ) ) }
7070 attr_accessor :headers
@@ -422,7 +422,7 @@ def attributes_to_update
422422 ShopifyAPI ::Utils ::AttributesComparator . compare (
423423 stringified_updatable_attributes ,
424424 stringified_new_attributes ,
425- block_update_attributes : self . class . block_update_attributes || [ ] ,
425+ atomic_hash_attributes : self . class . atomic_hash_attributes || [ ] ,
426426 )
427427 end
428428
0 commit comments