factpulse 2.0.14 → 2.0.15
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/lib/factpulse/helpers/client.rb +3 -0
- 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: 3da860c71e15cff4b5aba46ce609a41208b41160587a9db29527af206980d169
|
|
4
|
+
data.tar.gz: 1623fb5cb93a19ac8e2920bc709d4a87f1350dd65832b15f616e9208d5463593
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 95f30c17f1bd1c7c11a0531b2ad89ca370777722661e86d23d336cc7403fb3f968464aa0df8f9e60130b784befaaff26d1756c24d13c3d9453c3f3ce50099599
|
|
7
|
+
data.tar.gz: f6b594c721a29d2dae65539f49d57ce60ced99a7533f637e014d1b8d9ef700d10a36dcdc307217518a80df81ba9b7ab91f284062ad598d947b9393b673828208
|
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.15] - 2025-11-26
|
|
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.15...HEAD
|
|
28
|
+
[2.0.15]: https://github.com/factpulse/sdk-ruby/releases/tag/v2.0.15
|
data/Gemfile.lock
CHANGED
|
@@ -86,6 +86,9 @@ module FactPulse
|
|
|
86
86
|
|
|
87
87
|
def chorus_credentials_for_api; @chorus_credentials&.to_h; end
|
|
88
88
|
def afnor_credentials_for_api; @afnor_credentials&.to_h; end
|
|
89
|
+
# Alias plus courts
|
|
90
|
+
def get_chorus_pro_credentials; chorus_credentials_for_api; end
|
|
91
|
+
def get_afnor_credentials; afnor_credentials_for_api; end
|
|
89
92
|
|
|
90
93
|
def ensure_authenticated(force_refresh: false)
|
|
91
94
|
now = (Time.now.to_f * 1000).to_i
|
data/lib/factpulse/version.rb
CHANGED