ultracart_api 3.10.114 → 3.10.116

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: d20d18904ac5b1f783a8dc9790caaa79e1fed34c0e8ee79025bdc51bbd60fc96
4
- data.tar.gz: 3acb829d50a8dcbc644a5cbfaf4a48e193b34e048b26f745d8a21356af1fdd79
3
+ metadata.gz: e5ebf4f4fd93d5468dbb299785fb634c32923a05327d30d25c34b89bda2804a9
4
+ data.tar.gz: 358578a0230e7fb2a52209a6b4dc84a533d5ffa326fbf52e4de41d387cd6f88a
5
5
  SHA512:
6
- metadata.gz: 86a4675fc5def14de2fa799c8891fcff2c6e349c70a71dc90b6048fda96885d3b32583e4a157c795b2bf5b2599b00c4b8f19f31a6729ec93b9cdfdafb1446b4a
7
- data.tar.gz: fe8e97947cfd99c668632876a1635ceaca54c19bb33b4525235b0e130dba0513d077905b9155996f4875c47466360a8d3dbfb3ccbf6616e30ee9711c4a87e799
6
+ metadata.gz: 96d601a5618719b3de8d9e17dc27c53f8d53e00af414533374b9bfbc0dc4b6caccd6bfd77c1f82e2a926136b425e11beaeee995c5b87d931711ac58ab0d9c6dc
7
+ data.tar.gz: 62dfa3145b1abc79ca82053f0f8b53ef996ab25907584a8639e0fe9cd5b28937a9a288434ff3b0cd72e45d0e2d8f999496e3b468fcdb651ec837afd41d3906fc
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.114
10
+ - Package version: 3.10.116
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.114.gem
27
+ gem install ./ultracart_api-3.10.116.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.114.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.116.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.114'
35
+ gem 'ultracart_api', '~> 3.10.116'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1300,6 +1300,8 @@ Not every change is committed to every SDK.
1300
1300
 
1301
1301
  | Version | Date | Comments |
1302
1302
  | --: | :-: | --- |
1303
+ | 3.10.116 | 02/10/2023 | convo - add storefront_host_name to search request |
1304
+ | 3.10.115 | 02/07/2023 | convo - new event for when a customer joins a queue |
1303
1305
  | 3.10.114 | 02/07/2023 | convo - new event for when a customer joins a queue |
1304
1306
  | 3.10.113 | 02/06/2023 | convo - add conversation_arn to ConversationWebsocketMessage |
1305
1307
  | 3.10.112 | 02/01/2023 | convo - agent profile get/update methods |
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  **category** | **String** | | [optional]
7
7
  **matches** | **String** | | [optional]
8
8
  **max_hits** | **Integer** | | [optional]
9
+ **storefront_host_name** | **String** | | [optional]
9
10
  **storefront_oid** | **Integer** | | [optional]
10
11
  **subcategory** | **String** | | [optional]
11
12
 
@@ -20,6 +20,8 @@ module UltracartClient
20
20
 
21
21
  attr_accessor :max_hits
22
22
 
23
+ attr_accessor :storefront_host_name
24
+
23
25
  attr_accessor :storefront_oid
24
26
 
25
27
  attr_accessor :subcategory
@@ -30,6 +32,7 @@ module UltracartClient
30
32
  :'category' => :'category',
31
33
  :'matches' => :'matches',
32
34
  :'max_hits' => :'max_hits',
35
+ :'storefront_host_name' => :'storefront_host_name',
33
36
  :'storefront_oid' => :'storefront_oid',
34
37
  :'subcategory' => :'subcategory'
35
38
  }
@@ -41,6 +44,7 @@ module UltracartClient
41
44
  :'category' => :'String',
42
45
  :'matches' => :'String',
43
46
  :'max_hits' => :'Integer',
47
+ :'storefront_host_name' => :'String',
44
48
  :'storefront_oid' => :'Integer',
45
49
  :'subcategory' => :'String'
46
50
  }
@@ -66,6 +70,10 @@ module UltracartClient
66
70
  self.max_hits = attributes[:'max_hits']
67
71
  end
68
72
 
73
+ if attributes.has_key?(:'storefront_host_name')
74
+ self.storefront_host_name = attributes[:'storefront_host_name']
75
+ end
76
+
69
77
  if attributes.has_key?(:'storefront_oid')
70
78
  self.storefront_oid = attributes[:'storefront_oid']
71
79
  end
@@ -96,6 +104,7 @@ module UltracartClient
96
104
  category == o.category &&
97
105
  matches == o.matches &&
98
106
  max_hits == o.max_hits &&
107
+ storefront_host_name == o.storefront_host_name &&
99
108
  storefront_oid == o.storefront_oid &&
100
109
  subcategory == o.subcategory
101
110
  end
@@ -109,7 +118,7 @@ module UltracartClient
109
118
  # Calculates hash code according to all attributes.
110
119
  # @return [Fixnum] Hash code
111
120
  def hash
112
- [category, matches, max_hits, storefront_oid, subcategory].hash
121
+ [category, matches, max_hits, storefront_host_name, storefront_oid, subcategory].hash
113
122
  end
114
123
 
115
124
  # 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.114'
14
+ VERSION = '3.10.116'
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.114
4
+ version: 3.10.116
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-07 00:00:00.000000000 Z
11
+ date: 2023-02-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus