@enplug/sdk-dashboard
Advanced tools
Comparing version 5.0.0-dev.6 to 5.0.0-dev.7
@@ -97,3 +97,3 @@ var enplug = | ||
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__, exports, __webpack_require__(/*! ./exported-types */ "./src/exported-types.ts"), __webpack_require__(/*! ./utils */ "./src/utils.ts"), __webpack_require__(/*! ./internal-types */ "./src/internal-types.ts")], __WEBPACK_AMD_DEFINE_RESULT__ = (function (require, exports, exported_types_1, utils_1, internal_types_1) { | ||
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__, exports, __webpack_require__(/*! ./external-types */ "./src/external-types.ts"), __webpack_require__(/*! ./utils */ "./src/utils.ts"), __webpack_require__(/*! ./internal-types */ "./src/internal-types.ts")], __WEBPACK_AMD_DEFINE_RESULT__ = (function (require, exports, external_types_1, utils_1, internal_types_1) { | ||
"use strict"; | ||
@@ -280,3 +280,3 @@ Object.defineProperty(exports, "__esModule", { value: true }); | ||
Account.prototype.getDefaultAssets = function (level, levelId) { | ||
if (level === void 0) { level = exported_types_1.DefaultAssetLevel.Default; } | ||
if (level === void 0) { level = external_types_1.DefaultAssetLevel.Default; } | ||
utils_1.validateString(level, 'You must provide a level parameter that is either "Default", "Network", or "Account"'); | ||
@@ -954,5 +954,5 @@ if (level !== 'Account' && level !== 'Network' && level !== 'Default') { | ||
/***/ "./src/exported-types.ts": | ||
/***/ "./src/external-types.ts": | ||
/*!*******************************!*\ | ||
!*** ./src/exported-types.ts ***! | ||
!*** ./src/external-types.ts ***! | ||
\*******************************/ | ||
@@ -959,0 +959,0 @@ /*! no static exports found */ |
{ | ||
"name": "@enplug/sdk-dashboard", | ||
"version": "5.0.0-dev.6", | ||
"version": "5.0.0-dev.7", | ||
"description": "Enplug Dashboard SDK", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.ts", |
@@ -14,3 +14,3 @@ import { | ||
FontsApiItem, | ||
} from './exported-types'; | ||
} from './external-types'; | ||
import { BridgeBase } from './bridge/bridge-base'; | ||
@@ -17,0 +17,0 @@ import { validateArray, validateObject, validateString } from './utils'; |
@@ -11,3 +11,3 @@ import { | ||
ThemeAsset, | ||
} from './exported-types'; | ||
} from './external-types'; | ||
import { BridgeBase } from './bridge/bridge-base'; | ||
@@ -14,0 +14,0 @@ import { validateArray, validateBool, validateFunction, validateObject, validateString } from './utils'; |
@@ -5,2 +5,2 @@ import { EnplugDashboardSDK } from '.'; | ||
export * from './exported-types'; | ||
export * from './external-types'; |
@@ -24,3 +24,3 @@ import { Account } from './account'; | ||
const bridge = new Bridge(window); | ||
const sdk = { | ||
const sdk: EnplugDashboardSDK = { | ||
account: new Account(bridge), | ||
@@ -27,0 +27,0 @@ dashboard: new Dashboard(bridge), |
import { BridgeBase } from './bridge/bridge-base'; | ||
import { MessageNames, MessageNamespaces } from './internal-types'; | ||
import { PreapprovalDialogOptions, SocialItemsResponse } from './exported-types'; | ||
import { PreapprovalDialogOptions, SocialItemsResponse } from './external-types'; | ||
import { validateObject, validateString } from './utils'; | ||
@@ -5,0 +5,0 @@ |
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
190551