@ogcio/building-blocks-sdk 0.2.46 → 0.2.48

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 (36) hide show
  1. package/.gitleaksignore +3 -1
  2. package/.release-please-manifest.json +1 -1
  3. package/CHANGELOG.md +14 -0
  4. package/dist/client/clients/featureFlags/schema.d.ts +3693 -4712
  5. package/dist/client/clients/featureFlags/schema.d.ts.map +1 -1
  6. package/dist/client/clients/journey/index.d.ts +0 -2
  7. package/dist/client/clients/journey/index.d.ts.map +1 -1
  8. package/dist/client/clients/journey/schema.d.ts +0 -1
  9. package/dist/client/clients/journey/schema.d.ts.map +1 -1
  10. package/dist/client/clients/messaging/index.d.ts +6 -6
  11. package/dist/client/clients/messaging/index.d.ts.map +1 -1
  12. package/dist/client/clients/messaging/schema.d.ts +6 -11
  13. package/dist/client/clients/messaging/schema.d.ts.map +1 -1
  14. package/dist/client/clients/profile/citizen.d.ts +280 -0
  15. package/dist/client/clients/profile/citizen.d.ts.map +1 -0
  16. package/dist/client/clients/profile/citizen.js +22 -0
  17. package/dist/client/clients/profile/citizen.js.map +1 -0
  18. package/dist/client/clients/profile/index.d.ts +29 -0
  19. package/dist/client/clients/profile/index.d.ts.map +1 -1
  20. package/dist/client/clients/profile/index.js +7 -1
  21. package/dist/client/clients/profile/index.js.map +1 -1
  22. package/dist/client/clients/profile/schema.d.ts +508 -0
  23. package/dist/client/clients/profile/schema.d.ts.map +1 -1
  24. package/dist/clients-configurations/clients-configuration.json +1 -1
  25. package/package.json +1 -1
  26. package/src/client/clients/featureFlags/open-api-definition.json +4912 -5964
  27. package/src/client/clients/featureFlags/schema.ts +3693 -4712
  28. package/src/client/clients/journey/open-api-definition.json +1 -5
  29. package/src/client/clients/journey/schema.ts +0 -1
  30. package/src/client/clients/messaging/open-api-definition.json +47 -11
  31. package/src/client/clients/messaging/schema.ts +6 -11
  32. package/src/client/clients/profile/citizen.ts +34 -0
  33. package/src/client/clients/profile/index.ts +16 -1
  34. package/src/client/clients/profile/open-api-definition.json +1499 -0
  35. package/src/client/clients/profile/schema.ts +508 -0
  36. package/src/clients-configurations/clients-configuration.json +1 -1
package/.gitleaksignore CHANGED
@@ -6,4 +6,6 @@
6
6
  /src/src/client/clients/featureFlags/schema.ts:generic-api-key:9437
7
7
  /src/src/client/clients/featureFlags/open-api-definition.json:generic-api-key:9245
8
8
  /src/src/client/clients/featureFlags/schema.ts:generic-api-key:9709
9
- /src/src/client/clients/featureFlags/open-api-definition.json:generic-api-key:9577
9
+ /src/src/client/clients/featureFlags/open-api-definition.json:generic-api-key:9577
10
+ /src/src/client/clients/featureFlags/open-api-definition.json:generic-api-key:9404
11
+ /src/src/client/clients/featureFlags/schema.ts:generic-api-key:9595
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.2.46"
2
+ ".": "0.2.48"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.48](https://github.com/ogcio/building-blocks-sdk/compare/@ogcio/building-blocks-sdk@v0.2.47...@ogcio/building-blocks-sdk@v0.2.48) (2025-07-31)
4
+
5
+
6
+ ### Features
7
+
8
+ * **profile:** AB[#30123](https://github.com/ogcio/building-blocks-sdk/issues/30123) consent management ([#245](https://github.com/ogcio/building-blocks-sdk/issues/245)) ([fb02dfc](https://github.com/ogcio/building-blocks-sdk/commit/fb02dfc68a64630271eaaf533c9cc1df7d5cd24b))
9
+
10
+ ## [0.2.47](https://github.com/ogcio/building-blocks-sdk/compare/@ogcio/building-blocks-sdk@v0.2.46...@ogcio/building-blocks-sdk@v0.2.47) (2025-07-30)
11
+
12
+
13
+ ### Features
14
+
15
+ * remove choosen signin method from create run call ([#243](https://github.com/ogcio/building-blocks-sdk/issues/243)) ([259ebb2](https://github.com/ogcio/building-blocks-sdk/commit/259ebb297a84fc9da7c12cb2d91c94e6a0dcc6d5))
16
+
3
17
  ## [0.2.46](https://github.com/ogcio/building-blocks-sdk/compare/@ogcio/building-blocks-sdk@v0.2.45...@ogcio/building-blocks-sdk@v0.2.46) (2025-07-25)
4
18
 
5
19