@accounts/types
Advanced tools
Comparing version 0.33.1 to 0.33.2
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
tslib_1.__exportStar(require("./types/database-interface"), exports); | ||
tslib_1.__exportStar(require("./types/connection-informations"), exports); | ||
tslib_1.__exportStar(require("./types/tokens"), exports); | ||
tslib_1.__exportStar(require("./types/token-record"), exports); | ||
tslib_1.__exportStar(require("./types/user"), exports); | ||
tslib_1.__exportStar(require("./types/create-user"), exports); | ||
tslib_1.__exportStar(require("./types/create-user-result"), exports); | ||
tslib_1.__exportStar(require("./types/email-record"), exports); | ||
tslib_1.__exportStar(require("./types/login-result"), exports); | ||
tslib_1.__exportStar(require("./types/impersonation-result"), exports); | ||
tslib_1.__exportStar(require("./types/login-user-identity"), exports); | ||
tslib_1.__exportStar(require("./types/hook-listener"), exports); | ||
tslib_1.__exportStar(require("./types/authentication-service"), exports); | ||
tslib_1.__exportStar(require("./types/session/database-interface"), exports); | ||
tslib_1.__exportStar(require("./types/session/session"), exports); | ||
tslib_1.__exportStar(require("./types/services/password/create-user"), exports); | ||
tslib_1.__exportStar(require("./types/services/password/database-interface"), exports); | ||
tslib_1.__exportStar(require("./types/services/password/login-user"), exports); | ||
tslib_1.__exportStar(require("./types/services/magic-link/database-interface"), exports); | ||
tslib_1.__exportStar(require("./types/services/magic-link/login-user"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/database-interface"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/connection-informations"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/tokens"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/token-record"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/user"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/create-user"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/create-user-result"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/email-record"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/login-result"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/impersonation-result"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/login-user-identity"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/hook-listener"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/authentication-service"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/session/database-interface"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/session/session"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/services/password/create-user"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/services/password/database-interface"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/services/password/login-user"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/services/magic-link/database-interface"), exports); | ||
(0, tslib_1.__exportStar)(require("./types/services/magic-link/login-user"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -10,2 +10,5 @@ export interface Session { | ||
updatedAt: string; | ||
extraData?: { | ||
impersonatorUserId?: string; | ||
}; | ||
} |
{ | ||
"name": "@accounts/types", | ||
"version": "0.33.1", | ||
"version": "0.33.2", | ||
"description": "Accounts-js Types", | ||
@@ -35,10 +35,10 @@ "main": "lib/index.js", | ||
"dependencies": { | ||
"tslib": "2.3.0" | ||
"tslib": "2.3.1" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "26.0.24", | ||
"@types/node": "16.4.13", | ||
"jest": "27.0.6", | ||
"@types/jest": "27.0.2", | ||
"@types/node": "16.11.7", | ||
"jest": "27.3.1", | ||
"rimraf": "3.0.2", | ||
"ts-jest": "27.0.4" | ||
"ts-jest": "27.0.7" | ||
}, | ||
@@ -55,3 +55,4 @@ "scripts": { | ||
"coverage": "pnpm run testonly -- --coverage" | ||
} | ||
}, | ||
"readme": "# @accounts/types\n\n[![npm](https://img.shields.io/npm/v/@accounts/types)](https://www.npmjs.com/package/@accounts/types)\n[![npm downloads](https://img.shields.io/npm/dm/@accounts/types)](https://www.npmjs.com/package/@accounts/types)\n[![codecov](https://img.shields.io/codecov/c/github/accounts-js/accounts)](https://codecov.io/gh/accounts-js/accounts)\n[![License](https://img.shields.io/github/license/accounts-js/accounts)](https://github.com/accounts-js/accounts/blob/master/LICENSE)\n\nThis package is a devDependency for most packages of the suite.\n\nIt contains the types used across the accounts-js Suite.\n\n## Installation\n\n```\nyarn add @accounts/types\n```\n\n## Contributing\n\nAny contribution is very welcome, read our [contributing guide](https://github.com/accounts-js/accounts/blob/master/CONTRIBUTING.md) to see how to locally setup the repository and see our development process.\n" | ||
} |
@@ -10,2 +10,3 @@ export interface Session { | ||
updatedAt: string; | ||
extraData?: { impersonatorUserId?: string }; | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24475
421
+ Addedtslib@2.3.1(transitive)
- Removedtslib@2.3.0(transitive)
Updatedtslib@2.3.1