scimgateway 5.3.4 → 5.3.6

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 (50) hide show
  1. package/.gitattribute +2 -0
  2. package/.github/dependabot.yml +0 -0
  3. package/.github/workflows/test-master.yml +0 -0
  4. package/.github/workflows/test-release.yml +0 -0
  5. package/.travis.yml +0 -0
  6. package/LICENSE +0 -0
  7. package/README.md +13 -0
  8. package/bun.lock +57 -171
  9. package/config/docker/DataDockerfile +0 -0
  10. package/config/docker/Dockerfile +0 -0
  11. package/config/docker/dbinit/init.sql +0 -0
  12. package/config/docker/docker-compose-debug.yml +0 -0
  13. package/config/docker/docker-compose-mssql.yml +0 -0
  14. package/config/docker/docker-compose.yml +0 -0
  15. package/config/plugin-entra-id.json +0 -0
  16. package/config/plugin-ldap.json +0 -0
  17. package/config/plugin-mongodb.json +0 -0
  18. package/config/plugin-mssql.json +0 -0
  19. package/config/plugin-saphana.json +0 -0
  20. package/config/plugin-soap.json +0 -0
  21. package/config/resources/Azure - ScimGateway.xml +0 -0
  22. package/config/wsdls/GroupService.wsdl +0 -0
  23. package/config/wsdls/UserService.wsdl +0 -0
  24. package/eslint.config.js +0 -0
  25. package/lib/countries.json +0 -0
  26. package/lib/helper-rest.ts +0 -0
  27. package/lib/logger.ts +0 -0
  28. package/lib/plugin-api.ts +0 -0
  29. package/lib/plugin-entra-id.ts +0 -0
  30. package/lib/plugin-ldap.ts +0 -0
  31. package/lib/plugin-loki.ts +0 -0
  32. package/lib/plugin-mongodb.ts +0 -0
  33. package/lib/plugin-mssql.ts +0 -0
  34. package/lib/plugin-saphana.ts +0 -0
  35. package/lib/plugin-scim.ts +0 -0
  36. package/lib/plugin-soap.ts +0 -0
  37. package/lib/postinstall.ts +0 -0
  38. package/lib/samlAssertion.ts +0 -0
  39. package/lib/scim-stream.js +0 -0
  40. package/lib/scimdef-v1.json +1 -1
  41. package/lib/scimdef-v2.json +1 -1
  42. package/lib/scimgateway.ts +115 -33
  43. package/lib/utils-scim.ts +1 -0
  44. package/lib/utils.ts +27 -2
  45. package/package.json +10 -10
  46. package/test/lib/plugin-api_test.ts +0 -0
  47. package/test/lib/plugin-loki_test.ts +53 -8
  48. package/test/lib/plugin-mongodb_test.ts_excluded +0 -0
  49. package/test/lib/plugin-scim_test.ts +8 -6
  50. package/tsconfig.json +0 -0
package/.gitattribute ADDED
@@ -0,0 +1,2 @@
1
+ * text=auto eol=lf
2
+
File without changes
File without changes
File without changes
package/.travis.yml CHANGED
File without changes
package/LICENSE CHANGED
File without changes
package/README.md CHANGED
@@ -16,6 +16,7 @@ Validated through IdP's:
16
16
 
17
17
  Latest news:
18
18
 
19
+ - [ETag](https://datatracker.ietf.org/doc/html/rfc7644#section-3.14) now supported
19
20
  - [Bulk Operations](https://datatracker.ietf.org/doc/html/rfc7644#section-3.7) now supported
20
21
  - Remote real-time log subscription for monitoring and centralized logging
21
22
  using browser and url: `https://<host>/logger`
@@ -1405,6 +1406,18 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
1405
1406
 
1406
1407
  ## Change log
1407
1408
 
1409
+ ### v5.3.6
1410
+
1411
+ [Fixed]
1412
+
1413
+ - Some minor ETag improvements
1414
+
1415
+ ### v5.3.5
1416
+
1417
+ [Improved]
1418
+
1419
+ - ETag now supported and default included for all requests. Plugin may use custom ETag by returning meta.version.
1420
+
1408
1421
  ### v5.3.4
1409
1422
 
1410
1423
  [Fixed]