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
@@ -0,0 +1,169 @@
|
|
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 CustomerSavedSearch < 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
|
+
@created_at = T.let(nil, T.nilable(String))
|
20
|
+
@id = T.let(nil, T.nilable(Integer))
|
21
|
+
@name = T.let(nil, T.nilable(String))
|
22
|
+
@query = T.let(nil, T.nilable(String))
|
23
|
+
@updated_at = T.let(nil, T.nilable(String))
|
24
|
+
end
|
25
|
+
|
26
|
+
@has_one = T.let({}, T::Hash[Symbol, Class])
|
27
|
+
@has_many = T.let({}, T::Hash[Symbol, Class])
|
28
|
+
@paths = T.let([
|
29
|
+
{http_method: :delete, operation: :delete, ids: [:id], path: "customer_saved_searches/<id>.json"},
|
30
|
+
{http_method: :get, operation: :count, ids: [], path: "customer_saved_searches/count.json"},
|
31
|
+
{http_method: :get, operation: :customers, ids: [:id], path: "customer_saved_searches/<id>/customers.json"},
|
32
|
+
{http_method: :get, operation: :get, ids: [], path: "customer_saved_searches.json"},
|
33
|
+
{http_method: :get, operation: :get, ids: [:id], path: "customer_saved_searches/<id>.json"},
|
34
|
+
{http_method: :post, operation: :post, ids: [], path: "customer_saved_searches.json"},
|
35
|
+
{http_method: :put, operation: :put, ids: [:id], path: "customer_saved_searches/<id>.json"}
|
36
|
+
], T::Array[T::Hash[String, T.any(T::Array[Symbol], String, Symbol)]])
|
37
|
+
|
38
|
+
sig { returns(T.nilable(String)) }
|
39
|
+
attr_reader :created_at
|
40
|
+
sig { returns(T.nilable(Integer)) }
|
41
|
+
attr_reader :id
|
42
|
+
sig { returns(T.nilable(String)) }
|
43
|
+
attr_reader :name
|
44
|
+
sig { returns(T.nilable(String)) }
|
45
|
+
attr_reader :query
|
46
|
+
sig { returns(T.nilable(String)) }
|
47
|
+
attr_reader :updated_at
|
48
|
+
|
49
|
+
class << self
|
50
|
+
sig do
|
51
|
+
params(
|
52
|
+
id: T.any(Integer, String),
|
53
|
+
fields: T.untyped,
|
54
|
+
session: Auth::Session
|
55
|
+
).returns(T.nilable(CustomerSavedSearch))
|
56
|
+
end
|
57
|
+
def find(
|
58
|
+
id:,
|
59
|
+
fields: nil,
|
60
|
+
session: ShopifyAPI::Context.active_session
|
61
|
+
)
|
62
|
+
result = base_find(
|
63
|
+
session: session,
|
64
|
+
ids: {id: id},
|
65
|
+
params: {fields: fields},
|
66
|
+
)
|
67
|
+
T.cast(result[0], T.nilable(CustomerSavedSearch))
|
68
|
+
end
|
69
|
+
|
70
|
+
sig do
|
71
|
+
params(
|
72
|
+
id: T.any(Integer, String),
|
73
|
+
session: Auth::Session
|
74
|
+
).returns(T.untyped)
|
75
|
+
end
|
76
|
+
def delete(
|
77
|
+
id:,
|
78
|
+
session: ShopifyAPI::Context.active_session
|
79
|
+
)
|
80
|
+
request(
|
81
|
+
http_method: :delete,
|
82
|
+
operation: :delete,
|
83
|
+
session: session,
|
84
|
+
ids: {id: id},
|
85
|
+
params: {},
|
86
|
+
)
|
87
|
+
end
|
88
|
+
|
89
|
+
sig do
|
90
|
+
params(
|
91
|
+
limit: T.untyped,
|
92
|
+
since_id: T.untyped,
|
93
|
+
fields: T.untyped,
|
94
|
+
session: Auth::Session,
|
95
|
+
kwargs: T.untyped
|
96
|
+
).returns(T::Array[CustomerSavedSearch])
|
97
|
+
end
|
98
|
+
def all(
|
99
|
+
limit: nil,
|
100
|
+
since_id: nil,
|
101
|
+
fields: nil,
|
102
|
+
session: ShopifyAPI::Context.active_session,
|
103
|
+
**kwargs
|
104
|
+
)
|
105
|
+
response = base_find(
|
106
|
+
session: session,
|
107
|
+
ids: {},
|
108
|
+
params: {limit: limit, since_id: since_id, fields: fields}.merge(kwargs).compact,
|
109
|
+
)
|
110
|
+
|
111
|
+
T.cast(response, T::Array[CustomerSavedSearch])
|
112
|
+
end
|
113
|
+
|
114
|
+
sig do
|
115
|
+
params(
|
116
|
+
since_id: T.untyped,
|
117
|
+
session: Auth::Session,
|
118
|
+
kwargs: T.untyped
|
119
|
+
).returns(T.untyped)
|
120
|
+
end
|
121
|
+
def count(
|
122
|
+
since_id: nil,
|
123
|
+
session: ShopifyAPI::Context.active_session,
|
124
|
+
**kwargs
|
125
|
+
)
|
126
|
+
request(
|
127
|
+
http_method: :get,
|
128
|
+
operation: :count,
|
129
|
+
session: session,
|
130
|
+
ids: {},
|
131
|
+
params: {since_id: since_id}.merge(kwargs).compact,
|
132
|
+
body: {},
|
133
|
+
entity: nil,
|
134
|
+
)
|
135
|
+
end
|
136
|
+
|
137
|
+
sig do
|
138
|
+
params(
|
139
|
+
id: T.any(Integer, String),
|
140
|
+
order: T.untyped,
|
141
|
+
limit: T.untyped,
|
142
|
+
fields: T.untyped,
|
143
|
+
session: Auth::Session,
|
144
|
+
kwargs: T.untyped
|
145
|
+
).returns(T.untyped)
|
146
|
+
end
|
147
|
+
def customers(
|
148
|
+
id:,
|
149
|
+
order: nil,
|
150
|
+
limit: nil,
|
151
|
+
fields: nil,
|
152
|
+
session: ShopifyAPI::Context.active_session,
|
153
|
+
**kwargs
|
154
|
+
)
|
155
|
+
request(
|
156
|
+
http_method: :get,
|
157
|
+
operation: :customers,
|
158
|
+
session: session,
|
159
|
+
ids: {id: id},
|
160
|
+
params: {order: order, limit: limit, fields: fields}.merge(kwargs).compact,
|
161
|
+
body: {},
|
162
|
+
entity: nil,
|
163
|
+
)
|
164
|
+
end
|
165
|
+
|
166
|
+
end
|
167
|
+
|
168
|
+
end
|
169
|
+
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 DeprecatedApiCall < 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
|
+
@data_updated_at = T.let(nil, T.nilable(String))
|
20
|
+
@deprecated_api_calls = 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
|
+
@paths = T.let([
|
26
|
+
{http_method: :get, operation: :get, ids: [], path: "deprecated_api_calls.json"}
|
27
|
+
], T::Array[T::Hash[String, T.any(T::Array[Symbol], String, Symbol)]])
|
28
|
+
|
29
|
+
sig { returns(T.nilable(String)) }
|
30
|
+
attr_reader :data_updated_at
|
31
|
+
sig { returns(T.nilable(T::Array[T::Hash[T.untyped, T.untyped]])) }
|
32
|
+
attr_reader :deprecated_api_calls
|
33
|
+
|
34
|
+
class << self
|
35
|
+
sig do
|
36
|
+
params(
|
37
|
+
session: Auth::Session,
|
38
|
+
kwargs: T.untyped
|
39
|
+
).returns(T::Array[DeprecatedApiCall])
|
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[DeprecatedApiCall])
|
52
|
+
end
|
53
|
+
|
54
|
+
end
|
55
|
+
|
56
|
+
end
|
57
|
+
end
|
@@ -0,0 +1,219 @@
|
|
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 DiscountCode < 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
|
+
@created_at = T.let(nil, T.nilable(String))
|
21
|
+
@id = T.let(nil, T.nilable(Integer))
|
22
|
+
@price_rule_id = T.let(nil, T.nilable(Integer))
|
23
|
+
@updated_at = T.let(nil, T.nilable(String))
|
24
|
+
@usage_count = T.let(nil, T.nilable(Integer))
|
25
|
+
end
|
26
|
+
|
27
|
+
@has_one = T.let({}, T::Hash[Symbol, Class])
|
28
|
+
@has_many = T.let({}, T::Hash[Symbol, Class])
|
29
|
+
@paths = T.let([
|
30
|
+
{http_method: :delete, operation: :delete, ids: [:price_rule_id, :id], path: "price_rules/<price_rule_id>/discount_codes/<id>.json"},
|
31
|
+
{http_method: :get, operation: :count, ids: [], path: "discount_codes/count.json"},
|
32
|
+
{http_method: :get, operation: :get, ids: [:price_rule_id, :batch_id], path: "price_rules/<price_rule_id>/batch/<batch_id>/discount_codes.json"},
|
33
|
+
{http_method: :get, operation: :get, ids: [:price_rule_id], path: "price_rules/<price_rule_id>/discount_codes.json"},
|
34
|
+
{http_method: :get, operation: :get, ids: [:price_rule_id, :id], path: "price_rules/<price_rule_id>/discount_codes/<id>.json"},
|
35
|
+
{http_method: :get, operation: :get_all, ids: [:price_rule_id, :batch_id], path: "price_rules/<price_rule_id>/batch/<batch_id>.json"},
|
36
|
+
{http_method: :get, operation: :lookup, ids: [], path: "discount_codes/lookup.json"},
|
37
|
+
{http_method: :post, operation: :batch, ids: [:price_rule_id], path: "price_rules/<price_rule_id>/batch.json"},
|
38
|
+
{http_method: :post, operation: :post, ids: [:price_rule_id], path: "price_rules/<price_rule_id>/discount_codes.json"},
|
39
|
+
{http_method: :put, operation: :put, ids: [:price_rule_id, :id], path: "price_rules/<price_rule_id>/discount_codes/<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 :code
|
44
|
+
sig { returns(T.nilable(String)) }
|
45
|
+
attr_reader :created_at
|
46
|
+
sig { returns(T.nilable(Integer)) }
|
47
|
+
attr_reader :id
|
48
|
+
sig { returns(T.nilable(Integer)) }
|
49
|
+
attr_reader :price_rule_id
|
50
|
+
sig { returns(T.nilable(String)) }
|
51
|
+
attr_reader :updated_at
|
52
|
+
sig { returns(T.nilable(Integer)) }
|
53
|
+
attr_reader :usage_count
|
54
|
+
|
55
|
+
class << self
|
56
|
+
sig do
|
57
|
+
params(
|
58
|
+
id: T.any(Integer, String),
|
59
|
+
price_rule_id: T.nilable(T.any(Integer, String)),
|
60
|
+
session: Auth::Session
|
61
|
+
).returns(T.nilable(DiscountCode))
|
62
|
+
end
|
63
|
+
def find(
|
64
|
+
id:,
|
65
|
+
price_rule_id: nil,
|
66
|
+
session: ShopifyAPI::Context.active_session
|
67
|
+
)
|
68
|
+
result = base_find(
|
69
|
+
session: session,
|
70
|
+
ids: {id: id, price_rule_id: price_rule_id},
|
71
|
+
params: {},
|
72
|
+
)
|
73
|
+
T.cast(result[0], T.nilable(DiscountCode))
|
74
|
+
end
|
75
|
+
|
76
|
+
sig do
|
77
|
+
params(
|
78
|
+
id: T.any(Integer, String),
|
79
|
+
price_rule_id: T.nilable(T.any(Integer, String)),
|
80
|
+
session: Auth::Session
|
81
|
+
).returns(T.untyped)
|
82
|
+
end
|
83
|
+
def delete(
|
84
|
+
id:,
|
85
|
+
price_rule_id: nil,
|
86
|
+
session: ShopifyAPI::Context.active_session
|
87
|
+
)
|
88
|
+
request(
|
89
|
+
http_method: :delete,
|
90
|
+
operation: :delete,
|
91
|
+
session: session,
|
92
|
+
ids: {id: id, price_rule_id: price_rule_id},
|
93
|
+
params: {},
|
94
|
+
)
|
95
|
+
end
|
96
|
+
|
97
|
+
sig do
|
98
|
+
params(
|
99
|
+
price_rule_id: T.nilable(T.any(Integer, String)),
|
100
|
+
batch_id: T.nilable(T.any(Integer, String)),
|
101
|
+
session: Auth::Session,
|
102
|
+
kwargs: T.untyped
|
103
|
+
).returns(T::Array[DiscountCode])
|
104
|
+
end
|
105
|
+
def all(
|
106
|
+
price_rule_id: nil,
|
107
|
+
batch_id: nil,
|
108
|
+
session: ShopifyAPI::Context.active_session,
|
109
|
+
**kwargs
|
110
|
+
)
|
111
|
+
response = base_find(
|
112
|
+
session: session,
|
113
|
+
ids: {price_rule_id: price_rule_id, batch_id: batch_id},
|
114
|
+
params: {}.merge(kwargs).compact,
|
115
|
+
)
|
116
|
+
|
117
|
+
T.cast(response, T::Array[DiscountCode])
|
118
|
+
end
|
119
|
+
|
120
|
+
sig do
|
121
|
+
params(
|
122
|
+
times_used: T.untyped,
|
123
|
+
times_used_min: T.untyped,
|
124
|
+
times_used_max: T.untyped,
|
125
|
+
session: Auth::Session,
|
126
|
+
kwargs: T.untyped
|
127
|
+
).returns(T.untyped)
|
128
|
+
end
|
129
|
+
def count(
|
130
|
+
times_used: nil,
|
131
|
+
times_used_min: nil,
|
132
|
+
times_used_max: nil,
|
133
|
+
session: ShopifyAPI::Context.active_session,
|
134
|
+
**kwargs
|
135
|
+
)
|
136
|
+
request(
|
137
|
+
http_method: :get,
|
138
|
+
operation: :count,
|
139
|
+
session: session,
|
140
|
+
ids: {},
|
141
|
+
params: {times_used: times_used, times_used_min: times_used_min, times_used_max: times_used_max}.merge(kwargs).compact,
|
142
|
+
body: {},
|
143
|
+
entity: nil,
|
144
|
+
)
|
145
|
+
end
|
146
|
+
|
147
|
+
sig do
|
148
|
+
params(
|
149
|
+
price_rule_id: T.nilable(T.any(Integer, String)),
|
150
|
+
batch_id: T.nilable(T.any(Integer, String)),
|
151
|
+
session: Auth::Session,
|
152
|
+
kwargs: T.untyped
|
153
|
+
).returns(T.untyped)
|
154
|
+
end
|
155
|
+
def get_all(
|
156
|
+
price_rule_id: nil,
|
157
|
+
batch_id: nil,
|
158
|
+
session: ShopifyAPI::Context.active_session,
|
159
|
+
**kwargs
|
160
|
+
)
|
161
|
+
request(
|
162
|
+
http_method: :get,
|
163
|
+
operation: :get_all,
|
164
|
+
session: session,
|
165
|
+
ids: {price_rule_id: price_rule_id, batch_id: batch_id},
|
166
|
+
params: {}.merge(kwargs).compact,
|
167
|
+
body: {},
|
168
|
+
entity: nil,
|
169
|
+
)
|
170
|
+
end
|
171
|
+
|
172
|
+
sig do
|
173
|
+
params(
|
174
|
+
code: T.untyped,
|
175
|
+
session: Auth::Session,
|
176
|
+
kwargs: T.untyped
|
177
|
+
).returns(T.untyped)
|
178
|
+
end
|
179
|
+
def lookup(
|
180
|
+
code: nil,
|
181
|
+
session: ShopifyAPI::Context.active_session,
|
182
|
+
**kwargs
|
183
|
+
)
|
184
|
+
request(
|
185
|
+
http_method: :get,
|
186
|
+
operation: :lookup,
|
187
|
+
session: session,
|
188
|
+
ids: {},
|
189
|
+
params: {code: code}.merge(kwargs).compact,
|
190
|
+
body: {},
|
191
|
+
entity: nil,
|
192
|
+
)
|
193
|
+
end
|
194
|
+
|
195
|
+
end
|
196
|
+
|
197
|
+
sig do
|
198
|
+
params(
|
199
|
+
body: T.untyped,
|
200
|
+
kwargs: T.untyped
|
201
|
+
).returns(T.untyped)
|
202
|
+
end
|
203
|
+
def batch(
|
204
|
+
body: nil,
|
205
|
+
**kwargs
|
206
|
+
)
|
207
|
+
self.class.request(
|
208
|
+
http_method: :post,
|
209
|
+
operation: :batch,
|
210
|
+
session: @session,
|
211
|
+
ids: {price_rule_id: @price_rule_id},
|
212
|
+
params: {}.merge(kwargs).compact,
|
213
|
+
body: body,
|
214
|
+
entity: self,
|
215
|
+
)
|
216
|
+
end
|
217
|
+
|
218
|
+
end
|
219
|
+
end
|
@@ -0,0 +1,111 @@
|
|
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 Dispute < 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(String))
|
20
|
+
@currency = T.let(nil, T.nilable(String))
|
21
|
+
@evidence_due_by = T.let(nil, T.nilable(String))
|
22
|
+
@evidence_sent_on = T.let(nil, T.nilable(String))
|
23
|
+
@finalized_on = T.let(nil, T.nilable(String))
|
24
|
+
@id = T.let(nil, T.nilable(Integer))
|
25
|
+
@network_reason_code = T.let(nil, T.nilable(Integer))
|
26
|
+
@order_id = T.let(nil, T.nilable(Integer))
|
27
|
+
@reason = T.let(nil, T.nilable(String))
|
28
|
+
@status = T.let(nil, T.nilable(String))
|
29
|
+
@type = T.let(nil, T.nilable(String))
|
30
|
+
end
|
31
|
+
|
32
|
+
@has_one = T.let({}, T::Hash[Symbol, Class])
|
33
|
+
@has_many = T.let({}, T::Hash[Symbol, Class])
|
34
|
+
@paths = T.let([
|
35
|
+
{http_method: :get, operation: :get, ids: [], path: "shopify_payments/disputes.json"},
|
36
|
+
{http_method: :get, operation: :get, ids: [:id], path: "shopify_payments/disputes/<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 :amount
|
41
|
+
sig { returns(T.nilable(String)) }
|
42
|
+
attr_reader :currency
|
43
|
+
sig { returns(T.nilable(String)) }
|
44
|
+
attr_reader :evidence_due_by
|
45
|
+
sig { returns(T.nilable(String)) }
|
46
|
+
attr_reader :evidence_sent_on
|
47
|
+
sig { returns(T.nilable(String)) }
|
48
|
+
attr_reader :finalized_on
|
49
|
+
sig { returns(T.nilable(Integer)) }
|
50
|
+
attr_reader :id
|
51
|
+
sig { returns(T.nilable(Integer)) }
|
52
|
+
attr_reader :network_reason_code
|
53
|
+
sig { returns(T.nilable(Integer)) }
|
54
|
+
attr_reader :order_id
|
55
|
+
sig { returns(T.nilable(String)) }
|
56
|
+
attr_reader :reason
|
57
|
+
sig { returns(T.nilable(String)) }
|
58
|
+
attr_reader :status
|
59
|
+
sig { returns(T.nilable(String)) }
|
60
|
+
attr_reader :type
|
61
|
+
|
62
|
+
class << self
|
63
|
+
sig do
|
64
|
+
params(
|
65
|
+
id: T.any(Integer, String),
|
66
|
+
session: Auth::Session
|
67
|
+
).returns(T.nilable(Dispute))
|
68
|
+
end
|
69
|
+
def find(
|
70
|
+
id:,
|
71
|
+
session: ShopifyAPI::Context.active_session
|
72
|
+
)
|
73
|
+
result = base_find(
|
74
|
+
session: session,
|
75
|
+
ids: {id: id},
|
76
|
+
params: {},
|
77
|
+
)
|
78
|
+
T.cast(result[0], T.nilable(Dispute))
|
79
|
+
end
|
80
|
+
|
81
|
+
sig do
|
82
|
+
params(
|
83
|
+
since_id: T.untyped,
|
84
|
+
last_id: T.untyped,
|
85
|
+
status: T.untyped,
|
86
|
+
initiated_at: T.untyped,
|
87
|
+
session: Auth::Session,
|
88
|
+
kwargs: T.untyped
|
89
|
+
).returns(T::Array[Dispute])
|
90
|
+
end
|
91
|
+
def all(
|
92
|
+
since_id: nil,
|
93
|
+
last_id: nil,
|
94
|
+
status: nil,
|
95
|
+
initiated_at: nil,
|
96
|
+
session: ShopifyAPI::Context.active_session,
|
97
|
+
**kwargs
|
98
|
+
)
|
99
|
+
response = base_find(
|
100
|
+
session: session,
|
101
|
+
ids: {},
|
102
|
+
params: {since_id: since_id, last_id: last_id, status: status, initiated_at: initiated_at}.merge(kwargs).compact,
|
103
|
+
)
|
104
|
+
|
105
|
+
T.cast(response, T::Array[Dispute])
|
106
|
+
end
|
107
|
+
|
108
|
+
end
|
109
|
+
|
110
|
+
end
|
111
|
+
end
|