@schibsted/account-sdk-browser 4.8.6-beta.2 → 4.8.7-beta
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/LICENSE.md +1 -1
- package/README.md +12 -12
- package/es5/global.js +47 -48
- package/es5/global.js.map +1 -1
- package/es5/global.min.js +1 -1
- package/es5/global.min.js.map +1 -1
- package/es5/identity.js +44 -45
- package/es5/identity.js.map +1 -1
- package/es5/identity.min.js +1 -1
- package/es5/identity.min.js.map +1 -1
- package/es5/index.js +46 -47
- package/es5/index.js.map +1 -1
- package/es5/index.min.js +1 -1
- package/es5/index.min.js.map +1 -1
- package/es5/monetization.js +20 -21
- package/es5/monetization.js.map +1 -1
- package/es5/monetization.min.js +1 -1
- package/es5/monetization.min.js.map +1 -1
- package/es5/payment.js +19 -20
- package/es5/payment.js.map +1 -1
- package/es5/payment.min.js.map +1 -1
- package/identity.js +1 -1
- package/index.js +1 -1
- package/monetization.js +1 -1
- package/package.json +3 -6
- package/payment.js +1 -1
- package/src/RESTClient.js +1 -1
- package/src/SDKError.js +1 -1
- package/src/cache.js +1 -1
- package/src/config.js +1 -1
- package/src/es5/global.js +1 -1
- package/src/es5/identity.js +1 -1
- package/src/es5/index.js +1 -1
- package/src/es5/monetization.js +1 -1
- package/src/es5/payment.js +1 -1
- package/src/identity.d.ts +6 -1
- package/src/identity.js +28 -15
- package/src/monetization.js +1 -1
- package/src/object.js +9 -9
- package/src/payment.js +1 -1
- package/src/popup.js +1 -1
- package/src/spidTalk.js +1 -1
- package/src/url.js +1 -1
- package/src/validate.js +1 -1
- package/src/version.js +1 -1
package/LICENSE.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Copyright (c)
|
|
1
|
+
Copyright (c) 2024 Schibsted Products & Technology AS
|
|
2
2
|
|
|
3
3
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
4
4
|
associated documentation files (the "Software"), to deal in the Software without restriction,
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[](https://github.com/schibsted/account-sdk-browser)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+

|
|
4
4
|
[](https://codecov.io/gh/schibsted/account-sdk-browser)
|
|
5
5
|
[](https://snyk.io/test/github/schibsted/account-sdk-browser)
|
|
6
6
|
|
|
@@ -17,22 +17,22 @@ This sdk mainly communicates with a service named Session Service, which is avai
|
|
|
17
17
|
domains (i.e. id.vg.no) to avoid Third-Party Cookie request.
|
|
18
18
|
|
|
19
19
|
Since browsers started to block Third-Party Cookies, your top domain from local machine needs to
|
|
20
|
-
match your
|
|
21
|
-
and will not be sent with XHR request.
|
|
20
|
+
match your Session Service top domain. Otherwise, the Session Service cookie will be a third-party cookie
|
|
21
|
+
and will not be sent with a XHR request.
|
|
22
22
|
|
|
23
|
-
The same applies to cross scheme requests. The
|
|
23
|
+
The same applies to cross scheme requests. The Session Service is hosted on https and therefore you need to [run your site with HTTPS locally](https://web.dev/how-to-use-local-https/).
|
|
24
24
|
|
|
25
|
-
For example if your `pre` domain is pre.sdk-example.com, and it uses id.pre.sdk-example.com
|
|
26
|
-
|
|
25
|
+
For example if your `pre` domain is pre.sdk-example.com, and it uses id.pre.sdk-example.com Session Service
|
|
26
|
+
domain, your local domain should be local.sdk-example.com.
|
|
27
27
|
|
|
28
28
|
1. Do `npm install --save @schibsted/account-sdk-browser`
|
|
29
29
|
1. Use this library as you would any other npm module: `import { Identity, Monetization, Payment } from '@schibsted/account-sdk-browser'`
|
|
30
30
|
With CommonJS it is possible to `require` the modules Identity, Monetization and Payment
|
|
31
|
-
by appending `/identity`, `/monetization'` or `/payment'
|
|
31
|
+
by appending `/identity`, `/monetization'` or `/payment'`.
|
|
32
32
|
1. Build your site as you prefer. This library uses modern JavaScript syntax (including async/await
|
|
33
33
|
and other ES2017 and WHATWG features) by default. We recommend that you do any transpilation
|
|
34
34
|
yourself for the browser versions you need to cater to. See [this paragraph](#polyfills) for
|
|
35
|
-
info about our
|
|
35
|
+
info about our Babel-ified version and info about polyfills.
|
|
36
36
|
1. Initiate the SDK and provide at least `clientId`, `env` and `sessionDomain`.
|
|
37
37
|
|
|
38
38
|
If this is for a new site and there is no sessionDomain yet, contact
|
|
@@ -194,7 +194,7 @@ will remove the Schibsted account brand session. User will still be logged into
|
|
|
194
194
|
|
|
195
195
|
The preferred method for checking whether a user has access to a product/subscription is
|
|
196
196
|
[Monetization#hasAccess](https://schibsted.github.io/account-sdk-browser/Monetization.html#hasAccess).
|
|
197
|
-
It requires using
|
|
197
|
+
It requires using Session Service, and supports both Schibsted account productId's and Zuora
|
|
198
198
|
feature id's.
|
|
199
199
|
|
|
200
200
|
#### Example
|
|
@@ -247,7 +247,7 @@ paymentSDK.payWithPaylink(paylink)
|
|
|
247
247
|
#### Polyfills
|
|
248
248
|
|
|
249
249
|
This SDK uses modern JavaScript features. If you support older browsers, you should use a tool like
|
|
250
|
-
babel to transform the JavaScript as needed. However
|
|
250
|
+
babel to transform the JavaScript as needed. However, since certain teams have deployment pipelines
|
|
251
251
|
where it's difficult to do their own transpilation, we do provide some opt-in es5 files as well:
|
|
252
252
|
|
|
253
253
|
1. `@schibsted/account-sdk-browser/es5`: Include both `Identity`, `Monetization` and `Payment`.
|
|
@@ -303,12 +303,12 @@ Tags are pushed to NPM via Travis. To release a new version, run in master
|
|
|
303
303
|
$ npm version <major|minor|patch>
|
|
304
304
|
```
|
|
305
305
|
|
|
306
|
-
which will run the test, update version in package.json,
|
|
306
|
+
which will run the test, update version in package.json, commit, tag the commit
|
|
307
307
|
and push.
|
|
308
308
|
|
|
309
309
|
## LICENSE
|
|
310
310
|
|
|
311
|
-
Copyright (c)
|
|
311
|
+
Copyright (c) 2024 Schibsted Products & Technology AS
|
|
312
312
|
|
|
313
313
|
Licensed under the [MIT
|
|
314
314
|
License](https://github.com/schibsted/account-sdk-browser/blob/master/LICENSE.md)
|
package/es5/global.js
CHANGED
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
__webpack_require__.r(__webpack_exports__);
|
|
93
93
|
/* harmony import */ var core_js_modules_es_object_assign_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
|
|
94
94
|
/* harmony import */ var core_js_modules_es_object_assign_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_assign_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
95
|
-
/* Copyright
|
|
95
|
+
/* Copyright 2024 Schibsted Products & Technology AS. Licensed under the terms of the MIT license.
|
|
96
96
|
* See LICENSE.md in the project root.
|
|
97
97
|
*/
|
|
98
98
|
|
|
@@ -967,7 +967,7 @@ module.exports = function (argument) {
|
|
|
967
967
|
/***/ (function(module, exports, __webpack_require__) {
|
|
968
968
|
|
|
969
969
|
"use strict";
|
|
970
|
-
/* Copyright
|
|
970
|
+
/* Copyright 2024 Schibsted Products & Technology AS. Licensed under the terms of the MIT license.
|
|
971
971
|
* See LICENSE.md in the project root.
|
|
972
972
|
*/
|
|
973
973
|
|
|
@@ -1766,7 +1766,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1766
1766
|
/* harmony import */ var _SDKError_js__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(190);
|
|
1767
1767
|
/* harmony import */ var _spidTalk_js__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(218);
|
|
1768
1768
|
/* harmony import */ var _version_js__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(219);
|
|
1769
|
-
/* Copyright
|
|
1769
|
+
/* Copyright 2024 Schibsted Products & Technology AS. Licensed under the terms of the MIT license.
|
|
1770
1770
|
* See LICENSE.md in the project root.
|
|
1771
1771
|
*/
|
|
1772
1772
|
|
|
@@ -2003,6 +2003,7 @@ var Identity = /*#__PURE__*/function (_EventEmitter) {
|
|
|
2003
2003
|
* @param {function} [options.log] - A function that receives debug log information. If not set,
|
|
2004
2004
|
* no logging will be done
|
|
2005
2005
|
* @param {object} [options.window] - window object
|
|
2006
|
+
* @param {function} [options.callbackBeforeRedirect] - callback triggered before session refresh redirect happen
|
|
2006
2007
|
* @throws {SDKError} - If any of options are invalid
|
|
2007
2008
|
*/
|
|
2008
2009
|
function Identity(_ref) {
|
|
@@ -2014,7 +2015,9 @@ var Identity = /*#__PURE__*/function (_EventEmitter) {
|
|
|
2014
2015
|
env = _ref$env === void 0 ? 'PRE' : _ref$env,
|
|
2015
2016
|
log = _ref.log,
|
|
2016
2017
|
_ref$window = _ref.window,
|
|
2017
|
-
window = _ref$window === void 0 ? globalWindow() : _ref$window
|
|
2018
|
+
window = _ref$window === void 0 ? globalWindow() : _ref$window,
|
|
2019
|
+
_ref$callbackBeforeRe = _ref.callbackBeforeRedirect,
|
|
2020
|
+
callbackBeforeRedirect = _ref$callbackBeforeRe === void 0 ? function () {} : _ref$callbackBeforeRe;
|
|
2018
2021
|
_classCallCheck(this, Identity);
|
|
2019
2022
|
_this = _super.call(this);
|
|
2020
2023
|
Object(_validate_js__WEBPACK_IMPORTED_MODULE_55__["assert"])(Object(_validate_js__WEBPACK_IMPORTED_MODULE_55__["isNonEmptyString"])(clientId), 'clientId parameter is required');
|
|
@@ -2031,6 +2034,7 @@ var Identity = /*#__PURE__*/function (_EventEmitter) {
|
|
|
2031
2034
|
_this.redirectUri = redirectUri;
|
|
2032
2035
|
_this.env = env;
|
|
2033
2036
|
_this.log = log;
|
|
2037
|
+
_this.callbackBeforeRedirect = callbackBeforeRedirect;
|
|
2034
2038
|
_this._sessionDomain = sessionDomain;
|
|
2035
2039
|
|
|
2036
2040
|
// Internal hack: set to false to always refresh from hassession
|
|
@@ -2250,10 +2254,8 @@ var Identity = /*#__PURE__*/function (_EventEmitter) {
|
|
|
2250
2254
|
if (Number.isInteger(options)) {
|
|
2251
2255
|
expiresIn = options;
|
|
2252
2256
|
} else if (_typeof(options) == 'object') {
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
var _options$domain = options.domain;
|
|
2256
|
-
domain = _options$domain === void 0 ? domain : _options$domain;
|
|
2257
|
+
expiresIn = options.expiresIn || expiresIn;
|
|
2258
|
+
domain = options.domain || domain;
|
|
2257
2259
|
}
|
|
2258
2260
|
Object(_validate_js__WEBPACK_IMPORTED_MODULE_55__["assert"])(Number.isInteger(expiresIn), "'expiresIn' must be an integer");
|
|
2259
2261
|
Object(_validate_js__WEBPACK_IMPORTED_MODULE_55__["assert"])(expiresIn >= 0, "'expiresIn' cannot be negative");
|
|
@@ -2310,7 +2312,8 @@ var Identity = /*#__PURE__*/function (_EventEmitter) {
|
|
|
2310
2312
|
}, {
|
|
2311
2313
|
key: "_clearVarnishCookie",
|
|
2312
2314
|
value: function _clearVarnishCookie() {
|
|
2313
|
-
var
|
|
2315
|
+
var baseDomain = this._session && typeof this._session.baseDomain === 'string' ? this._session.baseDomain : document.domain;
|
|
2316
|
+
var domain = this.varnishCookieDomain || baseDomain || '';
|
|
2314
2317
|
document.cookie = "SP_ID=nothing; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; domain=.".concat(domain);
|
|
2315
2318
|
}
|
|
2316
2319
|
|
|
@@ -2371,12 +2374,11 @@ var Identity = /*#__PURE__*/function (_EventEmitter) {
|
|
|
2371
2374
|
var _checkRedirectionNeed = function _checkRedirectionNeed() {
|
|
2372
2375
|
var sessionData = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
2373
2376
|
var sessionDataKeys = Object.keys(sessionData);
|
|
2374
|
-
|
|
2375
|
-
return isRedirectNeeded;
|
|
2377
|
+
return sessionDataKeys.length === 1 && sessionDataKeys[0] === 'redirectURL';
|
|
2376
2378
|
};
|
|
2377
2379
|
var _getSession = /*#__PURE__*/function () {
|
|
2378
2380
|
var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
2379
|
-
var cachedSession, sessionData, expiresIn,
|
|
2381
|
+
var cachedSession, sessionData, expiresIn, _expiresIn;
|
|
2380
2382
|
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
2381
2383
|
while (1) switch (_context.prev = _context.next) {
|
|
2382
2384
|
case 0:
|
|
@@ -2395,7 +2397,7 @@ var Identity = /*#__PURE__*/function (_EventEmitter) {
|
|
|
2395
2397
|
sessionData = null;
|
|
2396
2398
|
_context.prev = 5;
|
|
2397
2399
|
_context.next = 8;
|
|
2398
|
-
return _this2._sessionService.get('/session');
|
|
2400
|
+
return _this2._sessionService.get('/v2/session');
|
|
2399
2401
|
case 8:
|
|
2400
2402
|
sessionData = _context.sent;
|
|
2401
2403
|
_context.next = 15;
|
|
@@ -2412,30 +2414,28 @@ var Identity = /*#__PURE__*/function (_EventEmitter) {
|
|
|
2412
2414
|
throw _context.t0;
|
|
2413
2415
|
case 15:
|
|
2414
2416
|
if (!sessionData) {
|
|
2415
|
-
_context.next =
|
|
2417
|
+
_context.next = 22;
|
|
2416
2418
|
break;
|
|
2417
2419
|
}
|
|
2418
2420
|
if (!_checkRedirectionNeed(sessionData)) {
|
|
2419
|
-
_context.next =
|
|
2421
|
+
_context.next = 21;
|
|
2420
2422
|
break;
|
|
2421
2423
|
}
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
};
|
|
2428
|
-
_this2.emit('redirectToSessionService');
|
|
2429
|
-
_this2.window.location.href = _this2._sessionService.makeUrl(sessionData.redirectURL.substring(sessionData.redirectURL.lastIndexOf('/')), params);
|
|
2424
|
+
_context.next = 19;
|
|
2425
|
+
return _this2.callbackBeforeRedirect();
|
|
2426
|
+
case 19:
|
|
2427
|
+
_this2.window.location.href = _this2._sessionService.makeUrl(sessionData.redirectURL, {
|
|
2428
|
+
redirect_uri: _this2.window.location.origin
|
|
2429
|
+
});
|
|
2430
2430
|
return _context.abrupt("return");
|
|
2431
|
-
case
|
|
2431
|
+
case 21:
|
|
2432
2432
|
if (_this2._enableSessionCaching) {
|
|
2433
2433
|
_expiresIn = 1000 * (sessionData.expiresIn || 300);
|
|
2434
2434
|
_this2.cache.set(HAS_SESSION_CACHE_KEY, sessionData, _expiresIn);
|
|
2435
2435
|
}
|
|
2436
|
-
case
|
|
2436
|
+
case 22:
|
|
2437
2437
|
return _context.abrupt("return", _postProcess(sessionData));
|
|
2438
|
-
case
|
|
2438
|
+
case 23:
|
|
2439
2439
|
case "end":
|
|
2440
2440
|
return _context.stop();
|
|
2441
2441
|
}
|
|
@@ -8014,7 +8014,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
8014
8014
|
/* harmony import */ var core_js_modules_es_symbol_iterator_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(173);
|
|
8015
8015
|
/* harmony import */ var core_js_modules_es_symbol_iterator_js__WEBPACK_IMPORTED_MODULE_9___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_iterator_js__WEBPACK_IMPORTED_MODULE_9__);
|
|
8016
8016
|
/* harmony import */ var _SDKError_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(190);
|
|
8017
|
-
/* Copyright
|
|
8017
|
+
/* Copyright 2024 Schibsted Products & Technology AS. Licensed under the terms of the MIT license.
|
|
8018
8018
|
* See LICENSE.md in the project root.
|
|
8019
8019
|
*/
|
|
8020
8020
|
|
|
@@ -9736,7 +9736,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9736
9736
|
/* harmony import */ var core_js_modules_es_number_constructor_js__WEBPACK_IMPORTED_MODULE_21___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_number_constructor_js__WEBPACK_IMPORTED_MODULE_21__);
|
|
9737
9737
|
/* harmony import */ var core_js_modules_es_symbol_iterator_js__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(173);
|
|
9738
9738
|
/* harmony import */ var core_js_modules_es_symbol_iterator_js__WEBPACK_IMPORTED_MODULE_22___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_iterator_js__WEBPACK_IMPORTED_MODULE_22__);
|
|
9739
|
-
/* Copyright
|
|
9739
|
+
/* Copyright 2024 Schibsted Products & Technology AS. Licensed under the terms of the MIT license.
|
|
9740
9740
|
* See LICENSE.md in the project root.
|
|
9741
9741
|
*/
|
|
9742
9742
|
|
|
@@ -10332,7 +10332,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10332
10332
|
/* harmony import */ var core_js_modules_es_regexp_exec_js__WEBPACK_IMPORTED_MODULE_14___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_exec_js__WEBPACK_IMPORTED_MODULE_14__);
|
|
10333
10333
|
/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(184);
|
|
10334
10334
|
/* harmony import */ var _SDKError_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(190);
|
|
10335
|
-
/* Copyright
|
|
10335
|
+
/* Copyright 2024 Schibsted Products & Technology AS. Licensed under the terms of the MIT license.
|
|
10336
10336
|
* See LICENSE.md in the project root.
|
|
10337
10337
|
*/
|
|
10338
10338
|
|
|
@@ -10383,28 +10383,27 @@ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
|
10383
10383
|
* keys for undefined values are removed.
|
|
10384
10384
|
*/
|
|
10385
10385
|
function cloneDefined() {
|
|
10386
|
-
var
|
|
10386
|
+
var result = {};
|
|
10387
10387
|
for (var _len = arguments.length, sources = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
10388
10388
|
sources[_key] = arguments[_key];
|
|
10389
10389
|
}
|
|
10390
10390
|
if (!(sources && sources.length)) {
|
|
10391
10391
|
throw new _SDKError_js__WEBPACK_IMPORTED_MODULE_16__["default"]('No objects to clone');
|
|
10392
10392
|
}
|
|
10393
|
-
sources.forEach(function (
|
|
10394
|
-
Object(_validate_js__WEBPACK_IMPORTED_MODULE_15__["assert"])(Object(_validate_js__WEBPACK_IMPORTED_MODULE_15__["isObject"])(
|
|
10395
|
-
if (Object(_validate_js__WEBPACK_IMPORTED_MODULE_15__["isNonEmptyObj"])(
|
|
10396
|
-
Object.entries(
|
|
10393
|
+
sources.forEach(function (source) {
|
|
10394
|
+
Object(_validate_js__WEBPACK_IMPORTED_MODULE_15__["assert"])(Object(_validate_js__WEBPACK_IMPORTED_MODULE_15__["isObject"])(source));
|
|
10395
|
+
if (Object(_validate_js__WEBPACK_IMPORTED_MODULE_15__["isNonEmptyObj"])(source)) {
|
|
10396
|
+
Object.entries(source).forEach(function (_ref) {
|
|
10397
10397
|
var _ref2 = _slicedToArray(_ref, 2),
|
|
10398
10398
|
key = _ref2[0],
|
|
10399
|
-
|
|
10400
|
-
if (
|
|
10401
|
-
|
|
10402
|
-
dest[key] = Object(_validate_js__WEBPACK_IMPORTED_MODULE_15__["isObject"])(val) ? cloneDeep(val) : val;
|
|
10399
|
+
value = _ref2[1];
|
|
10400
|
+
if (typeof value !== 'undefined') {
|
|
10401
|
+
result[key] = Object(_validate_js__WEBPACK_IMPORTED_MODULE_15__["isObject"])(value) ? cloneDeep(value) : value;
|
|
10403
10402
|
}
|
|
10404
10403
|
});
|
|
10405
10404
|
}
|
|
10406
10405
|
});
|
|
10407
|
-
return
|
|
10406
|
+
return result;
|
|
10408
10407
|
}
|
|
10409
10408
|
|
|
10410
10409
|
/**
|
|
@@ -10621,7 +10620,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10621
10620
|
/* harmony import */ var core_js_modules_web_dom_collections_iterator_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(174);
|
|
10622
10621
|
/* harmony import */ var core_js_modules_web_dom_collections_iterator_js__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_iterator_js__WEBPACK_IMPORTED_MODULE_6__);
|
|
10623
10622
|
/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(184);
|
|
10624
|
-
/* Copyright
|
|
10623
|
+
/* Copyright 2024 Schibsted Products & Technology AS. Licensed under the terms of the MIT license.
|
|
10625
10624
|
* See LICENSE.md in the project root.
|
|
10626
10625
|
*/
|
|
10627
10626
|
|
|
@@ -10663,7 +10662,7 @@ function urlMapper(url, urlMap) {
|
|
|
10663
10662
|
__webpack_require__.r(__webpack_exports__);
|
|
10664
10663
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ENDPOINTS", function() { return ENDPOINTS; });
|
|
10665
10664
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "NAMESPACE", function() { return NAMESPACE; });
|
|
10666
|
-
/* Copyright
|
|
10665
|
+
/* Copyright 2024 Schibsted Products & Technology AS. Licensed under the terms of the MIT license.
|
|
10667
10666
|
* See LICENSE.md in the project root.
|
|
10668
10667
|
*/
|
|
10669
10668
|
|
|
@@ -10850,7 +10849,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
10850
10849
|
/* harmony import */ var core_js_modules_web_dom_collections_iterator_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(174);
|
|
10851
10850
|
/* harmony import */ var core_js_modules_web_dom_collections_iterator_js__WEBPACK_IMPORTED_MODULE_13___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_iterator_js__WEBPACK_IMPORTED_MODULE_13__);
|
|
10852
10851
|
/* harmony import */ var _SDKError_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(190);
|
|
10853
|
-
/* Copyright
|
|
10852
|
+
/* Copyright 2024 Schibsted Products & Technology AS. Licensed under the terms of the MIT license.
|
|
10854
10853
|
* See LICENSE.md in the project root.
|
|
10855
10854
|
*/
|
|
10856
10855
|
|
|
@@ -11388,7 +11387,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11388
11387
|
|
|
11389
11388
|
|
|
11390
11389
|
|
|
11391
|
-
/* Copyright
|
|
11390
|
+
/* Copyright 2024 Schibsted Products & Technology AS. Licensed under the terms of the MIT license.
|
|
11392
11391
|
* See LICENSE.md in the project root.
|
|
11393
11392
|
*/
|
|
11394
11393
|
|
|
@@ -11547,7 +11546,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11547
11546
|
/* harmony import */ var _object_js__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(198);
|
|
11548
11547
|
/* harmony import */ var _url_js__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(204);
|
|
11549
11548
|
/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(184);
|
|
11550
|
-
/* Copyright
|
|
11549
|
+
/* Copyright 2024 Schibsted Products & Technology AS. Licensed under the terms of the MIT license.
|
|
11551
11550
|
* See LICENSE.md in the project root.
|
|
11552
11551
|
*/
|
|
11553
11552
|
|
|
@@ -11902,7 +11901,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11902
11901
|
/* harmony import */ var core_js_modules_web_dom_collections_iterator_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(174);
|
|
11903
11902
|
/* harmony import */ var core_js_modules_web_dom_collections_iterator_js__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_iterator_js__WEBPACK_IMPORTED_MODULE_6__);
|
|
11904
11903
|
/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(184);
|
|
11905
|
-
/* Copyright
|
|
11904
|
+
/* Copyright 2024 Schibsted Products & Technology AS. Licensed under the terms of the MIT license.
|
|
11906
11905
|
* See LICENSE.md in the project root.
|
|
11907
11906
|
*/
|
|
11908
11907
|
|
|
@@ -11961,7 +11960,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11961
11960
|
|
|
11962
11961
|
|
|
11963
11962
|
|
|
11964
|
-
var version = '4.8.
|
|
11963
|
+
var version = '4.8.7-beta';
|
|
11965
11964
|
/* harmony default export */ __webpack_exports__["default"] = (version);
|
|
11966
11965
|
|
|
11967
11966
|
/***/ }),
|
|
@@ -12029,7 +12028,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12029
12028
|
/* harmony import */ var _spidTalk_js__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(218);
|
|
12030
12029
|
/* harmony import */ var _SDKError_js__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(190);
|
|
12031
12030
|
/* harmony import */ var _version_js__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(219);
|
|
12032
|
-
/* Copyright
|
|
12031
|
+
/* Copyright 2024 Schibsted Products & Technology AS. Licensed under the terms of the MIT license.
|
|
12033
12032
|
* See LICENSE.md in the project root.
|
|
12034
12033
|
*/
|
|
12035
12034
|
|
|
@@ -12374,7 +12373,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12374
12373
|
/* harmony import */ var _popup_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(212);
|
|
12375
12374
|
/* harmony import */ var _RESTClient_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(215);
|
|
12376
12375
|
/* harmony import */ var _spidTalk_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(218);
|
|
12377
|
-
/* Copyright
|
|
12376
|
+
/* Copyright 2024 Schibsted Products & Technology AS. Licensed under the terms of the MIT license.
|
|
12378
12377
|
* See LICENSE.md in the project root.
|
|
12379
12378
|
*/
|
|
12380
12379
|
|