@dcl/sdk-commands 7.24.5-29255693632.commit-d9d75fe → 7.24.5-29273111530.commit-7b1b863
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/dist/commands/code-to-composite/scene-executor.js +0 -1
- package/dist/commands/code-to-composite/scene-executor.js.map +1 -1
- package/dist/commands/deploy/index.d.ts +1 -0
- package/dist/commands/deploy/index.js +95 -8
- package/dist/commands/deploy/index.js.map +1 -1
- package/dist/commands/deploy/utils.d.ts +51 -2
- package/dist/commands/deploy/utils.js +247 -20
- package/dist/commands/deploy/utils.js.map +1 -1
- package/dist/commands/get-context-files/index.js +3 -0
- package/dist/commands/get-context-files/index.js.map +1 -1
- package/dist/commands/quests/index.js +3 -0
- package/dist/commands/quests/index.js.map +1 -1
- package/dist/commands/start/explorer-alpha.js +4 -0
- package/dist/commands/start/explorer-alpha.js.map +1 -1
- package/dist/commands/start/index.d.ts +2 -1
- package/dist/commands/start/index.js +24 -33
- package/dist/commands/start/index.js.map +1 -1
- package/dist/commands/start/server/endpoints.js +30 -15
- package/dist/commands/start/server/endpoints.js.map +1 -1
- package/dist/commands/start/server/routes.js +3 -1
- package/dist/commands/start/server/routes.js.map +1 -1
- package/dist/components/analytics.d.ts +1 -0
- package/dist/components/analytics.js +5 -12
- package/dist/components/analytics.js.map +1 -1
- package/dist/linker-dapp/routes.d.ts +1 -0
- package/dist/linker-dapp/routes.js +23 -14
- package/dist/linker-dapp/routes.js.map +1 -1
- package/dist/logic/bundle.js +28 -19
- package/dist/logic/bundle.js.map +1 -1
- package/dist/logic/catalyst-requests.js +8 -1
- package/dist/logic/catalyst-requests.js.map +1 -1
- package/dist/logic/composite.d.ts +1 -0
- package/dist/logic/composite.js +36 -2
- package/dist/logic/composite.js.map +1 -1
- package/dist/logic/dcl-ignore.js +2 -1
- package/dist/logic/dcl-ignore.js.map +1 -1
- package/dist/logic/error.d.ts +1 -1
- package/dist/logic/error.js.map +1 -1
- package/dist/logic/fetch.d.ts +17 -0
- package/dist/logic/fetch.js +20 -0
- package/dist/logic/fetch.js.map +1 -0
- package/dist/logic/lang.js +2 -1
- package/dist/logic/lang.js.map +1 -1
- package/dist/logic/project-validations.d.ts +13 -0
- package/dist/logic/project-validations.js +29 -2
- package/dist/logic/project-validations.js.map +1 -1
- package/dist/logic/runtime-script.d.ts +1 -1
- package/dist/logic/runtime-script.js +2 -3
- package/dist/logic/runtime-script.js.map +1 -1
- package/dist/logic/scene-validations.js +1 -1
- package/dist/logic/scene-validations.js.map +1 -1
- package/package.json +10 -13
package/package.json
CHANGED
|
@@ -1,27 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/sdk-commands",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "7.24.5-
|
|
4
|
+
"version": "7.24.5-29273111530.commit-7b1b863",
|
|
5
5
|
"author": "Decentraland",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sdk-commands": "./dist/index.js"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@dcl/crypto": "^3.4.4",
|
|
11
|
-
"@dcl/ecs": "7.24.5-
|
|
11
|
+
"@dcl/ecs": "7.24.5-29273111530.commit-7b1b863",
|
|
12
12
|
"@dcl/gltf-validator-ts": "1.0.14",
|
|
13
13
|
"@dcl/hashing": "1.1.3",
|
|
14
|
-
"@dcl/inspector": "7.
|
|
15
|
-
"@dcl/linker-dapp": "
|
|
14
|
+
"@dcl/inspector": "7.34.3",
|
|
15
|
+
"@dcl/linker-dapp": "0.15.2",
|
|
16
16
|
"@dcl/mini-comms": "1.0.1-20230216163137.commit-a4c75be",
|
|
17
|
-
"@dcl/protocol": "
|
|
17
|
+
"@dcl/protocol": "1.0.0-28974105118.commit-a598406",
|
|
18
18
|
"@dcl/quests-client": "^1.0.3",
|
|
19
19
|
"@dcl/quests-manager": "^0.1.4",
|
|
20
20
|
"@dcl/rpc": "^1.1.1",
|
|
21
21
|
"@dcl/schemas": "^8.2.3-20230718182824.commit-356025c",
|
|
22
|
-
"@segment/analytics-node": "^
|
|
22
|
+
"@segment/analytics-node": "^3.1.0",
|
|
23
23
|
"@well-known-components/env-config-provider": "^1.2.0",
|
|
24
|
-
"@well-known-components/fetch-component": "^3.0.0",
|
|
25
24
|
"@well-known-components/http-server": "^2.0.0-20230501134558.commit-be9a25d",
|
|
26
25
|
"@well-known-components/logger": "^3.1.2",
|
|
27
26
|
"@well-known-components/metrics": "^2.0.1",
|
|
@@ -29,15 +28,14 @@
|
|
|
29
28
|
"arg": "^5.0.2",
|
|
30
29
|
"chokidar": "^3.5.3",
|
|
31
30
|
"colorette": "^2.0.19",
|
|
32
|
-
"dcl-catalyst-client": "^
|
|
31
|
+
"dcl-catalyst-client": "^22.0.0",
|
|
33
32
|
"esbuild": "^0.18.17",
|
|
34
33
|
"extract-zip": "2.0.1",
|
|
35
34
|
"fp-future": "^1.0.1",
|
|
36
35
|
"glob": "^9.3.2",
|
|
37
|
-
"i18next": "^25.
|
|
38
|
-
"i18next-fs-backend": "^2.6.
|
|
36
|
+
"i18next": "^25.8.4",
|
|
37
|
+
"i18next-fs-backend": "^2.6.1",
|
|
39
38
|
"ignore": "^5.2.4",
|
|
40
|
-
"node-fetch": "^2.7.0",
|
|
41
39
|
"open": "^8.4.0",
|
|
42
40
|
"portfinder": "^1.0.32",
|
|
43
41
|
"prompts": "^2.4.2",
|
|
@@ -48,7 +46,6 @@
|
|
|
48
46
|
},
|
|
49
47
|
"devDependencies": {
|
|
50
48
|
"@types/archiver": "^5.3.2",
|
|
51
|
-
"@types/node-fetch": "^2.6.4",
|
|
52
49
|
"@types/prompts": "^2.4.4",
|
|
53
50
|
"@types/qrcode": "^1.5.6",
|
|
54
51
|
"@types/uuid": "^9.0.5",
|
|
@@ -80,5 +77,5 @@
|
|
|
80
77
|
"displayName": "SDK",
|
|
81
78
|
"tsconfig": "./tsconfig.json"
|
|
82
79
|
},
|
|
83
|
-
"commit": "
|
|
80
|
+
"commit": "7b1b863ab7b567c8e3611cb7d8caf21b4376a67a"
|
|
84
81
|
}
|