shopify_api 11.1.0 → 12.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (214) 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/close-waiting-for-response-issues.yml +20 -0
  7. data/.github/workflows/remove-labels-on-activity.yml +16 -0
  8. data/.github/workflows/stale.yml +33 -0
  9. data/CHANGELOG.md +30 -0
  10. data/Gemfile +1 -0
  11. data/Gemfile.lock +55 -39
  12. data/README.md +12 -14
  13. data/docs/getting_started.md +1 -1
  14. data/docs/usage/oauth.md +3 -4
  15. data/docs/usage/session_storage.md +1 -1
  16. data/lib/shopify_api/admin_versions.rb +3 -2
  17. data/lib/shopify_api/auth/jwt_payload.rb +2 -2
  18. data/lib/shopify_api/auth/oauth/auth_query.rb +1 -1
  19. data/lib/shopify_api/auth/oauth.rb +18 -12
  20. data/lib/shopify_api/auth/session.rb +1 -1
  21. data/lib/shopify_api/clients/graphql/client.rb +3 -3
  22. data/lib/shopify_api/clients/graphql/storefront.rb +2 -2
  23. data/lib/shopify_api/clients/http_client.rb +4 -4
  24. data/lib/shopify_api/clients/rest/admin.rb +10 -10
  25. data/lib/shopify_api/context.rb +57 -16
  26. data/lib/shopify_api/errors/feature_deprecated_error.rb +9 -0
  27. data/lib/shopify_api/errors/http_response_error.rb +7 -3
  28. data/lib/shopify_api/errors/log_level_not_found_error.rb +9 -0
  29. data/lib/shopify_api/logger.rb +82 -0
  30. data/lib/shopify_api/rest/base.rb +14 -7
  31. data/lib/shopify_api/rest/resources/2022_01/abandoned_checkout.rb +4 -3
  32. data/lib/shopify_api/rest/resources/2022_01/assigned_fulfillment_order.rb +7 -0
  33. data/lib/shopify_api/rest/resources/2022_01/customer.rb +35 -1
  34. data/lib/shopify_api/rest/resources/2022_01/draft_order.rb +3 -1
  35. data/lib/shopify_api/rest/resources/2022_01/fulfillment.rb +5 -1
  36. data/lib/shopify_api/rest/resources/2022_01/fulfillment_order.rb +3 -3
  37. data/lib/shopify_api/rest/resources/2022_01/fulfillment_request.rb +5 -1
  38. data/lib/shopify_api/rest/resources/2022_01/gift_card.rb +9 -1
  39. data/lib/shopify_api/rest/resources/2022_01/metafield.rb +12 -5
  40. data/lib/shopify_api/rest/resources/2022_04/abandoned_checkout.rb +4 -3
  41. data/lib/shopify_api/rest/resources/2022_04/assigned_fulfillment_order.rb +7 -0
  42. data/lib/shopify_api/rest/resources/2022_04/customer.rb +35 -1
  43. data/lib/shopify_api/rest/resources/2022_04/draft_order.rb +3 -1
  44. data/lib/shopify_api/rest/resources/2022_04/fulfillment.rb +5 -1
  45. data/lib/shopify_api/rest/resources/2022_04/fulfillment_order.rb +3 -3
  46. data/lib/shopify_api/rest/resources/2022_04/fulfillment_request.rb +5 -1
  47. data/lib/shopify_api/rest/resources/2022_04/gift_card.rb +9 -1
  48. data/lib/shopify_api/rest/resources/2022_04/metafield.rb +10 -8
  49. data/lib/shopify_api/rest/resources/2022_07/abandoned_checkout.rb +4 -3
  50. data/lib/shopify_api/rest/resources/2022_07/assigned_fulfillment_order.rb +7 -0
  51. data/lib/shopify_api/rest/resources/2022_07/customer.rb +29 -1
  52. data/lib/shopify_api/rest/resources/2022_07/dispute_evidence.rb +2 -2
  53. data/lib/shopify_api/rest/resources/2022_07/fulfillment.rb +5 -1
  54. data/lib/shopify_api/rest/resources/2022_07/fulfillment_order.rb +3 -3
  55. data/lib/shopify_api/rest/resources/2022_07/gift_card.rb +9 -1
  56. data/lib/shopify_api/rest/resources/2022_07/metafield.rb +10 -8
  57. data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/abandoned_checkout.rb +4 -3
  58. data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/assigned_fulfillment_order.rb +7 -0
  59. data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/carrier_service.rb +0 -3
  60. data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/customer.rb +38 -1
  61. data/lib/shopify_api/rest/resources/2022_10/dispute_evidence.rb +117 -0
  62. data/lib/shopify_api/rest/resources/2022_10/dispute_file_upload.rb +81 -0
  63. data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/draft_order.rb +3 -1
  64. data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/fulfillment.rb +7 -50
  65. data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/fulfillment_order.rb +33 -4
  66. data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/fulfillment_request.rb +5 -1
  67. data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/fulfillment_service.rb +3 -3
  68. data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/gift_card.rb +9 -1
  69. data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/metafield.rb +10 -8
  70. data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/order.rb +3 -0
  71. data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/price_rule.rb +3 -3
  72. data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/shop.rb +3 -0
  73. data/lib/shopify_api/rest/resources/2023_01/abandoned_checkout.rb +190 -0
  74. data/lib/shopify_api/rest/resources/2023_01/access_scope.rb +58 -0
  75. data/lib/shopify_api/rest/resources/2023_01/apple_pay_certificate.rb +105 -0
  76. data/lib/shopify_api/rest/resources/2023_01/application_charge.rb +104 -0
  77. data/lib/shopify_api/rest/resources/2023_01/application_credit.rb +87 -0
  78. data/lib/shopify_api/rest/resources/2023_01/article.rb +265 -0
  79. data/lib/shopify_api/rest/resources/2023_01/asset.rb +118 -0
  80. data/lib/shopify_api/rest/resources/2023_01/assigned_fulfillment_order.rb +86 -0
  81. data/lib/shopify_api/rest/resources/2023_01/balance.rb +50 -0
  82. data/lib/shopify_api/rest/resources/2023_01/blog.rb +162 -0
  83. data/lib/shopify_api/rest/resources/2023_01/cancellation_request.rb +83 -0
  84. data/lib/shopify_api/rest/resources/2023_01/carrier_service.rb +113 -0
  85. data/lib/shopify_api/rest/resources/2023_01/checkout.rb +209 -0
  86. data/lib/shopify_api/rest/resources/2023_01/collect.rb +142 -0
  87. data/lib/shopify_api/rest/resources/2023_01/collection.rb +110 -0
  88. data/lib/shopify_api/rest/resources/2023_01/collection_listing.rb +155 -0
  89. data/lib/shopify_api/rest/resources/2023_01/comment.rb +283 -0
  90. data/lib/shopify_api/rest/resources/2023_01/country.rb +137 -0
  91. data/lib/shopify_api/rest/resources/2023_01/currency.rb +57 -0
  92. data/lib/shopify_api/rest/resources/2023_01/custom_collection.rb +187 -0
  93. data/lib/shopify_api/rest/resources/2023_01/customer.rb +329 -0
  94. data/lib/shopify_api/rest/resources/2023_01/customer_address.rb +201 -0
  95. data/lib/shopify_api/rest/resources/2023_01/customer_saved_search.rb +169 -0
  96. data/lib/shopify_api/rest/resources/2023_01/deprecated_api_call.rb +57 -0
  97. data/lib/shopify_api/rest/resources/2023_01/discount_code.rb +219 -0
  98. data/lib/shopify_api/rest/resources/2023_01/dispute.rb +111 -0
  99. data/lib/shopify_api/rest/resources/2023_01/draft_order.rb +275 -0
  100. data/lib/shopify_api/rest/resources/2023_01/event.rb +148 -0
  101. data/lib/shopify_api/rest/resources/2023_01/fulfillment.rb +225 -0
  102. data/lib/shopify_api/rest/resources/2023_01/fulfillment_event.rb +166 -0
  103. data/lib/shopify_api/rest/resources/2023_01/fulfillment_order.rb +316 -0
  104. data/lib/shopify_api/rest/resources/2023_01/fulfillment_request.rb +87 -0
  105. data/lib/shopify_api/rest/resources/2023_01/fulfillment_service.rb +130 -0
  106. data/lib/shopify_api/rest/resources/2023_01/gift_card.rb +215 -0
  107. data/lib/shopify_api/rest/resources/2023_01/gift_card_adjustment.rb +118 -0
  108. data/lib/shopify_api/rest/resources/2023_01/image.rb +157 -0
  109. data/lib/shopify_api/rest/resources/2023_01/inventory_item.rb +108 -0
  110. data/lib/shopify_api/rest/resources/2023_01/inventory_level.rb +179 -0
  111. data/lib/shopify_api/rest/resources/2023_01/location.rb +167 -0
  112. data/lib/shopify_api/rest/resources/2023_01/locations_for_move.rb +56 -0
  113. data/lib/shopify_api/rest/resources/2023_01/marketing_event.rb +209 -0
  114. data/lib/shopify_api/rest/resources/2023_01/metafield.rb +344 -0
  115. data/lib/shopify_api/rest/resources/2023_01/mobile_platform_application.rb +110 -0
  116. data/lib/shopify_api/rest/resources/2023_01/order.rb +479 -0
  117. data/lib/shopify_api/rest/resources/2023_01/order_risk.rb +135 -0
  118. data/lib/shopify_api/rest/resources/2023_01/page.rb +194 -0
  119. data/lib/shopify_api/rest/resources/2023_01/payment.rb +140 -0
  120. data/lib/shopify_api/rest/resources/2023_01/payment_gateway.rb +143 -0
  121. data/lib/shopify_api/rest/resources/2023_01/payment_transaction.rb +107 -0
  122. data/lib/shopify_api/rest/resources/2023_01/payout.rb +97 -0
  123. data/lib/shopify_api/rest/resources/2023_01/policy.rb +69 -0
  124. data/lib/shopify_api/rest/resources/2023_01/price_rule.rb +223 -0
  125. data/lib/shopify_api/rest/resources/2023_01/product.rb +223 -0
  126. data/lib/shopify_api/rest/resources/2023_01/product_listing.rb +196 -0
  127. data/lib/shopify_api/rest/resources/2023_01/product_resource_feedback.rb +88 -0
  128. data/lib/shopify_api/rest/resources/2023_01/province.rb +132 -0
  129. data/lib/shopify_api/rest/resources/2023_01/recurring_application_charge.rb +167 -0
  130. data/lib/shopify_api/rest/resources/2023_01/redirect.rb +139 -0
  131. data/lib/shopify_api/rest/resources/2023_01/refund.rb +151 -0
  132. data/lib/shopify_api/rest/resources/2023_01/report.rb +121 -0
  133. data/lib/shopify_api/rest/resources/2023_01/resource_feedback.rb +73 -0
  134. data/lib/shopify_api/rest/resources/2023_01/script_tag.rb +155 -0
  135. data/lib/shopify_api/rest/resources/2023_01/shipping_zone.rb +83 -0
  136. data/lib/shopify_api/rest/resources/2023_01/shop.rb +221 -0
  137. data/lib/shopify_api/rest/resources/2023_01/smart_collection.rb +216 -0
  138. data/lib/shopify_api/rest/resources/2023_01/storefront_access_token.rb +87 -0
  139. data/lib/shopify_api/rest/resources/2023_01/tender_transaction.rb +93 -0
  140. data/lib/shopify_api/rest/resources/2023_01/theme.rb +120 -0
  141. data/lib/shopify_api/rest/resources/2023_01/transaction.rb +181 -0
  142. data/lib/shopify_api/rest/resources/2023_01/usage_charge.rb +97 -0
  143. data/lib/shopify_api/rest/resources/2023_01/user.rb +138 -0
  144. data/lib/shopify_api/rest/resources/2023_01/variant.rb +212 -0
  145. data/lib/shopify_api/rest/resources/2023_01/webhook.rb +168 -0
  146. data/lib/shopify_api/utils/graphql_proxy.rb +2 -2
  147. data/lib/shopify_api/utils/session_utils.rb +42 -25
  148. data/lib/shopify_api/version.rb +1 -1
  149. data/lib/shopify_api/webhooks/registrations/http.rb +7 -1
  150. data/lib/shopify_api/webhooks/registry.rb +8 -8
  151. data/service.yml +0 -1
  152. data/shopify_api.gemspec +4 -2
  153. metadata +195 -78
  154. data/.github/ISSUE_TEMPLATE.md +0 -35
  155. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/access_scope.rb +0 -0
  156. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/android_pay_key.rb +0 -0
  157. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/apple_pay_certificate.rb +0 -0
  158. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/application_charge.rb +0 -0
  159. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/application_credit.rb +0 -0
  160. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/article.rb +0 -0
  161. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/asset.rb +0 -0
  162. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/balance.rb +0 -0
  163. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/blog.rb +0 -0
  164. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/cancellation_request.rb +0 -0
  165. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/checkout.rb +0 -0
  166. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/collect.rb +0 -0
  167. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/collection.rb +0 -0
  168. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/collection_listing.rb +0 -0
  169. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/comment.rb +0 -0
  170. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/country.rb +0 -0
  171. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/currency.rb +0 -0
  172. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/custom_collection.rb +0 -0
  173. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/customer_address.rb +0 -0
  174. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/customer_saved_search.rb +0 -0
  175. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/deprecated_api_call.rb +0 -0
  176. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/discount_code.rb +0 -0
  177. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/dispute.rb +0 -0
  178. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/event.rb +0 -0
  179. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/fulfillment_event.rb +0 -0
  180. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/gift_card_adjustment.rb +0 -0
  181. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/image.rb +0 -0
  182. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/inventory_item.rb +0 -0
  183. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/inventory_level.rb +0 -0
  184. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/location.rb +0 -0
  185. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/locations_for_move.rb +0 -0
  186. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/marketing_event.rb +0 -0
  187. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/mobile_platform_application.rb +0 -0
  188. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/order_risk.rb +0 -0
  189. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/page.rb +0 -0
  190. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/payment.rb +0 -0
  191. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/payment_gateway.rb +0 -0
  192. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/payment_transaction.rb +0 -0
  193. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/payout.rb +0 -0
  194. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/policy.rb +0 -0
  195. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/product.rb +0 -0
  196. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/product_listing.rb +0 -0
  197. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/product_resource_feedback.rb +0 -0
  198. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/province.rb +0 -0
  199. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/recurring_application_charge.rb +0 -0
  200. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/redirect.rb +0 -0
  201. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/refund.rb +0 -0
  202. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/report.rb +0 -0
  203. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/resource_feedback.rb +0 -0
  204. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/script_tag.rb +0 -0
  205. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/shipping_zone.rb +0 -0
  206. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/smart_collection.rb +0 -0
  207. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/storefront_access_token.rb +0 -0
  208. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/tender_transaction.rb +0 -0
  209. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/theme.rb +0 -0
  210. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/transaction.rb +0 -0
  211. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/usage_charge.rb +0 -0
  212. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/user.rb +0 -0
  213. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/variant.rb +0 -0
  214. /data/lib/shopify_api/rest/resources/{2021_10 → 2022_10}/webhook.rb +0 -0
@@ -59,12 +59,16 @@ module ShopifyAPI
59
59
  sig do
60
60
  params(
61
61
  message: T.untyped,
62
+ reason: T.untyped,
63
+ line_items: T.untyped,
62
64
  body: T.untyped,
63
65
  kwargs: T.untyped
64
66
  ).returns(T.untyped)
65
67
  end
66
68
  def reject(
67
69
  message: nil,
70
+ reason: nil,
71
+ line_items: nil,
68
72
  body: nil,
69
73
  **kwargs
70
74
  )
@@ -73,7 +77,7 @@ module ShopifyAPI
73
77
  operation: :reject,
74
78
  session: @session,
75
79
  ids: {fulfillment_order_id: @fulfillment_order_id},
76
- params: {message: message}.merge(kwargs).compact,
80
+ params: {message: message, reason: reason, line_items: line_items}.merge(kwargs).compact,
77
81
  body: body,
78
82
  entity: self,
79
83
  )
@@ -157,6 +157,10 @@ module ShopifyAPI
157
157
  query: T.untyped,
158
158
  limit: T.untyped,
159
159
  fields: T.untyped,
160
+ created_at_min: T.untyped,
161
+ created_at_max: T.untyped,
162
+ updated_at_min: T.untyped,
163
+ updated_at_max: T.untyped,
160
164
  session: Auth::Session,
161
165
  kwargs: T.untyped
162
166
  ).returns(T.untyped)
@@ -166,6 +170,10 @@ module ShopifyAPI
166
170
  query: nil,
167
171
  limit: nil,
168
172
  fields: nil,
173
+ created_at_min: nil,
174
+ created_at_max: nil,
175
+ updated_at_min: nil,
176
+ updated_at_max: nil,
169
177
  session: ShopifyAPI::Context.active_session,
170
178
  **kwargs
171
179
  )
@@ -174,7 +182,7 @@ module ShopifyAPI
174
182
  operation: :search,
175
183
  session: session,
176
184
  ids: {},
177
- params: {order: order, query: query, limit: limit, fields: fields}.merge(kwargs).compact,
185
+ params: {order: order, query: query, limit: limit, fields: fields, created_at_min: created_at_min, created_at_max: created_at_max, updated_at_min: updated_at_min, updated_at_max: updated_at_max}.merge(kwargs).compact,
178
186
  body: {},
179
187
  entity: nil,
180
188
  )
@@ -51,6 +51,7 @@ module ShopifyAPI
51
51
  {http_method: :delete, operation: :delete, ids: [:order_id, :id], path: "orders/<order_id>/metafields/<id>.json"},
52
52
  {http_method: :delete, operation: :delete, ids: [:page_id, :id], path: "pages/<page_id>/metafields/<id>.json"},
53
53
  {http_method: :delete, operation: :delete, ids: [:product_image_id, :id], path: "product_images/<product_image_id>/metafields/<id>.json"},
54
+ {http_method: :delete, operation: :delete, ids: [:product_image_id, :id], path: "product_images/<product_image_id>/metafields/<id>.json"},
54
55
  {http_method: :delete, operation: :delete, ids: [:product_id, :id], path: "products/<product_id>/metafields/<id>.json"},
55
56
  {http_method: :delete, operation: :delete, ids: [:variant_id, :id], path: "variants/<variant_id>/metafields/<id>.json"},
56
57
  {http_method: :get, operation: :count, ids: [:article_id], path: "articles/<article_id>/metafields/count.json"},
@@ -61,6 +62,7 @@ module ShopifyAPI
61
62
  {http_method: :get, operation: :count, ids: [], path: "metafields/count.json"},
62
63
  {http_method: :get, operation: :count, ids: [:order_id], path: "orders/<order_id>/metafields/count.json"},
63
64
  {http_method: :get, operation: :count, ids: [:page_id], path: "pages/<page_id>/metafields/count.json"},
65
+ {http_method: :get, operation: :count, ids: [:page_id], path: "pages/<page_id>/metafields/count.json"},
64
66
  {http_method: :get, operation: :count, ids: [:product_image_id], path: "product_images/<product_image_id>/metafields/count.json"},
65
67
  {http_method: :get, operation: :count, ids: [:product_id], path: "products/<product_id>/metafields/count.json"},
66
68
  {http_method: :get, operation: :count, ids: [:variant_id], path: "variants/<variant_id>/metafields/count.json"},
@@ -73,9 +75,9 @@ module ShopifyAPI
73
75
  {http_method: :get, operation: :get, ids: [:customer_id], path: "customers/<customer_id>/metafields.json"},
74
76
  {http_method: :get, operation: :get, ids: [:customer_id, :id], path: "customers/<customer_id>/metafields/<id>.json"},
75
77
  {http_method: :get, operation: :get, ids: [:draft_order_id], path: "draft_orders/<draft_order_id>/metafields.json"},
78
+ {http_method: :get, operation: :get, ids: [:draft_order_id], path: "draft_orders/<draft_order_id>/metafields.json"},
76
79
  {http_method: :get, operation: :get, ids: [:draft_order_id, :id], path: "draft_orders/<draft_order_id>/metafields/<id>.json"},
77
80
  {http_method: :get, operation: :get, ids: [], path: "metafields.json"},
78
- {http_method: :get, operation: :get, ids: [], path: "metafields.json"},
79
81
  {http_method: :get, operation: :get, ids: [:id], path: "metafields/<id>.json"},
80
82
  {http_method: :get, operation: :get, ids: [:order_id], path: "orders/<order_id>/metafields.json"},
81
83
  {http_method: :get, operation: :get, ids: [:order_id, :id], path: "orders/<order_id>/metafields/<id>.json"},
@@ -83,6 +85,7 @@ module ShopifyAPI
83
85
  {http_method: :get, operation: :get, ids: [:page_id, :id], path: "pages/<page_id>/metafields/<id>.json"},
84
86
  {http_method: :get, operation: :get, ids: [:product_image_id], path: "product_images/<product_image_id>/metafields.json"},
85
87
  {http_method: :get, operation: :get, ids: [:product_image_id, :id], path: "product_images/<product_image_id>/metafields/<id>.json"},
88
+ {http_method: :get, operation: :get, ids: [:product_image_id, :id], path: "product_images/<product_image_id>/metafields/<id>.json"},
86
89
  {http_method: :get, operation: :get, ids: [:product_id], path: "products/<product_id>/metafields.json"},
87
90
  {http_method: :get, operation: :get, ids: [:product_id, :id], path: "products/<product_id>/metafields/<id>.json"},
88
91
  {http_method: :get, operation: :get, ids: [:variant_id], path: "variants/<variant_id>/metafields.json"},
@@ -94,12 +97,14 @@ module ShopifyAPI
94
97
  {http_method: :post, operation: :post, ids: [:draft_order_id], path: "draft_orders/<draft_order_id>/metafields.json"},
95
98
  {http_method: :post, operation: :post, ids: [], path: "metafields.json"},
96
99
  {http_method: :post, operation: :post, ids: [:order_id], path: "orders/<order_id>/metafields.json"},
100
+ {http_method: :post, operation: :post, ids: [:order_id], path: "orders/<order_id>/metafields.json"},
97
101
  {http_method: :post, operation: :post, ids: [:page_id], path: "pages/<page_id>/metafields.json"},
98
102
  {http_method: :post, operation: :post, ids: [:product_image_id], path: "product_images/<product_image_id>/metafields.json"},
99
103
  {http_method: :post, operation: :post, ids: [:product_id], path: "products/<product_id>/metafields.json"},
100
104
  {http_method: :post, operation: :post, ids: [:variant_id], path: "variants/<variant_id>/metafields.json"},
101
105
  {http_method: :put, operation: :put, ids: [:article_id, :id], path: "articles/<article_id>/metafields/<id>.json"},
102
106
  {http_method: :put, operation: :put, ids: [:blog_id, :id], path: "blogs/<blog_id>/metafields/<id>.json"},
107
+ {http_method: :put, operation: :put, ids: [:blog_id, :id], path: "blogs/<blog_id>/metafields/<id>.json"},
103
108
  {http_method: :put, operation: :put, ids: [:collection_id, :id], path: "collections/<collection_id>/metafields/<id>.json"},
104
109
  {http_method: :put, operation: :put, ids: [:customer_id, :id], path: "customers/<customer_id>/metafields/<id>.json"},
105
110
  {http_method: :put, operation: :put, ids: [:draft_order_id, :id], path: "draft_orders/<draft_order_id>/metafields/<id>.json"},
@@ -168,6 +173,7 @@ module ShopifyAPI
168
173
  product_image_id: T.nilable(T.any(Integer, String)),
169
174
  product_id: T.nilable(T.any(Integer, String)),
170
175
  variant_id: T.nilable(T.any(Integer, String)),
176
+ fields: T.untyped,
171
177
  session: Auth::Session
172
178
  ).returns(T.nilable(Metafield))
173
179
  end
@@ -183,12 +189,13 @@ module ShopifyAPI
183
189
  product_image_id: nil,
184
190
  product_id: nil,
185
191
  variant_id: nil,
192
+ fields: nil,
186
193
  session: ShopifyAPI::Context.active_session
187
194
  )
188
195
  result = base_find(
189
196
  session: session,
190
197
  ids: {id: id, article_id: article_id, blog_id: blog_id, collection_id: collection_id, customer_id: customer_id, draft_order_id: draft_order_id, order_id: order_id, page_id: page_id, product_image_id: product_image_id, product_id: product_id, variant_id: variant_id},
191
- params: {},
198
+ params: {fields: fields},
192
199
  )
193
200
  T.cast(result[0], T.nilable(Metafield))
194
201
  end
@@ -252,8 +259,8 @@ module ShopifyAPI
252
259
  updated_at_max: T.untyped,
253
260
  namespace: T.untyped,
254
261
  key: T.untyped,
255
- type: T.untyped,
256
262
  value_type: T.untyped,
263
+ type: T.untyped,
257
264
  fields: T.untyped,
258
265
  metafield: T.nilable(T::Hash[T.untyped, T.untyped]),
259
266
  session: Auth::Session,
@@ -279,8 +286,8 @@ module ShopifyAPI
279
286
  updated_at_max: nil,
280
287
  namespace: nil,
281
288
  key: nil,
282
- type: nil,
283
289
  value_type: nil,
290
+ type: nil,
284
291
  fields: nil,
285
292
  metafield: nil,
286
293
  session: ShopifyAPI::Context.active_session,
@@ -289,7 +296,7 @@ module ShopifyAPI
289
296
  response = base_find(
290
297
  session: session,
291
298
  ids: {article_id: article_id, blog_id: blog_id, collection_id: collection_id, customer_id: customer_id, draft_order_id: draft_order_id, order_id: order_id, page_id: page_id, product_image_id: product_image_id, product_id: product_id, variant_id: variant_id},
292
- 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, namespace: namespace, key: key, type: type, value_type: value_type, fields: fields, metafield: metafield}.merge(kwargs).compact,
299
+ 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, namespace: namespace, key: key, value_type: value_type, type: type, fields: fields, metafield: metafield}.merge(kwargs).compact,
293
300
  )
294
301
 
295
302
  T.cast(response, T::Array[Metafield])
@@ -65,6 +65,7 @@ module ShopifyAPI
65
65
  discount_codes: DiscountCode
66
66
  }, T::Hash[Symbol, Class])
67
67
  @paths = T.let([
68
+ {http_method: :get, operation: :checkouts, ids: [], path: "checkouts.json"},
68
69
  {http_method: :get, operation: :checkouts, ids: [], path: "checkouts.json"}
69
70
  ], T::Array[T::Hash[String, T.any(T::Array[Symbol], String, Symbol)]])
70
71
 
@@ -150,25 +151,25 @@ module ShopifyAPI
150
151
  class << self
151
152
  sig do
152
153
  params(
153
- limit: T.untyped,
154
154
  since_id: T.untyped,
155
155
  created_at_min: T.untyped,
156
156
  created_at_max: T.untyped,
157
157
  updated_at_min: T.untyped,
158
158
  updated_at_max: T.untyped,
159
159
  status: T.untyped,
160
+ limit: T.untyped,
160
161
  session: Auth::Session,
161
162
  kwargs: T.untyped
162
163
  ).returns(T.untyped)
163
164
  end
164
165
  def checkouts(
165
- limit: nil,
166
166
  since_id: nil,
167
167
  created_at_min: nil,
168
168
  created_at_max: nil,
169
169
  updated_at_min: nil,
170
170
  updated_at_max: nil,
171
171
  status: nil,
172
+ limit: nil,
172
173
  session: ShopifyAPI::Context.active_session,
173
174
  **kwargs
174
175
  )
@@ -177,7 +178,7 @@ module ShopifyAPI
177
178
  operation: :checkouts,
178
179
  session: session,
179
180
  ids: {},
180
- 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, status: status}.merge(kwargs).compact,
181
+ params: {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, status: status, limit: limit}.merge(kwargs).compact,
181
182
  body: {},
182
183
  entity: nil,
183
184
  )
@@ -50,6 +50,13 @@ module ShopifyAPI
50
50
  attr_reader :status
51
51
 
52
52
  class << self
53
+ sig do
54
+ returns(String)
55
+ end
56
+ def json_response_body_name()
57
+ "fulfillment_order"
58
+ end
59
+
53
60
  sig do
54
61
  params(
55
62
  assignment_status: T.untyped,
@@ -34,6 +34,8 @@ module ShopifyAPI
34
34
  @multipass_identifier = T.let(nil, T.nilable(String))
35
35
  @note = T.let(nil, T.nilable(String))
36
36
  @orders_count = T.let(nil, T.nilable(Integer))
37
+ @password = T.let(nil, T.nilable(String))
38
+ @password_confirmation = T.let(nil, T.nilable(String))
37
39
  @phone = T.let(nil, T.nilable(String))
38
40
  @sms_marketing_consent = T.let(nil, T.nilable(T::Hash[T.untyped, T.untyped]))
39
41
  @state = T.let(nil, T.nilable(String))
@@ -50,6 +52,7 @@ module ShopifyAPI
50
52
  }, T::Hash[Symbol, Class])
51
53
  @has_many = T.let({}, T::Hash[Symbol, Class])
52
54
  @paths = T.let([
55
+ {http_method: :delete, operation: :delete, ids: [:id], path: "customers/<id>.json"},
53
56
  {http_method: :get, operation: :count, ids: [], path: "customers/count.json"},
54
57
  {http_method: :get, operation: :get, ids: [], path: "customers.json"},
55
58
  {http_method: :get, operation: :get, ids: [:id], path: "customers/<id>.json"},
@@ -98,6 +101,10 @@ module ShopifyAPI
98
101
  sig { returns(T.nilable(Integer)) }
99
102
  attr_reader :orders_count
100
103
  sig { returns(T.nilable(String)) }
104
+ attr_reader :password
105
+ sig { returns(T.nilable(String)) }
106
+ attr_reader :password_confirmation
107
+ sig { returns(T.nilable(String)) }
101
108
  attr_reader :phone
102
109
  sig { returns(T.nilable(T::Hash[T.untyped, T.untyped])) }
103
110
  attr_reader :sms_marketing_consent
@@ -137,6 +144,25 @@ module ShopifyAPI
137
144
  T.cast(result[0], T.nilable(Customer))
138
145
  end
139
146
 
147
+ sig do
148
+ params(
149
+ id: T.any(Integer, String),
150
+ session: Auth::Session
151
+ ).returns(T.untyped)
152
+ end
153
+ def delete(
154
+ id:,
155
+ session: ShopifyAPI::Context.active_session
156
+ )
157
+ request(
158
+ http_method: :delete,
159
+ operation: :delete,
160
+ session: session,
161
+ ids: {id: id},
162
+ params: {},
163
+ )
164
+ end
165
+
140
166
  sig do
141
167
  params(
142
168
  ids: T.untyped,
@@ -174,11 +200,19 @@ module ShopifyAPI
174
200
 
175
201
  sig do
176
202
  params(
203
+ created_at_min: T.untyped,
204
+ created_at_max: T.untyped,
205
+ updated_at_min: T.untyped,
206
+ updated_at_max: T.untyped,
177
207
  session: Auth::Session,
178
208
  kwargs: T.untyped
179
209
  ).returns(T.untyped)
180
210
  end
181
211
  def count(
212
+ created_at_min: nil,
213
+ created_at_max: nil,
214
+ updated_at_min: nil,
215
+ updated_at_max: nil,
182
216
  session: ShopifyAPI::Context.active_session,
183
217
  **kwargs
184
218
  )
@@ -187,7 +221,7 @@ module ShopifyAPI
187
221
  operation: :count,
188
222
  session: session,
189
223
  ids: {},
190
- params: {}.merge(kwargs).compact,
224
+ 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}.merge(kwargs).compact,
191
225
  body: {},
192
226
  entity: nil,
193
227
  )
@@ -248,12 +248,14 @@ module ShopifyAPI
248
248
 
249
249
  sig do
250
250
  params(
251
+ payment_gateway_id: T.untyped,
251
252
  payment_pending: T.untyped,
252
253
  body: T.untyped,
253
254
  kwargs: T.untyped
254
255
  ).returns(T.untyped)
255
256
  end
256
257
  def complete(
258
+ payment_gateway_id: nil,
257
259
  payment_pending: nil,
258
260
  body: nil,
259
261
  **kwargs
@@ -263,7 +265,7 @@ module ShopifyAPI
263
265
  operation: :complete,
264
266
  session: @session,
265
267
  ids: {id: @id},
266
- params: {payment_pending: payment_pending}.merge(kwargs).compact,
268
+ params: {payment_gateway_id: payment_gateway_id, payment_pending: payment_pending}.merge(kwargs).compact,
267
269
  body: body,
268
270
  entity: self,
269
271
  )
@@ -245,11 +245,15 @@ module ShopifyAPI
245
245
 
246
246
  sig do
247
247
  params(
248
+ notify_customer: T.untyped,
249
+ tracking_info: T.untyped,
248
250
  body: T.untyped,
249
251
  kwargs: T.untyped
250
252
  ).returns(T.untyped)
251
253
  end
252
254
  def update_tracking(
255
+ notify_customer: nil,
256
+ tracking_info: nil,
253
257
  body: nil,
254
258
  **kwargs
255
259
  )
@@ -258,7 +262,7 @@ module ShopifyAPI
258
262
  operation: :update_tracking,
259
263
  session: @session,
260
264
  ids: {id: @id},
261
- params: {}.merge(kwargs).compact,
265
+ params: {notify_customer: notify_customer, tracking_info: tracking_info}.merge(kwargs).compact,
262
266
  body: body,
263
267
  entity: self,
264
268
  )
@@ -196,13 +196,13 @@ module ShopifyAPI
196
196
 
197
197
  sig do
198
198
  params(
199
- new_location_id: T.untyped,
199
+ fulfillment_order: T.untyped,
200
200
  body: T.untyped,
201
201
  kwargs: T.untyped
202
202
  ).returns(T.untyped)
203
203
  end
204
204
  def move(
205
- new_location_id: nil,
205
+ fulfillment_order: nil,
206
206
  body: nil,
207
207
  **kwargs
208
208
  )
@@ -211,7 +211,7 @@ module ShopifyAPI
211
211
  operation: :move,
212
212
  session: @session,
213
213
  ids: {id: @id},
214
- params: {new_location_id: new_location_id}.merge(kwargs).compact,
214
+ params: {fulfillment_order: fulfillment_order}.merge(kwargs).compact,
215
215
  body: body,
216
216
  entity: self,
217
217
  )
@@ -59,12 +59,16 @@ module ShopifyAPI
59
59
  sig do
60
60
  params(
61
61
  message: T.untyped,
62
+ reason: T.untyped,
63
+ line_items: T.untyped,
62
64
  body: T.untyped,
63
65
  kwargs: T.untyped
64
66
  ).returns(T.untyped)
65
67
  end
66
68
  def reject(
67
69
  message: nil,
70
+ reason: nil,
71
+ line_items: nil,
68
72
  body: nil,
69
73
  **kwargs
70
74
  )
@@ -73,7 +77,7 @@ module ShopifyAPI
73
77
  operation: :reject,
74
78
  session: @session,
75
79
  ids: {fulfillment_order_id: @fulfillment_order_id},
76
- params: {message: message}.merge(kwargs).compact,
80
+ params: {message: message, reason: reason, line_items: line_items}.merge(kwargs).compact,
77
81
  body: body,
78
82
  entity: self,
79
83
  )
@@ -157,6 +157,10 @@ module ShopifyAPI
157
157
  query: T.untyped,
158
158
  limit: T.untyped,
159
159
  fields: T.untyped,
160
+ created_at_min: T.untyped,
161
+ created_at_max: T.untyped,
162
+ updated_at_min: T.untyped,
163
+ updated_at_max: T.untyped,
160
164
  session: Auth::Session,
161
165
  kwargs: T.untyped
162
166
  ).returns(T.untyped)
@@ -166,6 +170,10 @@ module ShopifyAPI
166
170
  query: nil,
167
171
  limit: nil,
168
172
  fields: nil,
173
+ created_at_min: nil,
174
+ created_at_max: nil,
175
+ updated_at_min: nil,
176
+ updated_at_max: nil,
169
177
  session: ShopifyAPI::Context.active_session,
170
178
  **kwargs
171
179
  )
@@ -174,7 +182,7 @@ module ShopifyAPI
174
182
  operation: :search,
175
183
  session: session,
176
184
  ids: {},
177
- params: {order: order, query: query, limit: limit, fields: fields}.merge(kwargs).compact,
185
+ params: {order: order, query: query, limit: limit, fields: fields, created_at_min: created_at_min, created_at_max: created_at_max, updated_at_min: updated_at_min, updated_at_max: updated_at_max}.merge(kwargs).compact,
178
186
  body: {},
179
187
  entity: nil,
180
188
  )
@@ -35,7 +35,6 @@ module ShopifyAPI
35
35
  @product_image_id = T.let(nil, T.nilable(Integer))
36
36
  @type = T.let(nil, T.nilable(String))
37
37
  @updated_at = T.let(nil, T.nilable(String))
38
- @value_type = T.let(nil, T.nilable(String))
39
38
  @variant_id = T.let(nil, T.nilable(Integer))
40
39
  end
41
40
 
@@ -44,6 +43,7 @@ module ShopifyAPI
44
43
  @paths = T.let([
45
44
  {http_method: :delete, operation: :delete, ids: [:article_id, :id], path: "articles/<article_id>/metafields/<id>.json"},
46
45
  {http_method: :delete, operation: :delete, ids: [:blog_id, :id], path: "blogs/<blog_id>/metafields/<id>.json"},
46
+ {http_method: :delete, operation: :delete, ids: [:blog_id, :id], path: "blogs/<blog_id>/metafields/<id>.json"},
47
47
  {http_method: :delete, operation: :delete, ids: [:collection_id, :id], path: "collections/<collection_id>/metafields/<id>.json"},
48
48
  {http_method: :delete, operation: :delete, ids: [:customer_id, :id], path: "customers/<customer_id>/metafields/<id>.json"},
49
49
  {http_method: :delete, operation: :delete, ids: [:draft_order_id, :id], path: "draft_orders/<draft_order_id>/metafields/<id>.json"},
@@ -55,6 +55,7 @@ module ShopifyAPI
55
55
  {http_method: :delete, operation: :delete, ids: [:variant_id, :id], path: "variants/<variant_id>/metafields/<id>.json"},
56
56
  {http_method: :get, operation: :count, ids: [:article_id], path: "articles/<article_id>/metafields/count.json"},
57
57
  {http_method: :get, operation: :count, ids: [:blog_id], path: "blogs/<blog_id>/metafields/count.json"},
58
+ {http_method: :get, operation: :count, ids: [:blog_id], path: "blogs/<blog_id>/metafields/count.json"},
58
59
  {http_method: :get, operation: :count, ids: [:collection_id], path: "collections/<collection_id>/metafields/count.json"},
59
60
  {http_method: :get, operation: :count, ids: [:customer_id], path: "customers/<customer_id>/metafields/count.json"},
60
61
  {http_method: :get, operation: :count, ids: [:draft_order_id], path: "draft_orders/<draft_order_id>/metafields/count.json"},
@@ -67,6 +68,8 @@ module ShopifyAPI
67
68
  {http_method: :get, operation: :get, ids: [:article_id], path: "articles/<article_id>/metafields.json"},
68
69
  {http_method: :get, operation: :get, ids: [:article_id, :id], path: "articles/<article_id>/metafields/<id>.json"},
69
70
  {http_method: :get, operation: :get, ids: [:blog_id], path: "blogs/<blog_id>/metafields.json"},
71
+ {http_method: :get, operation: :get, ids: [:blog_id], path: "blogs/<blog_id>/metafields.json"},
72
+ {http_method: :get, operation: :get, ids: [:blog_id, :id], path: "blogs/<blog_id>/metafields/<id>.json"},
70
73
  {http_method: :get, operation: :get, ids: [:blog_id, :id], path: "blogs/<blog_id>/metafields/<id>.json"},
71
74
  {http_method: :get, operation: :get, ids: [:collection_id], path: "collections/<collection_id>/metafields.json"},
72
75
  {http_method: :get, operation: :get, ids: [:collection_id, :id], path: "collections/<collection_id>/metafields/<id>.json"},
@@ -75,7 +78,6 @@ module ShopifyAPI
75
78
  {http_method: :get, operation: :get, ids: [:draft_order_id], path: "draft_orders/<draft_order_id>/metafields.json"},
76
79
  {http_method: :get, operation: :get, ids: [:draft_order_id, :id], path: "draft_orders/<draft_order_id>/metafields/<id>.json"},
77
80
  {http_method: :get, operation: :get, ids: [], path: "metafields.json"},
78
- {http_method: :get, operation: :get, ids: [], path: "metafields.json"},
79
81
  {http_method: :get, operation: :get, ids: [:id], path: "metafields/<id>.json"},
80
82
  {http_method: :get, operation: :get, ids: [:order_id], path: "orders/<order_id>/metafields.json"},
81
83
  {http_method: :get, operation: :get, ids: [:order_id, :id], path: "orders/<order_id>/metafields/<id>.json"},
@@ -89,6 +91,7 @@ module ShopifyAPI
89
91
  {http_method: :get, operation: :get, ids: [:variant_id, :id], path: "variants/<variant_id>/metafields/<id>.json"},
90
92
  {http_method: :post, operation: :post, ids: [:article_id], path: "articles/<article_id>/metafields.json"},
91
93
  {http_method: :post, operation: :post, ids: [:blog_id], path: "blogs/<blog_id>/metafields.json"},
94
+ {http_method: :post, operation: :post, ids: [:blog_id], path: "blogs/<blog_id>/metafields.json"},
92
95
  {http_method: :post, operation: :post, ids: [:collection_id], path: "collections/<collection_id>/metafields.json"},
93
96
  {http_method: :post, operation: :post, ids: [:customer_id], path: "customers/<customer_id>/metafields.json"},
94
97
  {http_method: :post, operation: :post, ids: [:draft_order_id], path: "draft_orders/<draft_order_id>/metafields.json"},
@@ -100,6 +103,7 @@ module ShopifyAPI
100
103
  {http_method: :post, operation: :post, ids: [:variant_id], path: "variants/<variant_id>/metafields.json"},
101
104
  {http_method: :put, operation: :put, ids: [:article_id, :id], path: "articles/<article_id>/metafields/<id>.json"},
102
105
  {http_method: :put, operation: :put, ids: [:blog_id, :id], path: "blogs/<blog_id>/metafields/<id>.json"},
106
+ {http_method: :put, operation: :put, ids: [:blog_id, :id], path: "blogs/<blog_id>/metafields/<id>.json"},
103
107
  {http_method: :put, operation: :put, ids: [:collection_id, :id], path: "collections/<collection_id>/metafields/<id>.json"},
104
108
  {http_method: :put, operation: :put, ids: [:customer_id, :id], path: "customers/<customer_id>/metafields/<id>.json"},
105
109
  {http_method: :put, operation: :put, ids: [:draft_order_id, :id], path: "draft_orders/<draft_order_id>/metafields/<id>.json"},
@@ -149,8 +153,6 @@ module ShopifyAPI
149
153
  attr_reader :type
150
154
  sig { returns(T.nilable(String)) }
151
155
  attr_reader :updated_at
152
- sig { returns(T.nilable(String)) }
153
- attr_reader :value_type
154
156
  sig { returns(T.nilable(Integer)) }
155
157
  attr_reader :variant_id
156
158
 
@@ -168,6 +170,7 @@ module ShopifyAPI
168
170
  product_image_id: T.nilable(T.any(Integer, String)),
169
171
  product_id: T.nilable(T.any(Integer, String)),
170
172
  variant_id: T.nilable(T.any(Integer, String)),
173
+ fields: T.untyped,
171
174
  session: Auth::Session
172
175
  ).returns(T.nilable(Metafield))
173
176
  end
@@ -183,12 +186,13 @@ module ShopifyAPI
183
186
  product_image_id: nil,
184
187
  product_id: nil,
185
188
  variant_id: nil,
189
+ fields: nil,
186
190
  session: ShopifyAPI::Context.active_session
187
191
  )
188
192
  result = base_find(
189
193
  session: session,
190
194
  ids: {id: id, article_id: article_id, blog_id: blog_id, collection_id: collection_id, customer_id: customer_id, draft_order_id: draft_order_id, order_id: order_id, page_id: page_id, product_image_id: product_image_id, product_id: product_id, variant_id: variant_id},
191
- params: {},
195
+ params: {fields: fields},
192
196
  )
193
197
  T.cast(result[0], T.nilable(Metafield))
194
198
  end
@@ -253,7 +257,6 @@ module ShopifyAPI
253
257
  namespace: T.untyped,
254
258
  key: T.untyped,
255
259
  type: T.untyped,
256
- value_type: T.untyped,
257
260
  fields: T.untyped,
258
261
  metafield: T.nilable(T::Hash[T.untyped, T.untyped]),
259
262
  session: Auth::Session,
@@ -280,7 +283,6 @@ module ShopifyAPI
280
283
  namespace: nil,
281
284
  key: nil,
282
285
  type: nil,
283
- value_type: nil,
284
286
  fields: nil,
285
287
  metafield: nil,
286
288
  session: ShopifyAPI::Context.active_session,
@@ -289,7 +291,7 @@ module ShopifyAPI
289
291
  response = base_find(
290
292
  session: session,
291
293
  ids: {article_id: article_id, blog_id: blog_id, collection_id: collection_id, customer_id: customer_id, draft_order_id: draft_order_id, order_id: order_id, page_id: page_id, product_image_id: product_image_id, product_id: product_id, variant_id: variant_id},
292
- 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, namespace: namespace, key: key, type: type, value_type: value_type, fields: fields, metafield: metafield}.merge(kwargs).compact,
294
+ 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, namespace: namespace, key: key, type: type, fields: fields, metafield: metafield}.merge(kwargs).compact,
293
295
  )
294
296
 
295
297
  T.cast(response, T::Array[Metafield])
@@ -65,6 +65,7 @@ module ShopifyAPI
65
65
  discount_codes: DiscountCode
66
66
  }, T::Hash[Symbol, Class])
67
67
  @paths = T.let([
68
+ {http_method: :get, operation: :checkouts, ids: [], path: "checkouts.json"},
68
69
  {http_method: :get, operation: :checkouts, ids: [], path: "checkouts.json"}
69
70
  ], T::Array[T::Hash[String, T.any(T::Array[Symbol], String, Symbol)]])
70
71
 
@@ -150,25 +151,25 @@ module ShopifyAPI
150
151
  class << self
151
152
  sig do
152
153
  params(
153
- limit: T.untyped,
154
154
  since_id: T.untyped,
155
155
  created_at_min: T.untyped,
156
156
  created_at_max: T.untyped,
157
157
  updated_at_min: T.untyped,
158
158
  updated_at_max: T.untyped,
159
159
  status: T.untyped,
160
+ limit: T.untyped,
160
161
  session: Auth::Session,
161
162
  kwargs: T.untyped
162
163
  ).returns(T.untyped)
163
164
  end
164
165
  def checkouts(
165
- limit: nil,
166
166
  since_id: nil,
167
167
  created_at_min: nil,
168
168
  created_at_max: nil,
169
169
  updated_at_min: nil,
170
170
  updated_at_max: nil,
171
171
  status: nil,
172
+ limit: nil,
172
173
  session: ShopifyAPI::Context.active_session,
173
174
  **kwargs
174
175
  )
@@ -177,7 +178,7 @@ module ShopifyAPI
177
178
  operation: :checkouts,
178
179
  session: session,
179
180
  ids: {},
180
- 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, status: status}.merge(kwargs).compact,
181
+ params: {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, status: status, limit: limit}.merge(kwargs).compact,
181
182
  body: {},
182
183
  entity: nil,
183
184
  )
@@ -50,6 +50,13 @@ module ShopifyAPI
50
50
  attr_reader :status
51
51
 
52
52
  class << self
53
+ sig do
54
+ returns(String)
55
+ end
56
+ def json_response_body_name()
57
+ "fulfillment_order"
58
+ end
59
+
53
60
  sig do
54
61
  params(
55
62
  assignment_status: T.untyped,
@@ -52,6 +52,7 @@ module ShopifyAPI
52
52
  }, T::Hash[Symbol, Class])
53
53
  @has_many = T.let({}, T::Hash[Symbol, Class])
54
54
  @paths = T.let([
55
+ {http_method: :delete, operation: :delete, ids: [:id], path: "customers/<id>.json"},
55
56
  {http_method: :get, operation: :count, ids: [], path: "customers/count.json"},
56
57
  {http_method: :get, operation: :get, ids: [], path: "customers.json"},
57
58
  {http_method: :get, operation: :get, ids: [:id], path: "customers/<id>.json"},
@@ -143,6 +144,25 @@ module ShopifyAPI
143
144
  T.cast(result[0], T.nilable(Customer))
144
145
  end
145
146
 
147
+ sig do
148
+ params(
149
+ id: T.any(Integer, String),
150
+ session: Auth::Session
151
+ ).returns(T.untyped)
152
+ end
153
+ def delete(
154
+ id:,
155
+ session: ShopifyAPI::Context.active_session
156
+ )
157
+ request(
158
+ http_method: :delete,
159
+ operation: :delete,
160
+ session: session,
161
+ ids: {id: id},
162
+ params: {},
163
+ )
164
+ end
165
+
146
166
  sig do
147
167
  params(
148
168
  ids: T.untyped,
@@ -180,11 +200,19 @@ module ShopifyAPI
180
200
 
181
201
  sig do
182
202
  params(
203
+ created_at_min: T.untyped,
204
+ created_at_max: T.untyped,
205
+ updated_at_min: T.untyped,
206
+ updated_at_max: T.untyped,
183
207
  session: Auth::Session,
184
208
  kwargs: T.untyped
185
209
  ).returns(T.untyped)
186
210
  end
187
211
  def count(
212
+ created_at_min: nil,
213
+ created_at_max: nil,
214
+ updated_at_min: nil,
215
+ updated_at_max: nil,
188
216
  session: ShopifyAPI::Context.active_session,
189
217
  **kwargs
190
218
  )
@@ -193,7 +221,7 @@ module ShopifyAPI
193
221
  operation: :count,
194
222
  session: session,
195
223
  ids: {},
196
- params: {}.merge(kwargs).compact,
224
+ 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}.merge(kwargs).compact,
197
225
  body: {},
198
226
  entity: nil,
199
227
  )