@one-commerce/sdk-core 1.15.0 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/bundles/bundle.esm.js +31 -1
- package/lib/bundles/bundle.esm.js.map +1 -1
- package/lib/bundles/bundle.esm.min.js +1 -1
- package/lib/bundles/bundle.esm.min.js.map +1 -1
- package/lib/bundles/bundle.umd.js +31 -1
- package/lib/bundles/bundle.umd.js.map +1 -1
- package/lib/bundles/bundle.umd.min.js +1 -1
- package/lib/bundles/bundle.umd.min.js.map +1 -1
- package/lib/cjs/backofficeServices.js +33 -1
- package/lib/cjs/backofficeServices.js.map +1 -1
- package/lib/cjs/index.js +2 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/backofficeServices.js +14 -0
- package/lib/esm/backofficeServices.js.map +1 -1
- package/lib/esm/index.js +3 -2
- package/lib/esm/index.js.map +1 -1
- package/lib/types/backofficeServices.d.ts +6 -0
- package/lib/types/backofficeServices.d.ts.map +1 -1
- package/lib/types/index.d.ts +3 -1
- package/lib/types/index.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -490,6 +490,35 @@ var BackofficeCustomer = /*#__PURE__*/function (_BaseCallClass7) {
|
|
|
490
490
|
|
|
491
491
|
return _createClass(BackofficeCustomer);
|
|
492
492
|
}(BaseCallClass);
|
|
493
|
+
var BackofficePlugin = /*#__PURE__*/function (_BaseCallClass8) {
|
|
494
|
+
_inherits(BackofficePlugin, _BaseCallClass8);
|
|
495
|
+
|
|
496
|
+
var _super8 = _createSuper(BackofficePlugin);
|
|
497
|
+
|
|
498
|
+
function BackofficePlugin() {
|
|
499
|
+
var _this8;
|
|
500
|
+
|
|
501
|
+
_classCallCheck(this, BackofficePlugin);
|
|
502
|
+
|
|
503
|
+
for (var _len8 = arguments.length, args = new Array(_len8), _key8 = 0; _key8 < _len8; _key8++) {
|
|
504
|
+
args[_key8] = arguments[_key8];
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
_this8 = _super8.call.apply(_super8, [this].concat(args));
|
|
508
|
+
|
|
509
|
+
_defineProperty(_assertThisInitialized(_this8), "serviceName", 'plugin');
|
|
510
|
+
|
|
511
|
+
_defineProperty(_assertThisInitialized(_this8), "id", void 0);
|
|
512
|
+
|
|
513
|
+
_defineProperty(_assertThisInitialized(_this8), "srcUrl", void 0);
|
|
514
|
+
|
|
515
|
+
_defineProperty(_assertThisInitialized(_this8), "name", void 0);
|
|
516
|
+
|
|
517
|
+
return _this8;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
return _createClass(BackofficePlugin);
|
|
521
|
+
}(BaseCallClass);
|
|
493
522
|
|
|
494
523
|
var Events = /*#__PURE__*/function () {
|
|
495
524
|
function Events() {
|
|
@@ -1012,7 +1041,8 @@ var BackofficeSdk = /*#__PURE__*/function (_Sdk) {
|
|
|
1012
1041
|
tenant: new BackofficeTenant(_this5.callFunction.bind(_assertThisInitialized(_this5))),
|
|
1013
1042
|
layout: new BackofficeLayout(_this5.callFunction.bind(_assertThisInitialized(_this5))),
|
|
1014
1043
|
authorization: new BackofficeAuthorization(_this5.callFunction.bind(_assertThisInitialized(_this5))),
|
|
1015
|
-
customer: new BackofficeCustomer(_this5.callFunction.bind(_assertThisInitialized(_this5)))
|
|
1044
|
+
customer: new BackofficeCustomer(_this5.callFunction.bind(_assertThisInitialized(_this5))),
|
|
1045
|
+
plugin: new BackofficePlugin(_this5.callFunction.bind(_assertThisInitialized(_this5)))
|
|
1016
1046
|
});
|
|
1017
1047
|
|
|
1018
1048
|
return _this5;
|