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

@colmena/admin-lb-sdk

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@colmena/admin-lb-sdk - npm Package Compare versions

Comparing version 0.1.0 to 0.2.0

src/models/Core.ts

2

package.json
{
"name": "@colmena/admin-lb-sdk",
"version": "0.1.0",
"version": "0.2.0",
"publishConfig": {

@@ -5,0 +5,0 @@ "access": "public"

@@ -52,2 +52,3 @@ /**

import { EmailApi } from './services/custom/Email';
import { CoreApi } from './services/custom/Core';
import { StorageContainerApi } from './services/custom/StorageContainer';

@@ -97,2 +98,3 @@ import { SystemApi } from './services/custom/System';

EmailApi,
CoreApi,
StorageContainerApi,

@@ -99,0 +101,0 @@ SystemApi,

/* tslint:disable */
export * from './Email';
export * from './Core';
export * from './StorageContainer';

@@ -4,0 +5,0 @@ export * from './System';

/* tslint:disable */
export * from './Email';
export * from './Core';
export * from './StorageContainer';

@@ -4,0 +5,0 @@ export * from './System';

/* tslint:disable */
import { Injectable } from '@angular/core';
import { Email } from '../../models/Email';
import { Core } from '../../models/Core';
import { StorageContainer } from '../../models/StorageContainer';

@@ -24,2 +25,3 @@ import { System } from '../../models/System';

Email: Email,
Core: Core,
StorageContainer: StorageContainer,

@@ -26,0 +28,0 @@ System: System,

@@ -39,48 +39,2 @@ /* tslint:disable */

/**
* Show the modules loaded by the API
*
* @returns {object} An empty reference that will be
* populated with the actual data once the response is returned
* from the server.
*
* <em>
* (The remote method definition does not provide any description.
* This usually means the response is a `System` object.)
* </em>
*/
public modules(customHeaders?: Function): Observable<any> {
let _method: string = "GET";
let _url: string = LoopBackConfig.getPath() + "/" + LoopBackConfig.getApiVersion() +
"/System/modules";
let _routeParams: any = {};
let _postBody: any = {};
let _urlParams: any = {};
let result = this.request(_method, _url, _routeParams, _urlParams, _postBody, null, customHeaders);
return result;
}
/**
* Ping the API to retrieve its internal state
*
* @returns {object} An empty reference that will be
* populated with the actual data once the response is returned
* from the server.
*
* <em>
* (The remote method definition does not provide any description.
* This usually means the response is a `System` object.)
* </em>
*/
public ping(customHeaders?: Function): Observable<any> {
let _method: string = "GET";
let _url: string = LoopBackConfig.getPath() + "/" + LoopBackConfig.getApiVersion() +
"/System/ping";
let _routeParams: any = {};
let _postBody: any = {};
let _urlParams: any = {};
let result = this.request(_method, _url, _routeParams, _urlParams, _postBody, null, customHeaders);
return result;
}
/**
* The name of the model represented by this $resource,

@@ -87,0 +41,0 @@ * i.e. `System`.

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