ultracart_api 3.10.54 → 3.10.55
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 +5 -4
- data/docs/FileManagerFile.md +3 -0
- data/lib/ultracart_api/models/file_manager_file.rb +31 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cae4a2994b05748c4e7d2421a4347c6f0fc9b57a39baf3eb8145a3a03c5939af
|
|
4
|
+
data.tar.gz: 9e00a73d3fcc791124ab0ae2a401c6633fbd05e626e8475cf530cb229d838aae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6cbf405c0449b4ef97bf6867ed9f5323d8cf24e8becd4d4404aa025f21bacd97bed4e7bf27ea7e7025943a98d487c412be72430813a058647c59ef51ee97698c
|
|
7
|
+
data.tar.gz: 2ca4349ee9e4679f7dff02d8dece54deb5215bcaa02b1150fbe2bd09da2d44223b06d3b91a7f991d9461e0306aaace871dc449c2020d23247732256a05b05773
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
|
|
|
7
7
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
|
8
8
|
|
|
9
9
|
- API version: 2.0.0
|
|
10
|
-
- Package version: 3.10.
|
|
10
|
+
- Package version: 3.10.55
|
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
|
12
12
|
For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
|
|
13
13
|
|
|
@@ -24,15 +24,15 @@ gem build ultracart_api.gemspec
|
|
|
24
24
|
Then either install the gem locally:
|
|
25
25
|
|
|
26
26
|
```shell
|
|
27
|
-
gem install ./ultracart_api-3.10.
|
|
27
|
+
gem install ./ultracart_api-3.10.55.gem
|
|
28
28
|
```
|
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.10.
|
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.10.55.gem` to install the development dependencies)
|
|
30
30
|
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
32
32
|
|
|
33
33
|
Finally add this to the Gemfile:
|
|
34
34
|
|
|
35
|
-
gem 'ultracart_api', '~> 3.10.
|
|
35
|
+
gem 'ultracart_api', '~> 3.10.55'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -1209,6 +1209,7 @@ Not every change is committed to every SDK.
|
|
|
1209
1209
|
|
|
1210
1210
|
| Version | Date | Comments |
|
|
1211
1211
|
| --: | :-: | --- |
|
|
1212
|
+
| 3.10.55 | 10/05/2022 | storefront rest file cdn icon urls |
|
|
1212
1213
|
| 3.10.54 | 10/04/2022 | bug fix for new storefront file mgr |
|
|
1213
1214
|
| 3.10.53 | 09/29/2022 | page_paths search category for search2 method |
|
|
1214
1215
|
| 3.10.52 | 09/29/2022 | storefront file mgr calls tweaks |
|
data/docs/FileManagerFile.md
CHANGED
|
@@ -20,6 +20,9 @@ Name | Type | Description | Notes
|
|
|
20
20
|
**storefront_fs_directory_oid** | **Integer** | | [optional]
|
|
21
21
|
**storefront_fs_file_oid** | **Integer** | | [optional]
|
|
22
22
|
**storefront_oid** | **Integer** | | [optional]
|
|
23
|
+
**thumbnail_16_url** | **String** | CDN thumbnail 16x16 size | [optional]
|
|
24
|
+
**thumbnail_32_url** | **String** | CDN thumbnail 32x32 size | [optional]
|
|
25
|
+
**thumbnail_64_url** | **String** | CDN thumbnail 64x64 size | [optional]
|
|
23
26
|
**type** | **String** | | [optional]
|
|
24
27
|
**valid_velocity** | **String** | | [optional]
|
|
25
28
|
|
|
@@ -48,6 +48,15 @@ module UltracartClient
|
|
|
48
48
|
|
|
49
49
|
attr_accessor :storefront_oid
|
|
50
50
|
|
|
51
|
+
# CDN thumbnail 16x16 size
|
|
52
|
+
attr_accessor :thumbnail_16_url
|
|
53
|
+
|
|
54
|
+
# CDN thumbnail 32x32 size
|
|
55
|
+
attr_accessor :thumbnail_32_url
|
|
56
|
+
|
|
57
|
+
# CDN thumbnail 64x64 size
|
|
58
|
+
attr_accessor :thumbnail_64_url
|
|
59
|
+
|
|
51
60
|
attr_accessor :type
|
|
52
61
|
|
|
53
62
|
attr_accessor :valid_velocity
|
|
@@ -72,6 +81,9 @@ module UltracartClient
|
|
|
72
81
|
:'storefront_fs_directory_oid' => :'storefront_fs_directory_oid',
|
|
73
82
|
:'storefront_fs_file_oid' => :'storefront_fs_file_oid',
|
|
74
83
|
:'storefront_oid' => :'storefront_oid',
|
|
84
|
+
:'thumbnail_16_url' => :'thumbnail_16_url',
|
|
85
|
+
:'thumbnail_32_url' => :'thumbnail_32_url',
|
|
86
|
+
:'thumbnail_64_url' => :'thumbnail_64_url',
|
|
75
87
|
:'type' => :'type',
|
|
76
88
|
:'valid_velocity' => :'valid_velocity'
|
|
77
89
|
}
|
|
@@ -97,6 +109,9 @@ module UltracartClient
|
|
|
97
109
|
:'storefront_fs_directory_oid' => :'Integer',
|
|
98
110
|
:'storefront_fs_file_oid' => :'Integer',
|
|
99
111
|
:'storefront_oid' => :'Integer',
|
|
112
|
+
:'thumbnail_16_url' => :'String',
|
|
113
|
+
:'thumbnail_32_url' => :'String',
|
|
114
|
+
:'thumbnail_64_url' => :'String',
|
|
100
115
|
:'type' => :'String',
|
|
101
116
|
:'valid_velocity' => :'String'
|
|
102
117
|
}
|
|
@@ -178,6 +193,18 @@ module UltracartClient
|
|
|
178
193
|
self.storefront_oid = attributes[:'storefront_oid']
|
|
179
194
|
end
|
|
180
195
|
|
|
196
|
+
if attributes.has_key?(:'thumbnail_16_url')
|
|
197
|
+
self.thumbnail_16_url = attributes[:'thumbnail_16_url']
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
if attributes.has_key?(:'thumbnail_32_url')
|
|
201
|
+
self.thumbnail_32_url = attributes[:'thumbnail_32_url']
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
if attributes.has_key?(:'thumbnail_64_url')
|
|
205
|
+
self.thumbnail_64_url = attributes[:'thumbnail_64_url']
|
|
206
|
+
end
|
|
207
|
+
|
|
181
208
|
if attributes.has_key?(:'type')
|
|
182
209
|
self.type = attributes[:'type']
|
|
183
210
|
end
|
|
@@ -222,6 +249,9 @@ module UltracartClient
|
|
|
222
249
|
storefront_fs_directory_oid == o.storefront_fs_directory_oid &&
|
|
223
250
|
storefront_fs_file_oid == o.storefront_fs_file_oid &&
|
|
224
251
|
storefront_oid == o.storefront_oid &&
|
|
252
|
+
thumbnail_16_url == o.thumbnail_16_url &&
|
|
253
|
+
thumbnail_32_url == o.thumbnail_32_url &&
|
|
254
|
+
thumbnail_64_url == o.thumbnail_64_url &&
|
|
225
255
|
type == o.type &&
|
|
226
256
|
valid_velocity == o.valid_velocity
|
|
227
257
|
end
|
|
@@ -235,7 +265,7 @@ module UltracartClient
|
|
|
235
265
|
# Calculates hash code according to all attributes.
|
|
236
266
|
# @return [Fixnum] Hash code
|
|
237
267
|
def hash
|
|
238
|
-
[favorite, hostname, i18n_violation, icon, internal_version, last_modified, merge_conflict, name, parent_storefront_fs_directory_oid, part_of_active_theme, path, raw_size, selected, size, storefront_fs_directory_oid, storefront_fs_file_oid, storefront_oid, type, valid_velocity].hash
|
|
268
|
+
[favorite, hostname, i18n_violation, icon, internal_version, last_modified, merge_conflict, name, parent_storefront_fs_directory_oid, part_of_active_theme, path, raw_size, selected, size, storefront_fs_directory_oid, storefront_fs_file_oid, storefront_oid, thumbnail_16_url, thumbnail_32_url, thumbnail_64_url, type, valid_velocity].hash
|
|
239
269
|
end
|
|
240
270
|
|
|
241
271
|
# Builds the object from hash
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ultracart_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.10.
|
|
4
|
+
version: 3.10.55
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-10-
|
|
11
|
+
date: 2022-10-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|