@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.0] - 2025-11-18
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.0...HEAD
28
- [2.0.0]: https://github.com/factpulse/sdk-typescript/releases/tag/v2.0.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
@@ -17,6 +17,7 @@ export interface PDPCredentials {
17
17
  * URL de base du Flow Service AFNOR
18
18
  */
19
19
  'flow_service_url': string;
20
+ 'directory_service_url'?: string | null;
20
21
  /**
21
22
  * URL du serveur OAuth2
22
23
  */
@@ -17,6 +17,7 @@ export interface PDPCredentials {
17
17
  * URL de base du Flow Service AFNOR
18
18
  */
19
19
  'flow_service_url': string;
20
+ 'directory_service_url'?: string | null;
20
21
  /**
21
22
  * URL du serveur OAuth2
22
23
  */
@@ -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,
@@ -22,6 +22,7 @@ export interface PDPCredentials {
22
22
  * URL de base du Flow Service AFNOR
23
23
  */
24
24
  'flow_service_url': string;
25
+ 'directory_service_url'?: string | null;
25
26
  /**
26
27
  * URL du serveur OAuth2
27
28
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factpulse/sdk",
3
- "version": "2.0.0",
3
+ "version": "2.0.3",
4
4
  "description": "OpenAPI client for @factpulse/sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {