@colmena/admin-lb-sdk
Advanced tools
Comparing version 0.1.0 to 0.2.0
{ | ||
"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`. |
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
299453
54
9164