algolia 3.0.0.beta.4 → 3.0.0.beta.6

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.
Files changed (64) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +20 -0
  3. data/Gemfile.lock +1 -1
  4. data/LICENSE +21 -0
  5. data/README.md +4 -4
  6. data/lib/algolia/api/ingestion_client.rb +424 -58
  7. data/lib/algolia/api/search_client.rb +158 -3
  8. data/lib/algolia/models/ingestion/authentication.rb +2 -2
  9. data/lib/algolia/models/ingestion/authentication_create_response.rb +1 -1
  10. data/lib/algolia/models/ingestion/authentication_update_response.rb +1 -1
  11. data/lib/algolia/models/ingestion/delete_response.rb +1 -1
  12. data/lib/algolia/models/ingestion/destination.rb +2 -2
  13. data/lib/algolia/models/ingestion/destination_create_response.rb +1 -1
  14. data/lib/algolia/models/ingestion/destination_update_response.rb +1 -1
  15. data/lib/algolia/models/ingestion/event.rb +1 -1
  16. data/lib/algolia/models/ingestion/list_transformations_response.rb +212 -0
  17. data/lib/algolia/models/ingestion/on_demand_date_utils_input.rb +2 -2
  18. data/lib/algolia/models/ingestion/on_demand_trigger.rb +1 -1
  19. data/lib/algolia/models/ingestion/run.rb +3 -3
  20. data/lib/algolia/models/ingestion/run_response.rb +1 -1
  21. data/lib/algolia/models/ingestion/schedule_trigger.rb +2 -2
  22. data/lib/algolia/models/ingestion/sort_keys.rb +35 -0
  23. data/lib/algolia/models/ingestion/source.rb +2 -2
  24. data/lib/algolia/models/ingestion/source_create_response.rb +1 -1
  25. data/lib/algolia/models/ingestion/source_update_response.rb +1 -1
  26. data/lib/algolia/models/ingestion/source_watch_response.rb +233 -0
  27. data/lib/algolia/models/ingestion/task.rb +13 -3
  28. data/lib/algolia/models/ingestion/task_create.rb +14 -4
  29. data/lib/algolia/models/ingestion/task_create_response.rb +1 -1
  30. data/lib/algolia/models/ingestion/task_update_response.rb +1 -1
  31. data/lib/algolia/models/ingestion/transformation.rb +257 -0
  32. data/lib/algolia/models/ingestion/transformation_create.rb +224 -0
  33. data/lib/algolia/models/ingestion/{docker_source_discover.rb → transformation_create_response.rb} +14 -13
  34. data/lib/algolia/models/ingestion/{docker_source_streams.rb → transformation_search.rb} +12 -12
  35. data/lib/algolia/models/ingestion/transformation_try.rb +211 -0
  36. data/lib/algolia/models/ingestion/transformation_try_response.rb +210 -0
  37. data/lib/algolia/models/ingestion/transformation_try_response_error.rb +208 -0
  38. data/lib/algolia/models/ingestion/transformation_update_response.rb +212 -0
  39. data/lib/algolia/models/ingestion/window.rb +2 -2
  40. data/lib/algolia/models/recommend/base_search_response.rb +2 -4
  41. data/lib/algolia/models/recommend/fallback_params.rb +3 -1
  42. data/lib/algolia/models/recommend/recommendations_results.rb +1 -1
  43. data/lib/algolia/models/recommend/search_params.rb +3 -1
  44. data/lib/algolia/models/recommend/search_params_object.rb +3 -1
  45. data/lib/algolia/models/recommend/trending_facets_query.rb +3 -1
  46. data/lib/algolia/models/recommend/value.rb +16 -4
  47. data/lib/algolia/models/search/base_index_settings.rb +2 -4
  48. data/lib/algolia/models/search/base_search_response.rb +2 -4
  49. data/lib/algolia/models/search/browse_params_object.rb +3 -1
  50. data/lib/algolia/models/search/browse_response.rb +1 -1
  51. data/lib/algolia/models/search/consequence_params.rb +3 -1
  52. data/lib/algolia/models/search/fetched_index.rb +14 -4
  53. data/lib/algolia/models/search/index_settings.rb +4 -2
  54. data/lib/algolia/models/search/search_for_facets.rb +3 -1
  55. data/lib/algolia/models/search/search_for_hits.rb +3 -1
  56. data/lib/algolia/models/search/search_params_object.rb +3 -1
  57. data/lib/algolia/models/search/search_response.rb +1 -1
  58. data/lib/algolia/models/search/secured_api_key_restrictions.rb +3 -3
  59. data/lib/algolia/models/search/value.rb +16 -4
  60. data/lib/algolia/version.rb +1 -1
  61. metadata +14 -7
  62. data/.openapi-generator/FILES +0 -11
  63. data/.openapi-generator/VERSION +0 -1
  64. data/.openapi-generator-ignore +0 -23
@@ -411,7 +411,9 @@ module Algolia
411
411
 
412
412
  # List of attributes with nullable: true
413
413
  def self.openapi_nullable
414
- Set.new([])
414
+ Set.new([
415
+ :re_ranking_apply_filter
416
+ ])
415
417
  end
416
418
 
417
419
  # List of class defined in allOf (OpenAPI v3)
@@ -79,7 +79,9 @@ module Algolia
79
79
 
80
80
  # List of attributes with nullable: true
81
81
  def self.openapi_nullable
82
- Set.new([])
82
+ Set.new([
83
+ :facet_name
84
+ ])
83
85
  end
84
86
 
85
87
  # List of class defined in allOf (OpenAPI v3)
@@ -11,6 +11,9 @@ module Algolia
11
11
 
12
12
  attr_accessor :sort_remaining_by
13
13
 
14
+ # Hide facet values.
15
+ attr_accessor :hide
16
+
14
17
  class EnumAttributeValidator
15
18
  attr_reader :datatype
16
19
  attr_reader :allowable_values
@@ -37,7 +40,8 @@ module Algolia
37
40
  def self.attribute_map
38
41
  {
39
42
  :order => :order,
40
- :sort_remaining_by => :sortRemainingBy
43
+ :sort_remaining_by => :sortRemainingBy,
44
+ :hide => :hide
41
45
  }
42
46
  end
43
47
 
@@ -50,7 +54,8 @@ module Algolia
50
54
  def self.types_mapping
51
55
  {
52
56
  :order => :'Array<String>',
53
- :sort_remaining_by => :SortRemainingBy
57
+ :sort_remaining_by => :SortRemainingBy,
58
+ :hide => :'Array<String>'
54
59
  }
55
60
  end
56
61
 
@@ -85,6 +90,12 @@ module Algolia
85
90
  if attributes.key?(:sort_remaining_by)
86
91
  self.sort_remaining_by = attributes[:sort_remaining_by]
87
92
  end
93
+
94
+ if attributes.key?(:hide)
95
+ if (value = attributes[:hide]).is_a?(Array)
96
+ self.hide = value
97
+ end
98
+ end
88
99
  end
89
100
 
90
101
  # Checks equality by comparing each attribute.
@@ -94,7 +105,8 @@ module Algolia
94
105
 
95
106
  self.class == other.class &&
96
107
  order == other.order &&
97
- sort_remaining_by == other.sort_remaining_by
108
+ sort_remaining_by == other.sort_remaining_by &&
109
+ hide == other.hide
98
110
  end
99
111
 
100
112
  # @see the `==` method
@@ -106,7 +118,7 @@ module Algolia
106
118
  # Calculates hash code according to all attributes.
107
119
  # @return [Integer] Hash code
108
120
  def hash
109
- [order, sort_remaining_by].hash
121
+ [order, sort_remaining_by, hide].hash
110
122
  end
111
123
 
112
124
  # Builds the object from hash
@@ -48,7 +48,7 @@ module Algolia
48
48
  # Attributes used for searching. Attribute names are case-sensitive. By default, all attributes are searchable and the [Attribute](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#attribute) ranking criterion is turned off. With a non-empty list, Algolia only returns results with matches in the selected attributes. In addition, the Attribute ranking criterion is turned on: matches in attributes that are higher in the list of `searchableAttributes` rank first. To make matches in two attributes rank equally, include them in a comma-separated string, such as `\"title,alternate_title\"`. Attributes with the same priority are always unordered. For more information, see [Searchable attributes](https://www.algolia.com/doc/guides/sending-and-managing-data/prepare-your-data/how-to/setting-searchable-attributes/). **Modifier** - `unordered(\"ATTRIBUTE\")`. Ignore the position of a match within the attribute. Without modifier, matches at the beginning of an attribute rank higer than matches at the end.
49
49
  attr_accessor :searchable_attributes
50
50
 
51
- # An object with custom data. You can store up to 32&nbsp;kB as custom data.
51
+ # An object with custom data. You can store up to 32kB as custom data.
52
52
  attr_accessor :user_data
53
53
 
54
54
  # Characters and their normalized replacements. This overrides Algolia's default [normalization](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/normalization/).
@@ -110,9 +110,7 @@ module Algolia
110
110
 
111
111
  # List of attributes with nullable: true
112
112
  def self.openapi_nullable
113
- Set.new([
114
- :user_data
115
- ])
113
+ Set.new([])
116
114
  end
117
115
 
118
116
  # Initializes the object
@@ -81,7 +81,7 @@ module Algolia
81
81
  # Host name of the server that processed the request.
82
82
  attr_accessor :server_used
83
83
 
84
- # An object with custom data. You can store up to 32&nbsp;kB as custom data.
84
+ # An object with custom data. You can store up to 32kB as custom data.
85
85
  attr_accessor :user_data
86
86
 
87
87
  # Unique identifier for the query. This is used for [click analytics](https://www.algolia.com/doc/guides/analytics/click-analytics/).
@@ -164,9 +164,7 @@ module Algolia
164
164
 
165
165
  # List of attributes with nullable: true
166
166
  def self.openapi_nullable
167
- Set.new([
168
- :user_data
169
- ])
167
+ Set.new([])
170
168
  end
171
169
 
172
170
  # Initializes the object
@@ -415,7 +415,9 @@ module Algolia
415
415
 
416
416
  # List of attributes with nullable: true
417
417
  def self.openapi_nullable
418
- Set.new([])
418
+ Set.new([
419
+ :re_ranking_apply_filter
420
+ ])
419
421
  end
420
422
 
421
423
  # List of class defined in allOf (OpenAPI v3)
@@ -81,7 +81,7 @@ module Algolia
81
81
  # Host name of the server that processed the request.
82
82
  attr_accessor :server_used
83
83
 
84
- # An object with custom data. You can store up to 32&nbsp;kB as custom data.
84
+ # An object with custom data. You can store up to 32kB as custom data.
85
85
  attr_accessor :user_data
86
86
 
87
87
  # Unique identifier for the query. This is used for [click analytics](https://www.algolia.com/doc/guides/analytics/click-analytics/).
@@ -417,7 +417,9 @@ module Algolia
417
417
 
418
418
  # List of attributes with nullable: true
419
419
  def self.openapi_nullable
420
- Set.new([])
420
+ Set.new([
421
+ :re_ranking_apply_filter
422
+ ])
421
423
  end
422
424
 
423
425
  # List of class defined in allOf (OpenAPI v3)
@@ -39,6 +39,9 @@ module Algolia
39
39
  # Only present if the index is a primary index with replicas. Contains the names of all linked replicas.
40
40
  attr_accessor :replicas
41
41
 
42
+ # Only present if the index is a [virtual replica](https://www.algolia.com/doc/guides/managing-results/refine-results/sorting/how-to/sort-an-index-alphabetically/#virtual-replicas).
43
+ attr_accessor :virtual
44
+
42
45
  # Attribute mapping from ruby-style variable name to JSON key.
43
46
  def self.attribute_map
44
47
  {
@@ -52,7 +55,8 @@ module Algolia
52
55
  :number_of_pending_tasks => :numberOfPendingTasks,
53
56
  :pending_task => :pendingTask,
54
57
  :primary => :primary,
55
- :replicas => :replicas
58
+ :replicas => :replicas,
59
+ :virtual => :virtual
56
60
  }
57
61
  end
58
62
 
@@ -74,7 +78,8 @@ module Algolia
74
78
  :number_of_pending_tasks => :Integer,
75
79
  :pending_task => :Boolean,
76
80
  :primary => :String,
77
- :replicas => :'Array<String>'
81
+ :replicas => :'Array<String>',
82
+ :virtual => :Boolean
78
83
  }
79
84
  end
80
85
 
@@ -163,6 +168,10 @@ module Algolia
163
168
  self.replicas = value
164
169
  end
165
170
  end
171
+
172
+ if attributes.key?(:virtual)
173
+ self.virtual = attributes[:virtual]
174
+ end
166
175
  end
167
176
 
168
177
  # Checks equality by comparing each attribute.
@@ -181,7 +190,8 @@ module Algolia
181
190
  number_of_pending_tasks == other.number_of_pending_tasks &&
182
191
  pending_task == other.pending_task &&
183
192
  primary == other.primary &&
184
- replicas == other.replicas
193
+ replicas == other.replicas &&
194
+ virtual == other.virtual
185
195
  end
186
196
 
187
197
  # @see the `==` method
@@ -193,7 +203,7 @@ module Algolia
193
203
  # Calculates hash code according to all attributes.
194
204
  # @return [Integer] Hash code
195
205
  def hash
196
- [name, created_at, updated_at, entries, data_size, file_size, last_build_time_s, number_of_pending_tasks, pending_task, primary, replicas].hash
206
+ [name, created_at, updated_at, entries, data_size, file_size, last_build_time_s, number_of_pending_tasks, pending_task, primary, replicas, virtual].hash
197
207
  end
198
208
 
199
209
  # Builds the object from hash
@@ -49,7 +49,7 @@ module Algolia
49
49
  # Attributes used for searching. Attribute names are case-sensitive. By default, all attributes are searchable and the [Attribute](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#attribute) ranking criterion is turned off. With a non-empty list, Algolia only returns results with matches in the selected attributes. In addition, the Attribute ranking criterion is turned on: matches in attributes that are higher in the list of `searchableAttributes` rank first. To make matches in two attributes rank equally, include them in a comma-separated string, such as `\"title,alternate_title\"`. Attributes with the same priority are always unordered. For more information, see [Searchable attributes](https://www.algolia.com/doc/guides/sending-and-managing-data/prepare-your-data/how-to/setting-searchable-attributes/). **Modifier** - `unordered(\"ATTRIBUTE\")`. Ignore the position of a match within the attribute. Without modifier, matches at the beginning of an attribute rank higer than matches at the end.
50
50
  attr_accessor :searchable_attributes
51
51
 
52
- # An object with custom data. You can store up to 32&nbsp;kB as custom data.
52
+ # An object with custom data. You can store up to 32kB as custom data.
53
53
  attr_accessor :user_data
54
54
 
55
55
  # Characters and their normalized replacements. This overrides Algolia's default [normalization](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/normalization/).
@@ -342,7 +342,9 @@ module Algolia
342
342
 
343
343
  # List of attributes with nullable: true
344
344
  def self.openapi_nullable
345
- Set.new([])
345
+ Set.new([
346
+ :re_ranking_apply_filter
347
+ ])
346
348
  end
347
349
 
348
350
  # List of class defined in allOf (OpenAPI v3)
@@ -434,7 +434,9 @@ module Algolia
434
434
 
435
435
  # List of attributes with nullable: true
436
436
  def self.openapi_nullable
437
- Set.new([])
437
+ Set.new([
438
+ :re_ranking_apply_filter
439
+ ])
438
440
  end
439
441
 
440
442
  # List of class defined in allOf (OpenAPI v3)
@@ -424,7 +424,9 @@ module Algolia
424
424
 
425
425
  # List of attributes with nullable: true
426
426
  def self.openapi_nullable
427
- Set.new([])
427
+ Set.new([
428
+ :re_ranking_apply_filter
429
+ ])
428
430
  end
429
431
 
430
432
  # List of class defined in allOf (OpenAPI v3)
@@ -411,7 +411,9 @@ module Algolia
411
411
 
412
412
  # List of attributes with nullable: true
413
413
  def self.openapi_nullable
414
- Set.new([])
414
+ Set.new([
415
+ :re_ranking_apply_filter
416
+ ])
415
417
  end
416
418
 
417
419
  # List of class defined in allOf (OpenAPI v3)
@@ -81,7 +81,7 @@ module Algolia
81
81
  # Host name of the server that processed the request.
82
82
  attr_accessor :server_used
83
83
 
84
- # An object with custom data. You can store up to 32&nbsp;kB as custom data.
84
+ # An object with custom data. You can store up to 32kB as custom data.
85
85
  attr_accessor :user_data
86
86
 
87
87
  # Unique identifier for the query. This is used for [click analytics](https://www.algolia.com/doc/guides/analytics/click-analytics/).
@@ -5,7 +5,7 @@ require 'time'
5
5
 
6
6
  module Algolia
7
7
  module Search
8
- class SecuredAPIKeyRestrictions
8
+ class SecuredApiKeyRestrictions
9
9
  attr_accessor :search_params
10
10
 
11
11
  # Filters that apply to every search made with the secured API key. Extra filters added at search time will be combined with `AND`. For example, if you set `group:admin` as fixed filter on your generated API key, and add `groups:visitors` to the search query, the complete set of filters will be `group:admin AND groups:visitors`.
@@ -61,14 +61,14 @@ module Algolia
61
61
  # @param [Hash] attributes Model attributes in the form of hash
62
62
  def initialize(attributes = {})
63
63
  unless attributes.is_a?(Hash)
64
- raise ArgumentError, "The input argument (attributes) must be a hash in `Algolia::SecuredAPIKeyRestrictions` initialize method"
64
+ raise ArgumentError, "The input argument (attributes) must be a hash in `Algolia::SecuredApiKeyRestrictions` initialize method"
65
65
  end
66
66
 
67
67
  # check to see if the attribute exists and convert string to symbol for hash key
68
68
  attributes = attributes.each_with_object({}) do |(k, v), h|
69
69
  unless self.class.attribute_map.key?(k.to_sym)
70
70
  raise ArgumentError,
71
- "`#{k}` is not a valid attribute in `Algolia::SecuredAPIKeyRestrictions`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
71
+ "`#{k}` is not a valid attribute in `Algolia::SecuredApiKeyRestrictions`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
72
72
  end
73
73
 
74
74
  h[k.to_sym] = v
@@ -11,6 +11,9 @@ module Algolia
11
11
 
12
12
  attr_accessor :sort_remaining_by
13
13
 
14
+ # Hide facet values.
15
+ attr_accessor :hide
16
+
14
17
  class EnumAttributeValidator
15
18
  attr_reader :datatype
16
19
  attr_reader :allowable_values
@@ -37,7 +40,8 @@ module Algolia
37
40
  def self.attribute_map
38
41
  {
39
42
  :order => :order,
40
- :sort_remaining_by => :sortRemainingBy
43
+ :sort_remaining_by => :sortRemainingBy,
44
+ :hide => :hide
41
45
  }
42
46
  end
43
47
 
@@ -50,7 +54,8 @@ module Algolia
50
54
  def self.types_mapping
51
55
  {
52
56
  :order => :'Array<String>',
53
- :sort_remaining_by => :SortRemainingBy
57
+ :sort_remaining_by => :SortRemainingBy,
58
+ :hide => :'Array<String>'
54
59
  }
55
60
  end
56
61
 
@@ -85,6 +90,12 @@ module Algolia
85
90
  if attributes.key?(:sort_remaining_by)
86
91
  self.sort_remaining_by = attributes[:sort_remaining_by]
87
92
  end
93
+
94
+ if attributes.key?(:hide)
95
+ if (value = attributes[:hide]).is_a?(Array)
96
+ self.hide = value
97
+ end
98
+ end
88
99
  end
89
100
 
90
101
  # Checks equality by comparing each attribute.
@@ -94,7 +105,8 @@ module Algolia
94
105
 
95
106
  self.class == other.class &&
96
107
  order == other.order &&
97
- sort_remaining_by == other.sort_remaining_by
108
+ sort_remaining_by == other.sort_remaining_by &&
109
+ hide == other.hide
98
110
  end
99
111
 
100
112
  # @see the `==` method
@@ -106,7 +118,7 @@ module Algolia
106
118
  # Calculates hash code according to all attributes.
107
119
  # @return [Integer] Hash code
108
120
  def hash
109
- [order, sort_remaining_by].hash
121
+ [order, sort_remaining_by, hide].hash
110
122
  end
111
123
 
112
124
  # Builds the object from hash
@@ -1,5 +1,5 @@
1
1
  # 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.
2
2
 
3
3
  module Algolia
4
- VERSION = '3.0.0.beta.4'.freeze
4
+ VERSION = '3.0.0.beta.6'.freeze
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: algolia
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.beta.4
4
+ version: 3.0.0.beta.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - https://alg.li/support
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-13 00:00:00.000000000 Z
11
+ date: 2024-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -114,13 +114,11 @@ extra_rdoc_files: []
114
114
  files:
115
115
  - ".github/workflows/release.yml"
116
116
  - ".gitignore"
117
- - ".openapi-generator-ignore"
118
- - ".openapi-generator/FILES"
119
- - ".openapi-generator/VERSION"
120
117
  - ".rubocop.yml"
121
118
  - CHANGELOG.md
122
119
  - Gemfile
123
120
  - Gemfile.lock
121
+ - LICENSE
124
122
  - README.md
125
123
  - Rakefile
126
124
  - algolia.gemspec
@@ -256,8 +254,6 @@ files:
256
254
  - lib/algolia/models/ingestion/destination_update_response.rb
257
255
  - lib/algolia/models/ingestion/docker_image_type.rb
258
256
  - lib/algolia/models/ingestion/docker_registry.rb
259
- - lib/algolia/models/ingestion/docker_source_discover.rb
260
- - lib/algolia/models/ingestion/docker_source_streams.rb
261
257
  - lib/algolia/models/ingestion/error_base.rb
262
258
  - lib/algolia/models/ingestion/event.rb
263
259
  - lib/algolia/models/ingestion/event_sort_keys.rb
@@ -268,6 +264,7 @@ files:
268
264
  - lib/algolia/models/ingestion/list_events_response.rb
269
265
  - lib/algolia/models/ingestion/list_sources_response.rb
270
266
  - lib/algolia/models/ingestion/list_tasks_response.rb
267
+ - lib/algolia/models/ingestion/list_transformations_response.rb
271
268
  - lib/algolia/models/ingestion/mapping_field_directive.rb
272
269
  - lib/algolia/models/ingestion/mapping_format_schema.rb
273
270
  - lib/algolia/models/ingestion/mapping_input.rb
@@ -300,6 +297,7 @@ files:
300
297
  - lib/algolia/models/ingestion/shopify_input.rb
301
298
  - lib/algolia/models/ingestion/shopify_market.rb
302
299
  - lib/algolia/models/ingestion/shopify_metafield.rb
300
+ - lib/algolia/models/ingestion/sort_keys.rb
303
301
  - lib/algolia/models/ingestion/source.rb
304
302
  - lib/algolia/models/ingestion/source_big_commerce.rb
305
303
  - lib/algolia/models/ingestion/source_big_query.rb
@@ -322,6 +320,7 @@ files:
322
320
  - lib/algolia/models/ingestion/source_update_input.rb
323
321
  - lib/algolia/models/ingestion/source_update_response.rb
324
322
  - lib/algolia/models/ingestion/source_update_shopify.rb
323
+ - lib/algolia/models/ingestion/source_watch_response.rb
325
324
  - lib/algolia/models/ingestion/streaming_trigger.rb
326
325
  - lib/algolia/models/ingestion/streaming_trigger_type.rb
327
326
  - lib/algolia/models/ingestion/streaming_utils_input.rb
@@ -336,6 +335,14 @@ files:
336
335
  - lib/algolia/models/ingestion/task_sort_keys.rb
337
336
  - lib/algolia/models/ingestion/task_update.rb
338
337
  - lib/algolia/models/ingestion/task_update_response.rb
338
+ - lib/algolia/models/ingestion/transformation.rb
339
+ - lib/algolia/models/ingestion/transformation_create.rb
340
+ - lib/algolia/models/ingestion/transformation_create_response.rb
341
+ - lib/algolia/models/ingestion/transformation_search.rb
342
+ - lib/algolia/models/ingestion/transformation_try.rb
343
+ - lib/algolia/models/ingestion/transformation_try_response.rb
344
+ - lib/algolia/models/ingestion/transformation_try_response_error.rb
345
+ - lib/algolia/models/ingestion/transformation_update_response.rb
339
346
  - lib/algolia/models/ingestion/trigger.rb
340
347
  - lib/algolia/models/ingestion/trigger_type.rb
341
348
  - lib/algolia/models/ingestion/trigger_update_input.rb
@@ -1,11 +0,0 @@
1
- lib/algolia/api/usage_client.rb
2
- lib/algolia/models/usage/error_base.rb
3
- lib/algolia/models/usage/get_usage200_response.rb
4
- lib/algolia/models/usage/get_usage200_response_statistics_inner.rb
5
- lib/algolia/models/usage/get_usage400_response.rb
6
- lib/algolia/models/usage/get_usage400_response_error.rb
7
- lib/algolia/models/usage/get_usage400_response_error_errors_inner.rb
8
- lib/algolia/models/usage/granularity.rb
9
- lib/algolia/models/usage/statistic.rb
10
- lib/algolia/models/usage/statistic_value.rb
11
- lib/algolia/version.rb
@@ -1 +0,0 @@
1
- 7.4.0
@@ -1,23 +0,0 @@
1
- # OpenAPI Generator Ignore
2
- # Generated by openapi-generator https://github.com/openapitools/openapi-generator
3
-
4
- # Use this file to prevent files from being overwritten by the generator.
5
- # The patterns follow closely to .gitignore or .dockerignore.
6
-
7
- # As an example, the C# client generator defines ApiClient.cs.
8
- # You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9
- #ApiClient.cs
10
-
11
- # You can match any string of characters against a directory, file or extension with a single asterisk (*):
12
- #foo/*/qux
13
- # The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14
-
15
- # You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16
- #foo/**/qux
17
- # This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18
-
19
- # You can also negate patterns with an exclamation (!).
20
- # For example, you can ignore all files in a docs folder with the file extension .md:
21
- #docs/*.md
22
- # Then explicitly reverse the ignore rule for a single file:
23
- #!docs/README.md