ultracart_api 4.0.83.rc → 4.0.84.rc

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: 5fdd3ce8a29d7c1f7312d1cc2274b8bbea74e9eeb1e545edc2ed692bff94dc91
4
- data.tar.gz: abe729b9070c392197dcbfe4d89b40f4f4df3ae4ba3455927e80c0ec60fc4146
3
+ metadata.gz: 57c231a3321c5d37523a15e99a323a14016a1267e0fb0e4bda7dca5c5db1d4f2
4
+ data.tar.gz: 55406f0fc39b7582e8c6ec4ad9854fdd06a8d4041b70c29612e3de89ee11739e
5
5
  SHA512:
6
- metadata.gz: '068caf120e755f19278af83dbda6965ad41f543652635b8f1c9edbb46d4945d06638678766967ebd21f0a30eaf2116369f7d1fe1a99c49f4762d37c7974256d3'
7
- data.tar.gz: b8375ded518f8054e0345a08c8526f8b93adb8af81e82d975789f5d89554ee07b0e44affe1da6b2c14761f2543c15d098bfe381c36c14555bec4688d4a0adfc7
6
+ metadata.gz: 85e543e40655a11eb924433b85b6935af87d3f1e1b063fa81566f60bd4724419d9b721cb11b9a4a42ba28da046aaf47a0c32471cd9eb3ccc39aacb8511722068
7
+ data.tar.gz: a9bf8a04d2651f48c4f5f825bc2fa7c3b90fc0b5fdbd2ef2f923ce318b9d42fa0a1c775536479980de710a3a02f7189d7310638dcb4aa3e348176b93ee4062bc
data/README.md CHANGED
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: 2.0.0
10
- - Package version: 4.0.83.rc
10
+ - Package version: 4.0.84.rc
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
13
13
 
@@ -24,16 +24,16 @@ gem build ultracart_api.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./ultracart_api-4.0.83.rc.gem
27
+ gem install ./ultracart_api-4.0.84.rc.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.83.rc.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./ultracart_api-4.0.84.rc.gem` to install the development dependencies)
31
31
 
32
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
33
 
34
34
  Finally add this to the Gemfile:
35
35
 
36
- gem 'ultracart_api', '~> 4.0.83.rc'
36
+ gem 'ultracart_api', '~> 4.0.84.rc'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -1226,6 +1226,7 @@ Not every change is committed to every SDK.
1226
1226
 
1227
1227
  | Version | Date | Comments |
1228
1228
  | --: | :-: | --- |
1229
+ | 4.0.84-RC | 11/15/2022 | conversation methods bug fix |
1229
1230
  | 4.0.83-RC | 11/15/2022 | conversations - enw events for add coupon and items |
1230
1231
  | 4.0.82-RC | 11/15/2022 | order api new method is order refundable |
1231
1232
  | 4.0.81-RC | 11/15/2022 | increase order property length to 10k char |
@@ -98,8 +98,8 @@ module UltracartClient
98
98
  invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to 100.')
99
99
  end
100
100
 
101
- if !@value.nil? && @value.to_s.length > 10000
102
- invalid_properties.push('invalid value for "value", the character length must be smaller than or equal to 10000.')
101
+ if !@value.nil? && @value.to_s.length > 5000
102
+ invalid_properties.push('invalid value for "value", the character length must be smaller than or equal to 5000.')
103
103
  end
104
104
 
105
105
  invalid_properties
@@ -109,7 +109,7 @@ module UltracartClient
109
109
  # @return true if the model is valid
110
110
  def valid?
111
111
  return false if !@name.nil? && @name.to_s.length > 100
112
- return false if !@value.nil? && @value.to_s.length > 10000
112
+ return false if !@value.nil? && @value.to_s.length > 5000
113
113
  true
114
114
  end
115
115
 
@@ -126,8 +126,8 @@ module UltracartClient
126
126
  # Custom attribute writer method with validation
127
127
  # @param [Object] value Value to be assigned
128
128
  def value=(value)
129
- if !value.nil? && value.to_s.length > 10000
130
- fail ArgumentError, 'invalid value for "value", the character length must be smaller than or equal to 10000.'
129
+ if !value.nil? && value.to_s.length > 5000
130
+ fail ArgumentError, 'invalid value for "value", the character length must be smaller than or equal to 5000.'
131
131
  end
132
132
 
133
133
  @value = value
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.0.83.rc'
14
+ VERSION = '4.0.84.rc'
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: 4.0.83.rc
4
+ version: 4.0.84.rc
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart