scimgateway 4.1.6 → 4.1.8
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 +16 -0
- package/config/plugin-azure-ad.json +154 -0
- package/config/resources/Azure - ScimGateway.xml +5949 -5773
- package/lib/plugin-azure-ad.js +104 -66
- package/lib/plugin-ldap.js +14 -9
- package/lib/scimgateway.js +89 -71
- package/lib/utils.js +11 -1
- package/package.json +1 -1
- package/lib/endpointMap.js +0 -337
package/README.md
CHANGED
|
@@ -1143,6 +1143,22 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1143
1143
|
|
|
1144
1144
|
## Change log
|
|
1145
1145
|
|
|
1146
|
+
### v4.1.8
|
|
1147
|
+
|
|
1148
|
+
[Fixed]
|
|
1149
|
+
|
|
1150
|
+
- endpointMap and Symantec/Broadcom/CA ConnectorXpress configuration file `config\resources\Azure - ScimGateway.xml` introduced in v.4.1.7 had some missing logic
|
|
1151
|
+
|
|
1152
|
+
### v4.1.7
|
|
1153
|
+
|
|
1154
|
+
**Note, this version breaks compability with previous versions of plugin-azure-ad**
|
|
1155
|
+
|
|
1156
|
+
[Added]
|
|
1157
|
+
|
|
1158
|
+
- endpointMap moved from scimgateway to plugin-azure-ad
|
|
1159
|
+
- plugin-azure-ad.json configuration file now includes attribute mapping giving flexibility to add or customize AAD-SCIM attribute mappings
|
|
1160
|
+
- Symantec/Broadcom/CA ConnectorXpress configuration file `config\resources\Azure - ScimGateway.xml` for defining the Azure endpoint, have been updated with some new attributes according to plugin-azure-ad.json attribute mappings
|
|
1161
|
+
|
|
1146
1162
|
### v4.1.6
|
|
1147
1163
|
[Added]
|
|
1148
1164
|
- Dependencies bump
|
|
@@ -95,6 +95,160 @@
|
|
|
95
95
|
"password": null
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
|
+
},
|
|
99
|
+
"map": {
|
|
100
|
+
"user": {
|
|
101
|
+
"id": {
|
|
102
|
+
"mapTo": "id",
|
|
103
|
+
"type": "string"
|
|
104
|
+
},
|
|
105
|
+
"userPrincipalName": {
|
|
106
|
+
"mapTo": "userName,externalId",
|
|
107
|
+
"type": "string"
|
|
108
|
+
},
|
|
109
|
+
"userType": {
|
|
110
|
+
"mapTo": "userType",
|
|
111
|
+
"type": "string"
|
|
112
|
+
},
|
|
113
|
+
"accountEnabled": {
|
|
114
|
+
"mapTo": "active",
|
|
115
|
+
"type": "boolean"
|
|
116
|
+
},
|
|
117
|
+
"givenName": {
|
|
118
|
+
"mapTo": "name.givenName",
|
|
119
|
+
"type": "string"
|
|
120
|
+
},
|
|
121
|
+
"surname": {
|
|
122
|
+
"mapTo": "name.familyName",
|
|
123
|
+
"type": "string"
|
|
124
|
+
},
|
|
125
|
+
"displayName": {
|
|
126
|
+
"mapTo": "displayName",
|
|
127
|
+
"type": "string"
|
|
128
|
+
},
|
|
129
|
+
"jobTitle": {
|
|
130
|
+
"mapTo": "jobTitle",
|
|
131
|
+
"type": "string"
|
|
132
|
+
},
|
|
133
|
+
"employeeId": {
|
|
134
|
+
"mapTo": "employeeId",
|
|
135
|
+
"type": "string"
|
|
136
|
+
},
|
|
137
|
+
"employeeType": {
|
|
138
|
+
"mapTo": "employeeType",
|
|
139
|
+
"type": "string"
|
|
140
|
+
},
|
|
141
|
+
"companyName": {
|
|
142
|
+
"mapTo": "companyName",
|
|
143
|
+
"type": "string"
|
|
144
|
+
},
|
|
145
|
+
"employeeOrgData.costCenter": {
|
|
146
|
+
"mapTo": "employeeOrgData.costCenter",
|
|
147
|
+
"type": "string"
|
|
148
|
+
},
|
|
149
|
+
"employeeOrgData.division": {
|
|
150
|
+
"mapTo": "employeeOrgData.division",
|
|
151
|
+
"type": "string"
|
|
152
|
+
},
|
|
153
|
+
"officeLocation": {
|
|
154
|
+
"mapTo": "officeLocation",
|
|
155
|
+
"type": "string"
|
|
156
|
+
},
|
|
157
|
+
"department": {
|
|
158
|
+
"mapTo": "department",
|
|
159
|
+
"type": "string"
|
|
160
|
+
},
|
|
161
|
+
"manager": {
|
|
162
|
+
"mapTo": "manager.managerId",
|
|
163
|
+
"type": "string"
|
|
164
|
+
},
|
|
165
|
+
"mail": {
|
|
166
|
+
"mapTo": "mail",
|
|
167
|
+
"type": "string"
|
|
168
|
+
},
|
|
169
|
+
"mailNickname": {
|
|
170
|
+
"mapTo": "mailNickname",
|
|
171
|
+
"type": "string"
|
|
172
|
+
},
|
|
173
|
+
"proxyAddresses": {
|
|
174
|
+
"mapTo": "proxyAddresses.value",
|
|
175
|
+
"type": "array",
|
|
176
|
+
"items": {
|
|
177
|
+
"type": "string"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
"mobilePhone": {
|
|
181
|
+
"mapTo": "mobilePhone",
|
|
182
|
+
"type": "string"
|
|
183
|
+
},
|
|
184
|
+
"businessPhones": {
|
|
185
|
+
"mapTo": "businessPhones",
|
|
186
|
+
"type": "array",
|
|
187
|
+
"typeInbound": "string"
|
|
188
|
+
},
|
|
189
|
+
"country": {
|
|
190
|
+
"mapTo": "country",
|
|
191
|
+
"type": "string"
|
|
192
|
+
},
|
|
193
|
+
"city": {
|
|
194
|
+
"mapTo": "city",
|
|
195
|
+
"type": "string"
|
|
196
|
+
},
|
|
197
|
+
"streetAddress": {
|
|
198
|
+
"mapTo": "streetAddress",
|
|
199
|
+
"type": "string"
|
|
200
|
+
},
|
|
201
|
+
"postalCode": {
|
|
202
|
+
"mapTo": "postalCode",
|
|
203
|
+
"type": "string"
|
|
204
|
+
},
|
|
205
|
+
"state": {
|
|
206
|
+
"mapTo": "state",
|
|
207
|
+
"type": "string"
|
|
208
|
+
},
|
|
209
|
+
"passwordPolicies": {
|
|
210
|
+
"mapTo": "passwordPolicies",
|
|
211
|
+
"type": "string"
|
|
212
|
+
},
|
|
213
|
+
"servicePlan": {
|
|
214
|
+
"mapTo": "servicePlan.value",
|
|
215
|
+
"type": "array"
|
|
216
|
+
},
|
|
217
|
+
"usageLocation": {
|
|
218
|
+
"mapTo": "usageLocation",
|
|
219
|
+
"type": "string"
|
|
220
|
+
},
|
|
221
|
+
"preferredLanguage": {
|
|
222
|
+
"mapTo": "preferredLanguage",
|
|
223
|
+
"type": "string"
|
|
224
|
+
},
|
|
225
|
+
"onPremisesSyncEnabled": {
|
|
226
|
+
"mapTo": "onPremisesSyncEnabled",
|
|
227
|
+
"type": "boolean"
|
|
228
|
+
},
|
|
229
|
+
"onPremisesImmutableId": {
|
|
230
|
+
"mapTo": "onPremisesImmutableId",
|
|
231
|
+
"type": "string"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
"group": {
|
|
235
|
+
"id": {
|
|
236
|
+
"mapTo": "id",
|
|
237
|
+
"type": "string"
|
|
238
|
+
},
|
|
239
|
+
"displayName": {
|
|
240
|
+
"mapTo": "displayName,externalId",
|
|
241
|
+
"type": "string"
|
|
242
|
+
},
|
|
243
|
+
"securityEnabled": {
|
|
244
|
+
"mapTo": "securityEnabled",
|
|
245
|
+
"type": "boolean"
|
|
246
|
+
},
|
|
247
|
+
"mailEnabled": {
|
|
248
|
+
"mapTo": "mailEnabled",
|
|
249
|
+
"type": "boolean"
|
|
250
|
+
}
|
|
251
|
+
}
|
|
98
252
|
}
|
|
99
253
|
}
|
|
100
254
|
}
|