ultracart_api 3.6.16 → 3.6.17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eba565d2c9af8dd291f50d68cf7bf098c76ea3a392643876b053fbe97010d4d6
4
- data.tar.gz: f32bc637cc0212d9f7dee95f1d22e3e97fb981de3c9f54b238f4f726fc8ef0f8
3
+ metadata.gz: a50eb9cbdfcd73fce3e9d38d6b5a6d2d720884141b05933c019c344b4c458952
4
+ data.tar.gz: 59f4e274e6512d8d2eccc05e731864d4c33caa7a5f33185bbebb18f98c5d8f43
5
5
  SHA512:
6
- metadata.gz: 5bc29ae5c39e0796eed70aeab7050a4d4de0c76786ac6671329d174dd2f5559d6e65dc86f84d4c911226854eacc1b90b4e6ff541653f47fabed9b0b9462e252d
7
- data.tar.gz: 9c3e108fe02febdc1337947fe27013c4dc1c3ca7d357757979497e93c0081f4756ece9ad18586269edbf2da8b0f6bf707b71a78089196e15c7f53ad07f15c692
6
+ metadata.gz: aa6a14a68fd9102c8dd8dc75e9644466e0664dffffcd873c5a1ff164d77548b654d7c7cbd1155f9b90aa126c68c14a2f72c5132cd5f780f6355bdf108f91073a
7
+ data.tar.gz: 27a60bce35f24dbb988246b2ac34746386241792e3b2ca01d27f6bb1701ff23ef0fc78e58f7c9c0f06e2c49dc3540e52c40a1c527eeba4cf22aaa5379cd27055
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.6.16
10
+ - Package version: 3.6.17
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.6.16.gem
27
+ gem install ./ultracart_api-3.6.17.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.6.16.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.6.17.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.6.16'
35
+ gem 'ultracart_api', '~> 3.6.17'
36
36
 
37
37
  ### Install from Git
38
38
 
data/docs/ItemContent.md CHANGED
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
  **attributes** | [**Array<ItemContentAttribute>**](ItemContentAttribute.md) | StoreFront attributes | [optional]
8
8
  **custom_thank_you_url** | **String** | Custom Thank You URL | [optional]
9
9
  **exclude_from_search** | **BOOLEAN** | Exclude from search | [optional]
10
+ **exclude_from_sitemap** | **BOOLEAN** | Exclude from the sitemap for the StoreFront | [optional]
10
11
  **exclude_from_top_sellers** | **BOOLEAN** | Exclude from the top sellers list in the StoreFront | [optional]
11
12
  **extended_description** | **String** | Extended description (max 10000 characters) | [optional]
12
13
  **extended_description_translated_text_instance_oid** | **Integer** | Extneded description text translation instance identifier | [optional]
@@ -26,6 +26,9 @@ module UltracartClient
26
26
  # Exclude from search
27
27
  attr_accessor :exclude_from_search
28
28
 
29
+ # Exclude from the sitemap for the StoreFront
30
+ attr_accessor :exclude_from_sitemap
31
+
29
32
  # Exclude from the top sellers list in the StoreFront
30
33
  attr_accessor :exclude_from_top_sellers
31
34
 
@@ -57,6 +60,7 @@ module UltracartClient
57
60
  :'attributes' => :'attributes',
58
61
  :'custom_thank_you_url' => :'custom_thank_you_url',
59
62
  :'exclude_from_search' => :'exclude_from_search',
63
+ :'exclude_from_sitemap' => :'exclude_from_sitemap',
60
64
  :'exclude_from_top_sellers' => :'exclude_from_top_sellers',
61
65
  :'extended_description' => :'extended_description',
62
66
  :'extended_description_translated_text_instance_oid' => :'extended_description_translated_text_instance_oid',
@@ -75,6 +79,7 @@ module UltracartClient
75
79
  :'attributes' => :'Array<ItemContentAttribute>',
76
80
  :'custom_thank_you_url' => :'String',
77
81
  :'exclude_from_search' => :'BOOLEAN',
82
+ :'exclude_from_sitemap' => :'BOOLEAN',
78
83
  :'exclude_from_top_sellers' => :'BOOLEAN',
79
84
  :'extended_description' => :'String',
80
85
  :'extended_description_translated_text_instance_oid' => :'Integer',
@@ -114,6 +119,10 @@ module UltracartClient
114
119
  self.exclude_from_search = attributes[:'exclude_from_search']
115
120
  end
116
121
 
122
+ if attributes.has_key?(:'exclude_from_sitemap')
123
+ self.exclude_from_sitemap = attributes[:'exclude_from_sitemap']
124
+ end
125
+
117
126
  if attributes.has_key?(:'exclude_from_top_sellers')
118
127
  self.exclude_from_top_sellers = attributes[:'exclude_from_top_sellers']
119
128
  end
@@ -186,6 +195,7 @@ module UltracartClient
186
195
  attributes == o.attributes &&
187
196
  custom_thank_you_url == o.custom_thank_you_url &&
188
197
  exclude_from_search == o.exclude_from_search &&
198
+ exclude_from_sitemap == o.exclude_from_sitemap &&
189
199
  exclude_from_top_sellers == o.exclude_from_top_sellers &&
190
200
  extended_description == o.extended_description &&
191
201
  extended_description_translated_text_instance_oid == o.extended_description_translated_text_instance_oid &&
@@ -205,7 +215,7 @@ module UltracartClient
205
215
  # Calculates hash code according to all attributes.
206
216
  # @return [Fixnum] Hash code
207
217
  def hash
208
- [assignments, attributes, custom_thank_you_url, exclude_from_search, exclude_from_top_sellers, extended_description, extended_description_translated_text_instance_oid, multimedia, new_item, new_item_end, new_item_start, view_url].hash
218
+ [assignments, attributes, custom_thank_you_url, exclude_from_search, exclude_from_sitemap, exclude_from_top_sellers, extended_description, extended_description_translated_text_instance_oid, multimedia, new_item, new_item_end, new_item_start, view_url].hash
209
219
  end
210
220
 
211
221
  # Builds the object from hash
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.6.16'
14
+ VERSION = '3.6.17'
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.6.16
4
+ version: 3.6.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart