shopify_api 12.3.0 → 12.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. checksums.yaml +4 -4
  2. data/.github/ISSUE_TEMPLATE/BUG_REPORT.md +40 -0
  3. data/.github/ISSUE_TEMPLATE/ENHANCEMENT.md +9 -0
  4. data/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +9 -0
  5. data/.github/workflows/build.yml +0 -3
  6. data/.github/workflows/stale.yml +1 -0
  7. data/CHANGELOG.md +8 -1
  8. data/Gemfile.lock +9 -9
  9. data/lib/shopify_api/admin_versions.rb +2 -1
  10. data/lib/shopify_api/rest/base.rb +11 -4
  11. data/lib/shopify_api/rest/resources/2022_01/assigned_fulfillment_order.rb +7 -0
  12. data/lib/shopify_api/rest/resources/2022_01/customer.rb +9 -1
  13. data/lib/shopify_api/rest/resources/2022_01/fulfillment.rb +5 -1
  14. data/lib/shopify_api/rest/resources/2022_01/fulfillment_order.rb +3 -3
  15. data/lib/shopify_api/rest/resources/2022_04/assigned_fulfillment_order.rb +7 -0
  16. data/lib/shopify_api/rest/resources/2022_04/customer.rb +9 -1
  17. data/lib/shopify_api/rest/resources/2022_04/fulfillment.rb +5 -1
  18. data/lib/shopify_api/rest/resources/2022_04/fulfillment_order.rb +3 -3
  19. data/lib/shopify_api/rest/resources/2022_04/metafield.rb +5 -3
  20. data/lib/shopify_api/rest/resources/2022_07/assigned_fulfillment_order.rb +7 -0
  21. data/lib/shopify_api/rest/resources/2022_07/customer.rb +9 -1
  22. data/lib/shopify_api/rest/resources/2022_07/fulfillment.rb +5 -1
  23. data/lib/shopify_api/rest/resources/2022_07/fulfillment_order.rb +3 -3
  24. data/lib/shopify_api/rest/resources/2022_07/metafield.rb +5 -3
  25. data/lib/shopify_api/rest/resources/2022_10/assigned_fulfillment_order.rb +7 -0
  26. data/lib/shopify_api/rest/resources/2022_10/customer.rb +9 -1
  27. data/lib/shopify_api/rest/resources/2022_10/fulfillment.rb +5 -1
  28. data/lib/shopify_api/rest/resources/2022_10/fulfillment_order.rb +3 -3
  29. data/lib/shopify_api/rest/resources/2022_10/metafield.rb +5 -3
  30. data/lib/shopify_api/rest/resources/2023_01/abandoned_checkout.rb +190 -0
  31. data/lib/shopify_api/rest/resources/2023_01/access_scope.rb +58 -0
  32. data/lib/shopify_api/rest/resources/2023_01/apple_pay_certificate.rb +105 -0
  33. data/lib/shopify_api/rest/resources/2023_01/application_charge.rb +104 -0
  34. data/lib/shopify_api/rest/resources/2023_01/application_credit.rb +87 -0
  35. data/lib/shopify_api/rest/resources/2023_01/article.rb +265 -0
  36. data/lib/shopify_api/rest/resources/2023_01/asset.rb +118 -0
  37. data/lib/shopify_api/rest/resources/2023_01/assigned_fulfillment_order.rb +86 -0
  38. data/lib/shopify_api/rest/resources/2023_01/balance.rb +50 -0
  39. data/lib/shopify_api/rest/resources/2023_01/blog.rb +162 -0
  40. data/lib/shopify_api/rest/resources/2023_01/cancellation_request.rb +83 -0
  41. data/lib/shopify_api/rest/resources/2023_01/carrier_service.rb +113 -0
  42. data/lib/shopify_api/rest/resources/2023_01/checkout.rb +209 -0
  43. data/lib/shopify_api/rest/resources/2023_01/collect.rb +142 -0
  44. data/lib/shopify_api/rest/resources/2023_01/collection.rb +110 -0
  45. data/lib/shopify_api/rest/resources/2023_01/collection_listing.rb +155 -0
  46. data/lib/shopify_api/rest/resources/2023_01/comment.rb +283 -0
  47. data/lib/shopify_api/rest/resources/2023_01/country.rb +137 -0
  48. data/lib/shopify_api/rest/resources/2023_01/currency.rb +57 -0
  49. data/lib/shopify_api/rest/resources/2023_01/custom_collection.rb +187 -0
  50. data/lib/shopify_api/rest/resources/2023_01/customer.rb +329 -0
  51. data/lib/shopify_api/rest/resources/2023_01/customer_address.rb +201 -0
  52. data/lib/shopify_api/rest/resources/2023_01/customer_saved_search.rb +169 -0
  53. data/lib/shopify_api/rest/resources/2023_01/deprecated_api_call.rb +57 -0
  54. data/lib/shopify_api/rest/resources/2023_01/discount_code.rb +219 -0
  55. data/lib/shopify_api/rest/resources/2023_01/dispute.rb +111 -0
  56. data/lib/shopify_api/rest/resources/2023_01/draft_order.rb +275 -0
  57. data/lib/shopify_api/rest/resources/2023_01/event.rb +148 -0
  58. data/lib/shopify_api/rest/resources/2023_01/fulfillment.rb +225 -0
  59. data/lib/shopify_api/rest/resources/2023_01/fulfillment_event.rb +166 -0
  60. data/lib/shopify_api/rest/resources/2023_01/fulfillment_order.rb +316 -0
  61. data/lib/shopify_api/rest/resources/2023_01/fulfillment_request.rb +87 -0
  62. data/lib/shopify_api/rest/resources/2023_01/fulfillment_service.rb +130 -0
  63. data/lib/shopify_api/rest/resources/2023_01/gift_card.rb +215 -0
  64. data/lib/shopify_api/rest/resources/2023_01/gift_card_adjustment.rb +118 -0
  65. data/lib/shopify_api/rest/resources/2023_01/image.rb +157 -0
  66. data/lib/shopify_api/rest/resources/2023_01/inventory_item.rb +108 -0
  67. data/lib/shopify_api/rest/resources/2023_01/inventory_level.rb +179 -0
  68. data/lib/shopify_api/rest/resources/2023_01/location.rb +167 -0
  69. data/lib/shopify_api/rest/resources/2023_01/locations_for_move.rb +56 -0
  70. data/lib/shopify_api/rest/resources/2023_01/marketing_event.rb +209 -0
  71. data/lib/shopify_api/rest/resources/2023_01/metafield.rb +344 -0
  72. data/lib/shopify_api/rest/resources/2023_01/mobile_platform_application.rb +110 -0
  73. data/lib/shopify_api/rest/resources/2023_01/order.rb +479 -0
  74. data/lib/shopify_api/rest/resources/2023_01/order_risk.rb +135 -0
  75. data/lib/shopify_api/rest/resources/2023_01/page.rb +194 -0
  76. data/lib/shopify_api/rest/resources/2023_01/payment.rb +140 -0
  77. data/lib/shopify_api/rest/resources/2023_01/payment_gateway.rb +143 -0
  78. data/lib/shopify_api/rest/resources/2023_01/payment_transaction.rb +107 -0
  79. data/lib/shopify_api/rest/resources/2023_01/payout.rb +97 -0
  80. data/lib/shopify_api/rest/resources/2023_01/policy.rb +69 -0
  81. data/lib/shopify_api/rest/resources/2023_01/price_rule.rb +223 -0
  82. data/lib/shopify_api/rest/resources/2023_01/product.rb +223 -0
  83. data/lib/shopify_api/rest/resources/2023_01/product_listing.rb +196 -0
  84. data/lib/shopify_api/rest/resources/2023_01/product_resource_feedback.rb +88 -0
  85. data/lib/shopify_api/rest/resources/2023_01/province.rb +132 -0
  86. data/lib/shopify_api/rest/resources/2023_01/recurring_application_charge.rb +167 -0
  87. data/lib/shopify_api/rest/resources/2023_01/redirect.rb +139 -0
  88. data/lib/shopify_api/rest/resources/2023_01/refund.rb +151 -0
  89. data/lib/shopify_api/rest/resources/2023_01/report.rb +121 -0
  90. data/lib/shopify_api/rest/resources/2023_01/resource_feedback.rb +73 -0
  91. data/lib/shopify_api/rest/resources/2023_01/script_tag.rb +155 -0
  92. data/lib/shopify_api/rest/resources/2023_01/shipping_zone.rb +83 -0
  93. data/lib/shopify_api/rest/resources/2023_01/shop.rb +221 -0
  94. data/lib/shopify_api/rest/resources/2023_01/smart_collection.rb +216 -0
  95. data/lib/shopify_api/rest/resources/2023_01/storefront_access_token.rb +87 -0
  96. data/lib/shopify_api/rest/resources/2023_01/tender_transaction.rb +93 -0
  97. data/lib/shopify_api/rest/resources/2023_01/theme.rb +120 -0
  98. data/lib/shopify_api/rest/resources/2023_01/transaction.rb +181 -0
  99. data/lib/shopify_api/rest/resources/2023_01/usage_charge.rb +97 -0
  100. data/lib/shopify_api/rest/resources/2023_01/user.rb +138 -0
  101. data/lib/shopify_api/rest/resources/2023_01/variant.rb +212 -0
  102. data/lib/shopify_api/rest/resources/2023_01/webhook.rb +168 -0
  103. data/lib/shopify_api/version.rb +1 -1
  104. metadata +78 -3
  105. data/.github/ISSUE_TEMPLATE.md +0 -35
@@ -0,0 +1,155 @@
1
+ # typed: false
2
+ # frozen_string_literal: true
3
+
4
+ ########################################################################################################################
5
+ # This file is auto-generated. If you have an issue, please create a GitHub issue. #
6
+ ########################################################################################################################
7
+
8
+ module ShopifyAPI
9
+ class CollectionListing < ShopifyAPI::Rest::Base
10
+ extend T::Sig
11
+
12
+ @prev_page_info = T.let(Concurrent::ThreadLocalVar.new { nil }, Concurrent::ThreadLocalVar)
13
+ @next_page_info = T.let(Concurrent::ThreadLocalVar.new { nil }, Concurrent::ThreadLocalVar)
14
+
15
+ sig { params(session: T.nilable(ShopifyAPI::Auth::Session)).void }
16
+ def initialize(session: ShopifyAPI::Context.active_session)
17
+ super(session: session)
18
+
19
+ @body_html = T.let(nil, T.nilable(String))
20
+ @collection_id = T.let(nil, T.nilable(Integer))
21
+ @default_product_image = T.let(nil, T.nilable(T::Array[T.untyped]))
22
+ @handle = T.let(nil, T.nilable(String))
23
+ @image = T.let(nil, T.nilable(Image))
24
+ @published_at = T.let(nil, T.nilable(String))
25
+ @sort_order = T.let(nil, T.nilable(String))
26
+ @title = T.let(nil, T.nilable(String))
27
+ @updated_at = T.let(nil, T.nilable(String))
28
+ end
29
+
30
+ @has_one = T.let({
31
+ image: Image
32
+ }, T::Hash[Symbol, Class])
33
+ @has_many = T.let({}, T::Hash[Symbol, Class])
34
+ @paths = T.let([
35
+ {http_method: :delete, operation: :delete, ids: [:collection_id], path: "collection_listings/<collection_id>.json"},
36
+ {http_method: :get, operation: :get, ids: [], path: "collection_listings.json"},
37
+ {http_method: :get, operation: :get, ids: [:collection_id], path: "collection_listings/<collection_id>.json"},
38
+ {http_method: :get, operation: :product_ids, ids: [:collection_id], path: "collection_listings/<collection_id>/product_ids.json"},
39
+ {http_method: :put, operation: :put, ids: [:collection_id], path: "collection_listings/<collection_id>.json"}
40
+ ], T::Array[T::Hash[String, T.any(T::Array[Symbol], String, Symbol)]])
41
+
42
+ sig { returns(T.nilable(String)) }
43
+ attr_reader :body_html
44
+ sig { returns(T.nilable(Integer)) }
45
+ attr_reader :collection_id
46
+ sig { returns(T.nilable(T::Array[T::Hash[T.untyped, T.untyped]])) }
47
+ attr_reader :default_product_image
48
+ sig { returns(T.nilable(String)) }
49
+ attr_reader :handle
50
+ sig { returns(T.nilable(Image)) }
51
+ attr_reader :image
52
+ sig { returns(T.nilable(String)) }
53
+ attr_reader :published_at
54
+ sig { returns(T.nilable(String)) }
55
+ attr_reader :sort_order
56
+ sig { returns(T.nilable(String)) }
57
+ attr_reader :title
58
+ sig { returns(T.nilable(String)) }
59
+ attr_reader :updated_at
60
+
61
+ class << self
62
+ sig do
63
+ returns(String)
64
+ end
65
+ def primary_key()
66
+ "collection_id"
67
+ end
68
+
69
+ sig do
70
+ params(
71
+ collection_id: T.any(Integer, String),
72
+ session: Auth::Session
73
+ ).returns(T.nilable(CollectionListing))
74
+ end
75
+ def find(
76
+ collection_id:,
77
+ session: ShopifyAPI::Context.active_session
78
+ )
79
+ result = base_find(
80
+ session: session,
81
+ ids: {collection_id: collection_id},
82
+ params: {},
83
+ )
84
+ T.cast(result[0], T.nilable(CollectionListing))
85
+ end
86
+
87
+ sig do
88
+ params(
89
+ collection_id: T.any(Integer, String),
90
+ session: Auth::Session
91
+ ).returns(T.untyped)
92
+ end
93
+ def delete(
94
+ collection_id:,
95
+ session: ShopifyAPI::Context.active_session
96
+ )
97
+ request(
98
+ http_method: :delete,
99
+ operation: :delete,
100
+ session: session,
101
+ ids: {collection_id: collection_id},
102
+ params: {},
103
+ )
104
+ end
105
+
106
+ sig do
107
+ params(
108
+ limit: T.untyped,
109
+ session: Auth::Session,
110
+ kwargs: T.untyped
111
+ ).returns(T::Array[CollectionListing])
112
+ end
113
+ def all(
114
+ limit: nil,
115
+ session: ShopifyAPI::Context.active_session,
116
+ **kwargs
117
+ )
118
+ response = base_find(
119
+ session: session,
120
+ ids: {},
121
+ params: {limit: limit}.merge(kwargs).compact,
122
+ )
123
+
124
+ T.cast(response, T::Array[CollectionListing])
125
+ end
126
+
127
+ sig do
128
+ params(
129
+ collection_id: T.any(Integer, String),
130
+ limit: T.untyped,
131
+ session: Auth::Session,
132
+ kwargs: T.untyped
133
+ ).returns(T.untyped)
134
+ end
135
+ def product_ids(
136
+ collection_id:,
137
+ limit: nil,
138
+ session: ShopifyAPI::Context.active_session,
139
+ **kwargs
140
+ )
141
+ request(
142
+ http_method: :get,
143
+ operation: :product_ids,
144
+ session: session,
145
+ ids: {collection_id: collection_id},
146
+ params: {limit: limit}.merge(kwargs).compact,
147
+ body: {},
148
+ entity: nil,
149
+ )
150
+ end
151
+
152
+ end
153
+
154
+ end
155
+ end
@@ -0,0 +1,283 @@
1
+ # typed: false
2
+ # frozen_string_literal: true
3
+
4
+ ########################################################################################################################
5
+ # This file is auto-generated. If you have an issue, please create a GitHub issue. #
6
+ ########################################################################################################################
7
+
8
+ module ShopifyAPI
9
+ class Comment < ShopifyAPI::Rest::Base
10
+ extend T::Sig
11
+
12
+ @prev_page_info = T.let(Concurrent::ThreadLocalVar.new { nil }, Concurrent::ThreadLocalVar)
13
+ @next_page_info = T.let(Concurrent::ThreadLocalVar.new { nil }, Concurrent::ThreadLocalVar)
14
+
15
+ sig { params(session: T.nilable(ShopifyAPI::Auth::Session)).void }
16
+ def initialize(session: ShopifyAPI::Context.active_session)
17
+ super(session: session)
18
+
19
+ @article_id = T.let(nil, T.nilable(Integer))
20
+ @author = T.let(nil, T.nilable(String))
21
+ @blog_id = T.let(nil, T.nilable(Integer))
22
+ @body = T.let(nil, T.nilable(String))
23
+ @body_html = T.let(nil, T.nilable(String))
24
+ @created_at = T.let(nil, T.nilable(String))
25
+ @email = T.let(nil, T.nilable(String))
26
+ @id = T.let(nil, T.nilable(Integer))
27
+ @ip = T.let(nil, T.nilable(String))
28
+ @published_at = T.let(nil, T.nilable(String))
29
+ @status = T.let(nil, T.nilable(String))
30
+ @updated_at = T.let(nil, T.nilable(String))
31
+ @user_agent = T.let(nil, T.nilable(String))
32
+ end
33
+
34
+ @has_one = T.let({}, T::Hash[Symbol, Class])
35
+ @has_many = T.let({}, T::Hash[Symbol, Class])
36
+ @paths = T.let([
37
+ {http_method: :get, operation: :count, ids: [], path: "comments/count.json"},
38
+ {http_method: :get, operation: :get, ids: [], path: "comments.json"},
39
+ {http_method: :get, operation: :get, ids: [:id], path: "comments/<id>.json"},
40
+ {http_method: :post, operation: :approve, ids: [:id], path: "comments/<id>/approve.json"},
41
+ {http_method: :post, operation: :not_spam, ids: [:id], path: "comments/<id>/not_spam.json"},
42
+ {http_method: :post, operation: :post, ids: [], path: "comments.json"},
43
+ {http_method: :post, operation: :remove, ids: [:id], path: "comments/<id>/remove.json"},
44
+ {http_method: :post, operation: :restore, ids: [:id], path: "comments/<id>/restore.json"},
45
+ {http_method: :post, operation: :spam, ids: [:id], path: "comments/<id>/spam.json"},
46
+ {http_method: :put, operation: :put, ids: [:id], path: "comments/<id>.json"}
47
+ ], T::Array[T::Hash[String, T.any(T::Array[Symbol], String, Symbol)]])
48
+
49
+ sig { returns(T.nilable(Integer)) }
50
+ attr_reader :article_id
51
+ sig { returns(T.nilable(String)) }
52
+ attr_reader :author
53
+ sig { returns(T.nilable(Integer)) }
54
+ attr_reader :blog_id
55
+ sig { returns(T.nilable(String)) }
56
+ attr_reader :body
57
+ sig { returns(T.nilable(String)) }
58
+ attr_reader :body_html
59
+ sig { returns(T.nilable(String)) }
60
+ attr_reader :created_at
61
+ sig { returns(T.nilable(String)) }
62
+ attr_reader :email
63
+ sig { returns(T.nilable(Integer)) }
64
+ attr_reader :id
65
+ sig { returns(T.nilable(String)) }
66
+ attr_reader :ip
67
+ sig { returns(T.nilable(String)) }
68
+ attr_reader :published_at
69
+ sig { returns(T.nilable(String)) }
70
+ attr_reader :status
71
+ sig { returns(T.nilable(String)) }
72
+ attr_reader :updated_at
73
+ sig { returns(T.nilable(String)) }
74
+ attr_reader :user_agent
75
+
76
+ class << self
77
+ sig do
78
+ params(
79
+ id: T.any(Integer, String),
80
+ fields: T.untyped,
81
+ session: Auth::Session
82
+ ).returns(T.nilable(Comment))
83
+ end
84
+ def find(
85
+ id:,
86
+ fields: nil,
87
+ session: ShopifyAPI::Context.active_session
88
+ )
89
+ result = base_find(
90
+ session: session,
91
+ ids: {id: id},
92
+ params: {fields: fields},
93
+ )
94
+ T.cast(result[0], T.nilable(Comment))
95
+ end
96
+
97
+ sig do
98
+ params(
99
+ limit: T.untyped,
100
+ since_id: T.untyped,
101
+ created_at_min: T.untyped,
102
+ created_at_max: T.untyped,
103
+ updated_at_min: T.untyped,
104
+ updated_at_max: T.untyped,
105
+ published_at_min: T.untyped,
106
+ published_at_max: T.untyped,
107
+ fields: T.untyped,
108
+ published_status: T.untyped,
109
+ status: T.untyped,
110
+ session: Auth::Session,
111
+ kwargs: T.untyped
112
+ ).returns(T::Array[Comment])
113
+ end
114
+ def all(
115
+ limit: nil,
116
+ since_id: nil,
117
+ created_at_min: nil,
118
+ created_at_max: nil,
119
+ updated_at_min: nil,
120
+ updated_at_max: nil,
121
+ published_at_min: nil,
122
+ published_at_max: nil,
123
+ fields: nil,
124
+ published_status: nil,
125
+ status: nil,
126
+ session: ShopifyAPI::Context.active_session,
127
+ **kwargs
128
+ )
129
+ response = base_find(
130
+ session: session,
131
+ ids: {},
132
+ params: {limit: limit, since_id: since_id, created_at_min: created_at_min, created_at_max: created_at_max, updated_at_min: updated_at_min, updated_at_max: updated_at_max, published_at_min: published_at_min, published_at_max: published_at_max, fields: fields, published_status: published_status, status: status}.merge(kwargs).compact,
133
+ )
134
+
135
+ T.cast(response, T::Array[Comment])
136
+ end
137
+
138
+ sig do
139
+ params(
140
+ created_at_min: T.untyped,
141
+ created_at_max: T.untyped,
142
+ updated_at_min: T.untyped,
143
+ updated_at_max: T.untyped,
144
+ published_at_min: T.untyped,
145
+ published_at_max: T.untyped,
146
+ published_status: T.untyped,
147
+ status: T.untyped,
148
+ session: Auth::Session,
149
+ kwargs: T.untyped
150
+ ).returns(T.untyped)
151
+ end
152
+ def count(
153
+ created_at_min: nil,
154
+ created_at_max: nil,
155
+ updated_at_min: nil,
156
+ updated_at_max: nil,
157
+ published_at_min: nil,
158
+ published_at_max: nil,
159
+ published_status: nil,
160
+ status: nil,
161
+ session: ShopifyAPI::Context.active_session,
162
+ **kwargs
163
+ )
164
+ request(
165
+ http_method: :get,
166
+ operation: :count,
167
+ session: session,
168
+ ids: {},
169
+ params: {created_at_min: created_at_min, created_at_max: created_at_max, updated_at_min: updated_at_min, updated_at_max: updated_at_max, published_at_min: published_at_min, published_at_max: published_at_max, published_status: published_status, status: status}.merge(kwargs).compact,
170
+ body: {},
171
+ entity: nil,
172
+ )
173
+ end
174
+
175
+ end
176
+
177
+ sig do
178
+ params(
179
+ body: T.untyped,
180
+ kwargs: T.untyped
181
+ ).returns(T.untyped)
182
+ end
183
+ def approve(
184
+ body: nil,
185
+ **kwargs
186
+ )
187
+ self.class.request(
188
+ http_method: :post,
189
+ operation: :approve,
190
+ session: @session,
191
+ ids: {id: @id},
192
+ params: {}.merge(kwargs).compact,
193
+ body: body,
194
+ entity: self,
195
+ )
196
+ end
197
+
198
+ sig do
199
+ params(
200
+ body: T.untyped,
201
+ kwargs: T.untyped
202
+ ).returns(T.untyped)
203
+ end
204
+ def not_spam(
205
+ body: nil,
206
+ **kwargs
207
+ )
208
+ self.class.request(
209
+ http_method: :post,
210
+ operation: :not_spam,
211
+ session: @session,
212
+ ids: {id: @id},
213
+ params: {}.merge(kwargs).compact,
214
+ body: body,
215
+ entity: self,
216
+ )
217
+ end
218
+
219
+ sig do
220
+ params(
221
+ body: T.untyped,
222
+ kwargs: T.untyped
223
+ ).returns(T.untyped)
224
+ end
225
+ def remove(
226
+ body: nil,
227
+ **kwargs
228
+ )
229
+ self.class.request(
230
+ http_method: :post,
231
+ operation: :remove,
232
+ session: @session,
233
+ ids: {id: @id},
234
+ params: {}.merge(kwargs).compact,
235
+ body: body,
236
+ entity: self,
237
+ )
238
+ end
239
+
240
+ sig do
241
+ params(
242
+ body: T.untyped,
243
+ kwargs: T.untyped
244
+ ).returns(T.untyped)
245
+ end
246
+ def restore(
247
+ body: nil,
248
+ **kwargs
249
+ )
250
+ self.class.request(
251
+ http_method: :post,
252
+ operation: :restore,
253
+ session: @session,
254
+ ids: {id: @id},
255
+ params: {}.merge(kwargs).compact,
256
+ body: body,
257
+ entity: self,
258
+ )
259
+ end
260
+
261
+ sig do
262
+ params(
263
+ body: T.untyped,
264
+ kwargs: T.untyped
265
+ ).returns(T.untyped)
266
+ end
267
+ def spam(
268
+ body: nil,
269
+ **kwargs
270
+ )
271
+ self.class.request(
272
+ http_method: :post,
273
+ operation: :spam,
274
+ session: @session,
275
+ ids: {id: @id},
276
+ params: {}.merge(kwargs).compact,
277
+ body: body,
278
+ entity: self,
279
+ )
280
+ end
281
+
282
+ end
283
+ end
@@ -0,0 +1,137 @@
1
+ # typed: false
2
+ # frozen_string_literal: true
3
+
4
+ ########################################################################################################################
5
+ # This file is auto-generated. If you have an issue, please create a GitHub issue. #
6
+ ########################################################################################################################
7
+
8
+ module ShopifyAPI
9
+ class Country < ShopifyAPI::Rest::Base
10
+ extend T::Sig
11
+
12
+ @prev_page_info = T.let(Concurrent::ThreadLocalVar.new { nil }, Concurrent::ThreadLocalVar)
13
+ @next_page_info = T.let(Concurrent::ThreadLocalVar.new { nil }, Concurrent::ThreadLocalVar)
14
+
15
+ sig { params(session: T.nilable(ShopifyAPI::Auth::Session)).void }
16
+ def initialize(session: ShopifyAPI::Context.active_session)
17
+ super(session: session)
18
+
19
+ @code = T.let(nil, T.nilable(String))
20
+ @id = T.let(nil, T.nilable(Integer))
21
+ @name = T.let(nil, T.nilable(String))
22
+ @provinces = T.let(nil, T.nilable(T::Array[T.untyped]))
23
+ @tax = T.let(nil, T.nilable(Float))
24
+ end
25
+
26
+ @has_one = T.let({}, T::Hash[Symbol, Class])
27
+ @has_many = T.let({
28
+ provinces: Province
29
+ }, T::Hash[Symbol, Class])
30
+ @paths = T.let([
31
+ {http_method: :delete, operation: :delete, ids: [:id], path: "countries/<id>.json"},
32
+ {http_method: :get, operation: :count, ids: [], path: "countries/count.json"},
33
+ {http_method: :get, operation: :get, ids: [], path: "countries.json"},
34
+ {http_method: :get, operation: :get, ids: [:id], path: "countries/<id>.json"},
35
+ {http_method: :post, operation: :post, ids: [], path: "countries.json"},
36
+ {http_method: :put, operation: :put, ids: [:id], path: "countries/<id>.json"}
37
+ ], T::Array[T::Hash[String, T.any(T::Array[Symbol], String, Symbol)]])
38
+
39
+ sig { returns(T.nilable(String)) }
40
+ attr_reader :code
41
+ sig { returns(T.nilable(Integer)) }
42
+ attr_reader :id
43
+ sig { returns(T.nilable(String)) }
44
+ attr_reader :name
45
+ sig { returns(T.nilable(T::Array[Province])) }
46
+ attr_reader :provinces
47
+ sig { returns(T.nilable(Float)) }
48
+ attr_reader :tax
49
+
50
+ class << self
51
+ sig do
52
+ params(
53
+ id: T.any(Integer, String),
54
+ fields: T.untyped,
55
+ session: Auth::Session
56
+ ).returns(T.nilable(Country))
57
+ end
58
+ def find(
59
+ id:,
60
+ fields: nil,
61
+ session: ShopifyAPI::Context.active_session
62
+ )
63
+ result = base_find(
64
+ session: session,
65
+ ids: {id: id},
66
+ params: {fields: fields},
67
+ )
68
+ T.cast(result[0], T.nilable(Country))
69
+ end
70
+
71
+ sig do
72
+ params(
73
+ id: T.any(Integer, String),
74
+ session: Auth::Session
75
+ ).returns(T.untyped)
76
+ end
77
+ def delete(
78
+ id:,
79
+ session: ShopifyAPI::Context.active_session
80
+ )
81
+ request(
82
+ http_method: :delete,
83
+ operation: :delete,
84
+ session: session,
85
+ ids: {id: id},
86
+ params: {},
87
+ )
88
+ end
89
+
90
+ sig do
91
+ params(
92
+ since_id: T.untyped,
93
+ fields: T.untyped,
94
+ session: Auth::Session,
95
+ kwargs: T.untyped
96
+ ).returns(T::Array[Country])
97
+ end
98
+ def all(
99
+ since_id: nil,
100
+ fields: nil,
101
+ session: ShopifyAPI::Context.active_session,
102
+ **kwargs
103
+ )
104
+ response = base_find(
105
+ session: session,
106
+ ids: {},
107
+ params: {since_id: since_id, fields: fields}.merge(kwargs).compact,
108
+ )
109
+
110
+ T.cast(response, T::Array[Country])
111
+ end
112
+
113
+ sig do
114
+ params(
115
+ session: Auth::Session,
116
+ kwargs: T.untyped
117
+ ).returns(T.untyped)
118
+ end
119
+ def count(
120
+ session: ShopifyAPI::Context.active_session,
121
+ **kwargs
122
+ )
123
+ request(
124
+ http_method: :get,
125
+ operation: :count,
126
+ session: session,
127
+ ids: {},
128
+ params: {}.merge(kwargs).compact,
129
+ body: {},
130
+ entity: nil,
131
+ )
132
+ end
133
+
134
+ end
135
+
136
+ end
137
+ end
@@ -0,0 +1,57 @@
1
+ # typed: false
2
+ # frozen_string_literal: true
3
+
4
+ ########################################################################################################################
5
+ # This file is auto-generated. If you have an issue, please create a GitHub issue. #
6
+ ########################################################################################################################
7
+
8
+ module ShopifyAPI
9
+ class Currency < ShopifyAPI::Rest::Base
10
+ extend T::Sig
11
+
12
+ @prev_page_info = T.let(Concurrent::ThreadLocalVar.new { nil }, Concurrent::ThreadLocalVar)
13
+ @next_page_info = T.let(Concurrent::ThreadLocalVar.new { nil }, Concurrent::ThreadLocalVar)
14
+
15
+ sig { params(session: T.nilable(ShopifyAPI::Auth::Session)).void }
16
+ def initialize(session: ShopifyAPI::Context.active_session)
17
+ super(session: session)
18
+
19
+ @currency = T.let(nil, T.nilable(String))
20
+ @rate_updated_at = T.let(nil, T.nilable(String))
21
+ end
22
+
23
+ @has_one = T.let({}, T::Hash[Symbol, Class])
24
+ @has_many = T.let({}, T::Hash[Symbol, Class])
25
+ @paths = T.let([
26
+ {http_method: :get, operation: :get, ids: [], path: "currencies.json"}
27
+ ], T::Array[T::Hash[String, T.any(T::Array[Symbol], String, Symbol)]])
28
+
29
+ sig { returns(T.nilable(String)) }
30
+ attr_reader :currency
31
+ sig { returns(T.nilable(String)) }
32
+ attr_reader :rate_updated_at
33
+
34
+ class << self
35
+ sig do
36
+ params(
37
+ session: Auth::Session,
38
+ kwargs: T.untyped
39
+ ).returns(T::Array[Currency])
40
+ end
41
+ def all(
42
+ session: ShopifyAPI::Context.active_session,
43
+ **kwargs
44
+ )
45
+ response = base_find(
46
+ session: session,
47
+ ids: {},
48
+ params: {}.merge(kwargs).compact,
49
+ )
50
+
51
+ T.cast(response, T::Array[Currency])
52
+ end
53
+
54
+ end
55
+
56
+ end
57
+ end