dcl-catalyst-client 11.3.2 → 12.0.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.
- package/.eslintignore +5 -0
- package/.eslintrc.json +8 -13
- package/README.md +2 -2
- package/coverage/clover.xml +242 -240
- package/coverage/coverage-final.json +8 -8
- package/coverage/lcov-report/index.html +19 -19
- package/coverage/lcov.info +490 -483
- package/dist/CatalystClient.d.ts +13 -13
- package/dist/CatalystClient.js.map +1 -1
- package/dist/ContentAPI.d.ts +19 -11
- package/dist/ContentClient.d.ts +21 -20
- package/dist/ContentClient.js +1 -5
- package/dist/ContentClient.js.map +1 -1
- package/dist/LambdasAPI.d.ts +11 -7
- package/dist/LambdasAPI.js.map +1 -1
- package/dist/LambdasClient.d.ts +6 -7
- package/dist/LambdasClient.js.map +1 -1
- package/dist/utils/CatalystClientBuilder.js +7 -1
- package/dist/utils/CatalystClientBuilder.js.map +1 -1
- package/dist/utils/DeploymentBuilder.d.ts +14 -15
- package/dist/utils/DeploymentBuilder.js +17 -7
- package/dist/utils/DeploymentBuilder.js.map +1 -1
- package/dist/utils/catalystList.d.ts +0 -1
- package/dist/utils/catalystList.js +2 -8
- package/dist/utils/catalystList.js.map +1 -1
- package/package.json +10 -14
- package/scripts/generate-catalysts-list.ts +20 -4
package/.eslintignore
ADDED
package/.eslintrc.json
CHANGED
|
@@ -1,18 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"extends": "@dcl/eslint-config",
|
|
3
|
+
"parser": "@typescript-eslint/parser",
|
|
3
4
|
"parserOptions": {
|
|
4
5
|
"ecmaVersion": 2020, // Allows for the parsing of modern ECMAScript features
|
|
5
|
-
"sourceType": "module" // Allows for the use of imports
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
],
|
|
13
|
-
"rules": {
|
|
14
|
-
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
|
|
15
|
-
"@typescript-eslint/no-inferrable-types": 0,
|
|
16
|
-
"@typescript-eslint/no-empty-function": "off"
|
|
6
|
+
"sourceType": "module", // Allows for the use of imports
|
|
7
|
+
"project": [
|
|
8
|
+
// Specify it only for TypeScript files
|
|
9
|
+
"./tsconfig.json",
|
|
10
|
+
"./test/tsconfig.json"
|
|
11
|
+
]
|
|
17
12
|
}
|
|
18
13
|
}
|
package/README.md
CHANGED
|
@@ -23,8 +23,8 @@ One of the most important aspects, is the ability to deploy new entities. Here i
|
|
|
23
23
|
|
|
24
24
|
```
|
|
25
25
|
import { CatalystClient, DeploymentBuilder } from 'dcl-catalyst-client'
|
|
26
|
-
import { EntityType } from 'dcl
|
|
27
|
-
import { Authenticator } from 'dcl
|
|
26
|
+
import { EntityType } from '@dcl/schemas'
|
|
27
|
+
import { Authenticator } from '@dcl/crypto'
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
// This is up to you. You will need to figure out how to make the owner of the pointer sign the entity id
|