Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@development-framework/dm-core

Package Overview
Dependencies
Maintainers
4
Versions
137
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@development-framework/dm-core - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

2

dist/package.json
{
"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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc