algolia 3.15.1 → 3.15.2

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: a106e15f1c245792147c6203b4e4d7992b898e112609fd66524f30044c602d94
4
- data.tar.gz: 7218bfbd386013ae4b2abb953b127642bb887cf83ad89902bffbe3d02e6eaf02
3
+ metadata.gz: 2fe148871e84a4d80954a5d6bde5b88855ac4f9688c7771cd8cc8b8d94384fc4
4
+ data.tar.gz: fb540475eea0e86db2a17730a5da5aa1c30c3f66f3c05fa3312fbe364d143691
5
5
  SHA512:
6
- metadata.gz: 4e1bba4413b05b92980c3c70447919cd60ff997c9e7f7b9217ce2137c5dde27baf198a9d5e31f08f249ab7a3270addc94e27b87f1784453774b3245cc762d7e4
7
- data.tar.gz: 71feb928a3cc095624ab5feb5f358514585ce9bd458aedbfa25e5bbfa0a94cadc9bd8a84d67274adf67ace0e9267241c86b5f5247877346ef9daa94d100cca70
6
+ metadata.gz: ffb449547ccec5dcf97cdadf4f532256bb09cee42658582c55fc1988148271a85f6dcb4db0ea7cc15e4a519c108603cd247f11261bf0fc152434ef23b0e524e6
7
+ data.tar.gz: 8c738ccb5070a404fc39daaf032cc43f01cf084dbe747e41739ed4739d882cbbbbc8b41d0399c71df10bd796558cde1310a324f45fe072418c8dddaa7afc86d3
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## [3.15.2](https://github.com/algolia/algoliasearch-client-ruby/compare/3.15.1...3.15.2)
2
+
3
+ - [345e830176](https://github.com/algolia/api-clients-automation/commit/345e830176) fix(ruby): remove integer empty check ([#4698](https://github.com/algolia/api-clients-automation/pull/4698)) by [@lucas-aragno](https://github.com/lucas-aragno/)
4
+ - [ac400354a9](https://github.com/algolia/api-clients-automation/commit/ac400354a9) fix(specs): make the updateAt non-null in ingestion ([#4697](https://github.com/algolia/api-clients-automation/pull/4697)) by [@millotp](https://github.com/millotp/)
5
+
1
6
  ## [3.15.1](https://github.com/algolia/algoliasearch-client-ruby/compare/3.15.0...3.15.1)
2
7
 
3
8
  - [a51683025e](https://github.com/algolia/api-clients-automation/commit/a51683025e) chore: deprecate mcm methods ([#4694](https://github.com/algolia/api-clients-automation/pull/4694)) by [@kai687](https://github.com/kai687/)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- algolia (3.15.1)
4
+ algolia (3.15.2)
5
5
  base64 (>= 0.2.0, < 1)
6
6
  faraday (>= 1.0.1, < 3.0)
7
7
  faraday-net_http_persistent (>= 0.15, < 3)
@@ -38,15 +38,15 @@ module Algolia
38
38
  end
39
39
 
40
40
  def self.create_with_config(config)
41
- if config.connect_timeout.nil? || config.connect_timeout.empty?
41
+ if config.connect_timeout.nil?
42
42
  config.connect_timeout = 2000
43
43
  end
44
44
 
45
- if config.read_timeout.nil? || config.read_timeout.empty?
45
+ if config.read_timeout.nil?
46
46
  config.read_timeout = 5000
47
47
  end
48
48
 
49
- if config.write_timeout.nil? || config.write_timeout.empty?
49
+ if config.write_timeout.nil?
50
50
  config.write_timeout = 30000
51
51
  end
52
52
 
@@ -38,15 +38,15 @@ module Algolia
38
38
  end
39
39
 
40
40
  def self.create_with_config(config)
41
- if config.connect_timeout.nil? || config.connect_timeout.empty?
41
+ if config.connect_timeout.nil?
42
42
  config.connect_timeout = 2000
43
43
  end
44
44
 
45
- if config.read_timeout.nil? || config.read_timeout.empty?
45
+ if config.read_timeout.nil?
46
46
  config.read_timeout = 5000
47
47
  end
48
48
 
49
- if config.write_timeout.nil? || config.write_timeout.empty?
49
+ if config.write_timeout.nil?
50
50
  config.write_timeout = 30000
51
51
  end
52
52
 
@@ -31,15 +31,15 @@ module Algolia
31
31
  end
32
32
 
33
33
  def self.create_with_config(config)
34
- if config.connect_timeout.nil? || config.connect_timeout.empty?
34
+ if config.connect_timeout.nil?
35
35
  config.connect_timeout = 2000
36
36
  end
37
37
 
38
- if config.read_timeout.nil? || config.read_timeout.empty?
38
+ if config.read_timeout.nil?
39
39
  config.read_timeout = 5000
40
40
  end
41
41
 
42
- if config.write_timeout.nil? || config.write_timeout.empty?
42
+ if config.write_timeout.nil?
43
43
  config.write_timeout = 30000
44
44
  end
45
45
 
@@ -38,15 +38,15 @@ module Algolia
38
38
  end
39
39
 
40
40
  def self.create_with_config(config)
41
- if config.connect_timeout.nil? || config.connect_timeout.empty?
41
+ if config.connect_timeout.nil?
42
42
  config.connect_timeout = 25000
43
43
  end
44
44
 
45
- if config.read_timeout.nil? || config.read_timeout.empty?
45
+ if config.read_timeout.nil?
46
46
  config.read_timeout = 25000
47
47
  end
48
48
 
49
- if config.write_timeout.nil? || config.write_timeout.empty?
49
+ if config.write_timeout.nil?
50
50
  config.write_timeout = 25000
51
51
  end
52
52
 
@@ -38,15 +38,15 @@ module Algolia
38
38
  end
39
39
 
40
40
  def self.create_with_config(config)
41
- if config.connect_timeout.nil? || config.connect_timeout.empty?
41
+ if config.connect_timeout.nil?
42
42
  config.connect_timeout = 2000
43
43
  end
44
44
 
45
- if config.read_timeout.nil? || config.read_timeout.empty?
45
+ if config.read_timeout.nil?
46
46
  config.read_timeout = 5000
47
47
  end
48
48
 
49
- if config.write_timeout.nil? || config.write_timeout.empty?
49
+ if config.write_timeout.nil?
50
50
  config.write_timeout = 30000
51
51
  end
52
52
 
@@ -23,15 +23,15 @@ module Algolia
23
23
  end
24
24
 
25
25
  def self.create_with_config(config)
26
- if config.connect_timeout.nil? || config.connect_timeout.empty?
26
+ if config.connect_timeout.nil?
27
27
  config.connect_timeout = 2000
28
28
  end
29
29
 
30
- if config.read_timeout.nil? || config.read_timeout.empty?
30
+ if config.read_timeout.nil?
31
31
  config.read_timeout = 5000
32
32
  end
33
33
 
34
- if config.write_timeout.nil? || config.write_timeout.empty?
34
+ if config.write_timeout.nil?
35
35
  config.write_timeout = 30000
36
36
  end
37
37
 
@@ -38,15 +38,15 @@ module Algolia
38
38
  end
39
39
 
40
40
  def self.create_with_config(config)
41
- if config.connect_timeout.nil? || config.connect_timeout.empty?
41
+ if config.connect_timeout.nil?
42
42
  config.connect_timeout = 2000
43
43
  end
44
44
 
45
- if config.read_timeout.nil? || config.read_timeout.empty?
45
+ if config.read_timeout.nil?
46
46
  config.read_timeout = 5000
47
47
  end
48
48
 
49
- if config.write_timeout.nil? || config.write_timeout.empty?
49
+ if config.write_timeout.nil?
50
50
  config.write_timeout = 30000
51
51
  end
52
52
 
@@ -38,15 +38,15 @@ module Algolia
38
38
  end
39
39
 
40
40
  def self.create_with_config(config)
41
- if config.connect_timeout.nil? || config.connect_timeout.empty?
41
+ if config.connect_timeout.nil?
42
42
  config.connect_timeout = 2000
43
43
  end
44
44
 
45
- if config.read_timeout.nil? || config.read_timeout.empty?
45
+ if config.read_timeout.nil?
46
46
  config.read_timeout = 5000
47
47
  end
48
48
 
49
- if config.write_timeout.nil? || config.write_timeout.empty?
49
+ if config.write_timeout.nil?
50
50
  config.write_timeout = 30000
51
51
  end
52
52
 
@@ -31,15 +31,15 @@ module Algolia
31
31
  end
32
32
 
33
33
  def self.create_with_config(config)
34
- if config.connect_timeout.nil? || config.connect_timeout.empty?
34
+ if config.connect_timeout.nil?
35
35
  config.connect_timeout = 2000
36
36
  end
37
37
 
38
- if config.read_timeout.nil? || config.read_timeout.empty?
38
+ if config.read_timeout.nil?
39
39
  config.read_timeout = 5000
40
40
  end
41
41
 
42
- if config.write_timeout.nil? || config.write_timeout.empty?
42
+ if config.write_timeout.nil?
43
43
  config.write_timeout = 30000
44
44
  end
45
45
 
@@ -34,15 +34,15 @@ module Algolia
34
34
  end
35
35
 
36
36
  def self.create_with_config(config)
37
- if config.connect_timeout.nil? || config.connect_timeout.empty?
37
+ if config.connect_timeout.nil?
38
38
  config.connect_timeout = 2000
39
39
  end
40
40
 
41
- if config.read_timeout.nil? || config.read_timeout.empty?
41
+ if config.read_timeout.nil?
42
42
  config.read_timeout = 5000
43
43
  end
44
44
 
45
- if config.write_timeout.nil? || config.write_timeout.empty?
45
+ if config.write_timeout.nil?
46
46
  config.write_timeout = 30000
47
47
  end
48
48
 
@@ -131,6 +131,8 @@ module Algolia
131
131
 
132
132
  if attributes.key?(:updated_at)
133
133
  self.updated_at = attributes[:updated_at]
134
+ else
135
+ self.updated_at = nil
134
136
  end
135
137
  end
136
138
 
@@ -131,6 +131,8 @@ module Algolia
131
131
 
132
132
  if attributes.key?(:updated_at)
133
133
  self.updated_at = attributes[:updated_at]
134
+ else
135
+ self.updated_at = nil
134
136
  end
135
137
 
136
138
  if attributes.key?(:authentication_id)
@@ -124,6 +124,8 @@ module Algolia
124
124
 
125
125
  if attributes.key?(:updated_at)
126
126
  self.updated_at = attributes[:updated_at]
127
+ else
128
+ self.updated_at = nil
127
129
  end
128
130
  end
129
131
 
@@ -205,6 +205,8 @@ module Algolia
205
205
 
206
206
  if attributes.key?(:updated_at)
207
207
  self.updated_at = attributes[:updated_at]
208
+ else
209
+ self.updated_at = nil
208
210
  end
209
211
  end
210
212
 
@@ -170,6 +170,8 @@ module Algolia
170
170
 
171
171
  if attributes.key?(:updated_at)
172
172
  self.updated_at = attributes[:updated_at]
173
+ else
174
+ self.updated_at = nil
173
175
  end
174
176
  end
175
177
 
@@ -132,6 +132,8 @@ module Algolia
132
132
 
133
133
  if attributes.key?(:updated_at)
134
134
  self.updated_at = attributes[:updated_at]
135
+ else
136
+ self.updated_at = nil
135
137
  end
136
138
  end
137
139
 
@@ -8,7 +8,7 @@ require "time"
8
8
  module Algolia
9
9
  module Ingestion
10
10
  class TransformationTryResponse
11
- # The array of records returned by the transformation service.
11
+ # The array of stringified records returned by the transformation service.
12
12
  attr_accessor :payloads
13
13
 
14
14
  attr_accessor :error
@@ -24,7 +24,7 @@ module Algolia
24
24
  # Attribute type mapping.
25
25
  def self.types_mapping
26
26
  {
27
- :payloads => :"Array<Object>",
27
+ :payloads => :"Array<String>",
28
28
  :error => :"TransformationError"
29
29
  }
30
30
  end
@@ -3,5 +3,5 @@
3
3
  # Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
4
4
 
5
5
  module Algolia
6
- VERSION = "3.15.1"
6
+ VERSION = "3.15.2"
7
7
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: algolia
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.15.1
4
+ version: 3.15.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - https://alg.li/support
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-04-01 00:00:00.000000000 Z
10
+ date: 2025-04-03 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: faraday