@dcl/content-validator 6.0.1-11365923060.commit-d431a2e → 6.0.1-11479663472.commit-bd67e70

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 CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  # @dcl/content-validator
4
4
 
5
+ [![Coverage Status](https://coveralls.io/repos/github/decentraland/content-validator/badge.svg?branch=main)](https://coveralls.io/github/decentraland/content-validator?branch=main)
6
+
5
7
  Contains all validations to run against [entity](https://docs.decentraland.org/contributor/content/entities/) deployments.
6
8
 
7
9
  ## Getting Started
@@ -23,7 +23,7 @@ function createSceneValidateFn({ externalCalls, subGraphs, logs, tokenAddresses
23
23
  query GetAuthorizations($owner: String!, $operator: String!, $timestamp: Int!, $tokenAddress: String!) {
24
24
  authorizations(
25
25
  where: {
26
- owner: $owner,
26
+ owner_: {address: $owner},
27
27
  operator: $operator,
28
28
  createdAt_lte: $timestamp,
29
29
  tokenAddress: $tokenAddress
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/content-validator",
3
- "version": "6.0.1-11365923060.commit-d431a2e",
3
+ "version": "6.0.1-11479663472.commit-bd67e70",
4
4
  "description": "Catalyst content validations",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -53,5 +53,5 @@
53
53
  "files": [
54
54
  "dist"
55
55
  ],
56
- "commit": "d431a2ec049e6944775a2cadc9c50c5b2abf22f0"
56
+ "commit": "bd67e701ccf128ac7743b736b21a49ff9321d04c"
57
57
  }