ultracart_api 4.0.106.rc → 4.0.107.rc

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c7e1e8dc6f14cd6ea284ce13fb79a28c2bcdeae19f9f39faf937b3d9a722b6b
4
- data.tar.gz: 6fa2ab4064947a210a24804b300153de8ef198abf3e25ce44bea2613aa5fcc91
3
+ metadata.gz: 3a68ec49c6636f167f57066ab7b239ef76d7d8d4ec4ca5b765ac4647050e6f25
4
+ data.tar.gz: ba3766441d698e98e7d293aa4e5c702985da41c38b3b8004b3f94896f66d6dab
5
5
  SHA512:
6
- metadata.gz: ecfea51c6e26ea7ee78506de223a3af0e94112af67a67141a902b6c74b17f7ca26572690d7ec9bb57d0cc4fa722bcbe656a0b036f468baaffe4bcb94aecf875f
7
- data.tar.gz: df0ace2bc2e025453836a3afbe99ff62d573d1eda7890a55ce0f8c4551b2cc6b6cf39e20726accd3c44c75527902dd2f6dd08a95d42f5bb082dd92e0d459b5c2
6
+ metadata.gz: 456f705b45d7c6209830454bf0ac857c7f0d1fe630beb73923951289f3d164b39b23d331ec083f15c74650b4c8eb2b3652d5a0e56c3ffe93747cad0949ae2dd2
7
+ data.tar.gz: ecc0de81044e3dbae51386e0db663305bbb657dd723077afc9e7d579f97e02a699c4fa005db57b94f26682c05f42667dd896bc6ffcee2c066b4b80a1c7784c4f
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.106.rc
10
+ - Package version: 4.0.107.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.106.rc.gem
27
+ gem install ./ultracart_api-4.0.107.rc.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.106.rc.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./ultracart_api-4.0.107.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.106.rc'
36
+ gem 'ultracart_api', '~> 4.0.107.rc'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -1279,6 +1279,7 @@ Not every change is committed to every SDK.
1279
1279
 
1280
1280
  | Version | Date | Comments |
1281
1281
  | --: | :-: | --- |
1282
+ | 4.0.107-RC | 01/06/2023 | conversation search response object bug fix |
1282
1283
  | 4.0.106-RC | 01/05/2023 | communications - added maximum_enrolled flag on flow object |
1283
1284
  | 4.0.105-RC | 01/03/2023 | conversation events for party leave and join |
1284
1285
  | 4.0.104-RC | 01/03/2023 | order point of sale details |
@@ -6,6 +6,7 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **range_begin** | **Integer** | | [optional] |
8
8
  | **range_end** | **Integer** | | [optional] |
9
+ | **records** | [**Array<Conversation>**](Conversation.md) | | [optional] |
9
10
  | **total** | **Integer** | | [optional] |
10
11
 
11
12
  ## Example
@@ -16,6 +17,7 @@ require 'ultracart_api'
16
17
  instance = UltracartClient::ConversationSearchResponse.new(
17
18
  range_begin: null,
18
19
  range_end: null,
20
+ records: null,
19
21
  total: null
20
22
  )
21
23
  ```
@@ -19,6 +19,8 @@ module UltracartClient
19
19
 
20
20
  attr_accessor :range_end
21
21
 
22
+ attr_accessor :records
23
+
22
24
  attr_accessor :total
23
25
 
24
26
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -26,6 +28,7 @@ module UltracartClient
26
28
  {
27
29
  :'range_begin' => :'range_begin',
28
30
  :'range_end' => :'range_end',
31
+ :'records' => :'records',
29
32
  :'total' => :'total'
30
33
  }
31
34
  end
@@ -40,6 +43,7 @@ module UltracartClient
40
43
  {
41
44
  :'range_begin' => :'Integer',
42
45
  :'range_end' => :'Integer',
46
+ :'records' => :'Array<Conversation>',
43
47
  :'total' => :'Integer'
44
48
  }
45
49
  end
@@ -73,6 +77,12 @@ module UltracartClient
73
77
  self.range_end = attributes[:'range_end']
74
78
  end
75
79
 
80
+ if attributes.key?(:'records')
81
+ if (value = attributes[:'records']).is_a?(Array)
82
+ self.records = value
83
+ end
84
+ end
85
+
76
86
  if attributes.key?(:'total')
77
87
  self.total = attributes[:'total']
78
88
  end
@@ -98,6 +108,7 @@ module UltracartClient
98
108
  self.class == o.class &&
99
109
  range_begin == o.range_begin &&
100
110
  range_end == o.range_end &&
111
+ records == o.records &&
101
112
  total == o.total
102
113
  end
103
114
 
@@ -110,7 +121,7 @@ module UltracartClient
110
121
  # Calculates hash code according to all attributes.
111
122
  # @return [Integer] Hash code
112
123
  def hash
113
- [range_begin, range_end, total].hash
124
+ [range_begin, range_end, records, total].hash
114
125
  end
115
126
 
116
127
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.0.106.rc'
14
+ VERSION = '4.0.107.rc'
15
15
  end
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: 4.0.106.rc
4
+ version: 4.0.107.rc
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-05 00:00:00.000000000 Z
11
+ date: 2023-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus