scimgateway 5.3.3 → 5.3.5
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/README.md +31 -0
- package/bun.lock +57 -171
- package/lib/plugin-entra-id.ts +5 -7
- package/lib/plugin-loki.ts +16 -23
- package/lib/plugin-mongodb.ts +8 -9
- package/lib/plugin-soap.ts +3 -4
- package/lib/scimdef-v1.json +1 -1
- package/lib/scimdef-v2.json +1 -1
- package/lib/scimgateway.ts +110 -31
- package/lib/utils-scim.ts +62 -37
- package/lib/utils.ts +29 -3
- package/package.json +10 -10
- package/test/lib/plugin-loki_test.ts +53 -8
- package/test/lib/plugin-scim_test.ts +8 -6
- package/tsconfig.json +1 -1
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,36 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1405
1406
|
|
|
1406
1407
|
## Change log
|
|
1407
1408
|
|
|
1409
|
+
### v5.3.5
|
|
1410
|
+
|
|
1411
|
+
[Improved]
|
|
1412
|
+
|
|
1413
|
+
- ETag now supported and default included for all requests. Plugin may use custom ETag by returning meta.version.
|
|
1414
|
+
|
|
1415
|
+
### v5.3.4
|
|
1416
|
+
|
|
1417
|
+
[Fixed]
|
|
1418
|
+
|
|
1419
|
+
- PATCH operations (modifyUser/modifyGroup) that includes `null` values, will now be converted to empty string `""`
|
|
1420
|
+
|
|
1421
|
+
{
|
|
1422
|
+
"schemas": [
|
|
1423
|
+
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
|
|
1424
|
+
],
|
|
1425
|
+
"Operations": [{
|
|
1426
|
+
"op": "replace",
|
|
1427
|
+
"value": {
|
|
1428
|
+
"name": {
|
|
1429
|
+
"formatted": "Smith, John",
|
|
1430
|
+
"honorificPrefix": null
|
|
1431
|
+
}
|
|
1432
|
+
}}
|
|
1433
|
+
]
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
In the example above, following will be sent to plugin:
|
|
1437
|
+
{ "name": { "formatted": "Smith, John", "honorificPrefix": "" } }
|
|
1438
|
+
|
|
1408
1439
|
### v5.3.3
|
|
1409
1440
|
|
|
1410
1441
|
[Fixed]
|