@ogcio/building-blocks-sdk 0.2.47 → 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 (30) hide show
  1. package/.gitleaksignore +3 -1
  2. package/.release-please-manifest.json +1 -1
  3. package/CHANGELOG.md +7 -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/messaging/index.d.ts +6 -6
  7. package/dist/client/clients/messaging/index.d.ts.map +1 -1
  8. package/dist/client/clients/messaging/schema.d.ts +6 -11
  9. package/dist/client/clients/messaging/schema.d.ts.map +1 -1
  10. package/dist/client/clients/profile/citizen.d.ts +280 -0
  11. package/dist/client/clients/profile/citizen.d.ts.map +1 -0
  12. package/dist/client/clients/profile/citizen.js +22 -0
  13. package/dist/client/clients/profile/citizen.js.map +1 -0
  14. package/dist/client/clients/profile/index.d.ts +29 -0
  15. package/dist/client/clients/profile/index.d.ts.map +1 -1
  16. package/dist/client/clients/profile/index.js +7 -1
  17. package/dist/client/clients/profile/index.js.map +1 -1
  18. package/dist/client/clients/profile/schema.d.ts +508 -0
  19. package/dist/client/clients/profile/schema.d.ts.map +1 -1
  20. package/dist/clients-configurations/clients-configuration.json +1 -1
  21. package/package.json +1 -1
  22. package/src/client/clients/featureFlags/open-api-definition.json +4912 -5964
  23. package/src/client/clients/featureFlags/schema.ts +3693 -4712
  24. package/src/client/clients/messaging/open-api-definition.json +47 -11
  25. package/src/client/clients/messaging/schema.ts +6 -11
  26. package/src/client/clients/profile/citizen.ts +34 -0
  27. package/src/client/clients/profile/index.ts +16 -1
  28. package/src/client/clients/profile/open-api-definition.json +1499 -0
  29. package/src/client/clients/profile/schema.ts +508 -0
  30. 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.47"
2
+ ".": "0.2.48"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
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
+
3
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)
4
11
 
5
12