scimgateway 5.0.1 → 5.0.2
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 +9 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -123,7 +123,7 @@ If internet connection is blocked, we could install on another machine and copy
|
|
|
123
123
|
|
|
124
124
|
bun c:\my-scimgateway
|
|
125
125
|
|
|
126
|
-
If using Node.js instead of Bun: node --experimental-strip-types c:\my-scimgateway\index.ts
|
|
126
|
+
If using Node.js instead of Bun, scimgateway must be downloaded from github and startup: node --experimental-strip-types c:\my-scimgateway\index.ts
|
|
127
127
|
|
|
128
128
|
Start a browser (note, Edge do not pop-up logon dialog box when using http)
|
|
129
129
|
|
|
@@ -1071,11 +1071,17 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1071
1071
|
|
|
1072
1072
|
## Change log
|
|
1073
1073
|
|
|
1074
|
+
### v5.0.2
|
|
1075
|
+
|
|
1076
|
+
[Improved]
|
|
1077
|
+
|
|
1078
|
+
- minor cosmetics readme updates
|
|
1079
|
+
|
|
1074
1080
|
### v5.0.1
|
|
1075
1081
|
|
|
1076
1082
|
[Fixed]
|
|
1077
1083
|
|
|
1078
|
-
|
|
1084
|
+
- postinstall did not update index.ts when default bun index.ts did exist
|
|
1079
1085
|
|
|
1080
1086
|
|
|
1081
1087
|
### v5.0.0
|
|
@@ -1088,7 +1094,7 @@ Besides going from JavaScript to TypeScript, following can be mentioned:
|
|
|
1088
1094
|
|
|
1089
1095
|
* Code editor now having IntelliSense showing available methods and documentation details for scimgateway methods
|
|
1090
1096
|
* index.ts having new logic for starting plugins e.g.: `const plugins = ['ldap']` for starting plugin-ldap
|
|
1091
|
-
* If using Node.js
|
|
1097
|
+
* If using Node.js: node must be version >= 22.6.0, scimgateway must be downloaded from github (because stripping types is currently unsupported for files under node_modules) and startup argument `--experimental-strip-types` e.g.; `node --experimental-strip-types index.ts`
|
|
1092
1098
|
* Plugins can use `scimgateway.HelperRest()` for REST functionality. Previously this logic was included in each plugin that used REST.
|
|
1093
1099
|
|
|
1094
1100
|
// start - mandatory plugin initialization
|
package/package.json
CHANGED