@eluvio/elv-client-js 4.0.146 → 4.1.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 (48) hide show
  1. package/dist/ElvClient-min.js +2 -68
  2. package/dist/ElvClient-min.js.LICENSE.txt +72 -0
  3. package/dist/ElvClient-node-min.js +2 -67
  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 -68
  10. package/dist/ElvWalletClient-min.js.LICENSE.txt +72 -0
  11. package/dist/ElvWalletClient-node-min.js +2 -67
  12. package/dist/ElvWalletClient-node-min.js.LICENSE.txt +72 -0
  13. package/dist/src/AuthorizationClient.js +704 -703
  14. package/dist/src/ContentObjectAudit.js +56 -56
  15. package/dist/src/Crypto.js +85 -86
  16. package/dist/src/ElvClient.js +483 -471
  17. package/dist/src/ElvWallet.js +23 -23
  18. package/dist/src/EthClient.js +308 -307
  19. package/dist/src/FrameClient.js +62 -62
  20. package/dist/src/HttpClient.js +59 -58
  21. package/dist/src/PermissionsClient.js +470 -470
  22. package/dist/src/RemoteSigner.js +77 -76
  23. package/dist/src/UserProfileClient.js +357 -354
  24. package/dist/src/Utils.js +65 -64
  25. package/dist/src/Validation.js +10 -10
  26. package/dist/src/client/ABRPublishing.js +237 -237
  27. package/dist/src/client/AccessGroups.js +477 -474
  28. package/dist/src/client/ContentAccess.js +1749 -1802
  29. package/dist/src/client/ContentManagement.js +871 -871
  30. package/dist/src/client/Contracts.js +575 -578
  31. package/dist/src/client/Files.js +700 -684
  32. package/dist/src/client/LiveStream.js +659 -650
  33. package/dist/src/client/NFT.js +14 -14
  34. package/dist/src/client/NTP.js +84 -84
  35. package/dist/src/client/Shares.js +49 -49
  36. package/dist/src/walletClient/ClientMethods.js +977 -951
  37. package/dist/src/walletClient/Notifications.js +14 -14
  38. package/dist/src/walletClient/Profile.js +66 -66
  39. package/dist/src/walletClient/Utils.js +15 -15
  40. package/dist/src/walletClient/index.js +557 -550
  41. package/package.json +17 -16
  42. package/src/ElvClient.js +1 -0
  43. package/src/FrameClient.js +12 -0
  44. package/src/client/AccessGroups.js +1 -1
  45. package/src/client/ContentAccess.js +44 -71
  46. package/testScripts/Test.js +5 -1
  47. package/webpack.config.js +10 -13
  48. 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
+ */