e_plat 0.7.0 → 0.7.2
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.
- checksums.yaml +4 -4
- data/README.md +6 -6
- data/lib/e_plat/version.rb +1 -1
- metadata +16 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5af5d23022fca18e27cc070f5975bd15c7aba8f7df53b3a764c9c1ba0a285284
|
|
4
|
+
data.tar.gz: c4b5f3ad678da9135a7f840028ede728ea16b0ee15f66d0d5edac60f5b805bf0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d0bdc8f94fb56bf2f7b36ea92cfbe3664caeb7ebd200d9d6215247f61b92b90f0f7e4a48b1aa860e4a8d6de35621f20621fe6ba2824389580bfb3109c15ab428
|
|
7
|
+
data.tar.gz: 801cd77a5959527f12b62d24a104e829069049a1d66664db2fbe18aa04cb09944d9971dbe8f78496684409e20efc4d5e298b0b289ddcc2087f07443051558b7c
|
data/README.md
CHANGED
|
@@ -41,11 +41,11 @@ To your gemfile and then run
|
|
|
41
41
|
You can configure which platform APIs are used by updating the EPlat config: <br/>
|
|
42
42
|
```ruby
|
|
43
43
|
#initializers/e_plat.rb
|
|
44
|
-
EPlat.config.shopify_api_version = "2024-
|
|
44
|
+
EPlat.config.shopify_api_version = "2024-07"
|
|
45
45
|
EPlat.config.bigcommerce_api_version = "v3"
|
|
46
46
|
|
|
47
|
-
# EPlat.api_display_name.shopify #=> "2024-
|
|
48
|
-
# EPlat.config.shopify_api_version #=> "
|
|
47
|
+
# EPlat.api_display_name.shopify #=> "2024-07" # presents as the platform would display in URL paths
|
|
48
|
+
# EPlat.config.shopify_api_version #=> "2024_07" # coerced interally for creating constants
|
|
49
49
|
# EPlat.config.print_graphql_requests #=> false # prints out Shopify graphql queries/mutations to the console
|
|
50
50
|
```
|
|
51
51
|
<br>
|
|
@@ -109,7 +109,7 @@ EPlat is designed to let you mostly use it's universal interface, but then easil
|
|
|
109
109
|
tag.save
|
|
110
110
|
|
|
111
111
|
# ...when session is a Shopify store
|
|
112
|
-
# POST https://preproduct-test.myshopify.com/admin/api/2024-
|
|
112
|
+
# POST https://preproduct-test.myshopify.com/admin/api/2024-07/script_tags.json
|
|
113
113
|
# body: '{"script_tag":{"display_scope":"online_store","event":"onload","src":"https://preproduct.io/mini-script.js"}}'
|
|
114
114
|
#
|
|
115
115
|
# ...when session is a BigCommerce store
|
|
@@ -856,8 +856,8 @@ EPlat::Product.find(99, from: "/product/1/specific_url.json") #GET /product/1/sp
|
|
|
856
856
|
EPlat::Product.count # 2
|
|
857
857
|
|
|
858
858
|
# Nested resources - pass in the parent resource's ID to the params hash
|
|
859
|
-
EPlat::Product::Variant.find(variant_id, params: {product: product.id}) # /admin/api/2024-
|
|
860
|
-
EPlat::Product::Variant.collection_path(product: 5) # /admin/api/2024-
|
|
859
|
+
EPlat::Product::Variant.find(variant_id, params: {product: product.id}) # /admin/api/2024-07/products/{{ product.id }}/variants/{{ variant_id }}.json
|
|
860
|
+
EPlat::Product::Variant.collection_path(product: 5) # /admin/api/2024-07/products/5/variants.json
|
|
861
861
|
|
|
862
862
|
|
|
863
863
|
|
data/lib/e_plat/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: e_plat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- oliwoodsuk
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-05-
|
|
11
|
+
date: 2024-05-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '2
|
|
19
|
+
version: '2'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: '2'
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - "~>"
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: '2
|
|
29
|
+
version: '2'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: '2'
|
|
@@ -36,7 +36,7 @@ dependencies:
|
|
|
36
36
|
requirements:
|
|
37
37
|
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: 7.0
|
|
39
|
+
version: '7.0'
|
|
40
40
|
- - ">="
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
42
|
version: '7.0'
|
|
@@ -46,7 +46,7 @@ dependencies:
|
|
|
46
46
|
requirements:
|
|
47
47
|
- - "~>"
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
|
-
version: 7.0
|
|
49
|
+
version: '7.0'
|
|
50
50
|
- - ">="
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
52
|
version: '7.0'
|
|
@@ -156,7 +156,7 @@ dependencies:
|
|
|
156
156
|
requirements:
|
|
157
157
|
- - "~>"
|
|
158
158
|
- !ruby/object:Gem::Version
|
|
159
|
-
version: 1.7
|
|
159
|
+
version: '1.7'
|
|
160
160
|
- - ">="
|
|
161
161
|
- !ruby/object:Gem::Version
|
|
162
162
|
version: '1.0'
|
|
@@ -166,7 +166,7 @@ dependencies:
|
|
|
166
166
|
requirements:
|
|
167
167
|
- - "~>"
|
|
168
168
|
- !ruby/object:Gem::Version
|
|
169
|
-
version: 1.7
|
|
169
|
+
version: '1.7'
|
|
170
170
|
- - ">="
|
|
171
171
|
- !ruby/object:Gem::Version
|
|
172
172
|
version: '1.0'
|
|
@@ -176,7 +176,7 @@ dependencies:
|
|
|
176
176
|
requirements:
|
|
177
177
|
- - "~>"
|
|
178
178
|
- !ruby/object:Gem::Version
|
|
179
|
-
version: '3
|
|
179
|
+
version: '3'
|
|
180
180
|
- - ">="
|
|
181
181
|
- !ruby/object:Gem::Version
|
|
182
182
|
version: '3'
|
|
@@ -186,7 +186,7 @@ dependencies:
|
|
|
186
186
|
requirements:
|
|
187
187
|
- - "~>"
|
|
188
188
|
- !ruby/object:Gem::Version
|
|
189
|
-
version: '3
|
|
189
|
+
version: '3'
|
|
190
190
|
- - ">="
|
|
191
191
|
- !ruby/object:Gem::Version
|
|
192
192
|
version: '3'
|
|
@@ -196,7 +196,7 @@ dependencies:
|
|
|
196
196
|
requirements:
|
|
197
197
|
- - "~>"
|
|
198
198
|
- !ruby/object:Gem::Version
|
|
199
|
-
version: '6
|
|
199
|
+
version: '6'
|
|
200
200
|
- - ">="
|
|
201
201
|
- !ruby/object:Gem::Version
|
|
202
202
|
version: 6.0.0
|
|
@@ -206,7 +206,7 @@ dependencies:
|
|
|
206
206
|
requirements:
|
|
207
207
|
- - "~>"
|
|
208
208
|
- !ruby/object:Gem::Version
|
|
209
|
-
version: '6
|
|
209
|
+
version: '6'
|
|
210
210
|
- - ">="
|
|
211
211
|
- !ruby/object:Gem::Version
|
|
212
212
|
version: 6.0.0
|
|
@@ -216,7 +216,7 @@ dependencies:
|
|
|
216
216
|
requirements:
|
|
217
217
|
- - "~>"
|
|
218
218
|
- !ruby/object:Gem::Version
|
|
219
|
-
version: '2
|
|
219
|
+
version: '2'
|
|
220
220
|
- - ">="
|
|
221
221
|
- !ruby/object:Gem::Version
|
|
222
222
|
version: '2'
|
|
@@ -226,7 +226,7 @@ dependencies:
|
|
|
226
226
|
requirements:
|
|
227
227
|
- - "~>"
|
|
228
228
|
- !ruby/object:Gem::Version
|
|
229
|
-
version: '2
|
|
229
|
+
version: '2'
|
|
230
230
|
- - ">="
|
|
231
231
|
- !ruby/object:Gem::Version
|
|
232
232
|
version: '2'
|
|
@@ -236,7 +236,7 @@ dependencies:
|
|
|
236
236
|
requirements:
|
|
237
237
|
- - "~>"
|
|
238
238
|
- !ruby/object:Gem::Version
|
|
239
|
-
version: 0.16
|
|
239
|
+
version: '0.16'
|
|
240
240
|
- - ">="
|
|
241
241
|
- !ruby/object:Gem::Version
|
|
242
242
|
version: 0.1.0
|
|
@@ -246,7 +246,7 @@ dependencies:
|
|
|
246
246
|
requirements:
|
|
247
247
|
- - "~>"
|
|
248
248
|
- !ruby/object:Gem::Version
|
|
249
|
-
version: 0.16
|
|
249
|
+
version: '0.16'
|
|
250
250
|
- - ">="
|
|
251
251
|
- !ruby/object:Gem::Version
|
|
252
252
|
version: 0.1.0
|