@schibsted/account-sdk-browser 4.8.6-beta → 4.8.7
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 +2 -2
- package/es5/global.js +2996 -3028
- 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 +2959 -2991
- 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 +3000 -3032
- 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 +2 -5
- package/src/identity.js +13 -31
- 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
|
@@ -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)
|