@factpulse/sdk 2.0.0 → 2.0.3
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.
package/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.3] - 2025-11-18
|
|
11
11
|
|
|
12
12
|
### Added
|
|
13
13
|
- Version initiale du SDK typescript
|
|
@@ -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-typescript/compare/v2.0.
|
|
28
|
-
[2.0.
|
|
27
|
+
[Unreleased]: https://github.com/factpulse/sdk-typescript/compare/v2.0.3...HEAD
|
|
28
|
+
[2.0.3]: https://github.com/factpulse/sdk-typescript/releases/tag/v2.0.3
|
package/docs/PDPCredentials.md
CHANGED
|
@@ -7,6 +7,7 @@ Credentials PDP pour la stratégie zero-storage (Strategy B). Permet de fournir
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
9
|
**flow_service_url** | **string** | URL de base du Flow Service AFNOR | [default to undefined]
|
|
10
|
+
**directory_service_url** | **string** | | [optional] [default to undefined]
|
|
10
11
|
**token_url** | **string** | URL du serveur OAuth2 | [default to undefined]
|
|
11
12
|
**client_id** | **string** | Client ID OAuth2 | [default to undefined]
|
|
12
13
|
**client_secret** | **string** | Client Secret OAuth2 (sensible) | [default to undefined]
|
|
@@ -18,6 +19,7 @@ import { PDPCredentials } from '@factpulse/sdk';
|
|
|
18
19
|
|
|
19
20
|
const instance: PDPCredentials = {
|
|
20
21
|
flow_service_url,
|
|
22
|
+
directory_service_url,
|
|
21
23
|
token_url,
|
|
22
24
|
client_id,
|
|
23
25
|
client_secret,
|
package/models/pdpcredentials.ts
CHANGED