ultracart_api 3.10.115 → 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: ce990879834b9020ada7c58dc07162722355fd4fc328cd158bec9cd3c2895fcf
4
- data.tar.gz: fb0ca75f3087f39b4e22d9cc4d24ee028c90a3c1f5b282734a9b34150e8ba47a
3
+ metadata.gz: e5ebf4f4fd93d5468dbb299785fb634c32923a05327d30d25c34b89bda2804a9
4
+ data.tar.gz: 358578a0230e7fb2a52209a6b4dc84a533d5ffa326fbf52e4de41d387cd6f88a
5
5
  SHA512:
6
- metadata.gz: 6653a08ff8dbefe4507d0bdd87261ebd8425a077da23fecaa07835fd1dc1a022a6b4f7865e023ed31dcd33693782fd4b77a6cb6d0b5508a2ad24f68220e4d2bb
7
- data.tar.gz: 7e6bbfedda7318a3929b1021fd255bf2cacadaafcb3c114d9393d188a5a315c371a556b315eeba61075596ae548a1a8f1f7369fa0b8ff2da47281e42b5d09fcf
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.115
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.115.gem
27
+ gem install ./ultracart_api-3.10.116.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.115.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.115'
35
+ gem 'ultracart_api', '~> 3.10.116'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1300,6 +1300,7 @@ 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 |
1303
1304
  | 3.10.115 | 02/07/2023 | convo - new event for when a customer joins a queue |
1304
1305
  | 3.10.114 | 02/07/2023 | convo - new event for when a customer joins a queue |
1305
1306
  | 3.10.113 | 02/06/2023 | convo - add conversation_arn to ConversationWebsocketMessage |
@@ -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.115'
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.115
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