Socket
Socket
Sign inDemoInstall

ldap-schema-ts-generator

Package Overview
Dependencies
104
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.0.7 to 4.0.8

7

CHANGELOG.md

@@ -7,2 +7,9 @@ ### Changelog

#### [v4.0.7](https://github.com/saostad/ldap-schema-ts-generator/compare/v4.0.6...v4.0.7)
> 10 June 2020
- package: updated [`6a77744`](https://github.com/saostad/ldap-schema-ts-generator/commit/6a77744bedcc8e15c46569e14e10bd0b2ef83ed3)
- doc: change log [`5c951c4`](https://github.com/saostad/ldap-schema-ts-generator/commit/5c951c4c98f37d3e6530c0c46925fe9d8e02359e)
#### [v4.0.6](https://github.com/saostad/ldap-schema-ts-generator/compare/v4.0.5...v4.0.6)

@@ -9,0 +16,0 @@

2

dist/helpers/type-map.js

@@ -96,3 +96,3 @@ "use strict";

"1.2.840.113556.1.4.1996",
"1.2.840.113556.1.4.96",
"1.2.840.113556.1.4.96", // pwdLastSet
],

@@ -99,0 +99,0 @@ };

@@ -15,3 +15,3 @@ "use strict";

var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};

@@ -21,3 +21,3 @@ var __importStar = (this && this.__importStar) || function (mod) {

var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);

@@ -27,3 +27,3 @@ return result;

Object.defineProperty(exports, "__esModule", { value: true });
exports.generateCountryIsoCodesFile = exports.generateAttributesMeta = exports.generateStructuralClassesFile = exports.generateGraphqlTypeFiles = exports.mapClassAttributesIncludeInherited = exports.generateRelationsFile = exports.generatePoliciesFile = exports.generateExtensionsFile = exports.generateCapabilitiesFile = exports.generateControlsFile = exports.generateInterfaceFiles = void 0;
exports.generateCountryIsoCodesFile = exports.generateAttributesMeta = exports.generateStructuralClassesFile = exports.generateGraphqlTypeFiles = exports.mapClassAttributesIncludeInherited = exports.generateRelationsFile = exports.generatePoliciesFile = exports.generateExtensionsFile = exports.generateCapabilitiesFile = exports.generateControlsFile = exports.generateInterfaceFiles = exports.Types = void 0;
__exportStar(require("./services"), exports);

@@ -30,0 +30,0 @@ exports.Types = __importStar(require("./typings/general/types"));

@@ -10,3 +10,3 @@ "use strict";

var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};

@@ -13,0 +13,0 @@ Object.defineProperty(exports, "__esModule", { value: true });

@@ -15,3 +15,4 @@ "use strict";

}
${((_a = data.attributes) === null || _a === void 0 ? void 0 : _a.filter((el) => el.isRequired).length) ? `query ${change_case_1.camelCase(data.lDAPDisplayName)}GetAllRequiredFields($criteria: String){
${((_a = data.attributes) === null || _a === void 0 ? void 0 : _a.filter((el) => el.isRequired).length)
? `query ${change_case_1.camelCase(data.lDAPDisplayName)}GetAllRequiredFields($criteria: String){
${change_case_1.camelCase(data.lDAPDisplayName)}GetAll(criteria: $criteria){

@@ -25,3 +26,4 @@ ...${change_case_1.camelCase(data.lDAPDisplayName)}RequiredFields

}
${((_c = data.attributes) === null || _c === void 0 ? void 0 : _c.filter((el) => el.isRequired).length) ? `fragment ${change_case_1.camelCase(data.lDAPDisplayName)}RequiredFields on ${change_case_1.pascalCase(data.lDAPDisplayName)} {
${((_c = data.attributes) === null || _c === void 0 ? void 0 : _c.filter((el) => el.isRequired).length)
? `fragment ${change_case_1.camelCase(data.lDAPDisplayName)}RequiredFields on ${change_case_1.pascalCase(data.lDAPDisplayName)} {
${(_d = data.attributes) === null || _d === void 0 ? void 0 : _d.filter((el) => el.isRequired).map((el) => change_case_1.camelCase(el.lDAPDisplayName)).join("\n")}

@@ -28,0 +30,0 @@ }`

{
"name": "ldap-schema-ts-generator",
"version": "4.0.7",
"version": "4.0.8",
"description": "Typescript typedef and meta-data generator for LDAP Schema. It can be useful to interact from schema-aware/type-safe LDAP Client with LDAP servers like active directory.",

@@ -16,6 +16,7 @@ "repository": {

"test:watch": "jest --watch",
"gen-docs": "typedoc",
"gen-docs": "typedoc src/index.ts",
"postgen-docs": "node ./config/github.js",
"tag": "node ./config/tag.js",
"gen-changelog": "auto-changelog && git add CHANGELOG.md && git commit -m \"doc: change log\"",
"auto-changelog": "auto-changelog --hide-credit --breaking-pattern \"breaking:\"",
"gen-changelog": "npm run auto-changelog && git add CHANGELOG.md && git commit -m \"doc: change log\"",
"tsc": "tsc",

@@ -52,25 +53,25 @@ "tsc:watch": "tsc --watch",

"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"auto-changelog": "^2.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"auto-changelog": "^2.2.1",
"dotenv": "^8.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"ts-jest": "^26.1.0",
"typedoc": "^0.17.7",
"typescript": "^3.9.5"
"ts-jest": "^26.5.2",
"typedoc": "^0.20.28",
"typescript": "^4.2.2"
},
"dependencies": {
"change-case": "^4.1.1",
"fast-node-logger": "^1.4.2",
"ldap-query-generator": "^0.8.1",
"ldap-ts-client": "^0.14.0",
"prettier": "^2.0.5"
"change-case": "^4.1.2",
"fast-node-logger": "^1.4.12",
"ldap-query-generator": "^0.8.3",
"ldap-ts-client": "^0.14.3",
"prettier": "^2.2.1"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc