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.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/BUG_REPORT.md +40 -0
- data/.github/ISSUE_TEMPLATE/ENHANCEMENT.md +9 -0
- data/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +9 -0
- data/.github/workflows/build.yml +0 -3
- data/.github/workflows/stale.yml +1 -0
- data/CHANGELOG.md +8 -1
- data/Gemfile.lock +9 -9
- data/lib/shopify_api/admin_versions.rb +2 -1
- data/lib/shopify_api/rest/base.rb +11 -4
- data/lib/shopify_api/rest/resources/2022_01/assigned_fulfillment_order.rb +7 -0
- data/lib/shopify_api/rest/resources/2022_01/customer.rb +9 -1
- data/lib/shopify_api/rest/resources/2022_01/fulfillment.rb +5 -1
- data/lib/shopify_api/rest/resources/2022_01/fulfillment_order.rb +3 -3
- data/lib/shopify_api/rest/resources/2022_04/assigned_fulfillment_order.rb +7 -0
- data/lib/shopify_api/rest/resources/2022_04/customer.rb +9 -1
- data/lib/shopify_api/rest/resources/2022_04/fulfillment.rb +5 -1
- data/lib/shopify_api/rest/resources/2022_04/fulfillment_order.rb +3 -3
- data/lib/shopify_api/rest/resources/2022_04/metafield.rb +5 -3
- data/lib/shopify_api/rest/resources/2022_07/assigned_fulfillment_order.rb +7 -0
- data/lib/shopify_api/rest/resources/2022_07/customer.rb +9 -1
- data/lib/shopify_api/rest/resources/2022_07/fulfillment.rb +5 -1
- data/lib/shopify_api/rest/resources/2022_07/fulfillment_order.rb +3 -3
- data/lib/shopify_api/rest/resources/2022_07/metafield.rb +5 -3
- data/lib/shopify_api/rest/resources/2022_10/assigned_fulfillment_order.rb +7 -0
- data/lib/shopify_api/rest/resources/2022_10/customer.rb +9 -1
- data/lib/shopify_api/rest/resources/2022_10/fulfillment.rb +5 -1
- data/lib/shopify_api/rest/resources/2022_10/fulfillment_order.rb +3 -3
- data/lib/shopify_api/rest/resources/2022_10/metafield.rb +5 -3
- data/lib/shopify_api/rest/resources/2023_01/abandoned_checkout.rb +190 -0
- data/lib/shopify_api/rest/resources/2023_01/access_scope.rb +58 -0
- data/lib/shopify_api/rest/resources/2023_01/apple_pay_certificate.rb +105 -0
- data/lib/shopify_api/rest/resources/2023_01/application_charge.rb +104 -0
- data/lib/shopify_api/rest/resources/2023_01/application_credit.rb +87 -0
- data/lib/shopify_api/rest/resources/2023_01/article.rb +265 -0
- data/lib/shopify_api/rest/resources/2023_01/asset.rb +118 -0
- data/lib/shopify_api/rest/resources/2023_01/assigned_fulfillment_order.rb +86 -0
- data/lib/shopify_api/rest/resources/2023_01/balance.rb +50 -0
- data/lib/shopify_api/rest/resources/2023_01/blog.rb +162 -0
- data/lib/shopify_api/rest/resources/2023_01/cancellation_request.rb +83 -0
- data/lib/shopify_api/rest/resources/2023_01/carrier_service.rb +113 -0
- data/lib/shopify_api/rest/resources/2023_01/checkout.rb +209 -0
- data/lib/shopify_api/rest/resources/2023_01/collect.rb +142 -0
- data/lib/shopify_api/rest/resources/2023_01/collection.rb +110 -0
- data/lib/shopify_api/rest/resources/2023_01/collection_listing.rb +155 -0
- data/lib/shopify_api/rest/resources/2023_01/comment.rb +283 -0
- data/lib/shopify_api/rest/resources/2023_01/country.rb +137 -0
- data/lib/shopify_api/rest/resources/2023_01/currency.rb +57 -0
- data/lib/shopify_api/rest/resources/2023_01/custom_collection.rb +187 -0
- data/lib/shopify_api/rest/resources/2023_01/customer.rb +329 -0
- data/lib/shopify_api/rest/resources/2023_01/customer_address.rb +201 -0
- data/lib/shopify_api/rest/resources/2023_01/customer_saved_search.rb +169 -0
- data/lib/shopify_api/rest/resources/2023_01/deprecated_api_call.rb +57 -0
- data/lib/shopify_api/rest/resources/2023_01/discount_code.rb +219 -0
- data/lib/shopify_api/rest/resources/2023_01/dispute.rb +111 -0
- data/lib/shopify_api/rest/resources/2023_01/draft_order.rb +275 -0
- data/lib/shopify_api/rest/resources/2023_01/event.rb +148 -0
- data/lib/shopify_api/rest/resources/2023_01/fulfillment.rb +225 -0
- data/lib/shopify_api/rest/resources/2023_01/fulfillment_event.rb +166 -0
- data/lib/shopify_api/rest/resources/2023_01/fulfillment_order.rb +316 -0
- data/lib/shopify_api/rest/resources/2023_01/fulfillment_request.rb +87 -0
- data/lib/shopify_api/rest/resources/2023_01/fulfillment_service.rb +130 -0
- data/lib/shopify_api/rest/resources/2023_01/gift_card.rb +215 -0
- data/lib/shopify_api/rest/resources/2023_01/gift_card_adjustment.rb +118 -0
- data/lib/shopify_api/rest/resources/2023_01/image.rb +157 -0
- data/lib/shopify_api/rest/resources/2023_01/inventory_item.rb +108 -0
- data/lib/shopify_api/rest/resources/2023_01/inventory_level.rb +179 -0
- data/lib/shopify_api/rest/resources/2023_01/location.rb +167 -0
- data/lib/shopify_api/rest/resources/2023_01/locations_for_move.rb +56 -0
- data/lib/shopify_api/rest/resources/2023_01/marketing_event.rb +209 -0
- data/lib/shopify_api/rest/resources/2023_01/metafield.rb +344 -0
- data/lib/shopify_api/rest/resources/2023_01/mobile_platform_application.rb +110 -0
- data/lib/shopify_api/rest/resources/2023_01/order.rb +479 -0
- data/lib/shopify_api/rest/resources/2023_01/order_risk.rb +135 -0
- data/lib/shopify_api/rest/resources/2023_01/page.rb +194 -0
- data/lib/shopify_api/rest/resources/2023_01/payment.rb +140 -0
- data/lib/shopify_api/rest/resources/2023_01/payment_gateway.rb +143 -0
- data/lib/shopify_api/rest/resources/2023_01/payment_transaction.rb +107 -0
- data/lib/shopify_api/rest/resources/2023_01/payout.rb +97 -0
- data/lib/shopify_api/rest/resources/2023_01/policy.rb +69 -0
- data/lib/shopify_api/rest/resources/2023_01/price_rule.rb +223 -0
- data/lib/shopify_api/rest/resources/2023_01/product.rb +223 -0
- data/lib/shopify_api/rest/resources/2023_01/product_listing.rb +196 -0
- data/lib/shopify_api/rest/resources/2023_01/product_resource_feedback.rb +88 -0
- data/lib/shopify_api/rest/resources/2023_01/province.rb +132 -0
- data/lib/shopify_api/rest/resources/2023_01/recurring_application_charge.rb +167 -0
- data/lib/shopify_api/rest/resources/2023_01/redirect.rb +139 -0
- data/lib/shopify_api/rest/resources/2023_01/refund.rb +151 -0
- data/lib/shopify_api/rest/resources/2023_01/report.rb +121 -0
- data/lib/shopify_api/rest/resources/2023_01/resource_feedback.rb +73 -0
- data/lib/shopify_api/rest/resources/2023_01/script_tag.rb +155 -0
- data/lib/shopify_api/rest/resources/2023_01/shipping_zone.rb +83 -0
- data/lib/shopify_api/rest/resources/2023_01/shop.rb +221 -0
- data/lib/shopify_api/rest/resources/2023_01/smart_collection.rb +216 -0
- data/lib/shopify_api/rest/resources/2023_01/storefront_access_token.rb +87 -0
- data/lib/shopify_api/rest/resources/2023_01/tender_transaction.rb +93 -0
- data/lib/shopify_api/rest/resources/2023_01/theme.rb +120 -0
- data/lib/shopify_api/rest/resources/2023_01/transaction.rb +181 -0
- data/lib/shopify_api/rest/resources/2023_01/usage_charge.rb +97 -0
- data/lib/shopify_api/rest/resources/2023_01/user.rb +138 -0
- data/lib/shopify_api/rest/resources/2023_01/variant.rb +212 -0
- data/lib/shopify_api/rest/resources/2023_01/webhook.rb +168 -0
- data/lib/shopify_api/version.rb +1 -1
- metadata +78 -3
- data/.github/ISSUE_TEMPLATE.md +0 -35
@@ -200,11 +200,19 @@ module ShopifyAPI
|
|
200
200
|
|
201
201
|
sig do
|
202
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,
|
203
207
|
session: Auth::Session,
|
204
208
|
kwargs: T.untyped
|
205
209
|
).returns(T.untyped)
|
206
210
|
end
|
207
211
|
def count(
|
212
|
+
created_at_min: nil,
|
213
|
+
created_at_max: nil,
|
214
|
+
updated_at_min: nil,
|
215
|
+
updated_at_max: nil,
|
208
216
|
session: ShopifyAPI::Context.active_session,
|
209
217
|
**kwargs
|
210
218
|
)
|
@@ -213,7 +221,7 @@ module ShopifyAPI
|
|
213
221
|
operation: :count,
|
214
222
|
session: session,
|
215
223
|
ids: {},
|
216
|
-
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,
|
217
225
|
body: {},
|
218
226
|
entity: nil,
|
219
227
|
)
|
@@ -198,11 +198,15 @@ module ShopifyAPI
|
|
198
198
|
|
199
199
|
sig do
|
200
200
|
params(
|
201
|
+
notify_customer: T.untyped,
|
202
|
+
tracking_info: T.untyped,
|
201
203
|
body: T.untyped,
|
202
204
|
kwargs: T.untyped
|
203
205
|
).returns(T.untyped)
|
204
206
|
end
|
205
207
|
def update_tracking(
|
208
|
+
notify_customer: nil,
|
209
|
+
tracking_info: nil,
|
206
210
|
body: nil,
|
207
211
|
**kwargs
|
208
212
|
)
|
@@ -211,7 +215,7 @@ module ShopifyAPI
|
|
211
215
|
operation: :update_tracking,
|
212
216
|
session: @session,
|
213
217
|
ids: {id: @id},
|
214
|
-
params: {}.merge(kwargs).compact,
|
218
|
+
params: {notify_customer: notify_customer, tracking_info: tracking_info}.merge(kwargs).compact,
|
215
219
|
body: body,
|
216
220
|
entity: self,
|
217
221
|
)
|
@@ -197,13 +197,13 @@ module ShopifyAPI
|
|
197
197
|
|
198
198
|
sig do
|
199
199
|
params(
|
200
|
-
|
200
|
+
fulfillment_order: T.untyped,
|
201
201
|
body: T.untyped,
|
202
202
|
kwargs: T.untyped
|
203
203
|
).returns(T.untyped)
|
204
204
|
end
|
205
205
|
def move(
|
206
|
-
|
206
|
+
fulfillment_order: nil,
|
207
207
|
body: nil,
|
208
208
|
**kwargs
|
209
209
|
)
|
@@ -212,7 +212,7 @@ module ShopifyAPI
|
|
212
212
|
operation: :move,
|
213
213
|
session: @session,
|
214
214
|
ids: {id: @id},
|
215
|
-
params: {
|
215
|
+
params: {fulfillment_order: fulfillment_order}.merge(kwargs).compact,
|
216
216
|
body: body,
|
217
217
|
entity: self,
|
218
218
|
)
|
@@ -43,6 +43,7 @@ module ShopifyAPI
|
|
43
43
|
@paths = T.let([
|
44
44
|
{http_method: :delete, operation: :delete, ids: [:article_id, :id], path: "articles/<article_id>/metafields/<id>.json"},
|
45
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"},
|
46
47
|
{http_method: :delete, operation: :delete, ids: [:collection_id, :id], path: "collections/<collection_id>/metafields/<id>.json"},
|
47
48
|
{http_method: :delete, operation: :delete, ids: [:customer_id, :id], path: "customers/<customer_id>/metafields/<id>.json"},
|
48
49
|
{http_method: :delete, operation: :delete, ids: [:draft_order_id, :id], path: "draft_orders/<draft_order_id>/metafields/<id>.json"},
|
@@ -50,18 +51,17 @@ module ShopifyAPI
|
|
50
51
|
{http_method: :delete, operation: :delete, ids: [:order_id, :id], path: "orders/<order_id>/metafields/<id>.json"},
|
51
52
|
{http_method: :delete, operation: :delete, ids: [:page_id, :id], path: "pages/<page_id>/metafields/<id>.json"},
|
52
53
|
{http_method: :delete, operation: :delete, ids: [:product_image_id, :id], path: "product_images/<product_image_id>/metafields/<id>.json"},
|
53
|
-
{http_method: :delete, operation: :delete, ids: [:product_image_id, :id], path: "product_images/<product_image_id>/metafields/<id>.json"},
|
54
54
|
{http_method: :delete, operation: :delete, ids: [:product_id, :id], path: "products/<product_id>/metafields/<id>.json"},
|
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"},
|
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"},
|
64
|
-
{http_method: :get, operation: :count, ids: [:page_id], path: "pages/<page_id>/metafields/count.json"},
|
65
65
|
{http_method: :get, operation: :count, ids: [:product_image_id], path: "product_images/<product_image_id>/metafields/count.json"},
|
66
66
|
{http_method: :get, operation: :count, ids: [:product_id], path: "products/<product_id>/metafields/count.json"},
|
67
67
|
{http_method: :get, operation: :count, ids: [:variant_id], path: "variants/<variant_id>/metafields/count.json"},
|
@@ -70,6 +70,7 @@ module ShopifyAPI
|
|
70
70
|
{http_method: :get, operation: :get, ids: [:blog_id], path: "blogs/<blog_id>/metafields.json"},
|
71
71
|
{http_method: :get, operation: :get, ids: [:blog_id], path: "blogs/<blog_id>/metafields.json"},
|
72
72
|
{http_method: :get, operation: :get, ids: [:blog_id, :id], path: "blogs/<blog_id>/metafields/<id>.json"},
|
73
|
+
{http_method: :get, operation: :get, ids: [:blog_id, :id], path: "blogs/<blog_id>/metafields/<id>.json"},
|
73
74
|
{http_method: :get, operation: :get, ids: [:collection_id], path: "collections/<collection_id>/metafields.json"},
|
74
75
|
{http_method: :get, operation: :get, ids: [:collection_id, :id], path: "collections/<collection_id>/metafields/<id>.json"},
|
75
76
|
{http_method: :get, operation: :get, ids: [:customer_id], path: "customers/<customer_id>/metafields.json"},
|
@@ -88,9 +89,9 @@ module ShopifyAPI
|
|
88
89
|
{http_method: :get, operation: :get, ids: [:product_id, :id], path: "products/<product_id>/metafields/<id>.json"},
|
89
90
|
{http_method: :get, operation: :get, ids: [:variant_id], path: "variants/<variant_id>/metafields.json"},
|
90
91
|
{http_method: :get, operation: :get, ids: [:variant_id, :id], path: "variants/<variant_id>/metafields/<id>.json"},
|
91
|
-
{http_method: :get, operation: :get, ids: [:variant_id, :id], path: "variants/<variant_id>/metafields/<id>.json"},
|
92
92
|
{http_method: :post, operation: :post, ids: [:article_id], path: "articles/<article_id>/metafields.json"},
|
93
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"},
|
94
95
|
{http_method: :post, operation: :post, ids: [:collection_id], path: "collections/<collection_id>/metafields.json"},
|
95
96
|
{http_method: :post, operation: :post, ids: [:customer_id], path: "customers/<customer_id>/metafields.json"},
|
96
97
|
{http_method: :post, operation: :post, ids: [:draft_order_id], path: "draft_orders/<draft_order_id>/metafields.json"},
|
@@ -102,6 +103,7 @@ module ShopifyAPI
|
|
102
103
|
{http_method: :post, operation: :post, ids: [:variant_id], path: "variants/<variant_id>/metafields.json"},
|
103
104
|
{http_method: :put, operation: :put, ids: [:article_id, :id], path: "articles/<article_id>/metafields/<id>.json"},
|
104
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"},
|
105
107
|
{http_method: :put, operation: :put, ids: [:collection_id, :id], path: "collections/<collection_id>/metafields/<id>.json"},
|
106
108
|
{http_method: :put, operation: :put, ids: [:customer_id, :id], path: "customers/<customer_id>/metafields/<id>.json"},
|
107
109
|
{http_method: :put, operation: :put, ids: [:draft_order_id, :id], path: "draft_orders/<draft_order_id>/metafields/<id>.json"},
|
@@ -0,0 +1,190 @@
|
|
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 AbandonedCheckout < 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
|
+
@abandoned_checkout_url = T.let(nil, T.nilable(String))
|
20
|
+
@billing_address = T.let(nil, T.nilable(T::Hash[T.untyped, T.untyped]))
|
21
|
+
@buyer_accepts_marketing = T.let(nil, T.nilable(T::Boolean))
|
22
|
+
@buyer_accepts_sms_marketing = T.let(nil, T.nilable(T::Boolean))
|
23
|
+
@cart_token = T.let(nil, T.nilable(String))
|
24
|
+
@closed_at = T.let(nil, T.nilable(String))
|
25
|
+
@completed_at = T.let(nil, T.nilable(String))
|
26
|
+
@created_at = T.let(nil, T.nilable(String))
|
27
|
+
@currency = T.let(nil, T.nilable(Currency))
|
28
|
+
@customer = T.let(nil, T.nilable(Customer))
|
29
|
+
@customer_locale = T.let(nil, T.nilable(String))
|
30
|
+
@device_id = T.let(nil, T.nilable(Integer))
|
31
|
+
@discount_codes = T.let(nil, T.nilable(T::Array[T.untyped]))
|
32
|
+
@email = T.let(nil, T.nilable(String))
|
33
|
+
@gateway = T.let(nil, T.nilable(String))
|
34
|
+
@id = T.let(nil, T.nilable(Integer))
|
35
|
+
@landing_site = T.let(nil, T.nilable(String))
|
36
|
+
@line_items = T.let(nil, T.nilable(T::Hash[T.untyped, T.untyped]))
|
37
|
+
@location_id = T.let(nil, T.nilable(Integer))
|
38
|
+
@note = T.let(nil, T.nilable(String))
|
39
|
+
@phone = T.let(nil, T.nilable(String))
|
40
|
+
@presentment_currency = T.let(nil, T.nilable(String))
|
41
|
+
@referring_site = T.let(nil, T.nilable(String))
|
42
|
+
@shipping_address = T.let(nil, T.nilable(T::Hash[T.untyped, T.untyped]))
|
43
|
+
@shipping_lines = T.let(nil, T.nilable(T::Hash[T.untyped, T.untyped]))
|
44
|
+
@sms_marketing_phone = T.let(nil, T.nilable(String))
|
45
|
+
@source_name = T.let(nil, T.nilable(String))
|
46
|
+
@subtotal_price = T.let(nil, T.nilable(String))
|
47
|
+
@tax_lines = T.let(nil, T.nilable(T::Hash[T.untyped, T.untyped]))
|
48
|
+
@taxes_included = T.let(nil, T.nilable(T::Boolean))
|
49
|
+
@token = T.let(nil, T.nilable(String))
|
50
|
+
@total_discounts = T.let(nil, T.nilable(String))
|
51
|
+
@total_duties = T.let(nil, T.nilable(String))
|
52
|
+
@total_line_items_price = T.let(nil, T.nilable(String))
|
53
|
+
@total_price = T.let(nil, T.nilable(String))
|
54
|
+
@total_tax = T.let(nil, T.nilable(String))
|
55
|
+
@total_weight = T.let(nil, T.nilable(Integer))
|
56
|
+
@updated_at = T.let(nil, T.nilable(String))
|
57
|
+
@user_id = T.let(nil, T.nilable(Integer))
|
58
|
+
end
|
59
|
+
|
60
|
+
@has_one = T.let({
|
61
|
+
currency: Currency,
|
62
|
+
customer: Customer
|
63
|
+
}, T::Hash[Symbol, Class])
|
64
|
+
@has_many = T.let({
|
65
|
+
discount_codes: DiscountCode
|
66
|
+
}, T::Hash[Symbol, Class])
|
67
|
+
@paths = T.let([
|
68
|
+
{http_method: :get, operation: :checkouts, ids: [], path: "checkouts.json"},
|
69
|
+
{http_method: :get, operation: :checkouts, ids: [], path: "checkouts.json"}
|
70
|
+
], T::Array[T::Hash[String, T.any(T::Array[Symbol], String, Symbol)]])
|
71
|
+
|
72
|
+
sig { returns(T.nilable(String)) }
|
73
|
+
attr_reader :abandoned_checkout_url
|
74
|
+
sig { returns(T.nilable(T::Hash[T.untyped, T.untyped])) }
|
75
|
+
attr_reader :billing_address
|
76
|
+
sig { returns(T.nilable(T::Boolean)) }
|
77
|
+
attr_reader :buyer_accepts_marketing
|
78
|
+
sig { returns(T.nilable(T::Boolean)) }
|
79
|
+
attr_reader :buyer_accepts_sms_marketing
|
80
|
+
sig { returns(T.nilable(String)) }
|
81
|
+
attr_reader :cart_token
|
82
|
+
sig { returns(T.nilable(String)) }
|
83
|
+
attr_reader :closed_at
|
84
|
+
sig { returns(T.nilable(String)) }
|
85
|
+
attr_reader :completed_at
|
86
|
+
sig { returns(T.nilable(String)) }
|
87
|
+
attr_reader :created_at
|
88
|
+
sig { returns(T.nilable(Currency)) }
|
89
|
+
attr_reader :currency
|
90
|
+
sig { returns(T.nilable(Customer)) }
|
91
|
+
attr_reader :customer
|
92
|
+
sig { returns(T.nilable(String)) }
|
93
|
+
attr_reader :customer_locale
|
94
|
+
sig { returns(T.nilable(Integer)) }
|
95
|
+
attr_reader :device_id
|
96
|
+
sig { returns(T.nilable(T::Array[DiscountCode])) }
|
97
|
+
attr_reader :discount_codes
|
98
|
+
sig { returns(T.nilable(String)) }
|
99
|
+
attr_reader :email
|
100
|
+
sig { returns(T.nilable(String)) }
|
101
|
+
attr_reader :gateway
|
102
|
+
sig { returns(T.nilable(Integer)) }
|
103
|
+
attr_reader :id
|
104
|
+
sig { returns(T.nilable(String)) }
|
105
|
+
attr_reader :landing_site
|
106
|
+
sig { returns(T.nilable(T::Hash[T.untyped, T.untyped])) }
|
107
|
+
attr_reader :line_items
|
108
|
+
sig { returns(T.nilable(Integer)) }
|
109
|
+
attr_reader :location_id
|
110
|
+
sig { returns(T.nilable(String)) }
|
111
|
+
attr_reader :note
|
112
|
+
sig { returns(T.nilable(String)) }
|
113
|
+
attr_reader :phone
|
114
|
+
sig { returns(T.nilable(String)) }
|
115
|
+
attr_reader :presentment_currency
|
116
|
+
sig { returns(T.nilable(String)) }
|
117
|
+
attr_reader :referring_site
|
118
|
+
sig { returns(T.nilable(T::Hash[T.untyped, T.untyped])) }
|
119
|
+
attr_reader :shipping_address
|
120
|
+
sig { returns(T.nilable(T::Hash[T.untyped, T.untyped])) }
|
121
|
+
attr_reader :shipping_lines
|
122
|
+
sig { returns(T.nilable(String)) }
|
123
|
+
attr_reader :sms_marketing_phone
|
124
|
+
sig { returns(T.nilable(String)) }
|
125
|
+
attr_reader :source_name
|
126
|
+
sig { returns(T.nilable(String)) }
|
127
|
+
attr_reader :subtotal_price
|
128
|
+
sig { returns(T.nilable(T::Hash[T.untyped, T.untyped])) }
|
129
|
+
attr_reader :tax_lines
|
130
|
+
sig { returns(T.nilable(T::Boolean)) }
|
131
|
+
attr_reader :taxes_included
|
132
|
+
sig { returns(T.nilable(String)) }
|
133
|
+
attr_reader :token
|
134
|
+
sig { returns(T.nilable(String)) }
|
135
|
+
attr_reader :total_discounts
|
136
|
+
sig { returns(T.nilable(String)) }
|
137
|
+
attr_reader :total_duties
|
138
|
+
sig { returns(T.nilable(String)) }
|
139
|
+
attr_reader :total_line_items_price
|
140
|
+
sig { returns(T.nilable(String)) }
|
141
|
+
attr_reader :total_price
|
142
|
+
sig { returns(T.nilable(String)) }
|
143
|
+
attr_reader :total_tax
|
144
|
+
sig { returns(T.nilable(Integer)) }
|
145
|
+
attr_reader :total_weight
|
146
|
+
sig { returns(T.nilable(String)) }
|
147
|
+
attr_reader :updated_at
|
148
|
+
sig { returns(T.nilable(Integer)) }
|
149
|
+
attr_reader :user_id
|
150
|
+
|
151
|
+
class << self
|
152
|
+
sig do
|
153
|
+
params(
|
154
|
+
since_id: T.untyped,
|
155
|
+
created_at_min: T.untyped,
|
156
|
+
created_at_max: T.untyped,
|
157
|
+
updated_at_min: T.untyped,
|
158
|
+
updated_at_max: T.untyped,
|
159
|
+
status: T.untyped,
|
160
|
+
limit: T.untyped,
|
161
|
+
session: Auth::Session,
|
162
|
+
kwargs: T.untyped
|
163
|
+
).returns(T.untyped)
|
164
|
+
end
|
165
|
+
def checkouts(
|
166
|
+
since_id: nil,
|
167
|
+
created_at_min: nil,
|
168
|
+
created_at_max: nil,
|
169
|
+
updated_at_min: nil,
|
170
|
+
updated_at_max: nil,
|
171
|
+
status: nil,
|
172
|
+
limit: nil,
|
173
|
+
session: ShopifyAPI::Context.active_session,
|
174
|
+
**kwargs
|
175
|
+
)
|
176
|
+
request(
|
177
|
+
http_method: :get,
|
178
|
+
operation: :checkouts,
|
179
|
+
session: session,
|
180
|
+
ids: {},
|
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,
|
182
|
+
body: {},
|
183
|
+
entity: nil,
|
184
|
+
)
|
185
|
+
end
|
186
|
+
|
187
|
+
end
|
188
|
+
|
189
|
+
end
|
190
|
+
end
|
@@ -0,0 +1,58 @@
|
|
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 AccessScope < 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
|
+
@handle = T.let(nil, T.nilable(String))
|
20
|
+
@access_scopes = T.let(nil, T.nilable(T::Array[T.untyped]))
|
21
|
+
end
|
22
|
+
|
23
|
+
@has_one = T.let({}, T::Hash[Symbol, Class])
|
24
|
+
@has_many = T.let({}, T::Hash[Symbol, Class])
|
25
|
+
@custom_prefix = T.let("/admin/oauth", T.nilable(String))
|
26
|
+
@paths = T.let([
|
27
|
+
{http_method: :get, operation: :get, ids: [], path: "access_scopes.json"}
|
28
|
+
], T::Array[T::Hash[String, T.any(T::Array[Symbol], String, Symbol)]])
|
29
|
+
|
30
|
+
sig { returns(T.nilable(String)) }
|
31
|
+
attr_reader :handle
|
32
|
+
sig { returns(T.nilable(T::Array[T::Hash[T.untyped, T.untyped]])) }
|
33
|
+
attr_reader :access_scopes
|
34
|
+
|
35
|
+
class << self
|
36
|
+
sig do
|
37
|
+
params(
|
38
|
+
session: Auth::Session,
|
39
|
+
kwargs: T.untyped
|
40
|
+
).returns(T::Array[AccessScope])
|
41
|
+
end
|
42
|
+
def all(
|
43
|
+
session: ShopifyAPI::Context.active_session,
|
44
|
+
**kwargs
|
45
|
+
)
|
46
|
+
response = base_find(
|
47
|
+
session: session,
|
48
|
+
ids: {},
|
49
|
+
params: {}.merge(kwargs).compact,
|
50
|
+
)
|
51
|
+
|
52
|
+
T.cast(response, T::Array[AccessScope])
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
56
|
+
|
57
|
+
end
|
58
|
+
end
|
@@ -0,0 +1,105 @@
|
|
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 ApplePayCertificate < 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
|
+
@id = T.let(nil, T.nilable(Integer))
|
20
|
+
@merchant_id = T.let(nil, T.nilable(String))
|
21
|
+
@status = T.let(nil, T.nilable(String))
|
22
|
+
end
|
23
|
+
|
24
|
+
@has_one = T.let({}, T::Hash[Symbol, Class])
|
25
|
+
@has_many = T.let({}, T::Hash[Symbol, Class])
|
26
|
+
@paths = T.let([
|
27
|
+
{http_method: :delete, operation: :delete, ids: [:id], path: "apple_pay_certificates/<id>.json"},
|
28
|
+
{http_method: :get, operation: :csr, ids: [:id], path: "apple_pay_certificates/<id>/csr.json"},
|
29
|
+
{http_method: :get, operation: :get, ids: [:id], path: "apple_pay_certificates/<id>.json"},
|
30
|
+
{http_method: :post, operation: :post, ids: [], path: "apple_pay_certificates.json"},
|
31
|
+
{http_method: :put, operation: :put, ids: [:id], path: "apple_pay_certificates/<id>.json"}
|
32
|
+
], T::Array[T::Hash[String, T.any(T::Array[Symbol], String, Symbol)]])
|
33
|
+
|
34
|
+
sig { returns(T.nilable(Integer)) }
|
35
|
+
attr_reader :id
|
36
|
+
sig { returns(T.nilable(String)) }
|
37
|
+
attr_reader :merchant_id
|
38
|
+
sig { returns(T.nilable(String)) }
|
39
|
+
attr_reader :status
|
40
|
+
|
41
|
+
class << self
|
42
|
+
sig do
|
43
|
+
params(
|
44
|
+
id: T.any(Integer, String),
|
45
|
+
session: Auth::Session
|
46
|
+
).returns(T.nilable(ApplePayCertificate))
|
47
|
+
end
|
48
|
+
def find(
|
49
|
+
id:,
|
50
|
+
session: ShopifyAPI::Context.active_session
|
51
|
+
)
|
52
|
+
result = base_find(
|
53
|
+
session: session,
|
54
|
+
ids: {id: id},
|
55
|
+
params: {},
|
56
|
+
)
|
57
|
+
T.cast(result[0], T.nilable(ApplePayCertificate))
|
58
|
+
end
|
59
|
+
|
60
|
+
sig do
|
61
|
+
params(
|
62
|
+
id: T.any(Integer, String),
|
63
|
+
session: Auth::Session
|
64
|
+
).returns(T.untyped)
|
65
|
+
end
|
66
|
+
def delete(
|
67
|
+
id:,
|
68
|
+
session: ShopifyAPI::Context.active_session
|
69
|
+
)
|
70
|
+
request(
|
71
|
+
http_method: :delete,
|
72
|
+
operation: :delete,
|
73
|
+
session: session,
|
74
|
+
ids: {id: id},
|
75
|
+
params: {},
|
76
|
+
)
|
77
|
+
end
|
78
|
+
|
79
|
+
sig do
|
80
|
+
params(
|
81
|
+
id: T.any(Integer, String),
|
82
|
+
session: Auth::Session,
|
83
|
+
kwargs: T.untyped
|
84
|
+
).returns(T.untyped)
|
85
|
+
end
|
86
|
+
def csr(
|
87
|
+
id:,
|
88
|
+
session: ShopifyAPI::Context.active_session,
|
89
|
+
**kwargs
|
90
|
+
)
|
91
|
+
request(
|
92
|
+
http_method: :get,
|
93
|
+
operation: :csr,
|
94
|
+
session: session,
|
95
|
+
ids: {id: id},
|
96
|
+
params: {}.merge(kwargs).compact,
|
97
|
+
body: {},
|
98
|
+
entity: nil,
|
99
|
+
)
|
100
|
+
end
|
101
|
+
|
102
|
+
end
|
103
|
+
|
104
|
+
end
|
105
|
+
end
|
@@ -0,0 +1,104 @@
|
|
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 ApplicationCharge < 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
|
+
@confirmation_url = T.let(nil, T.nilable(String))
|
20
|
+
@created_at = T.let(nil, T.nilable(String))
|
21
|
+
@id = T.let(nil, T.nilable(Integer))
|
22
|
+
@name = T.let(nil, T.nilable(String))
|
23
|
+
@price = T.let(nil, T.nilable(T.any(String, Float)))
|
24
|
+
@return_url = T.let(nil, T.nilable(String))
|
25
|
+
@status = T.let(nil, T.nilable(String))
|
26
|
+
@test = T.let(nil, T.nilable(T::Boolean))
|
27
|
+
@updated_at = T.let(nil, T.nilable(String))
|
28
|
+
end
|
29
|
+
|
30
|
+
@has_one = T.let({}, T::Hash[Symbol, Class])
|
31
|
+
@has_many = T.let({}, T::Hash[Symbol, Class])
|
32
|
+
@paths = T.let([
|
33
|
+
{http_method: :get, operation: :get, ids: [], path: "application_charges.json"},
|
34
|
+
{http_method: :get, operation: :get, ids: [:id], path: "application_charges/<id>.json"},
|
35
|
+
{http_method: :post, operation: :post, ids: [], path: "application_charges.json"}
|
36
|
+
], T::Array[T::Hash[String, T.any(T::Array[Symbol], String, Symbol)]])
|
37
|
+
|
38
|
+
sig { returns(T.nilable(String)) }
|
39
|
+
attr_reader :confirmation_url
|
40
|
+
sig { returns(T.nilable(String)) }
|
41
|
+
attr_reader :created_at
|
42
|
+
sig { returns(T.nilable(Integer)) }
|
43
|
+
attr_reader :id
|
44
|
+
sig { returns(T.nilable(String)) }
|
45
|
+
attr_reader :name
|
46
|
+
sig { returns(T.nilable(T.any(String, Float))) }
|
47
|
+
attr_reader :price
|
48
|
+
sig { returns(T.nilable(String)) }
|
49
|
+
attr_reader :return_url
|
50
|
+
sig { returns(T.nilable(String)) }
|
51
|
+
attr_reader :status
|
52
|
+
sig { returns(T.nilable(T::Boolean)) }
|
53
|
+
attr_reader :test
|
54
|
+
sig { returns(T.nilable(String)) }
|
55
|
+
attr_reader :updated_at
|
56
|
+
|
57
|
+
class << self
|
58
|
+
sig do
|
59
|
+
params(
|
60
|
+
id: T.any(Integer, String),
|
61
|
+
fields: T.untyped,
|
62
|
+
session: Auth::Session
|
63
|
+
).returns(T.nilable(ApplicationCharge))
|
64
|
+
end
|
65
|
+
def find(
|
66
|
+
id:,
|
67
|
+
fields: nil,
|
68
|
+
session: ShopifyAPI::Context.active_session
|
69
|
+
)
|
70
|
+
result = base_find(
|
71
|
+
session: session,
|
72
|
+
ids: {id: id},
|
73
|
+
params: {fields: fields},
|
74
|
+
)
|
75
|
+
T.cast(result[0], T.nilable(ApplicationCharge))
|
76
|
+
end
|
77
|
+
|
78
|
+
sig do
|
79
|
+
params(
|
80
|
+
since_id: T.untyped,
|
81
|
+
fields: T.untyped,
|
82
|
+
session: Auth::Session,
|
83
|
+
kwargs: T.untyped
|
84
|
+
).returns(T::Array[ApplicationCharge])
|
85
|
+
end
|
86
|
+
def all(
|
87
|
+
since_id: nil,
|
88
|
+
fields: nil,
|
89
|
+
session: ShopifyAPI::Context.active_session,
|
90
|
+
**kwargs
|
91
|
+
)
|
92
|
+
response = base_find(
|
93
|
+
session: session,
|
94
|
+
ids: {},
|
95
|
+
params: {since_id: since_id, fields: fields}.merge(kwargs).compact,
|
96
|
+
)
|
97
|
+
|
98
|
+
T.cast(response, T::Array[ApplicationCharge])
|
99
|
+
end
|
100
|
+
|
101
|
+
end
|
102
|
+
|
103
|
+
end
|
104
|
+
end
|
@@ -0,0 +1,87 @@
|
|
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 ApplicationCredit < 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
|
+
@amount = T.let(nil, T.nilable(Integer))
|
20
|
+
@description = T.let(nil, T.nilable(String))
|
21
|
+
@id = T.let(nil, T.nilable(Integer))
|
22
|
+
@test = T.let(nil, T.nilable(T::Boolean))
|
23
|
+
end
|
24
|
+
|
25
|
+
@has_one = T.let({}, T::Hash[Symbol, Class])
|
26
|
+
@has_many = T.let({}, T::Hash[Symbol, Class])
|
27
|
+
@paths = T.let([
|
28
|
+
{http_method: :get, operation: :get, ids: [], path: "application_credits.json"},
|
29
|
+
{http_method: :get, operation: :get, ids: [:id], path: "application_credits/<id>.json"},
|
30
|
+
{http_method: :post, operation: :post, ids: [], path: "application_credits.json"}
|
31
|
+
], T::Array[T::Hash[String, T.any(T::Array[Symbol], String, Symbol)]])
|
32
|
+
|
33
|
+
sig { returns(T.nilable(Integer)) }
|
34
|
+
attr_reader :amount
|
35
|
+
sig { returns(T.nilable(String)) }
|
36
|
+
attr_reader :description
|
37
|
+
sig { returns(T.nilable(Integer)) }
|
38
|
+
attr_reader :id
|
39
|
+
sig { returns(T.nilable(T::Boolean)) }
|
40
|
+
attr_reader :test
|
41
|
+
|
42
|
+
class << self
|
43
|
+
sig do
|
44
|
+
params(
|
45
|
+
id: T.any(Integer, String),
|
46
|
+
fields: T.untyped,
|
47
|
+
session: Auth::Session
|
48
|
+
).returns(T.nilable(ApplicationCredit))
|
49
|
+
end
|
50
|
+
def find(
|
51
|
+
id:,
|
52
|
+
fields: nil,
|
53
|
+
session: ShopifyAPI::Context.active_session
|
54
|
+
)
|
55
|
+
result = base_find(
|
56
|
+
session: session,
|
57
|
+
ids: {id: id},
|
58
|
+
params: {fields: fields},
|
59
|
+
)
|
60
|
+
T.cast(result[0], T.nilable(ApplicationCredit))
|
61
|
+
end
|
62
|
+
|
63
|
+
sig do
|
64
|
+
params(
|
65
|
+
fields: T.untyped,
|
66
|
+
session: Auth::Session,
|
67
|
+
kwargs: T.untyped
|
68
|
+
).returns(T::Array[ApplicationCredit])
|
69
|
+
end
|
70
|
+
def all(
|
71
|
+
fields: nil,
|
72
|
+
session: ShopifyAPI::Context.active_session,
|
73
|
+
**kwargs
|
74
|
+
)
|
75
|
+
response = base_find(
|
76
|
+
session: session,
|
77
|
+
ids: {},
|
78
|
+
params: {fields: fields}.merge(kwargs).compact,
|
79
|
+
)
|
80
|
+
|
81
|
+
T.cast(response, T::Array[ApplicationCredit])
|
82
|
+
end
|
83
|
+
|
84
|
+
end
|
85
|
+
|
86
|
+
end
|
87
|
+
end
|