ultracart_api 3.10.89 → 3.10.90

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: e25e0f3513f6be64fbd32a182e4abef7ecfebd68097434f416711dc627a328c8
4
- data.tar.gz: 3e5a367e73b5d0ac0be36279ac87dc29374fbe6afd68868d789cc60495668827
3
+ metadata.gz: c63eda55eb65251644801eff574740eaaa9f177e35886a7ca3e25d9cdd5a04c3
4
+ data.tar.gz: d1c584146c8a610924dbc0324dedc7ece5b80e1a4bd2c2430c83f96eed2a3fd4
5
5
  SHA512:
6
- metadata.gz: d94db01b49f9d3fc14b5c9dabf766f56335d4c4db3e34e2e12cac4a1b712fbb376297a026ab9161c156add171042f6bb8f5e95dc031a6d8639c375cfb8ae8f21
7
- data.tar.gz: b28d05ce7a1944ab4cefe8ab6f441f908b0ba0a0f916ffeff9e4c4e1759e640234c60371e35a5de2cde9fcf625c579b9a295481eea8f7bc27ab116b05ffa9d4d
6
+ metadata.gz: 336740d27e6ddc706134837163cb03cabc10085951a15272f2aa93033ad1004db8db3122f51ee4a8eb127c0636c96b04c230e75ca4f00e40371c8bf69b9a727c
7
+ data.tar.gz: 93bf001cf93d211b909edc9896176381f5fe092952e2f9072feac4d50b02709c432326cf4a767cc654451b2e6aa1902258889671836b50549301abd52d532e1c
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.89
10
+ - Package version: 3.10.90
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.89.gem
27
+ gem install ./ultracart_api-3.10.90.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.89.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.90.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.89'
35
+ gem 'ultracart_api', '~> 3.10.90'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1271,6 +1271,7 @@ Not every change is committed to every SDK.
1271
1271
 
1272
1272
  | Version | Date | Comments |
1273
1273
  | --: | :-: | --- |
1274
+ | 3.10.90 | 01/06/2023 | conversation search response object bug fix |
1274
1275
  | 3.10.89 | 01/05/2023 | communications - added maximum_enrolled flag on flow object |
1275
1276
  | 3.10.88 | 01/03/2023 | conversation events for party leave and join |
1276
1277
  | 3.10.87 | 01/03/2023 | order point of sale details |
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **range_begin** | **Integer** | | [optional]
7
7
  **range_end** | **Integer** | | [optional]
8
+ **records** | [**Array<Conversation>**](Conversation.md) | | [optional]
8
9
  **total** | **Integer** | | [optional]
9
10
 
10
11
 
@@ -18,6 +18,8 @@ module UltracartClient
18
18
 
19
19
  attr_accessor :range_end
20
20
 
21
+ attr_accessor :records
22
+
21
23
  attr_accessor :total
22
24
 
23
25
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -25,6 +27,7 @@ module UltracartClient
25
27
  {
26
28
  :'range_begin' => :'range_begin',
27
29
  :'range_end' => :'range_end',
30
+ :'records' => :'records',
28
31
  :'total' => :'total'
29
32
  }
30
33
  end
@@ -34,6 +37,7 @@ module UltracartClient
34
37
  {
35
38
  :'range_begin' => :'Integer',
36
39
  :'range_end' => :'Integer',
40
+ :'records' => :'Array<Conversation>',
37
41
  :'total' => :'Integer'
38
42
  }
39
43
  end
@@ -54,6 +58,12 @@ module UltracartClient
54
58
  self.range_end = attributes[:'range_end']
55
59
  end
56
60
 
61
+ if attributes.has_key?(:'records')
62
+ if (value = attributes[:'records']).is_a?(Array)
63
+ self.records = value
64
+ end
65
+ end
66
+
57
67
  if attributes.has_key?(:'total')
58
68
  self.total = attributes[:'total']
59
69
  end
@@ -79,6 +89,7 @@ module UltracartClient
79
89
  self.class == o.class &&
80
90
  range_begin == o.range_begin &&
81
91
  range_end == o.range_end &&
92
+ records == o.records &&
82
93
  total == o.total
83
94
  end
84
95
 
@@ -91,7 +102,7 @@ module UltracartClient
91
102
  # Calculates hash code according to all attributes.
92
103
  # @return [Fixnum] Hash code
93
104
  def hash
94
- [range_begin, range_end, total].hash
105
+ [range_begin, range_end, records, total].hash
95
106
  end
96
107
 
97
108
  # 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.10.89'
14
+ VERSION = '3.10.90'
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: 3.10.89
4
+ version: 3.10.90
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