scimgateway 5.0.3 → 5.0.4
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 +7 -1
- package/lib/plugin-ldap.ts +1 -0
- package/package.json +1 -2
- package/types/index.d.ts +0 -1
package/README.md
CHANGED
|
@@ -1086,6 +1086,12 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1086
1086
|
|
|
1087
1087
|
## Change log
|
|
1088
1088
|
|
|
1089
|
+
### v5.0.4
|
|
1090
|
+
|
|
1091
|
+
[Improved]
|
|
1092
|
+
|
|
1093
|
+
- minor type definition cosmetics
|
|
1094
|
+
|
|
1089
1095
|
### v5.0.3
|
|
1090
1096
|
|
|
1091
1097
|
[Fixed]
|
|
@@ -1094,7 +1100,7 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1094
1100
|
|
|
1095
1101
|
[Improved]
|
|
1096
1102
|
|
|
1097
|
-
- minor type cosmetics
|
|
1103
|
+
- minor type definition cosmetics
|
|
1098
1104
|
|
|
1099
1105
|
|
|
1100
1106
|
### v5.0.2
|
package/lib/plugin-ldap.ts
CHANGED
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
'use strict'
|
|
83
83
|
|
|
84
84
|
import ldap from 'ldapjs'
|
|
85
|
+
// @ts-expect-error missing type definitions
|
|
85
86
|
import { BerReader } from '@ldapjs/asn1'
|
|
86
87
|
|
|
87
88
|
// for supporting nodejs running scimgateway package directly, using dynamic import instead of: import { ScimGateway } from 'scimgateway'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scimgateway",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.4",
|
|
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)",
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"main": "lib/scimgateway.ts",
|
|
10
10
|
"module": "./index.ts",
|
|
11
|
-
"types": "./types",
|
|
12
11
|
"scripts": {
|
|
13
12
|
"postinstall": "bun ./lib/postinstall.ts",
|
|
14
13
|
"start": "bun index.ts",
|
package/types/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
declare module '@ldapjs/asn1' // missing declaration file
|