@eluvio/elv-client-js 3.2.29 → 3.2.31
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/README.md +9 -0
- package/dist/ElvClient-min.js +5 -5
- package/dist/ElvClient-node-min.js +7 -7
- package/dist/ElvFrameClient-min.js +17 -10
- package/dist/ElvWalletClient-min.js +5 -5
- package/dist/ElvWalletClient-node-min.js +7 -7
- package/dist/src/FrameClient.js +5 -1
- package/package.json +1 -1
- package/src/FrameClient.js +5 -0
- package/src/walletClient/Configuration.js +2 -1
- package/testScripts/DraftFinalize.js +51 -0
- package/testScripts/OfferingEnsureStrongDrm.js +86 -0
- package/testScripts/abr_profile_4k_both.json +15 -6
- package/testScripts/abr_profile_4k_clear.json +14 -5
- package/testScripts/abr_profile_4k_drm.json +14 -5
- package/testScripts/abr_profile_both.json +10 -1
- package/testScripts/abr_profile_clear.json +10 -1
- package/testScripts/abr_profile_drm.json +10 -1
- package/utilities/WriteTokenDecode.js +36 -0
- package/utilities/example_files/abr_profile_4k_both.json +15 -6
- package/utilities/example_files/abr_profile_4k_clear.json +14 -5
- package/utilities/example_files/abr_profile_4k_drm.json +14 -5
- package/utilities/example_files/abr_profile_both.json +10 -1
- package/utilities/example_files/abr_profile_clear.json +3 -3
- package/utilities/example_files/abr_profile_clear_hls_only.json +3 -3
- package/utilities/example_files/abr_profile_drm.json +10 -1
- package/utilities/example_files/abr_profile_drm_hls_only.json +10 -1
- package/utilities/lib/concerns/Draft.js +9 -2
package/README.md
CHANGED
|
@@ -22,6 +22,15 @@ The Eluvio Javascript Client is designed to make interacting with the Eluvio Con
|
|
|
22
22
|
npm install --save @eluvio/elv-client-js
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
|
|
26
|
+
NOTE: If you see an `unsupported architecture` error on Mac OS X, try the following:
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk
|
|
30
|
+
|
|
31
|
+
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk
|
|
32
|
+
```
|
|
33
|
+
|
|
25
34
|
#### Usage
|
|
26
35
|
|
|
27
36
|
```
|