@development-framework/dm-core
Advanced tools
Comparing version 1.0.6 to 1.0.7
{ | ||
"name": "@development-framework/dm-core", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "peerDependencies": { |
import { DefaultApi } from './configs/gen'; | ||
export declare class DmssAPI extends DefaultApi { | ||
constructor(token: string); | ||
constructor(token: string, dmssBasePath?: string); | ||
} | ||
export default DmssAPI; | ||
//# sourceMappingURL=DmssAPI.d.ts.map |
import { Configuration, DefaultApi } from './configs/gen'; | ||
export class DmssAPI extends DefaultApi { | ||
constructor(token) { | ||
constructor(token, dmssBasePath) { | ||
/* | ||
dmssBasePath is an optional parameter where you can specify the url for DMSS. Example: http://localhost:8000 | ||
(Note: a forward slash should not be included at the end of the url) | ||
*/ | ||
const DMSSConfiguration = new Configuration({ | ||
basePath: '/api/dmss', | ||
basePath: dmssBasePath || '/api/dmss', | ||
accessToken: token, | ||
@@ -7,0 +11,0 @@ }); |
{ | ||
"name": "@development-framework/dm-core", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "peerDependencies": { |
Sorry, the diff of this file is not supported yet
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
1003167
16851
0