gdcore-tools 1.0.2 → 1.0.5
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 +11 -0
- package/examples/create-objects-from-json/game.json +257 -257
- package/examples/export-game/game.json +204 -204
- package/package-lock.json +223 -223
- package/package.json +32 -32
- package/src/EventsFunctionsExtensionsLoader/MetadataDeclarationHelpers.js +442 -449
- package/src/EventsFunctionsExtensionsLoader/index.js +373 -354
- package/src/JsExtensionsLoader/LocalJsExtensionsFinder.js +0 -3
- package/src/LocalFileSystem.js +39 -39
- package/src/WrappedGD.js +138 -0
- package/src/downloadGD.js +65 -29
- package/src/index.js +10 -110
package/README.md
CHANGED
|
@@ -27,6 +27,13 @@ You can find examples [here](https://github.com/arthuro555/gdcore-tools/tree/mas
|
|
|
27
27
|
|
|
28
28
|
You can find the API for GDCore (`WrappedGD.gd`) at [the official GDevelop website](https://docs.gdevelop-app.com/GDCore%20Documentation/namespacegd.html). Note that every method in `PascalCase` on the docs have to be used in `camelCase` in JavaScript.
|
|
29
29
|
|
|
30
|
+
#### Events:
|
|
31
|
+
##### `print`:
|
|
32
|
+
Triggered when GDCore wants to print a message.
|
|
33
|
+
|
|
34
|
+
##### `error`:
|
|
35
|
+
Triggered when GDCore errors.
|
|
36
|
+
|
|
30
37
|
#### `loadGD(version?: string): Promise<WrappedGD>`
|
|
31
38
|
|
|
32
39
|
The entrypoint of the module. Accept a github release tag to specify a specific version to download and use.
|
|
@@ -48,6 +55,10 @@ Returns a promise that resolves once the file is saved.
|
|
|
48
55
|
|
|
49
56
|
Exports a project to a directory. Some options may be passed to the exporter, but they aren't officially documented. Returns a promise that resolves once the export is done.
|
|
50
57
|
|
|
58
|
+
#### `WrappedGD.reloadEventsFunctions(project): void`
|
|
59
|
+
|
|
60
|
+
Regenerates the code and reloads all events based extensions.
|
|
61
|
+
|
|
51
62
|
#### `WrappedGD.getRuntimePath(): string`
|
|
52
63
|
|
|
53
64
|
Get the path to the downloaded and built GDJS runtime.
|
|
@@ -1,258 +1,258 @@
|
|
|
1
|
-
{
|
|
2
|
-
"firstLayout": "",
|
|
3
|
-
"gdVersion": {
|
|
4
|
-
"build": 99,
|
|
5
|
-
"major": 4,
|
|
6
|
-
"minor": 0,
|
|
7
|
-
"revision": 0
|
|
8
|
-
},
|
|
9
|
-
"properties": {
|
|
10
|
-
"adaptGameResolutionAtRuntime": true,
|
|
11
|
-
"folderProject": false,
|
|
12
|
-
"orientation": "landscape",
|
|
13
|
-
"packageName": "com.example.gamename",
|
|
14
|
-
"projectUuid": "6fd10fa7-9379-4ed5-9aab-fa7fb1d4fe6f",
|
|
15
|
-
"scaleMode": "linear",
|
|
16
|
-
"sizeOnStartupMode": "adaptWidth",
|
|
17
|
-
"useExternalSourceFiles": false,
|
|
18
|
-
"version": "1.0.0",
|
|
19
|
-
"name": "Project",
|
|
20
|
-
"author": "",
|
|
21
|
-
"windowWidth": 800,
|
|
22
|
-
"windowHeight": 600,
|
|
23
|
-
"latestCompilationDirectory": "",
|
|
24
|
-
"maxFPS": 60,
|
|
25
|
-
"minFPS": 20,
|
|
26
|
-
"verticalSync": false,
|
|
27
|
-
"platformSpecificAssets": {},
|
|
28
|
-
"loadingScreen": {
|
|
29
|
-
"showGDevelopSplash": true
|
|
30
|
-
},
|
|
31
|
-
"extensionProperties": [],
|
|
32
|
-
"extensions": [
|
|
33
|
-
{
|
|
34
|
-
"name": "BuiltinObject"
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"name": "BuiltinAudio"
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"name": "BuiltinVariables"
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"name": "BuiltinTime"
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"name": "BuiltinMouse"
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"name": "BuiltinKeyboard"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"name": "BuiltinJoystick"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"name": "BuiltinCamera"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"name": "BuiltinWindow"
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"name": "BuiltinFile"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"name": "BuiltinNetwork"
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"name": "BuiltinScene"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"name": "BuiltinAdvanced"
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"name": "Sprite"
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"name": "BuiltinCommonInstructions"
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
"name": "BuiltinCommonConversions"
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"name": "BuiltinStringInstructions"
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"name": "BuiltinMathematicalTools"
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"name": "BuiltinExternalLayouts"
|
|
89
|
-
}
|
|
90
|
-
],
|
|
91
|
-
"platforms": [
|
|
92
|
-
{
|
|
93
|
-
"name": "GDevelop JS platform"
|
|
94
|
-
}
|
|
95
|
-
],
|
|
96
|
-
"currentPlatform": "GDevelop JS platform"
|
|
97
|
-
},
|
|
98
|
-
"resources": {
|
|
99
|
-
"resources": [
|
|
100
|
-
{
|
|
101
|
-
"alwaysLoaded": false,
|
|
102
|
-
"file": "assets/Blank button.png",
|
|
103
|
-
"kind": "image",
|
|
104
|
-
"metadata": "",
|
|
105
|
-
"name": "Blank button.png",
|
|
106
|
-
"smoothed": true,
|
|
107
|
-
"userAdded": false,
|
|
108
|
-
"origin": {
|
|
109
|
-
"identifier": "https://resources.gdevelop-app.com/assets/On-Screen Controls/Sprites/Shaded Dark/Blank button.png",
|
|
110
|
-
"name": "gdevelop-asset-store"
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
],
|
|
114
|
-
"resourceFolders": []
|
|
115
|
-
},
|
|
116
|
-
"objects": [],
|
|
117
|
-
"objectsGroups": [],
|
|
118
|
-
"variables": [],
|
|
119
|
-
"layouts": [
|
|
120
|
-
{
|
|
121
|
-
"b": 209,
|
|
122
|
-
"disableInputWhenNotFocused": true,
|
|
123
|
-
"mangledName": "MyScene",
|
|
124
|
-
"name": "MyScene",
|
|
125
|
-
"oglFOV": 90,
|
|
126
|
-
"oglZFar": 500,
|
|
127
|
-
"oglZNear": 1,
|
|
128
|
-
"r": 209,
|
|
129
|
-
"standardSortMethod": true,
|
|
130
|
-
"stopSoundsOnStartup": true,
|
|
131
|
-
"title": "",
|
|
132
|
-
"v": 209,
|
|
133
|
-
"uiSettings": {
|
|
134
|
-
"grid": false,
|
|
135
|
-
"gridB": 255,
|
|
136
|
-
"gridG": 180,
|
|
137
|
-
"gridHeight": 32,
|
|
138
|
-
"gridOffsetX": 0,
|
|
139
|
-
"gridOffsetY": 0,
|
|
140
|
-
"gridR": 158,
|
|
141
|
-
"gridWidth": 32,
|
|
142
|
-
"snap": true,
|
|
143
|
-
"windowMask": false,
|
|
144
|
-
"zoomFactor": 0.506
|
|
145
|
-
},
|
|
146
|
-
"objectsGroups": [],
|
|
147
|
-
"variables": [],
|
|
148
|
-
"instances": [
|
|
149
|
-
{
|
|
150
|
-
"angle": 0,
|
|
151
|
-
"customSize": false,
|
|
152
|
-
"height": 0,
|
|
153
|
-
"layer": "",
|
|
154
|
-
"locked": false,
|
|
155
|
-
"name": "MyList",
|
|
156
|
-
"persistentUuid": "2a61bd17-e9c1-477c-8a91-86fb38620f1b",
|
|
157
|
-
"width": 0,
|
|
158
|
-
"x": 11,
|
|
159
|
-
"y": 16,
|
|
160
|
-
"zOrder": 1,
|
|
161
|
-
"numberProperties": [],
|
|
162
|
-
"stringProperties": [],
|
|
163
|
-
"initialVariables": []
|
|
164
|
-
}
|
|
165
|
-
],
|
|
166
|
-
"objects": [
|
|
167
|
-
{
|
|
168
|
-
"bold": false,
|
|
169
|
-
"italic": false,
|
|
170
|
-
"name": "MyList",
|
|
171
|
-
"smoothed": true,
|
|
172
|
-
"tags": "",
|
|
173
|
-
"type": "TextObject::Text",
|
|
174
|
-
"underlined": false,
|
|
175
|
-
"variables": [],
|
|
176
|
-
"behaviors": [],
|
|
177
|
-
"string": "My List extracted from a JSON:",
|
|
178
|
-
"font": "",
|
|
179
|
-
"characterSize": 20,
|
|
180
|
-
"color": {
|
|
181
|
-
"b": 0,
|
|
182
|
-
"g": 0,
|
|
183
|
-
"r": 0
|
|
184
|
-
}
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
"name": "Button",
|
|
188
|
-
"tags": "",
|
|
189
|
-
"type": "Sprite",
|
|
190
|
-
"updateIfNotVisible": false,
|
|
191
|
-
"variables": [],
|
|
192
|
-
"behaviors": [],
|
|
193
|
-
"animations": [
|
|
194
|
-
{
|
|
195
|
-
"name": "",
|
|
196
|
-
"useMultipleDirections": false,
|
|
197
|
-
"directions": [
|
|
198
|
-
{
|
|
199
|
-
"looping": true,
|
|
200
|
-
"timeBetweenFrames": 0.025,
|
|
201
|
-
"sprites": [
|
|
202
|
-
{
|
|
203
|
-
"hasCustomCollisionMask": false,
|
|
204
|
-
"image": "Blank button.png",
|
|
205
|
-
"points": [],
|
|
206
|
-
"originPoint": {
|
|
207
|
-
"name": "origine",
|
|
208
|
-
"x": 0,
|
|
209
|
-
"y": 0
|
|
210
|
-
},
|
|
211
|
-
"centerPoint": {
|
|
212
|
-
"automatic": true,
|
|
213
|
-
"name": "centre",
|
|
214
|
-
"x": 0,
|
|
215
|
-
"y": 0
|
|
216
|
-
},
|
|
217
|
-
"customCollisionMask": []
|
|
218
|
-
}
|
|
219
|
-
]
|
|
220
|
-
}
|
|
221
|
-
]
|
|
222
|
-
}
|
|
223
|
-
]
|
|
224
|
-
}
|
|
225
|
-
],
|
|
226
|
-
"events": [],
|
|
227
|
-
"layers": [
|
|
228
|
-
{
|
|
229
|
-
"ambientLightColorB": 36,
|
|
230
|
-
"ambientLightColorG": 6978960,
|
|
231
|
-
"ambientLightColorR": 32,
|
|
232
|
-
"followBaseLayerCamera": false,
|
|
233
|
-
"isLightingLayer": false,
|
|
234
|
-
"name": "",
|
|
235
|
-
"visibility": true,
|
|
236
|
-
"cameras": [
|
|
237
|
-
{
|
|
238
|
-
"defaultSize": true,
|
|
239
|
-
"defaultViewport": true,
|
|
240
|
-
"height": 0,
|
|
241
|
-
"viewportBottom": 1,
|
|
242
|
-
"viewportLeft": 0,
|
|
243
|
-
"viewportRight": 1,
|
|
244
|
-
"viewportTop": 0,
|
|
245
|
-
"width": 0
|
|
246
|
-
}
|
|
247
|
-
],
|
|
248
|
-
"effects": []
|
|
249
|
-
}
|
|
250
|
-
],
|
|
251
|
-
"behaviorsSharedData": []
|
|
252
|
-
}
|
|
253
|
-
],
|
|
254
|
-
"externalEvents": [],
|
|
255
|
-
"eventsFunctionsExtensions": [],
|
|
256
|
-
"externalLayouts": [],
|
|
257
|
-
"externalSourceFiles": []
|
|
1
|
+
{
|
|
2
|
+
"firstLayout": "",
|
|
3
|
+
"gdVersion": {
|
|
4
|
+
"build": 99,
|
|
5
|
+
"major": 4,
|
|
6
|
+
"minor": 0,
|
|
7
|
+
"revision": 0
|
|
8
|
+
},
|
|
9
|
+
"properties": {
|
|
10
|
+
"adaptGameResolutionAtRuntime": true,
|
|
11
|
+
"folderProject": false,
|
|
12
|
+
"orientation": "landscape",
|
|
13
|
+
"packageName": "com.example.gamename",
|
|
14
|
+
"projectUuid": "6fd10fa7-9379-4ed5-9aab-fa7fb1d4fe6f",
|
|
15
|
+
"scaleMode": "linear",
|
|
16
|
+
"sizeOnStartupMode": "adaptWidth",
|
|
17
|
+
"useExternalSourceFiles": false,
|
|
18
|
+
"version": "1.0.0",
|
|
19
|
+
"name": "Project",
|
|
20
|
+
"author": "",
|
|
21
|
+
"windowWidth": 800,
|
|
22
|
+
"windowHeight": 600,
|
|
23
|
+
"latestCompilationDirectory": "",
|
|
24
|
+
"maxFPS": 60,
|
|
25
|
+
"minFPS": 20,
|
|
26
|
+
"verticalSync": false,
|
|
27
|
+
"platformSpecificAssets": {},
|
|
28
|
+
"loadingScreen": {
|
|
29
|
+
"showGDevelopSplash": true
|
|
30
|
+
},
|
|
31
|
+
"extensionProperties": [],
|
|
32
|
+
"extensions": [
|
|
33
|
+
{
|
|
34
|
+
"name": "BuiltinObject"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "BuiltinAudio"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "BuiltinVariables"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "BuiltinTime"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "BuiltinMouse"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "BuiltinKeyboard"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "BuiltinJoystick"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "BuiltinCamera"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "BuiltinWindow"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "BuiltinFile"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "BuiltinNetwork"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "BuiltinScene"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "BuiltinAdvanced"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "Sprite"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "BuiltinCommonInstructions"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "BuiltinCommonConversions"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "BuiltinStringInstructions"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "BuiltinMathematicalTools"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "BuiltinExternalLayouts"
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"platforms": [
|
|
92
|
+
{
|
|
93
|
+
"name": "GDevelop JS platform"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"currentPlatform": "GDevelop JS platform"
|
|
97
|
+
},
|
|
98
|
+
"resources": {
|
|
99
|
+
"resources": [
|
|
100
|
+
{
|
|
101
|
+
"alwaysLoaded": false,
|
|
102
|
+
"file": "assets/Blank button.png",
|
|
103
|
+
"kind": "image",
|
|
104
|
+
"metadata": "",
|
|
105
|
+
"name": "Blank button.png",
|
|
106
|
+
"smoothed": true,
|
|
107
|
+
"userAdded": false,
|
|
108
|
+
"origin": {
|
|
109
|
+
"identifier": "https://resources.gdevelop-app.com/assets/On-Screen Controls/Sprites/Shaded Dark/Blank button.png",
|
|
110
|
+
"name": "gdevelop-asset-store"
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"resourceFolders": []
|
|
115
|
+
},
|
|
116
|
+
"objects": [],
|
|
117
|
+
"objectsGroups": [],
|
|
118
|
+
"variables": [],
|
|
119
|
+
"layouts": [
|
|
120
|
+
{
|
|
121
|
+
"b": 209,
|
|
122
|
+
"disableInputWhenNotFocused": true,
|
|
123
|
+
"mangledName": "MyScene",
|
|
124
|
+
"name": "MyScene",
|
|
125
|
+
"oglFOV": 90,
|
|
126
|
+
"oglZFar": 500,
|
|
127
|
+
"oglZNear": 1,
|
|
128
|
+
"r": 209,
|
|
129
|
+
"standardSortMethod": true,
|
|
130
|
+
"stopSoundsOnStartup": true,
|
|
131
|
+
"title": "",
|
|
132
|
+
"v": 209,
|
|
133
|
+
"uiSettings": {
|
|
134
|
+
"grid": false,
|
|
135
|
+
"gridB": 255,
|
|
136
|
+
"gridG": 180,
|
|
137
|
+
"gridHeight": 32,
|
|
138
|
+
"gridOffsetX": 0,
|
|
139
|
+
"gridOffsetY": 0,
|
|
140
|
+
"gridR": 158,
|
|
141
|
+
"gridWidth": 32,
|
|
142
|
+
"snap": true,
|
|
143
|
+
"windowMask": false,
|
|
144
|
+
"zoomFactor": 0.506
|
|
145
|
+
},
|
|
146
|
+
"objectsGroups": [],
|
|
147
|
+
"variables": [],
|
|
148
|
+
"instances": [
|
|
149
|
+
{
|
|
150
|
+
"angle": 0,
|
|
151
|
+
"customSize": false,
|
|
152
|
+
"height": 0,
|
|
153
|
+
"layer": "",
|
|
154
|
+
"locked": false,
|
|
155
|
+
"name": "MyList",
|
|
156
|
+
"persistentUuid": "2a61bd17-e9c1-477c-8a91-86fb38620f1b",
|
|
157
|
+
"width": 0,
|
|
158
|
+
"x": 11,
|
|
159
|
+
"y": 16,
|
|
160
|
+
"zOrder": 1,
|
|
161
|
+
"numberProperties": [],
|
|
162
|
+
"stringProperties": [],
|
|
163
|
+
"initialVariables": []
|
|
164
|
+
}
|
|
165
|
+
],
|
|
166
|
+
"objects": [
|
|
167
|
+
{
|
|
168
|
+
"bold": false,
|
|
169
|
+
"italic": false,
|
|
170
|
+
"name": "MyList",
|
|
171
|
+
"smoothed": true,
|
|
172
|
+
"tags": "",
|
|
173
|
+
"type": "TextObject::Text",
|
|
174
|
+
"underlined": false,
|
|
175
|
+
"variables": [],
|
|
176
|
+
"behaviors": [],
|
|
177
|
+
"string": "My List extracted from a JSON:",
|
|
178
|
+
"font": "",
|
|
179
|
+
"characterSize": 20,
|
|
180
|
+
"color": {
|
|
181
|
+
"b": 0,
|
|
182
|
+
"g": 0,
|
|
183
|
+
"r": 0
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"name": "Button",
|
|
188
|
+
"tags": "",
|
|
189
|
+
"type": "Sprite",
|
|
190
|
+
"updateIfNotVisible": false,
|
|
191
|
+
"variables": [],
|
|
192
|
+
"behaviors": [],
|
|
193
|
+
"animations": [
|
|
194
|
+
{
|
|
195
|
+
"name": "",
|
|
196
|
+
"useMultipleDirections": false,
|
|
197
|
+
"directions": [
|
|
198
|
+
{
|
|
199
|
+
"looping": true,
|
|
200
|
+
"timeBetweenFrames": 0.025,
|
|
201
|
+
"sprites": [
|
|
202
|
+
{
|
|
203
|
+
"hasCustomCollisionMask": false,
|
|
204
|
+
"image": "Blank button.png",
|
|
205
|
+
"points": [],
|
|
206
|
+
"originPoint": {
|
|
207
|
+
"name": "origine",
|
|
208
|
+
"x": 0,
|
|
209
|
+
"y": 0
|
|
210
|
+
},
|
|
211
|
+
"centerPoint": {
|
|
212
|
+
"automatic": true,
|
|
213
|
+
"name": "centre",
|
|
214
|
+
"x": 0,
|
|
215
|
+
"y": 0
|
|
216
|
+
},
|
|
217
|
+
"customCollisionMask": []
|
|
218
|
+
}
|
|
219
|
+
]
|
|
220
|
+
}
|
|
221
|
+
]
|
|
222
|
+
}
|
|
223
|
+
]
|
|
224
|
+
}
|
|
225
|
+
],
|
|
226
|
+
"events": [],
|
|
227
|
+
"layers": [
|
|
228
|
+
{
|
|
229
|
+
"ambientLightColorB": 36,
|
|
230
|
+
"ambientLightColorG": 6978960,
|
|
231
|
+
"ambientLightColorR": 32,
|
|
232
|
+
"followBaseLayerCamera": false,
|
|
233
|
+
"isLightingLayer": false,
|
|
234
|
+
"name": "",
|
|
235
|
+
"visibility": true,
|
|
236
|
+
"cameras": [
|
|
237
|
+
{
|
|
238
|
+
"defaultSize": true,
|
|
239
|
+
"defaultViewport": true,
|
|
240
|
+
"height": 0,
|
|
241
|
+
"viewportBottom": 1,
|
|
242
|
+
"viewportLeft": 0,
|
|
243
|
+
"viewportRight": 1,
|
|
244
|
+
"viewportTop": 0,
|
|
245
|
+
"width": 0
|
|
246
|
+
}
|
|
247
|
+
],
|
|
248
|
+
"effects": []
|
|
249
|
+
}
|
|
250
|
+
],
|
|
251
|
+
"behaviorsSharedData": []
|
|
252
|
+
}
|
|
253
|
+
],
|
|
254
|
+
"externalEvents": [],
|
|
255
|
+
"eventsFunctionsExtensions": [],
|
|
256
|
+
"externalLayouts": [],
|
|
257
|
+
"externalSourceFiles": []
|
|
258
258
|
}
|