@backstage/plugin-catalog-backend-module-ldap 0.12.4-next.0 → 0.12.4-next.1
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/CHANGELOG.md +8 -0
- package/dist/index.cjs.js +6 -6
- package/dist/index.d.ts +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-ldap
|
|
2
2
|
|
|
3
|
+
## 0.12.4-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-plugin-api@1.9.0-next.1
|
|
9
|
+
- @backstage/plugin-catalog-node@2.1.1-next.1
|
|
10
|
+
|
|
3
11
|
## 0.12.4-next.0
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/index.cjs.js
CHANGED
|
@@ -6,11 +6,11 @@ var LdapOrgEntityProvider = require('./processors/LdapOrgEntityProvider.cjs.js')
|
|
|
6
6
|
var LdapOrgReaderProcessor = require('./processors/LdapOrgReaderProcessor.cjs.js');
|
|
7
7
|
var index = require('./ldap/index.cjs.js');
|
|
8
8
|
var module$1 = require('./module.cjs.js');
|
|
9
|
+
var constants = require('./ldap/constants.cjs.js');
|
|
9
10
|
var client = require('./ldap/client.cjs.js');
|
|
11
|
+
var read = require('./ldap/read.cjs.js');
|
|
10
12
|
var util = require('./ldap/util.cjs.js');
|
|
11
13
|
var config = require('./ldap/config.cjs.js');
|
|
12
|
-
var constants = require('./ldap/constants.cjs.js');
|
|
13
|
-
var read = require('./ldap/read.cjs.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
@@ -19,14 +19,14 @@ exports.LdapOrgReaderProcessor = LdapOrgReaderProcessor.LdapOrgReaderProcessor;
|
|
|
19
19
|
exports.vendors = index.vendors;
|
|
20
20
|
exports.default = module$1.catalogModuleLdapOrgEntityProvider;
|
|
21
21
|
exports.ldapOrgEntityProviderTransformsExtensionPoint = module$1.ldapOrgEntityProviderTransformsExtensionPoint;
|
|
22
|
-
exports.LdapClient = client.LdapClient;
|
|
23
|
-
exports.mapStringAttr = util.mapStringAttr;
|
|
24
|
-
exports.readLdapLegacyConfig = config.readLdapLegacyConfig;
|
|
25
|
-
exports.readProviderConfigs = config.readProviderConfigs;
|
|
26
22
|
exports.LDAP_DN_ANNOTATION = constants.LDAP_DN_ANNOTATION;
|
|
27
23
|
exports.LDAP_RDN_ANNOTATION = constants.LDAP_RDN_ANNOTATION;
|
|
28
24
|
exports.LDAP_UUID_ANNOTATION = constants.LDAP_UUID_ANNOTATION;
|
|
25
|
+
exports.LdapClient = client.LdapClient;
|
|
29
26
|
exports.defaultGroupTransformer = read.defaultGroupTransformer;
|
|
30
27
|
exports.defaultUserTransformer = read.defaultUserTransformer;
|
|
31
28
|
exports.readLdapOrg = read.readLdapOrg;
|
|
29
|
+
exports.mapStringAttr = util.mapStringAttr;
|
|
30
|
+
exports.readLdapLegacyConfig = config.readLdapLegacyConfig;
|
|
31
|
+
exports.readProviderConfigs = config.readProviderConfigs;
|
|
32
32
|
//# sourceMappingURL=index.cjs.js.map
|
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
|
|
|
4
4
|
import { SchedulerServiceTaskScheduleDefinition, LoggerService, SchedulerServiceTaskRunner, SchedulerService } from '@backstage/backend-plugin-api';
|
|
5
5
|
import { JsonValue } from '@backstage/types';
|
|
6
6
|
import { Entry, SearchOptions, Client, SearchResult } from 'ldapts';
|
|
7
|
-
import {
|
|
7
|
+
import { GroupEntity, UserEntity } from '@backstage/catalog-model';
|
|
8
8
|
import { LocationSpec } from '@backstage/plugin-catalog-common';
|
|
9
9
|
|
|
10
10
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-ldap",
|
|
3
|
-
"version": "0.12.4-next.
|
|
3
|
+
"version": "0.12.4-next.1",
|
|
4
4
|
"description": "A Backstage catalog backend module that helps integrate towards LDAP",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -41,19 +41,19 @@
|
|
|
41
41
|
"test": "backstage-cli package test"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@backstage/backend-plugin-api": "1.
|
|
44
|
+
"@backstage/backend-plugin-api": "1.9.0-next.1",
|
|
45
45
|
"@backstage/catalog-model": "1.7.7",
|
|
46
46
|
"@backstage/config": "1.3.6",
|
|
47
47
|
"@backstage/errors": "1.2.7",
|
|
48
48
|
"@backstage/plugin-catalog-common": "1.1.8",
|
|
49
|
-
"@backstage/plugin-catalog-node": "2.1.1-next.
|
|
49
|
+
"@backstage/plugin-catalog-node": "2.1.1-next.1",
|
|
50
50
|
"@backstage/types": "1.2.2",
|
|
51
51
|
"ldapts": "^8.0.6",
|
|
52
52
|
"lodash": "^4.17.21",
|
|
53
53
|
"uuid": "^11.0.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@backstage/cli": "0.36.1-next.
|
|
56
|
+
"@backstage/cli": "0.36.1-next.1",
|
|
57
57
|
"@types/lodash": "^4.14.151"
|
|
58
58
|
},
|
|
59
59
|
"configSchema": "config.d.ts",
|