ultracart_api 3.10.199 → 3.10.200

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: 846dcc45fbb936c21e7a6c0384e87e715c96a601a2807c2e51be9ffbf3213e88
4
- data.tar.gz: 503f29233d9263c25a1471b9f85c5b99c875a085a4153fed56e4e798c50af954
3
+ metadata.gz: eb89272a4e71c26e89af5749c89512a7e038b3a439e7a9a00c23946b921b9eb3
4
+ data.tar.gz: ebfeba6d4ee8890b8520eeae5fa02ed40f954534b7a921dbe990752536b15119
5
5
  SHA512:
6
- metadata.gz: ea5b9281152077dc7e94a38dfbc4425cbf770b7365798f392ce70574b03e0c461b5788bc22305015ee5176e4e6d96cfb104ea0be6c95cf7fc44512c79be2b304
7
- data.tar.gz: 2ddb9caee4b1094d9dbe627098a7e74b0cf59c8b684c9cfdbe5cce6377428aa023dc3311dab2799481efb1e8578b3611b11d335d59beb7813cdbcaa0cdd42f17
6
+ metadata.gz: 3cad471f62e7a6e5583ca375779ecd8bbd04d5d376f7fe7d97c3a4cdb34729bb2ea733e1ff58a74e0db08ed85cccc86d6f8f92dfd6822b9691388a5c7749a200
7
+ data.tar.gz: 5bfcc6971b986af1ed5a9bf8b1267224097f79514a8451f4e40e8bb64e58e0fdb011900a170aa56351641dbfeeaf43f40dfeeaafff8b98309ccc763d2afc7a42
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.199
10
+ - Package version: 3.10.200
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.199.gem
27
+ gem install ./ultracart_api-3.10.200.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.199.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.200.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.199'
35
+ gem 'ultracart_api', '~> 3.10.200'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1505,6 +1505,7 @@ Not every change is committed to every SDK.
1505
1505
 
1506
1506
  | Version | Date | Comments |
1507
1507
  | --: | :-: | --- |
1508
+ | 3.10.200 | 05/13/2024 | conversation pbx - bug fix on camelCase property names |
1508
1509
  | 3.10.199 | 05/13/2024 | conversation pbx - allow nullable day of week in time range |
1509
1510
  | 3.10.198 | 05/08/2024 | added echeck fields to channel partner order import |
1510
1511
  | 3.10.197 | 05/02/2024 | conversation - new method to load pbx audio usage |
@@ -25,10 +25,10 @@ module UltracartClient
25
25
  # Attribute mapping from ruby-style variable name to JSON key.
26
26
  def self.attribute_map
27
27
  {
28
- :'conversation_pbx_time_based_uuid' => :'conversationPbxTimeBasedUuid',
29
- :'mapping_config' => :'mappingConfig',
30
- :'merchant_id' => :'merchantId',
31
- :'time_based_name' => :'timeBasedName'
28
+ :'conversation_pbx_time_based_uuid' => :'conversation_pbx_time_based_uuid',
29
+ :'mapping_config' => :'mapping_config',
30
+ :'merchant_id' => :'merchant_id',
31
+ :'time_based_name' => :'time_based_name'
32
32
  }
33
33
  end
34
34
 
@@ -50,20 +50,20 @@ module UltracartClient
50
50
  # convert string to symbol for hash key
51
51
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
52
52
 
53
- if attributes.has_key?(:'conversationPbxTimeBasedUuid')
54
- self.conversation_pbx_time_based_uuid = attributes[:'conversationPbxTimeBasedUuid']
53
+ if attributes.has_key?(:'conversation_pbx_time_based_uuid')
54
+ self.conversation_pbx_time_based_uuid = attributes[:'conversation_pbx_time_based_uuid']
55
55
  end
56
56
 
57
- if attributes.has_key?(:'mappingConfig')
58
- self.mapping_config = attributes[:'mappingConfig']
57
+ if attributes.has_key?(:'mapping_config')
58
+ self.mapping_config = attributes[:'mapping_config']
59
59
  end
60
60
 
61
- if attributes.has_key?(:'merchantId')
62
- self.merchant_id = attributes[:'merchantId']
61
+ if attributes.has_key?(:'merchant_id')
62
+ self.merchant_id = attributes[:'merchant_id']
63
63
  end
64
64
 
65
- if attributes.has_key?(:'timeBasedName')
66
- self.time_based_name = attributes[:'timeBasedName']
65
+ if attributes.has_key?(:'time_based_name')
66
+ self.time_based_name = attributes[:'time_based_name']
67
67
  end
68
68
  end
69
69
 
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.10.199'
14
+ VERSION = '3.10.200'
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.10.199
4
+ version: 3.10.200
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart