scimgateway 6.1.14 → 6.1.15

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 CHANGED
@@ -1304,6 +1304,12 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
1304
1304
 
1305
1305
  ## Change log
1306
1306
 
1307
+ ### v6.1.15
1308
+
1309
+ [Fixed]
1310
+
1311
+ - plugin-entra-id: fixed `filter=entitlements pr`
1312
+
1307
1313
  ### v6.1.14
1308
1314
 
1309
1315
  [Improved]
@@ -177,7 +177,8 @@ scimgateway.getUsers = async (baseEntity, getObj, attributes, ctx) => {
177
177
  // optional - only used when groups are member of users, not default behavior - correspond to getGroupUsers() in versions < 4.x.x
178
178
  throw new Error(`${action} error: not supporting groups member of user filtering: ${getObj.rawFilter}`)
179
179
  } else if (getObj.operator === 'pr' && getObj.attribute === 'entitlements') { // pr - presence of (only return objects having getObj.attribute)
180
- path = `/users?$top=${getObj.count}&$count=true&filter=assignedLicenses/$count ne 0& &$select=${selectAttributes.join(',')}`
180
+ path = `/users?$top=${getObj.count}&$count=true&$filter=assignedLicenses/$count ne 0&$select=${selectAttributes.join(',')}`
181
+ isExpandManager = false
181
182
  } else {
182
183
  // optional - simpel filtering
183
184
  if (getObj.attribute) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scimgateway",
3
- "version": "6.1.14",
3
+ "version": "6.1.15",
4
4
  "type": "module",
5
5
  "description": "Using SCIM protocol as a gateway for user provisioning to other endpoints",
6
6
  "author": "Jarle Elshaug <jarle.elshaug@gmail.com> (https://elshaug.xyz)",