@eluvio/elv-client-js 4.0.147 → 4.2.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.
Files changed (47) hide show
  1. package/dist/ElvClient-min.js +2 -67
  2. package/dist/ElvClient-min.js.LICENSE.txt +72 -0
  3. package/dist/ElvClient-node-min.js +2 -66
  4. package/dist/ElvClient-node-min.js.LICENSE.txt +72 -0
  5. package/dist/ElvFrameClient-min.js +2 -60
  6. package/dist/ElvFrameClient-min.js.LICENSE.txt +72 -0
  7. package/dist/ElvPermissionsClient-min.js +2 -60
  8. package/dist/ElvPermissionsClient-min.js.LICENSE.txt +72 -0
  9. package/dist/ElvWalletClient-min.js +2 -67
  10. package/dist/ElvWalletClient-min.js.LICENSE.txt +72 -0
  11. package/dist/ElvWalletClient-node-min.js +2 -66
  12. package/dist/ElvWalletClient-node-min.js.LICENSE.txt +72 -0
  13. package/dist/src/AuthorizationClient.js +713 -715
  14. package/dist/src/ContentObjectAudit.js +59 -59
  15. package/dist/src/Crypto.js +85 -86
  16. package/dist/src/ElvClient.js +532 -501
  17. package/dist/src/ElvWallet.js +30 -28
  18. package/dist/src/EthClient.js +316 -316
  19. package/dist/src/FrameClient.js +70 -71
  20. package/dist/src/HttpClient.js +60 -60
  21. package/dist/src/Id.js +1 -2
  22. package/dist/src/PermissionsClient.js +501 -489
  23. package/dist/src/RemoteSigner.js +83 -84
  24. package/dist/src/UserProfileClient.js +392 -374
  25. package/dist/src/Utils.js +67 -67
  26. package/dist/src/Validation.js +20 -12
  27. package/dist/src/client/ABRPublishing.js +412 -356
  28. package/dist/src/client/AccessGroups.js +479 -476
  29. package/dist/src/client/ContentAccess.js +1750 -1804
  30. package/dist/src/client/ContentManagement.js +874 -874
  31. package/dist/src/client/Contracts.js +586 -590
  32. package/dist/src/client/Files.js +702 -686
  33. package/dist/src/client/LiveConf.js +3 -5
  34. package/dist/src/client/LiveStream.js +659 -652
  35. package/dist/src/client/NFT.js +16 -16
  36. package/dist/src/client/NTP.js +84 -84
  37. package/dist/src/client/Shares.js +51 -51
  38. package/dist/src/walletClient/ClientMethods.js +979 -953
  39. package/dist/src/walletClient/Notifications.js +14 -14
  40. package/dist/src/walletClient/Profile.js +68 -68
  41. package/dist/src/walletClient/Utils.js +17 -17
  42. package/dist/src/walletClient/index.js +574 -564
  43. package/package.json +17 -16
  44. package/src/client/AccessGroups.js +1 -1
  45. package/testScripts/Test.js +5 -1
  46. package/webpack.config.js +10 -13
  47. package/dist/src/ContentObjectVerification.js +0 -281
@@ -0,0 +1,72 @@
1
+ /*!
2
+ * The buffer module from node.js, for the browser.
3
+ *
4
+ * @author Feross Aboukhadijeh <https://feross.org>
5
+ * @license MIT
6
+ */
7
+
8
+ /*!
9
+ * URI.js - Mutating URLs
10
+ *
11
+ * Version: 1.19.11
12
+ *
13
+ * Author: Rodney Rehm
14
+ * Web: http://medialize.github.io/URI.js/
15
+ *
16
+ * Licensed under
17
+ * MIT License http://www.opensource.org/licenses/mit-license
18
+ *
19
+ */
20
+
21
+ /*!
22
+ * URI.js - Mutating URLs
23
+ * IPv6 Support
24
+ *
25
+ * Version: 1.19.11
26
+ *
27
+ * Author: Rodney Rehm
28
+ * Web: http://medialize.github.io/URI.js/
29
+ *
30
+ * Licensed under
31
+ * MIT License http://www.opensource.org/licenses/mit-license
32
+ *
33
+ */
34
+
35
+ /*!
36
+ * URI.js - Mutating URLs
37
+ * Second Level Domain (SLD) Support
38
+ *
39
+ * Version: 1.19.11
40
+ *
41
+ * Author: Rodney Rehm
42
+ * Web: http://medialize.github.io/URI.js/
43
+ *
44
+ * Licensed under
45
+ * MIT License http://www.opensource.org/licenses/mit-license
46
+ *
47
+ */
48
+
49
+ /*! https://mths.be/punycode v1.4.0 by @mathias */
50
+
51
+ /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
52
+
53
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */
54
+
55
+ /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
56
+
57
+ /**
58
+ * @license Fraction.js v4.3.7 31/08/2023
59
+ * https://www.xarg.org/2014/03/rational-numbers-in-javascript/
60
+ *
61
+ * Copyright (c) 2023, Robert Eisele (robert@raw.org)
62
+ * Dual licensed under the MIT or GPL Version 2 licenses.
63
+ **/
64
+
65
+ /**
66
+ * [js-sha3]{@link https://github.com/emn178/js-sha3}
67
+ *
68
+ * @version 0.8.0
69
+ * @author Chen, Yi-Cyuan [emn178@gmail.com]
70
+ * @copyright Chen, Yi-Cyuan 2015-2018
71
+ * @license MIT
72
+ */