@audius/sdk 1.0.16 → 1.0.17

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.
@@ -514,9 +514,9 @@ if (typeof window !== 'undefined' && window && window.Web3) {
514
514
  var LibsWeb3 = Web3;
515
515
 
516
516
  var name = "@audius/sdk";
517
- var version = "1.0.16";
517
+ var version = "1.0.17";
518
518
  var audius = {
519
- releaseSHA: "e0b7ce2e170d45ba8be2a30623688bd77cf6b4b4"
519
+ releaseSHA: "9dc55f08221648a366e060d1f8ad53cd21a651a1"
520
520
  };
521
521
  var description = "";
522
522
  var main = "dist/index.cjs.js";
@@ -647,7 +647,7 @@ var devDependencies = {
647
647
  };
648
648
  var repository = {
649
649
  type: "git",
650
- url: "git+https://github.com/AudiusProject/audius-protocol/tree/master/libs"
650
+ url: "git+https://github.com/AudiusProject/audius-protocol/tree/main/libs"
651
651
  };
652
652
  var engines = {
653
653
  node: ">=14.0.0"
@@ -657,7 +657,7 @@ var license = "Apache-2.0";
657
657
  var bugs = {
658
658
  url: "https://github.com/AudiusProject/audius-protocol/issues"
659
659
  };
660
- var homepage = "https://github.com/AudiusProject/audius-protocol/tree/master/libs";
660
+ var homepage = "https://github.com/AudiusProject/audius-protocol/tree/main/libs";
661
661
  var require$$0 = {
662
662
  name: name,
663
663
  version: version,
@@ -3169,7 +3169,10 @@ var definitions$2 = {
3169
3169
  title: "CID"
3170
3170
  },
3171
3171
  PremiumConditions: {
3172
- type: "object",
3172
+ type: [
3173
+ "object",
3174
+ "null"
3175
+ ],
3173
3176
  additionalProperties: false,
3174
3177
  properties: {
3175
3178
  nft_collection: {
@@ -31448,7 +31451,7 @@ var EthContracts = /*#__PURE__*/function () {
31448
31451
  /**
31449
31452
  * Converts a BN to a Uint8Array of length 8, in little endian notation.
31450
31453
  * Useful for when Rust wants a u64 (8 * 8) represented as a byte array.
31451
- * Ex: https://github.com/AudiusProject/audius-protocol/blob/master/solana-programs/reward-manager/program/src/processor.rs#L389
31454
+ * Ex: https://github.com/AudiusProject/audius-protocol/blob/main/solana-programs/reward-manager/program/src/processor.rs#L389
31452
31455
  */
31453
31456
  var padBNToUint8Array = function padBNToUint8Array(bn) {
31454
31457
  return bn.toArray('le', 8);