factpulse 2.0.3 → 2.0.4
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 +4 -4
- data/CHANGELOG.md +3 -3
- data/Gemfile.lock +1 -1
- data/docs/AFNORPDPPADirectoryServiceApi.md +108 -18
- data/lib/factpulse/api/afnorpdppa_directory_service_api.rb +18 -18
- data/lib/factpulse/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6f29b9764a9a05d9e61c18a866492fa1cdb4fb712d597ae47590c62299a7771b
|
|
4
|
+
data.tar.gz: 46f35585a1760ab2d95cab89282de2f52a468b12e61f1fb0de6ed2d8f4aa0aa6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0be77b57f8d4fa840473e6b8c9057c9354d2e4954b88a4c9758d6ed3d0134fd2d487e8c27fd969be6985c5258a5542af1723d2ca23428bbadb4f4888196513cf
|
|
7
|
+
data.tar.gz: 35166d64803436f6d11ca692927eb4c65cf373539b1b97a0be2db47734ebd73c6fc7e076171755d06199c17cd8a52226da4ce7542c1c8fc37335fc1b25895df7
|
data/CHANGELOG.md
CHANGED
|
@@ -7,7 +7,7 @@ et ce projet adhère au [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
-
## [2.0.
|
|
10
|
+
## [2.0.4] - 2025-11-18
|
|
11
11
|
|
|
12
12
|
### Added
|
|
13
13
|
- Version initiale du SDK ruby
|
|
@@ -24,5 +24,5 @@ et ce projet adhère au [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
24
24
|
- Guide d'authentification JWT
|
|
25
25
|
- Configuration avancée (timeout, proxy, debug)
|
|
26
26
|
|
|
27
|
-
[Unreleased]: https://github.com/factpulse/sdk-ruby/compare/v2.0.
|
|
28
|
-
[2.0.
|
|
27
|
+
[Unreleased]: https://github.com/factpulse/sdk-ruby/compare/v2.0.4...HEAD
|
|
28
|
+
[2.0.4]: https://github.com/factpulse/sdk-ruby/releases/tag/v2.0.4
|
data/Gemfile.lock
CHANGED
|
@@ -38,6 +38,11 @@ Créer une ligne dans l'annuaire
|
|
|
38
38
|
```ruby
|
|
39
39
|
require 'time'
|
|
40
40
|
require 'factpulse'
|
|
41
|
+
# setup authorization
|
|
42
|
+
FactPulse.configure do |config|
|
|
43
|
+
# Configure Bearer authorization: HTTPBearer
|
|
44
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
45
|
+
end
|
|
41
46
|
|
|
42
47
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
43
48
|
|
|
@@ -78,7 +83,7 @@ This endpoint does not need any parameter.
|
|
|
78
83
|
|
|
79
84
|
### Authorization
|
|
80
85
|
|
|
81
|
-
|
|
86
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
82
87
|
|
|
83
88
|
### HTTP request headers
|
|
84
89
|
|
|
@@ -99,6 +104,11 @@ Créer un code de routage dans l'annuaire
|
|
|
99
104
|
```ruby
|
|
100
105
|
require 'time'
|
|
101
106
|
require 'factpulse'
|
|
107
|
+
# setup authorization
|
|
108
|
+
FactPulse.configure do |config|
|
|
109
|
+
# Configure Bearer authorization: HTTPBearer
|
|
110
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
111
|
+
end
|
|
102
112
|
|
|
103
113
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
104
114
|
|
|
@@ -139,7 +149,7 @@ This endpoint does not need any parameter.
|
|
|
139
149
|
|
|
140
150
|
### Authorization
|
|
141
151
|
|
|
142
|
-
|
|
152
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
143
153
|
|
|
144
154
|
### HTTP request headers
|
|
145
155
|
|
|
@@ -160,6 +170,11 @@ Supprimer une ligne d'annuaire
|
|
|
160
170
|
```ruby
|
|
161
171
|
require 'time'
|
|
162
172
|
require 'factpulse'
|
|
173
|
+
# setup authorization
|
|
174
|
+
FactPulse.configure do |config|
|
|
175
|
+
# Configure Bearer authorization: HTTPBearer
|
|
176
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
177
|
+
end
|
|
163
178
|
|
|
164
179
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
165
180
|
id_instance = 'id_instance_example' # String |
|
|
@@ -203,7 +218,7 @@ end
|
|
|
203
218
|
|
|
204
219
|
### Authorization
|
|
205
220
|
|
|
206
|
-
|
|
221
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
207
222
|
|
|
208
223
|
### HTTP request headers
|
|
209
224
|
|
|
@@ -285,6 +300,11 @@ Obtenir une ligne d'annuaire identifiée par un identifiant d'adressage
|
|
|
285
300
|
```ruby
|
|
286
301
|
require 'time'
|
|
287
302
|
require 'factpulse'
|
|
303
|
+
# setup authorization
|
|
304
|
+
FactPulse.configure do |config|
|
|
305
|
+
# Configure Bearer authorization: HTTPBearer
|
|
306
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
307
|
+
end
|
|
288
308
|
|
|
289
309
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
290
310
|
addressing_identifier = 'addressing_identifier_example' # String |
|
|
@@ -328,7 +348,7 @@ end
|
|
|
328
348
|
|
|
329
349
|
### Authorization
|
|
330
350
|
|
|
331
|
-
|
|
351
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
332
352
|
|
|
333
353
|
### HTTP request headers
|
|
334
354
|
|
|
@@ -349,6 +369,11 @@ Obtenir une ligne d'annuaire identifiée par son idInstance
|
|
|
349
369
|
```ruby
|
|
350
370
|
require 'time'
|
|
351
371
|
require 'factpulse'
|
|
372
|
+
# setup authorization
|
|
373
|
+
FactPulse.configure do |config|
|
|
374
|
+
# Configure Bearer authorization: HTTPBearer
|
|
375
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
376
|
+
end
|
|
352
377
|
|
|
353
378
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
354
379
|
id_instance = 'id_instance_example' # String |
|
|
@@ -392,7 +417,7 @@ end
|
|
|
392
417
|
|
|
393
418
|
### Authorization
|
|
394
419
|
|
|
395
|
-
|
|
420
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
396
421
|
|
|
397
422
|
### HTTP request headers
|
|
398
423
|
|
|
@@ -413,6 +438,11 @@ Obtenir un code de routage identifié par son idInstance
|
|
|
413
438
|
```ruby
|
|
414
439
|
require 'time'
|
|
415
440
|
require 'factpulse'
|
|
441
|
+
# setup authorization
|
|
442
|
+
FactPulse.configure do |config|
|
|
443
|
+
# Configure Bearer authorization: HTTPBearer
|
|
444
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
445
|
+
end
|
|
416
446
|
|
|
417
447
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
418
448
|
id_instance = 'id_instance_example' # String |
|
|
@@ -456,7 +486,7 @@ end
|
|
|
456
486
|
|
|
457
487
|
### Authorization
|
|
458
488
|
|
|
459
|
-
|
|
489
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
460
490
|
|
|
461
491
|
### HTTP request headers
|
|
462
492
|
|
|
@@ -477,6 +507,11 @@ Consulter un code de routage identifié par SIRET et identifiant de routage
|
|
|
477
507
|
```ruby
|
|
478
508
|
require 'time'
|
|
479
509
|
require 'factpulse'
|
|
510
|
+
# setup authorization
|
|
511
|
+
FactPulse.configure do |config|
|
|
512
|
+
# Configure Bearer authorization: HTTPBearer
|
|
513
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
514
|
+
end
|
|
480
515
|
|
|
481
516
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
482
517
|
siret = 'siret_example' # String |
|
|
@@ -522,7 +557,7 @@ end
|
|
|
522
557
|
|
|
523
558
|
### Authorization
|
|
524
559
|
|
|
525
|
-
|
|
560
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
526
561
|
|
|
527
562
|
### HTTP request headers
|
|
528
563
|
|
|
@@ -543,6 +578,11 @@ Retourne les détails d'une entreprise (unité légale) identifiée par son num
|
|
|
543
578
|
```ruby
|
|
544
579
|
require 'time'
|
|
545
580
|
require 'factpulse'
|
|
581
|
+
# setup authorization
|
|
582
|
+
FactPulse.configure do |config|
|
|
583
|
+
# Configure Bearer authorization: HTTPBearer
|
|
584
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
585
|
+
end
|
|
546
586
|
|
|
547
587
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
548
588
|
siren = 'siren_example' # String |
|
|
@@ -586,7 +626,7 @@ end
|
|
|
586
626
|
|
|
587
627
|
### Authorization
|
|
588
628
|
|
|
589
|
-
|
|
629
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
590
630
|
|
|
591
631
|
### HTTP request headers
|
|
592
632
|
|
|
@@ -607,6 +647,11 @@ Obtenir une entreprise (unité légale) identifiée par son idInstance
|
|
|
607
647
|
```ruby
|
|
608
648
|
require 'time'
|
|
609
649
|
require 'factpulse'
|
|
650
|
+
# setup authorization
|
|
651
|
+
FactPulse.configure do |config|
|
|
652
|
+
# Configure Bearer authorization: HTTPBearer
|
|
653
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
654
|
+
end
|
|
610
655
|
|
|
611
656
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
612
657
|
id_instance = 'id_instance_example' # String |
|
|
@@ -650,7 +695,7 @@ end
|
|
|
650
695
|
|
|
651
696
|
### Authorization
|
|
652
697
|
|
|
653
|
-
|
|
698
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
654
699
|
|
|
655
700
|
### HTTP request headers
|
|
656
701
|
|
|
@@ -671,6 +716,11 @@ Obtenir un établissement identifié par son numéro SIRET
|
|
|
671
716
|
```ruby
|
|
672
717
|
require 'time'
|
|
673
718
|
require 'factpulse'
|
|
719
|
+
# setup authorization
|
|
720
|
+
FactPulse.configure do |config|
|
|
721
|
+
# Configure Bearer authorization: HTTPBearer
|
|
722
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
723
|
+
end
|
|
674
724
|
|
|
675
725
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
676
726
|
siret = 'siret_example' # String |
|
|
@@ -714,7 +764,7 @@ end
|
|
|
714
764
|
|
|
715
765
|
### Authorization
|
|
716
766
|
|
|
717
|
-
|
|
767
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
718
768
|
|
|
719
769
|
### HTTP request headers
|
|
720
770
|
|
|
@@ -735,6 +785,11 @@ Obtenir un établissement identifié par son idInstance
|
|
|
735
785
|
```ruby
|
|
736
786
|
require 'time'
|
|
737
787
|
require 'factpulse'
|
|
788
|
+
# setup authorization
|
|
789
|
+
FactPulse.configure do |config|
|
|
790
|
+
# Configure Bearer authorization: HTTPBearer
|
|
791
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
792
|
+
end
|
|
738
793
|
|
|
739
794
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
740
795
|
id_instance = 'id_instance_example' # String |
|
|
@@ -778,7 +833,7 @@ end
|
|
|
778
833
|
|
|
779
834
|
### Authorization
|
|
780
835
|
|
|
781
|
-
|
|
836
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
782
837
|
|
|
783
838
|
### HTTP request headers
|
|
784
839
|
|
|
@@ -799,6 +854,11 @@ Mettre à jour partiellement une ligne d'annuaire
|
|
|
799
854
|
```ruby
|
|
800
855
|
require 'time'
|
|
801
856
|
require 'factpulse'
|
|
857
|
+
# setup authorization
|
|
858
|
+
FactPulse.configure do |config|
|
|
859
|
+
# Configure Bearer authorization: HTTPBearer
|
|
860
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
861
|
+
end
|
|
802
862
|
|
|
803
863
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
804
864
|
id_instance = 'id_instance_example' # String |
|
|
@@ -842,7 +902,7 @@ end
|
|
|
842
902
|
|
|
843
903
|
### Authorization
|
|
844
904
|
|
|
845
|
-
|
|
905
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
846
906
|
|
|
847
907
|
### HTTP request headers
|
|
848
908
|
|
|
@@ -863,6 +923,11 @@ Mettre à jour partiellement un code de routage privé
|
|
|
863
923
|
```ruby
|
|
864
924
|
require 'time'
|
|
865
925
|
require 'factpulse'
|
|
926
|
+
# setup authorization
|
|
927
|
+
FactPulse.configure do |config|
|
|
928
|
+
# Configure Bearer authorization: HTTPBearer
|
|
929
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
930
|
+
end
|
|
866
931
|
|
|
867
932
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
868
933
|
id_instance = 'id_instance_example' # String |
|
|
@@ -906,7 +971,7 @@ end
|
|
|
906
971
|
|
|
907
972
|
### Authorization
|
|
908
973
|
|
|
909
|
-
|
|
974
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
910
975
|
|
|
911
976
|
### HTTP request headers
|
|
912
977
|
|
|
@@ -927,6 +992,11 @@ Mettre à jour complètement un code de routage privé
|
|
|
927
992
|
```ruby
|
|
928
993
|
require 'time'
|
|
929
994
|
require 'factpulse'
|
|
995
|
+
# setup authorization
|
|
996
|
+
FactPulse.configure do |config|
|
|
997
|
+
# Configure Bearer authorization: HTTPBearer
|
|
998
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
999
|
+
end
|
|
930
1000
|
|
|
931
1001
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
932
1002
|
id_instance = 'id_instance_example' # String |
|
|
@@ -970,7 +1040,7 @@ end
|
|
|
970
1040
|
|
|
971
1041
|
### Authorization
|
|
972
1042
|
|
|
973
|
-
|
|
1043
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
974
1044
|
|
|
975
1045
|
### HTTP request headers
|
|
976
1046
|
|
|
@@ -991,6 +1061,11 @@ Rechercher des lignes d'annuaire selon des critères
|
|
|
991
1061
|
```ruby
|
|
992
1062
|
require 'time'
|
|
993
1063
|
require 'factpulse'
|
|
1064
|
+
# setup authorization
|
|
1065
|
+
FactPulse.configure do |config|
|
|
1066
|
+
# Configure Bearer authorization: HTTPBearer
|
|
1067
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
1068
|
+
end
|
|
994
1069
|
|
|
995
1070
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
996
1071
|
|
|
@@ -1031,7 +1106,7 @@ This endpoint does not need any parameter.
|
|
|
1031
1106
|
|
|
1032
1107
|
### Authorization
|
|
1033
1108
|
|
|
1034
|
-
|
|
1109
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
1035
1110
|
|
|
1036
1111
|
### HTTP request headers
|
|
1037
1112
|
|
|
@@ -1052,6 +1127,11 @@ Rechercher des codes de routage selon des critères
|
|
|
1052
1127
|
```ruby
|
|
1053
1128
|
require 'time'
|
|
1054
1129
|
require 'factpulse'
|
|
1130
|
+
# setup authorization
|
|
1131
|
+
FactPulse.configure do |config|
|
|
1132
|
+
# Configure Bearer authorization: HTTPBearer
|
|
1133
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
1134
|
+
end
|
|
1055
1135
|
|
|
1056
1136
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
1057
1137
|
|
|
@@ -1092,7 +1172,7 @@ This endpoint does not need any parameter.
|
|
|
1092
1172
|
|
|
1093
1173
|
### Authorization
|
|
1094
1174
|
|
|
1095
|
-
|
|
1175
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
1096
1176
|
|
|
1097
1177
|
### HTTP request headers
|
|
1098
1178
|
|
|
@@ -1113,6 +1193,11 @@ Recherche multi-critères d'entreprises (unités légales)
|
|
|
1113
1193
|
```ruby
|
|
1114
1194
|
require 'time'
|
|
1115
1195
|
require 'factpulse'
|
|
1196
|
+
# setup authorization
|
|
1197
|
+
FactPulse.configure do |config|
|
|
1198
|
+
# Configure Bearer authorization: HTTPBearer
|
|
1199
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
1200
|
+
end
|
|
1116
1201
|
|
|
1117
1202
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
1118
1203
|
|
|
@@ -1153,7 +1238,7 @@ This endpoint does not need any parameter.
|
|
|
1153
1238
|
|
|
1154
1239
|
### Authorization
|
|
1155
1240
|
|
|
1156
|
-
|
|
1241
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
1157
1242
|
|
|
1158
1243
|
### HTTP request headers
|
|
1159
1244
|
|
|
@@ -1174,6 +1259,11 @@ Recherche multi-critères d'établissements
|
|
|
1174
1259
|
```ruby
|
|
1175
1260
|
require 'time'
|
|
1176
1261
|
require 'factpulse'
|
|
1262
|
+
# setup authorization
|
|
1263
|
+
FactPulse.configure do |config|
|
|
1264
|
+
# Configure Bearer authorization: HTTPBearer
|
|
1265
|
+
config.access_token = 'YOUR_BEARER_TOKEN'
|
|
1266
|
+
end
|
|
1177
1267
|
|
|
1178
1268
|
api_instance = FactPulse::AFNORPDPPADirectoryServiceApi.new
|
|
1179
1269
|
|
|
@@ -1214,7 +1304,7 @@ This endpoint does not need any parameter.
|
|
|
1214
1304
|
|
|
1215
1305
|
### Authorization
|
|
1216
1306
|
|
|
1217
|
-
|
|
1307
|
+
[HTTPBearer](../README.md#HTTPBearer)
|
|
1218
1308
|
|
|
1219
1309
|
### HTTP request headers
|
|
1220
1310
|
|
|
@@ -57,7 +57,7 @@ module FactPulse
|
|
|
57
57
|
return_type = opts[:debug_return_type] || 'Object'
|
|
58
58
|
|
|
59
59
|
# auth_names
|
|
60
|
-
auth_names = opts[:debug_auth_names] || []
|
|
60
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
61
61
|
|
|
62
62
|
new_options = opts.merge(
|
|
63
63
|
:operation => :"AFNORPDPPADirectoryServiceApi.create_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_post",
|
|
@@ -114,7 +114,7 @@ module FactPulse
|
|
|
114
114
|
return_type = opts[:debug_return_type] || 'Object'
|
|
115
115
|
|
|
116
116
|
# auth_names
|
|
117
|
-
auth_names = opts[:debug_auth_names] || []
|
|
117
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
118
118
|
|
|
119
119
|
new_options = opts.merge(
|
|
120
120
|
:operation => :"AFNORPDPPADirectoryServiceApi.create_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_post",
|
|
@@ -177,7 +177,7 @@ module FactPulse
|
|
|
177
177
|
return_type = opts[:debug_return_type] || 'Object'
|
|
178
178
|
|
|
179
179
|
# auth_names
|
|
180
|
-
auth_names = opts[:debug_auth_names] || []
|
|
180
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
181
181
|
|
|
182
182
|
new_options = opts.merge(
|
|
183
183
|
:operation => :"AFNORPDPPADirectoryServiceApi.delete_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_id_instance_id_instance_delete",
|
|
@@ -297,7 +297,7 @@ module FactPulse
|
|
|
297
297
|
return_type = opts[:debug_return_type] || 'Object'
|
|
298
298
|
|
|
299
299
|
# auth_names
|
|
300
|
-
auth_names = opts[:debug_auth_names] || []
|
|
300
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
301
301
|
|
|
302
302
|
new_options = opts.merge(
|
|
303
303
|
:operation => :"AFNORPDPPADirectoryServiceApi.get_directory_line_by_code_proxy_api_v1_afnor_directory_v1_directory_line_code_addressing_identifier_get",
|
|
@@ -360,7 +360,7 @@ module FactPulse
|
|
|
360
360
|
return_type = opts[:debug_return_type] || 'Object'
|
|
361
361
|
|
|
362
362
|
# auth_names
|
|
363
|
-
auth_names = opts[:debug_auth_names] || []
|
|
363
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
364
364
|
|
|
365
365
|
new_options = opts.merge(
|
|
366
366
|
:operation => :"AFNORPDPPADirectoryServiceApi.get_directory_line_by_id_instance_proxy_api_v1_afnor_directory_v1_directory_line_id_instance_id_instance_get",
|
|
@@ -423,7 +423,7 @@ module FactPulse
|
|
|
423
423
|
return_type = opts[:debug_return_type] || 'Object'
|
|
424
424
|
|
|
425
425
|
# auth_names
|
|
426
|
-
auth_names = opts[:debug_auth_names] || []
|
|
426
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
427
427
|
|
|
428
428
|
new_options = opts.merge(
|
|
429
429
|
:operation => :"AFNORPDPPADirectoryServiceApi.get_routing_code_by_id_instance_proxy_api_v1_afnor_directory_v1_routing_code_id_instance_id_instance_get",
|
|
@@ -492,7 +492,7 @@ module FactPulse
|
|
|
492
492
|
return_type = opts[:debug_return_type] || 'Object'
|
|
493
493
|
|
|
494
494
|
# auth_names
|
|
495
|
-
auth_names = opts[:debug_auth_names] || []
|
|
495
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
496
496
|
|
|
497
497
|
new_options = opts.merge(
|
|
498
498
|
:operation => :"AFNORPDPPADirectoryServiceApi.get_routing_code_by_siret_and_code_proxy_api_v1_afnor_directory_v1_routing_code_siret_siret_code_routing_identifier_get",
|
|
@@ -555,7 +555,7 @@ module FactPulse
|
|
|
555
555
|
return_type = opts[:debug_return_type] || 'Object'
|
|
556
556
|
|
|
557
557
|
# auth_names
|
|
558
|
-
auth_names = opts[:debug_auth_names] || []
|
|
558
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
559
559
|
|
|
560
560
|
new_options = opts.merge(
|
|
561
561
|
:operation => :"AFNORPDPPADirectoryServiceApi.get_siren_by_code_insee_proxy_api_v1_afnor_directory_v1_siren_code_insee_siren_get",
|
|
@@ -618,7 +618,7 @@ module FactPulse
|
|
|
618
618
|
return_type = opts[:debug_return_type] || 'Object'
|
|
619
619
|
|
|
620
620
|
# auth_names
|
|
621
|
-
auth_names = opts[:debug_auth_names] || []
|
|
621
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
622
622
|
|
|
623
623
|
new_options = opts.merge(
|
|
624
624
|
:operation => :"AFNORPDPPADirectoryServiceApi.get_siren_by_id_instance_proxy_api_v1_afnor_directory_v1_siren_id_instance_id_instance_get",
|
|
@@ -681,7 +681,7 @@ module FactPulse
|
|
|
681
681
|
return_type = opts[:debug_return_type] || 'Object'
|
|
682
682
|
|
|
683
683
|
# auth_names
|
|
684
|
-
auth_names = opts[:debug_auth_names] || []
|
|
684
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
685
685
|
|
|
686
686
|
new_options = opts.merge(
|
|
687
687
|
:operation => :"AFNORPDPPADirectoryServiceApi.get_siret_by_code_insee_proxy_api_v1_afnor_directory_v1_siret_code_insee_siret_get",
|
|
@@ -744,7 +744,7 @@ module FactPulse
|
|
|
744
744
|
return_type = opts[:debug_return_type] || 'Object'
|
|
745
745
|
|
|
746
746
|
# auth_names
|
|
747
|
-
auth_names = opts[:debug_auth_names] || []
|
|
747
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
748
748
|
|
|
749
749
|
new_options = opts.merge(
|
|
750
750
|
:operation => :"AFNORPDPPADirectoryServiceApi.get_siret_by_id_instance_proxy_api_v1_afnor_directory_v1_siret_id_instance_id_instance_get",
|
|
@@ -807,7 +807,7 @@ module FactPulse
|
|
|
807
807
|
return_type = opts[:debug_return_type] || 'Object'
|
|
808
808
|
|
|
809
809
|
# auth_names
|
|
810
|
-
auth_names = opts[:debug_auth_names] || []
|
|
810
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
811
811
|
|
|
812
812
|
new_options = opts.merge(
|
|
813
813
|
:operation => :"AFNORPDPPADirectoryServiceApi.patch_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_id_instance_id_instance_patch",
|
|
@@ -870,7 +870,7 @@ module FactPulse
|
|
|
870
870
|
return_type = opts[:debug_return_type] || 'Object'
|
|
871
871
|
|
|
872
872
|
# auth_names
|
|
873
|
-
auth_names = opts[:debug_auth_names] || []
|
|
873
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
874
874
|
|
|
875
875
|
new_options = opts.merge(
|
|
876
876
|
:operation => :"AFNORPDPPADirectoryServiceApi.patch_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_id_instance_id_instance_patch",
|
|
@@ -933,7 +933,7 @@ module FactPulse
|
|
|
933
933
|
return_type = opts[:debug_return_type] || 'Object'
|
|
934
934
|
|
|
935
935
|
# auth_names
|
|
936
|
-
auth_names = opts[:debug_auth_names] || []
|
|
936
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
937
937
|
|
|
938
938
|
new_options = opts.merge(
|
|
939
939
|
:operation => :"AFNORPDPPADirectoryServiceApi.put_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_id_instance_id_instance_put",
|
|
@@ -990,7 +990,7 @@ module FactPulse
|
|
|
990
990
|
return_type = opts[:debug_return_type] || 'Object'
|
|
991
991
|
|
|
992
992
|
# auth_names
|
|
993
|
-
auth_names = opts[:debug_auth_names] || []
|
|
993
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
994
994
|
|
|
995
995
|
new_options = opts.merge(
|
|
996
996
|
:operation => :"AFNORPDPPADirectoryServiceApi.search_directory_line_proxy_api_v1_afnor_directory_v1_directory_line_search_post",
|
|
@@ -1047,7 +1047,7 @@ module FactPulse
|
|
|
1047
1047
|
return_type = opts[:debug_return_type] || 'Object'
|
|
1048
1048
|
|
|
1049
1049
|
# auth_names
|
|
1050
|
-
auth_names = opts[:debug_auth_names] || []
|
|
1050
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
1051
1051
|
|
|
1052
1052
|
new_options = opts.merge(
|
|
1053
1053
|
:operation => :"AFNORPDPPADirectoryServiceApi.search_routing_code_proxy_api_v1_afnor_directory_v1_routing_code_search_post",
|
|
@@ -1104,7 +1104,7 @@ module FactPulse
|
|
|
1104
1104
|
return_type = opts[:debug_return_type] || 'Object'
|
|
1105
1105
|
|
|
1106
1106
|
# auth_names
|
|
1107
|
-
auth_names = opts[:debug_auth_names] || []
|
|
1107
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
1108
1108
|
|
|
1109
1109
|
new_options = opts.merge(
|
|
1110
1110
|
:operation => :"AFNORPDPPADirectoryServiceApi.search_siren_proxy_api_v1_afnor_directory_v1_siren_search_post",
|
|
@@ -1161,7 +1161,7 @@ module FactPulse
|
|
|
1161
1161
|
return_type = opts[:debug_return_type] || 'Object'
|
|
1162
1162
|
|
|
1163
1163
|
# auth_names
|
|
1164
|
-
auth_names = opts[:debug_auth_names] || []
|
|
1164
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
|
1165
1165
|
|
|
1166
1166
|
new_options = opts.merge(
|
|
1167
1167
|
:operation => :"AFNORPDPPADirectoryServiceApi.search_siret_proxy_api_v1_afnor_directory_v1_siret_search_post",
|
data/lib/factpulse/version.rb
CHANGED