ultracart_api 4.0.114.rc → 4.0.115.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: 2cbe969b1879e1447f4c5cc480455804560096da75aae25cef839717469265a9
4
- data.tar.gz: 295b6db45dc49ccc9ad9cbb17d9bf916e6aba08e28b6f3288da670c2965aac4d
3
+ metadata.gz: d222cbdae0a4ea79d240f39620be43af619e1d18f22f3d67106d50c1f3234ebe
4
+ data.tar.gz: a317a87f132d99400196a4b55f9491b69bed11a7061d110c6c03621b570ec3e8
5
5
  SHA512:
6
- metadata.gz: a0cc1fbf0b604a4d1a713197578c862ba515a9d8c962afd65be2baa015dc9a9f9e4be594a3b380c360094853967997ab9eb44e2c0cd0e76ec5d78ec869bf2c02
7
- data.tar.gz: bf709a9c7d9852c039c9aac1f06bcfdf97aa56b80db729314f52407f7b9c03d29f62bdf20a30a12ab9246028a2a5bb05fe9771b5f79502a4792d521610f31502
6
+ metadata.gz: f7d1b55bcf90203f0618e57dc30fa8427548b6c63b3f877c7ff34ecdcae74ee032263b34a6cf933694a76ba4cbdcb39b993cbab419e47f1fd8ac9ed5f15b3f9c
7
+ data.tar.gz: 6573dd3e477530a83ed04185432536075d29dcf2464cd6185145fc5ff4d52652341142278d948ec22595821d27e1bc91f68b5708e68d2e0dd06170f74eb6f116
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.114.rc
10
+ - Package version: 4.0.115.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.114.rc.gem
27
+ gem install ./ultracart_api-4.0.115.rc.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.114.rc.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./ultracart_api-4.0.115.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.114.rc'
36
+ gem 'ultracart_api', '~> 4.0.115.rc'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -1290,6 +1290,7 @@ Not every change is committed to every SDK.
1290
1290
 
1291
1291
  | Version | Date | Comments |
1292
1292
  | --: | :-: | --- |
1293
+ | 4.0.115-RC | 01/17/2023 | changed convo webchat constant |
1293
1294
  | 4.0.114-RC | 01/17/2023 | support for checkout item properties |
1294
1295
  | 4.0.113-RC | 01/14/2023 | add external_id to the point of sale location object |
1295
1296
  | 4.0.112-RC | 01/13/2023 | channel - ops to manage ship to prefs |
@@ -257,7 +257,7 @@ module UltracartClient
257
257
  # Check to see if the all the properties in the model are valid
258
258
  # @return true if the model is valid
259
259
  def valid?
260
- event_type_validator = EnumAttributeValidator.new('String', ["queue position", "webchat start conversation", "conversation closed", "new conversation", "new message", "updated message", "queue status update", "rrweb", "participant update", "participant join", "participant leave", "read message", "typing", "add coupon", "add item", "webchat context"])
260
+ event_type_validator = EnumAttributeValidator.new('String', ["queue position", "webchat start conversation", "conversation closed", "new conversation", "new message", "updated message", "queue status update", "rrweb", "participant update", "participant join", "participant left", "read message", "typing", "add coupon", "add item", "webchat context"])
261
261
  return false unless event_type_validator.valid?(@event_type)
262
262
  type_validator = EnumAttributeValidator.new('String', ["message", "event", "ping", "check queue position"])
263
263
  return false unless type_validator.valid?(@type)
@@ -267,7 +267,7 @@ module UltracartClient
267
267
  # Custom attribute writer method checking allowed values (enum).
268
268
  # @param [Object] event_type Object to be assigned
269
269
  def event_type=(event_type)
270
- validator = EnumAttributeValidator.new('String', ["queue position", "webchat start conversation", "conversation closed", "new conversation", "new message", "updated message", "queue status update", "rrweb", "participant update", "participant join", "participant leave", "read message", "typing", "add coupon", "add item", "webchat context"])
270
+ validator = EnumAttributeValidator.new('String', ["queue position", "webchat start conversation", "conversation closed", "new conversation", "new message", "updated message", "queue status update", "rrweb", "participant update", "participant join", "participant left", "read message", "typing", "add coupon", "add item", "webchat context"])
271
271
  unless validator.valid?(event_type)
272
272
  fail ArgumentError, "invalid value for \"event_type\", must be one of #{validator.allowable_values}."
273
273
  end
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.0.114.rc'
14
+ VERSION = '4.0.115.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.114.rc
4
+ version: 4.0.115.rc
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart