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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c63eda55eb65251644801eff574740eaaa9f177e35886a7ca3e25d9cdd5a04c3
|
|
4
|
+
data.tar.gz: d1c584146c8a610924dbc0324dedc7ece5b80e1a4bd2c2430c83f96eed2a3fd4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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.
|
|
27
|
+
gem install ./ultracart_api-3.10.90.gem
|
|
28
28
|
```
|
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.10.
|
|
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.
|
|
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
|
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.
|
|
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-
|
|
11
|
+
date: 2023-01-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|