indigitall-web-sdk 4.16.5 → 4.17.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/package.json +6 -6
- package/sdk.js +643 -0
- package/sdk.min.js +1 -1
- package/src/Indigitall.js +2 -2
package/src/Indigitall.js
CHANGED
|
@@ -996,7 +996,7 @@ var Indigitall = /*#__PURE__*/function () {
|
|
|
996
996
|
}, {
|
|
997
997
|
key: "link",
|
|
998
998
|
value: function link(externalId, channel, success, error) {
|
|
999
|
-
Indigitall.logIn(externalId, function (
|
|
999
|
+
Indigitall.logIn(externalId, function (_) {
|
|
1000
1000
|
_indigitallWebCustomer["default"].link(channel, success, error);
|
|
1001
1001
|
}, function (errorLogin) {
|
|
1002
1002
|
if (CommonUtils.isFunction(error)) error(errorLogin);
|
|
@@ -1016,7 +1016,7 @@ var Indigitall = /*#__PURE__*/function () {
|
|
|
1016
1016
|
}, {
|
|
1017
1017
|
key: "unlink",
|
|
1018
1018
|
value: function unlink(channel, success, error) {
|
|
1019
|
-
Indigitall.logout(function (
|
|
1019
|
+
Indigitall.logout(function (_) {
|
|
1020
1020
|
_indigitallWebCustomer["default"].unlink(channel, success, error);
|
|
1021
1021
|
}, function (errorUnlink) {
|
|
1022
1022
|
if (CommonUtils.isFunction(error)) error(errorUnlink);
|