UNPKG

xcoobee-sdk

Version:

The XcooBee SDK is a facility to abstract lower level calls and implement standard behaviors. The XcooBee team is providing this to improve the speed of implementation and show the best practices while interacting with XcooBee.

39 lines (37 loc) 806 B
const Config = require('./Config'); const Sdk = require('./Sdk'); const Utilities = require('./Utilities'); module.exports = { sdk: { /** * A reference to the XcooBee SDK `Config` class. * * ```js * const config = new XcooBee.sdk.Config({ ... }); * ``` * * @memberof SdkJs */ Config, /** * A reference to the XcooBee `Sdk` class. * * ```js * const sdk = new XcooBee.sdk.Sdk(...); * ``` * * @memberof SdkJs */ Sdk, /** * A reference to XcooBee additional helpers and utilities * that can be used independently of SDK * * ```js * XcooBee.sdk.Utilities.uploadFiles(files, policies) * .then(...); * ``` */ Utilities, }, };