factpulse 3.0.23 → 3.0.25

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 (34) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +3 -3
  3. data/Gemfile.lock +1 -1
  4. data/docs/AFNORPDPPADirectoryServiceApi.md +96 -286
  5. data/docs/ChorusProCredentials.md +8 -8
  6. data/docs/ChorusProDestination.md +1 -1
  7. data/docs/FactureElectroniqueRestApiSchemasChorusProChorusProCredentials.md +26 -0
  8. data/docs/GetChorusProIdRequest.md +1 -1
  9. data/docs/GetInvoiceRequest.md +1 -1
  10. data/docs/GetStructureRequest.md +1 -1
  11. data/docs/SearchStructureRequest.md +1 -1
  12. data/docs/SubmitInvoiceRequest.md +1 -1
  13. data/lib/factpulse/api/afnorpdppa_directory_service_api.rb +18 -105
  14. data/lib/factpulse/helpers/client.rb +38 -9
  15. data/lib/factpulse/models/chorus_pro_credentials.rb +26 -94
  16. data/lib/factpulse/models/chorus_pro_destination.rb +1 -1
  17. data/lib/factpulse/models/{facture_electronique_rest_api_schemas_processing_chorus_pro_credentials.rb → facture_electronique_rest_api_schemas_chorus_pro_chorus_pro_credentials.rb} +97 -29
  18. data/lib/factpulse/models/get_chorus_pro_id_request.rb +1 -1
  19. data/lib/factpulse/models/get_invoice_request.rb +1 -1
  20. data/lib/factpulse/models/get_structure_request.rb +1 -1
  21. data/lib/factpulse/models/search_structure_request.rb +1 -1
  22. data/lib/factpulse/models/submit_invoice_request.rb +1 -1
  23. data/lib/factpulse/version.rb +1 -1
  24. data/lib/factpulse.rb +1 -5
  25. metadata +3 -11
  26. data/docs/AcceptLanguage.md +0 -15
  27. data/docs/DirectoryLineInclude.md +0 -15
  28. data/docs/FactureElectroniqueRestApiSchemasProcessingChorusProCredentials.md +0 -26
  29. data/docs/RoutingCodeInclude.md +0 -15
  30. data/docs/SiretInclude.md +0 -15
  31. data/lib/factpulse/models/accept_language.rb +0 -40
  32. data/lib/factpulse/models/directory_line_include.rb +0 -42
  33. data/lib/factpulse/models/routing_code_include.rb +0 -40
  34. data/lib/factpulse/models/siret_include.rb +0 -39
@@ -22,7 +22,6 @@ module FactPulse
22
22
  # Creating a directory line
23
23
  # Creation of a new directory line for a SIREN, a SIRET or a ROUTING CODE.
24
24
  # @param [Hash] opts the optional parameters
25
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
26
25
  # @return [Object]
27
26
  def create_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_post(opts = {})
28
27
  data, _status_code, _headers = create_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_post_with_http_info(opts)
@@ -32,7 +31,6 @@ module FactPulse
32
31
  # Creating a directory line
33
32
  # Creation of a new directory line for a SIREN, a SIRET or a ROUTING CODE.
34
33
  # @param [Hash] opts the optional parameters
35
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
36
34
  # @return [Array<(Object, Integer, Hash)>] Object data, response status code and response headers
37
35
  def create_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_post_with_http_info(opts = {})
38
36
  if @api_client.config.debugging
@@ -48,7 +46,6 @@ module FactPulse
48
46
  header_params = opts[:header_params] || {}
49
47
  # HTTP header 'Accept' (if needed)
50
48
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
51
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
52
49
 
53
50
  # form parameters
54
51
  form_params = opts[:form_params] || {}
@@ -60,7 +57,7 @@ module FactPulse
60
57
  return_type = opts[:debug_return_type] || 'Object'
61
58
 
62
59
  # auth_names
63
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
60
+ auth_names = opts[:debug_auth_names] || []
64
61
 
65
62
  new_options = opts.merge(
66
63
  :operation => :"AFNORPDPPADirectoryServiceApi.create_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_post",
@@ -82,7 +79,6 @@ module FactPulse
82
79
  # Create a routing code
83
80
  # Creating a routing code.
84
81
  # @param [Hash] opts the optional parameters
85
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
86
82
  # @return [Object]
87
83
  def create_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_post(opts = {})
88
84
  data, _status_code, _headers = create_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_post_with_http_info(opts)
@@ -92,7 +88,6 @@ module FactPulse
92
88
  # Create a routing code
93
89
  # Creating a routing code.
94
90
  # @param [Hash] opts the optional parameters
95
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
96
91
  # @return [Array<(Object, Integer, Hash)>] Object data, response status code and response headers
97
92
  def create_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_post_with_http_info(opts = {})
98
93
  if @api_client.config.debugging
@@ -108,7 +103,6 @@ module FactPulse
108
103
  header_params = opts[:header_params] || {}
109
104
  # HTTP header 'Accept' (if needed)
110
105
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
111
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
112
106
 
113
107
  # form parameters
114
108
  form_params = opts[:form_params] || {}
@@ -120,7 +114,7 @@ module FactPulse
120
114
  return_type = opts[:debug_return_type] || 'Object'
121
115
 
122
116
  # auth_names
123
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
117
+ auth_names = opts[:debug_auth_names] || []
124
118
 
125
119
  new_options = opts.merge(
126
120
  :operation => :"AFNORPDPPADirectoryServiceApi.create_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_post",
@@ -143,7 +137,6 @@ module FactPulse
143
137
  # Delete a directory line.
144
138
  # @param id_instance [String] AFNOR instance ID (UUID)
145
139
  # @param [Hash] opts the optional parameters
146
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
147
140
  # @return [Object]
148
141
  def delete_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_id_instance_id_instance_delete(id_instance, opts = {})
149
142
  data, _status_code, _headers = delete_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_id_instance_id_instance_delete_with_http_info(id_instance, opts)
@@ -154,7 +147,6 @@ module FactPulse
154
147
  # Delete a directory line.
155
148
  # @param id_instance [String] AFNOR instance ID (UUID)
156
149
  # @param [Hash] opts the optional parameters
157
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
158
150
  # @return [Array<(Object, Integer, Hash)>] Object data, response status code and response headers
159
151
  def delete_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_id_instance_id_instance_delete_with_http_info(id_instance, opts = {})
160
152
  if @api_client.config.debugging
@@ -174,7 +166,6 @@ module FactPulse
174
166
  header_params = opts[:header_params] || {}
175
167
  # HTTP header 'Accept' (if needed)
176
168
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
177
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
178
169
 
179
170
  # form parameters
180
171
  form_params = opts[:form_params] || {}
@@ -186,7 +177,7 @@ module FactPulse
186
177
  return_type = opts[:debug_return_type] || 'Object'
187
178
 
188
179
  # auth_names
189
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
180
+ auth_names = opts[:debug_auth_names] || []
190
181
 
191
182
  new_options = opts.merge(
192
183
  :operation => :"AFNORPDPPADirectoryServiceApi.delete_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_id_instance_id_instance_delete",
@@ -266,9 +257,6 @@ module FactPulse
266
257
  # Retrieve the data from the directory line corresponding to the identifier passed in parameters.
267
258
  # @param addressing_identifier [String] Addressing identifier (SIREN, SIRET or routing code)
268
259
  # @param [Hash] opts the optional parameters
269
- # @option opts [Array<String>] :fields Fields of the Directory Line resource.
270
- # @option opts [Array<DirectoryLineInclude>] :include Relations to include in the response.
271
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
272
260
  # @return [AFNORDirectoryLinePayloadHistoryLegalUnitFacilityRoutingCode]
273
261
  def get_directory_line_by_code_proxy_api_v1_afnor_directory_v1_directory_line_code_addressing_identifier_get(addressing_identifier, opts = {})
274
262
  data, _status_code, _headers = get_directory_line_by_code_proxy_api_v1_afnor_directory_v1_directory_line_code_addressing_identifier_get_with_http_info(addressing_identifier, opts)
@@ -279,9 +267,6 @@ module FactPulse
279
267
  # Retrieve the data from the directory line corresponding to the identifier passed in parameters.
280
268
  # @param addressing_identifier [String] Addressing identifier (SIREN, SIRET or routing code)
281
269
  # @param [Hash] opts the optional parameters
282
- # @option opts [Array<String>] :fields Fields of the Directory Line resource.
283
- # @option opts [Array<DirectoryLineInclude>] :include Relations to include in the response.
284
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
285
270
  # @return [Array<(AFNORDirectoryLinePayloadHistoryLegalUnitFacilityRoutingCode, Integer, Hash)>] AFNORDirectoryLinePayloadHistoryLegalUnitFacilityRoutingCode data, response status code and response headers
286
271
  def get_directory_line_by_code_proxy_api_v1_afnor_directory_v1_directory_line_code_addressing_identifier_get_with_http_info(addressing_identifier, opts = {})
287
272
  if @api_client.config.debugging
@@ -296,14 +281,11 @@ module FactPulse
296
281
 
297
282
  # query parameters
298
283
  query_params = opts[:query_params] || {}
299
- query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
300
- query_params[:'include'] = @api_client.build_collection_param(opts[:'include'], :multi) if !opts[:'include'].nil?
301
284
 
302
285
  # header parameters
303
286
  header_params = opts[:header_params] || {}
304
287
  # HTTP header 'Accept' (if needed)
305
288
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
306
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
307
289
 
308
290
  # form parameters
309
291
  form_params = opts[:form_params] || {}
@@ -315,7 +297,7 @@ module FactPulse
315
297
  return_type = opts[:debug_return_type] || 'AFNORDirectoryLinePayloadHistoryLegalUnitFacilityRoutingCode'
316
298
 
317
299
  # auth_names
318
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
300
+ auth_names = opts[:debug_auth_names] || []
319
301
 
320
302
  new_options = opts.merge(
321
303
  :operation => :"AFNORPDPPADirectoryServiceApi.get_directory_line_by_code_proxy_api_v1_afnor_directory_v1_directory_line_code_addressing_identifier_get",
@@ -338,8 +320,6 @@ module FactPulse
338
320
  # Retrieve the data from the directory line corresponding to the identifier passed in parameters.
339
321
  # @param id_instance [String] AFNOR instance ID (UUID)
340
322
  # @param [Hash] opts the optional parameters
341
- # @option opts [Array<String>] :fields Fields of the Directory Line resource.
342
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
343
323
  # @return [AFNORDirectoryLinePayloadHistoryLegalUnitFacilityRoutingCode]
344
324
  def get_directory_line_by_id_instance_proxy_api_v1_afnor_directory_v1_directory_line_id_instance_id_instance_get(id_instance, opts = {})
345
325
  data, _status_code, _headers = get_directory_line_by_id_instance_proxy_api_v1_afnor_directory_v1_directory_line_id_instance_id_instance_get_with_http_info(id_instance, opts)
@@ -350,8 +330,6 @@ module FactPulse
350
330
  # Retrieve the data from the directory line corresponding to the identifier passed in parameters.
351
331
  # @param id_instance [String] AFNOR instance ID (UUID)
352
332
  # @param [Hash] opts the optional parameters
353
- # @option opts [Array<String>] :fields Fields of the Directory Line resource.
354
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
355
333
  # @return [Array<(AFNORDirectoryLinePayloadHistoryLegalUnitFacilityRoutingCode, Integer, Hash)>] AFNORDirectoryLinePayloadHistoryLegalUnitFacilityRoutingCode data, response status code and response headers
356
334
  def get_directory_line_by_id_instance_proxy_api_v1_afnor_directory_v1_directory_line_id_instance_id_instance_get_with_http_info(id_instance, opts = {})
357
335
  if @api_client.config.debugging
@@ -366,13 +344,11 @@ module FactPulse
366
344
 
367
345
  # query parameters
368
346
  query_params = opts[:query_params] || {}
369
- query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
370
347
 
371
348
  # header parameters
372
349
  header_params = opts[:header_params] || {}
373
350
  # HTTP header 'Accept' (if needed)
374
351
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
375
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
376
352
 
377
353
  # form parameters
378
354
  form_params = opts[:form_params] || {}
@@ -384,7 +360,7 @@ module FactPulse
384
360
  return_type = opts[:debug_return_type] || 'AFNORDirectoryLinePayloadHistoryLegalUnitFacilityRoutingCode'
385
361
 
386
362
  # auth_names
387
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
363
+ auth_names = opts[:debug_auth_names] || []
388
364
 
389
365
  new_options = opts.merge(
390
366
  :operation => :"AFNORPDPPADirectoryServiceApi.get_directory_line_by_id_instance_proxy_api_v1_afnor_directory_v1_directory_line_id_instance_id_instance_get",
@@ -407,8 +383,6 @@ module FactPulse
407
383
  # Retrieve the Routing Code data corresponding to the Instance ID.
408
384
  # @param id_instance [String] AFNOR instance ID (UUID)
409
385
  # @param [Hash] opts the optional parameters
410
- # @option opts [Array<String>] :fields Fields of the Routing Code resource
411
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
412
386
  # @return [AFNORRoutingCodePayloadHistoryLegalUnitFacility]
413
387
  def get_routing_code_by_id_instance_proxy_api_v1_afnor_directory_v1_routing_code_id_instance_id_instance_get(id_instance, opts = {})
414
388
  data, _status_code, _headers = get_routing_code_by_id_instance_proxy_api_v1_afnor_directory_v1_routing_code_id_instance_id_instance_get_with_http_info(id_instance, opts)
@@ -419,8 +393,6 @@ module FactPulse
419
393
  # Retrieve the Routing Code data corresponding to the Instance ID.
420
394
  # @param id_instance [String] AFNOR instance ID (UUID)
421
395
  # @param [Hash] opts the optional parameters
422
- # @option opts [Array<String>] :fields Fields of the Routing Code resource
423
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
424
396
  # @return [Array<(AFNORRoutingCodePayloadHistoryLegalUnitFacility, Integer, Hash)>] AFNORRoutingCodePayloadHistoryLegalUnitFacility data, response status code and response headers
425
397
  def get_routing_code_by_id_instance_proxy_api_v1_afnor_directory_v1_routing_code_id_instance_id_instance_get_with_http_info(id_instance, opts = {})
426
398
  if @api_client.config.debugging
@@ -435,13 +407,11 @@ module FactPulse
435
407
 
436
408
  # query parameters
437
409
  query_params = opts[:query_params] || {}
438
- query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
439
410
 
440
411
  # header parameters
441
412
  header_params = opts[:header_params] || {}
442
413
  # HTTP header 'Accept' (if needed)
443
414
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
444
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
445
415
 
446
416
  # form parameters
447
417
  form_params = opts[:form_params] || {}
@@ -453,7 +423,7 @@ module FactPulse
453
423
  return_type = opts[:debug_return_type] || 'AFNORRoutingCodePayloadHistoryLegalUnitFacility'
454
424
 
455
425
  # auth_names
456
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
426
+ auth_names = opts[:debug_auth_names] || []
457
427
 
458
428
  new_options = opts.merge(
459
429
  :operation => :"AFNORPDPPADirectoryServiceApi.get_routing_code_by_id_instance_proxy_api_v1_afnor_directory_v1_routing_code_id_instance_id_instance_get",
@@ -477,9 +447,6 @@ module FactPulse
477
447
  # @param siret [String] 14-digit SIRET number (INSEE establishment identifier)
478
448
  # @param routing_identifier [String] Routing code identifier
479
449
  # @param [Hash] opts the optional parameters
480
- # @option opts [Array<String>] :fields Fields of the Routing Code resource
481
- # @option opts [Array<RoutingCodeInclude>] :include Relations to include in the response.
482
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
483
450
  # @return [AFNORRoutingCodePayloadHistoryLegalUnitFacility]
484
451
  def get_routing_code_by_siret_and_code_proxy_api_v1_afnor_directory_v1_routing_code_siret_siret_code_routing_identifier_get(siret, routing_identifier, opts = {})
485
452
  data, _status_code, _headers = get_routing_code_by_siret_and_code_proxy_api_v1_afnor_directory_v1_routing_code_siret_siret_code_routing_identifier_get_with_http_info(siret, routing_identifier, opts)
@@ -491,9 +458,6 @@ module FactPulse
491
458
  # @param siret [String] 14-digit SIRET number (INSEE establishment identifier)
492
459
  # @param routing_identifier [String] Routing code identifier
493
460
  # @param [Hash] opts the optional parameters
494
- # @option opts [Array<String>] :fields Fields of the Routing Code resource
495
- # @option opts [Array<RoutingCodeInclude>] :include Relations to include in the response.
496
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
497
461
  # @return [Array<(AFNORRoutingCodePayloadHistoryLegalUnitFacility, Integer, Hash)>] AFNORRoutingCodePayloadHistoryLegalUnitFacility data, response status code and response headers
498
462
  def get_routing_code_by_siret_and_code_proxy_api_v1_afnor_directory_v1_routing_code_siret_siret_code_routing_identifier_get_with_http_info(siret, routing_identifier, opts = {})
499
463
  if @api_client.config.debugging
@@ -512,14 +476,11 @@ module FactPulse
512
476
 
513
477
  # query parameters
514
478
  query_params = opts[:query_params] || {}
515
- query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
516
- query_params[:'include'] = @api_client.build_collection_param(opts[:'include'], :multi) if !opts[:'include'].nil?
517
479
 
518
480
  # header parameters
519
481
  header_params = opts[:header_params] || {}
520
482
  # HTTP header 'Accept' (if needed)
521
483
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
522
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
523
484
 
524
485
  # form parameters
525
486
  form_params = opts[:form_params] || {}
@@ -531,7 +492,7 @@ module FactPulse
531
492
  return_type = opts[:debug_return_type] || 'AFNORRoutingCodePayloadHistoryLegalUnitFacility'
532
493
 
533
494
  # auth_names
534
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
495
+ auth_names = opts[:debug_auth_names] || []
535
496
 
536
497
  new_options = opts.merge(
537
498
  :operation => :"AFNORPDPPADirectoryServiceApi.get_routing_code_by_siret_and_code_proxy_api_v1_afnor_directory_v1_routing_code_siret_siret_code_routing_identifier_get",
@@ -554,8 +515,6 @@ module FactPulse
554
515
  # Returns the details of a company (legal unit) identified by the SIREN number passed as a parameter.
555
516
  # @param siren [String] 9-digit SIREN number (INSEE company identifier)
556
517
  # @param [Hash] opts the optional parameters
557
- # @option opts [Array<String>] :fields Fields of the SIREN resource
558
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
559
518
  # @return [AFNORLegalUnitPayloadHistory]
560
519
  def get_siren_by_code_insee_proxy_api_v1_afnor_directory_v1_siren_code_insee_siren_get(siren, opts = {})
561
520
  data, _status_code, _headers = get_siren_by_code_insee_proxy_api_v1_afnor_directory_v1_siren_code_insee_siren_get_with_http_info(siren, opts)
@@ -566,8 +525,6 @@ module FactPulse
566
525
  # Returns the details of a company (legal unit) identified by the SIREN number passed as a parameter.
567
526
  # @param siren [String] 9-digit SIREN number (INSEE company identifier)
568
527
  # @param [Hash] opts the optional parameters
569
- # @option opts [Array<String>] :fields Fields of the SIREN resource
570
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
571
528
  # @return [Array<(AFNORLegalUnitPayloadHistory, Integer, Hash)>] AFNORLegalUnitPayloadHistory data, response status code and response headers
572
529
  def get_siren_by_code_insee_proxy_api_v1_afnor_directory_v1_siren_code_insee_siren_get_with_http_info(siren, opts = {})
573
530
  if @api_client.config.debugging
@@ -582,13 +539,11 @@ module FactPulse
582
539
 
583
540
  # query parameters
584
541
  query_params = opts[:query_params] || {}
585
- query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
586
542
 
587
543
  # header parameters
588
544
  header_params = opts[:header_params] || {}
589
545
  # HTTP header 'Accept' (if needed)
590
546
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
591
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
592
547
 
593
548
  # form parameters
594
549
  form_params = opts[:form_params] || {}
@@ -600,7 +555,7 @@ module FactPulse
600
555
  return_type = opts[:debug_return_type] || 'AFNORLegalUnitPayloadHistory'
601
556
 
602
557
  # auth_names
603
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
558
+ auth_names = opts[:debug_auth_names] || []
604
559
 
605
560
  new_options = opts.merge(
606
561
  :operation => :"AFNORPDPPADirectoryServiceApi.get_siren_by_code_insee_proxy_api_v1_afnor_directory_v1_siren_code_insee_siren_get",
@@ -623,8 +578,6 @@ module FactPulse
623
578
  # Returns the details of a company (legal unit) identified by the id-instance passed as a parameter.
624
579
  # @param id_instance [String] AFNOR instance ID (UUID)
625
580
  # @param [Hash] opts the optional parameters
626
- # @option opts [Array<String>] :fields Fields of the SIREN resource
627
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
628
581
  # @return [AFNORLegalUnitPayloadHistory]
629
582
  def get_siren_by_id_instance_proxy_api_v1_afnor_directory_v1_siren_id_instance_id_instance_get(id_instance, opts = {})
630
583
  data, _status_code, _headers = get_siren_by_id_instance_proxy_api_v1_afnor_directory_v1_siren_id_instance_id_instance_get_with_http_info(id_instance, opts)
@@ -635,8 +588,6 @@ module FactPulse
635
588
  # Returns the details of a company (legal unit) identified by the id-instance passed as a parameter.
636
589
  # @param id_instance [String] AFNOR instance ID (UUID)
637
590
  # @param [Hash] opts the optional parameters
638
- # @option opts [Array<String>] :fields Fields of the SIREN resource
639
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
640
591
  # @return [Array<(AFNORLegalUnitPayloadHistory, Integer, Hash)>] AFNORLegalUnitPayloadHistory data, response status code and response headers
641
592
  def get_siren_by_id_instance_proxy_api_v1_afnor_directory_v1_siren_id_instance_id_instance_get_with_http_info(id_instance, opts = {})
642
593
  if @api_client.config.debugging
@@ -651,13 +602,11 @@ module FactPulse
651
602
 
652
603
  # query parameters
653
604
  query_params = opts[:query_params] || {}
654
- query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
655
605
 
656
606
  # header parameters
657
607
  header_params = opts[:header_params] || {}
658
608
  # HTTP header 'Accept' (if needed)
659
609
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
660
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
661
610
 
662
611
  # form parameters
663
612
  form_params = opts[:form_params] || {}
@@ -669,7 +618,7 @@ module FactPulse
669
618
  return_type = opts[:debug_return_type] || 'AFNORLegalUnitPayloadHistory'
670
619
 
671
620
  # auth_names
672
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
621
+ auth_names = opts[:debug_auth_names] || []
673
622
 
674
623
  new_options = opts.merge(
675
624
  :operation => :"AFNORPDPPADirectoryServiceApi.get_siren_by_id_instance_proxy_api_v1_afnor_directory_v1_siren_id_instance_id_instance_get",
@@ -692,9 +641,6 @@ module FactPulse
692
641
  # Returns the details of a facility associated to a SIRET.
693
642
  # @param siret [String] 14-digit SIRET number (INSEE establishment identifier)
694
643
  # @param [Hash] opts the optional parameters
695
- # @option opts [Array<String>] :fields Fields of a SIRET resource.
696
- # @option opts [Array<SiretInclude>] :include Relations to include in the response.
697
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
698
644
  # @return [AFNORFacilityPayloadHistory]
699
645
  def get_siret_by_code_insee_proxy_api_v1_afnor_directory_v1_siret_code_insee_siret_get(siret, opts = {})
700
646
  data, _status_code, _headers = get_siret_by_code_insee_proxy_api_v1_afnor_directory_v1_siret_code_insee_siret_get_with_http_info(siret, opts)
@@ -705,9 +651,6 @@ module FactPulse
705
651
  # Returns the details of a facility associated to a SIRET.
706
652
  # @param siret [String] 14-digit SIRET number (INSEE establishment identifier)
707
653
  # @param [Hash] opts the optional parameters
708
- # @option opts [Array<String>] :fields Fields of a SIRET resource.
709
- # @option opts [Array<SiretInclude>] :include Relations to include in the response.
710
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
711
654
  # @return [Array<(AFNORFacilityPayloadHistory, Integer, Hash)>] AFNORFacilityPayloadHistory data, response status code and response headers
712
655
  def get_siret_by_code_insee_proxy_api_v1_afnor_directory_v1_siret_code_insee_siret_get_with_http_info(siret, opts = {})
713
656
  if @api_client.config.debugging
@@ -722,14 +665,11 @@ module FactPulse
722
665
 
723
666
  # query parameters
724
667
  query_params = opts[:query_params] || {}
725
- query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
726
- query_params[:'include'] = @api_client.build_collection_param(opts[:'include'], :multi) if !opts[:'include'].nil?
727
668
 
728
669
  # header parameters
729
670
  header_params = opts[:header_params] || {}
730
671
  # HTTP header 'Accept' (if needed)
731
672
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
732
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
733
673
 
734
674
  # form parameters
735
675
  form_params = opts[:form_params] || {}
@@ -741,7 +681,7 @@ module FactPulse
741
681
  return_type = opts[:debug_return_type] || 'AFNORFacilityPayloadHistory'
742
682
 
743
683
  # auth_names
744
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
684
+ auth_names = opts[:debug_auth_names] || []
745
685
 
746
686
  new_options = opts.merge(
747
687
  :operation => :"AFNORPDPPADirectoryServiceApi.get_siret_by_code_insee_proxy_api_v1_afnor_directory_v1_siret_code_insee_siret_get",
@@ -764,8 +704,6 @@ module FactPulse
764
704
  # Returns the details of a facility according to an instance-id.
765
705
  # @param id_instance [String] AFNOR instance ID (UUID)
766
706
  # @param [Hash] opts the optional parameters
767
- # @option opts [Array<String>] :fields Fields of a SIRET resource.
768
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
769
707
  # @return [AFNORFacilityPayloadHistory]
770
708
  def get_siret_by_id_instance_proxy_api_v1_afnor_directory_v1_siret_id_instance_id_instance_get(id_instance, opts = {})
771
709
  data, _status_code, _headers = get_siret_by_id_instance_proxy_api_v1_afnor_directory_v1_siret_id_instance_id_instance_get_with_http_info(id_instance, opts)
@@ -776,8 +714,6 @@ module FactPulse
776
714
  # Returns the details of a facility according to an instance-id.
777
715
  # @param id_instance [String] AFNOR instance ID (UUID)
778
716
  # @param [Hash] opts the optional parameters
779
- # @option opts [Array<String>] :fields Fields of a SIRET resource.
780
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
781
717
  # @return [Array<(AFNORFacilityPayloadHistory, Integer, Hash)>] AFNORFacilityPayloadHistory data, response status code and response headers
782
718
  def get_siret_by_id_instance_proxy_api_v1_afnor_directory_v1_siret_id_instance_id_instance_get_with_http_info(id_instance, opts = {})
783
719
  if @api_client.config.debugging
@@ -792,13 +728,11 @@ module FactPulse
792
728
 
793
729
  # query parameters
794
730
  query_params = opts[:query_params] || {}
795
- query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
796
731
 
797
732
  # header parameters
798
733
  header_params = opts[:header_params] || {}
799
734
  # HTTP header 'Accept' (if needed)
800
735
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
801
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
802
736
 
803
737
  # form parameters
804
738
  form_params = opts[:form_params] || {}
@@ -810,7 +744,7 @@ module FactPulse
810
744
  return_type = opts[:debug_return_type] || 'AFNORFacilityPayloadHistory'
811
745
 
812
746
  # auth_names
813
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
747
+ auth_names = opts[:debug_auth_names] || []
814
748
 
815
749
  new_options = opts.merge(
816
750
  :operation => :"AFNORPDPPADirectoryServiceApi.get_siret_by_id_instance_proxy_api_v1_afnor_directory_v1_siret_id_instance_id_instance_get",
@@ -833,7 +767,6 @@ module FactPulse
833
767
  # Partially updates a directory line.
834
768
  # @param id_instance [String] AFNOR instance ID (UUID)
835
769
  # @param [Hash] opts the optional parameters
836
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
837
770
  # @return [AFNORDirectoryLinePost201Response]
838
771
  def patch_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_id_instance_id_instance_patch(id_instance, opts = {})
839
772
  data, _status_code, _headers = patch_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_id_instance_id_instance_patch_with_http_info(id_instance, opts)
@@ -844,7 +777,6 @@ module FactPulse
844
777
  # Partially updates a directory line.
845
778
  # @param id_instance [String] AFNOR instance ID (UUID)
846
779
  # @param [Hash] opts the optional parameters
847
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
848
780
  # @return [Array<(AFNORDirectoryLinePost201Response, Integer, Hash)>] AFNORDirectoryLinePost201Response data, response status code and response headers
849
781
  def patch_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_id_instance_id_instance_patch_with_http_info(id_instance, opts = {})
850
782
  if @api_client.config.debugging
@@ -864,7 +796,6 @@ module FactPulse
864
796
  header_params = opts[:header_params] || {}
865
797
  # HTTP header 'Accept' (if needed)
866
798
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
867
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
868
799
 
869
800
  # form parameters
870
801
  form_params = opts[:form_params] || {}
@@ -876,7 +807,7 @@ module FactPulse
876
807
  return_type = opts[:debug_return_type] || 'AFNORDirectoryLinePost201Response'
877
808
 
878
809
  # auth_names
879
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
810
+ auth_names = opts[:debug_auth_names] || []
880
811
 
881
812
  new_options = opts.merge(
882
813
  :operation => :"AFNORPDPPADirectoryServiceApi.patch_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_id_instance_id_instance_patch",
@@ -899,7 +830,6 @@ module FactPulse
899
830
  # Partially update a private routing code.
900
831
  # @param id_instance [String] AFNOR instance ID (UUID)
901
832
  # @param [Hash] opts the optional parameters
902
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
903
833
  # @return [AFNORRoutingCodePost201Response]
904
834
  def patch_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_id_instance_id_instance_patch(id_instance, opts = {})
905
835
  data, _status_code, _headers = patch_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_id_instance_id_instance_patch_with_http_info(id_instance, opts)
@@ -910,7 +840,6 @@ module FactPulse
910
840
  # Partially update a private routing code.
911
841
  # @param id_instance [String] AFNOR instance ID (UUID)
912
842
  # @param [Hash] opts the optional parameters
913
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
914
843
  # @return [Array<(AFNORRoutingCodePost201Response, Integer, Hash)>] AFNORRoutingCodePost201Response data, response status code and response headers
915
844
  def patch_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_id_instance_id_instance_patch_with_http_info(id_instance, opts = {})
916
845
  if @api_client.config.debugging
@@ -930,7 +859,6 @@ module FactPulse
930
859
  header_params = opts[:header_params] || {}
931
860
  # HTTP header 'Accept' (if needed)
932
861
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
933
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
934
862
 
935
863
  # form parameters
936
864
  form_params = opts[:form_params] || {}
@@ -942,7 +870,7 @@ module FactPulse
942
870
  return_type = opts[:debug_return_type] || 'AFNORRoutingCodePost201Response'
943
871
 
944
872
  # auth_names
945
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
873
+ auth_names = opts[:debug_auth_names] || []
946
874
 
947
875
  new_options = opts.merge(
948
876
  :operation => :"AFNORPDPPADirectoryServiceApi.patch_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_id_instance_id_instance_patch",
@@ -965,7 +893,6 @@ module FactPulse
965
893
  # Completely update a private routing code.
966
894
  # @param id_instance [String] AFNOR instance ID (UUID)
967
895
  # @param [Hash] opts the optional parameters
968
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
969
896
  # @return [AFNORRoutingCodePost201Response]
970
897
  def put_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_id_instance_id_instance_put(id_instance, opts = {})
971
898
  data, _status_code, _headers = put_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_id_instance_id_instance_put_with_http_info(id_instance, opts)
@@ -976,7 +903,6 @@ module FactPulse
976
903
  # Completely update a private routing code.
977
904
  # @param id_instance [String] AFNOR instance ID (UUID)
978
905
  # @param [Hash] opts the optional parameters
979
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
980
906
  # @return [Array<(AFNORRoutingCodePost201Response, Integer, Hash)>] AFNORRoutingCodePost201Response data, response status code and response headers
981
907
  def put_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_id_instance_id_instance_put_with_http_info(id_instance, opts = {})
982
908
  if @api_client.config.debugging
@@ -996,7 +922,6 @@ module FactPulse
996
922
  header_params = opts[:header_params] || {}
997
923
  # HTTP header 'Accept' (if needed)
998
924
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
999
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
1000
925
 
1001
926
  # form parameters
1002
927
  form_params = opts[:form_params] || {}
@@ -1008,7 +933,7 @@ module FactPulse
1008
933
  return_type = opts[:debug_return_type] || 'AFNORRoutingCodePost201Response'
1009
934
 
1010
935
  # auth_names
1011
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
936
+ auth_names = opts[:debug_auth_names] || []
1012
937
 
1013
938
  new_options = opts.merge(
1014
939
  :operation => :"AFNORPDPPADirectoryServiceApi.put_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_id_instance_id_instance_put",
@@ -1030,7 +955,6 @@ module FactPulse
1030
955
  # Search for a directory line
1031
956
  # Search for directory lines that meet all the criteria passed as parameters and return the results in the desired format.
1032
957
  # @param [Hash] opts the optional parameters
1033
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
1034
958
  # @return [AFNORDirectoryLineSearchPost200Response]
1035
959
  def search_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_search_post(opts = {})
1036
960
  data, _status_code, _headers = search_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_search_post_with_http_info(opts)
@@ -1040,7 +964,6 @@ module FactPulse
1040
964
  # Search for a directory line
1041
965
  # Search for directory lines that meet all the criteria passed as parameters and return the results in the desired format.
1042
966
  # @param [Hash] opts the optional parameters
1043
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
1044
967
  # @return [Array<(AFNORDirectoryLineSearchPost200Response, Integer, Hash)>] AFNORDirectoryLineSearchPost200Response data, response status code and response headers
1045
968
  def search_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_search_post_with_http_info(opts = {})
1046
969
  if @api_client.config.debugging
@@ -1056,7 +979,6 @@ module FactPulse
1056
979
  header_params = opts[:header_params] || {}
1057
980
  # HTTP header 'Accept' (if needed)
1058
981
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1059
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
1060
982
 
1061
983
  # form parameters
1062
984
  form_params = opts[:form_params] || {}
@@ -1068,7 +990,7 @@ module FactPulse
1068
990
  return_type = opts[:debug_return_type] || 'AFNORDirectoryLineSearchPost200Response'
1069
991
 
1070
992
  # auth_names
1071
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
993
+ auth_names = opts[:debug_auth_names] || []
1072
994
 
1073
995
  new_options = opts.merge(
1074
996
  :operation => :"AFNORPDPPADirectoryServiceApi.search_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_search_post",
@@ -1090,7 +1012,6 @@ module FactPulse
1090
1012
  # Search for a routing code
1091
1013
  # Search for routing codes that meet all the criteria passed as parameters and return the routing codes in the desired format.
1092
1014
  # @param [Hash] opts the optional parameters
1093
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
1094
1015
  # @return [AFNORRoutingCodeSearchPost200Response]
1095
1016
  def search_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_search_post(opts = {})
1096
1017
  data, _status_code, _headers = search_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_search_post_with_http_info(opts)
@@ -1100,7 +1021,6 @@ module FactPulse
1100
1021
  # Search for a routing code
1101
1022
  # Search for routing codes that meet all the criteria passed as parameters and return the routing codes in the desired format.
1102
1023
  # @param [Hash] opts the optional parameters
1103
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
1104
1024
  # @return [Array<(AFNORRoutingCodeSearchPost200Response, Integer, Hash)>] AFNORRoutingCodeSearchPost200Response data, response status code and response headers
1105
1025
  def search_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_search_post_with_http_info(opts = {})
1106
1026
  if @api_client.config.debugging
@@ -1116,7 +1036,6 @@ module FactPulse
1116
1036
  header_params = opts[:header_params] || {}
1117
1037
  # HTTP header 'Accept' (if needed)
1118
1038
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1119
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
1120
1039
 
1121
1040
  # form parameters
1122
1041
  form_params = opts[:form_params] || {}
@@ -1128,7 +1047,7 @@ module FactPulse
1128
1047
  return_type = opts[:debug_return_type] || 'AFNORRoutingCodeSearchPost200Response'
1129
1048
 
1130
1049
  # auth_names
1131
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
1050
+ auth_names = opts[:debug_auth_names] || []
1132
1051
 
1133
1052
  new_options = opts.merge(
1134
1053
  :operation => :"AFNORPDPPADirectoryServiceApi.search_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_search_post",
@@ -1150,7 +1069,6 @@ module FactPulse
1150
1069
  # SIREN search (or legal unit)
1151
1070
  # Multi-criteria company search.
1152
1071
  # @param [Hash] opts the optional parameters
1153
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
1154
1072
  # @return [AFNORSirenSearchPost200Response]
1155
1073
  def search_siren_proxy_api_v1_afnor_directory_v1_siren_search_post(opts = {})
1156
1074
  data, _status_code, _headers = search_siren_proxy_api_v1_afnor_directory_v1_siren_search_post_with_http_info(opts)
@@ -1160,7 +1078,6 @@ module FactPulse
1160
1078
  # SIREN search (or legal unit)
1161
1079
  # Multi-criteria company search.
1162
1080
  # @param [Hash] opts the optional parameters
1163
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
1164
1081
  # @return [Array<(AFNORSirenSearchPost200Response, Integer, Hash)>] AFNORSirenSearchPost200Response data, response status code and response headers
1165
1082
  def search_siren_proxy_api_v1_afnor_directory_v1_siren_search_post_with_http_info(opts = {})
1166
1083
  if @api_client.config.debugging
@@ -1176,7 +1093,6 @@ module FactPulse
1176
1093
  header_params = opts[:header_params] || {}
1177
1094
  # HTTP header 'Accept' (if needed)
1178
1095
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1179
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
1180
1096
 
1181
1097
  # form parameters
1182
1098
  form_params = opts[:form_params] || {}
@@ -1188,7 +1104,7 @@ module FactPulse
1188
1104
  return_type = opts[:debug_return_type] || 'AFNORSirenSearchPost200Response'
1189
1105
 
1190
1106
  # auth_names
1191
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
1107
+ auth_names = opts[:debug_auth_names] || []
1192
1108
 
1193
1109
  new_options = opts.merge(
1194
1110
  :operation => :"AFNORPDPPADirectoryServiceApi.search_siren_proxy_api_v1_afnor_directory_v1_siren_search_post",
@@ -1210,7 +1126,6 @@ module FactPulse
1210
1126
  # Search for a SIRET (facility)
1211
1127
  # Multi-criteria search for facilities.
1212
1128
  # @param [Hash] opts the optional parameters
1213
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
1214
1129
  # @return [AFNORSiretSearchPost200Response]
1215
1130
  def search_siret_proxy_api_v1_afnor_directory_v1_siret_search_post(opts = {})
1216
1131
  data, _status_code, _headers = search_siret_proxy_api_v1_afnor_directory_v1_siret_search_post_with_http_info(opts)
@@ -1220,7 +1135,6 @@ module FactPulse
1220
1135
  # Search for a SIRET (facility)
1221
1136
  # Multi-criteria search for facilities.
1222
1137
  # @param [Hash] opts the optional parameters
1223
- # @option opts [AcceptLanguage] :accept_language Specifies the language in which the resource is requested.
1224
1138
  # @return [Array<(AFNORSiretSearchPost200Response, Integer, Hash)>] AFNORSiretSearchPost200Response data, response status code and response headers
1225
1139
  def search_siret_proxy_api_v1_afnor_directory_v1_siret_search_post_with_http_info(opts = {})
1226
1140
  if @api_client.config.debugging
@@ -1236,7 +1150,6 @@ module FactPulse
1236
1150
  header_params = opts[:header_params] || {}
1237
1151
  # HTTP header 'Accept' (if needed)
1238
1152
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
1239
- header_params[:'Accept-Language'] = opts[:'accept_language'] if !opts[:'accept_language'].nil?
1240
1153
 
1241
1154
  # form parameters
1242
1155
  form_params = opts[:form_params] || {}
@@ -1248,7 +1161,7 @@ module FactPulse
1248
1161
  return_type = opts[:debug_return_type] || 'AFNORSiretSearchPost200Response'
1249
1162
 
1250
1163
  # auth_names
1251
- auth_names = opts[:debug_auth_names] || ['HTTPBearer']
1164
+ auth_names = opts[:debug_auth_names] || []
1252
1165
 
1253
1166
  new_options = opts.merge(
1254
1167
  :operation => :"AFNORPDPPADirectoryServiceApi.search_siret_proxy_api_v1_afnor_directory_v1_siret_search_post",