@jupiterone/jupiterone-mcp 0.0.4 → 0.0.7
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 +2 -2
- package/dist/client/graphql/mutations.js +13 -10
- package/dist/client/graphql/mutations.js.map +1 -1
- package/dist/client/graphql/queries.js +17 -14
- package/dist/client/graphql/queries.js.map +1 -1
- package/dist/client/jupiterone-client.d.ts +6 -3
- package/dist/client/jupiterone-client.d.ts.map +1 -1
- package/dist/client/jupiterone-client.js +35 -20
- package/dist/client/jupiterone-client.js.map +1 -1
- package/dist/client/services/account-service.d.ts +1 -0
- package/dist/client/services/account-service.d.ts.map +1 -1
- package/dist/client/services/account-service.js +9 -4
- package/dist/client/services/account-service.js.map +1 -1
- package/dist/client/services/alert-service.js +7 -3
- package/dist/client/services/alert-service.js.map +1 -1
- package/dist/client/services/dashboard-service.d.ts +4 -0
- package/dist/client/services/dashboard-service.d.ts.map +1 -1
- package/dist/client/services/dashboard-service.js +21 -8
- package/dist/client/services/dashboard-service.js.map +1 -1
- package/dist/client/services/integration-service.js +11 -7
- package/dist/client/services/integration-service.js.map +1 -1
- package/dist/client/services/j1ql-service.js +9 -5
- package/dist/client/services/j1ql-service.js.map +1 -1
- package/dist/client/services/rule-service.d.ts +4 -0
- package/dist/client/services/rule-service.d.ts.map +1 -1
- package/dist/client/services/rule-service.js +26 -13
- package/dist/client/services/rule-service.js.map +1 -1
- package/dist/generated/description-map.d.ts +2 -0
- package/dist/generated/description-map.d.ts.map +1 -0
- package/dist/generated/description-map.js +2300 -0
- package/dist/generated/description-map.js.map +1 -0
- package/dist/index.js +11 -12
- package/dist/index.js.map +1 -1
- package/dist/server/mcp-server.d.ts +4 -1
- package/dist/server/mcp-server.d.ts.map +1 -1
- package/dist/server/mcp-server.js +1535 -1366
- package/dist/server/mcp-server.js.map +1 -1
- package/dist/types/jupiterone.d.ts +3 -2
- package/dist/types/jupiterone.d.ts.map +1 -1
- package/dist/types/jupiterone.js +2 -1
- package/dist/utils/description-loader.js +8 -5
- package/dist/utils/description-loader.js.map +1 -1
- package/dist/utils/getEnv.d.ts +2 -0
- package/dist/utils/getEnv.d.ts.map +1 -0
- package/dist/utils/getEnv.js +16 -0
- package/dist/utils/getEnv.js.map +1 -0
- package/dist/utils/j1ql-validator.js +5 -1
- package/dist/utils/j1ql-validator.js.map +1 -1
- package/dist/utils/load-description.d.ts.map +1 -1
- package/dist/utils/load-description.js +7 -7
- package/dist/utils/load-description.js.map +1 -1
- package/package.json +5 -5
- package/dist/descriptions/create-dashboard-widget.md +0 -325
- package/dist/descriptions/create-dashboard.md +0 -12
- package/dist/descriptions/create-inline-question-rule.md +0 -374
- package/dist/descriptions/create-j1ql-from-natural-language.md +0 -7
- package/dist/descriptions/execute-j1ql-query.md +0 -379
- package/dist/descriptions/get-integration-definitions.md +0 -27
- package/dist/descriptions/get-integration-instances.md +0 -35
- package/dist/descriptions/list-alerts.md +0 -14
- package/dist/descriptions/list-rules.md +0 -53
- package/dist/descriptions/update-dashboard.md +0 -467
- package/dist/descriptions/update-inline-question-rule.md +0 -363
|
@@ -1,467 +0,0 @@
|
|
|
1
|
-
Patch an existing dashboard's layout configuration. This tool is primarily used for modifying the layout of widgets on a dashboard after they have been created.
|
|
2
|
-
You will always want to call this after creating a dashboard and all its widgets so you can give a favorable layout to the user. Widgets should always have a size specified.
|
|
3
|
-
The layout configuration is organized by screen breakpoint sizes (xs, sm, md, lg, xl) and includes positioning information for each widget. Each layout item contains:
|
|
4
|
-
|
|
5
|
-
- `i`: Widget ID
|
|
6
|
-
- `x`: X coordinate (horizontal position)
|
|
7
|
-
- `y`: Y coordinate (vertical position)
|
|
8
|
-
- `w`: Width in grid units
|
|
9
|
-
- `h`: Height in grid units
|
|
10
|
-
- `moved`: Whether the widget has been moved (should always be false)
|
|
11
|
-
- `static`: Whether the widget position is fixed (should always be false)
|
|
12
|
-
|
|
13
|
-
Example layout configuration:
|
|
14
|
-
|
|
15
|
-
```json
|
|
16
|
-
{
|
|
17
|
-
"xs": [],
|
|
18
|
-
"sm": [],
|
|
19
|
-
"md": [
|
|
20
|
-
{
|
|
21
|
-
"w": 5,
|
|
22
|
-
"h": 2,
|
|
23
|
-
"x": 0,
|
|
24
|
-
"y": 0,
|
|
25
|
-
"i": "widget-id-1",
|
|
26
|
-
"moved": false,
|
|
27
|
-
"static": false
|
|
28
|
-
}
|
|
29
|
-
],
|
|
30
|
-
"lg": [],
|
|
31
|
-
"xl": []
|
|
32
|
-
}
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
Here's an example layout that should be used for inspiration:
|
|
36
|
-
|
|
37
|
-
```json
|
|
38
|
-
"layouts": {
|
|
39
|
-
"xs": [],
|
|
40
|
-
"sm": [
|
|
41
|
-
{
|
|
42
|
-
"w": 1,
|
|
43
|
-
"h": 1,
|
|
44
|
-
"x": 0,
|
|
45
|
-
"y": 0,
|
|
46
|
-
"i": "cc1bb92b-736b-4b76-bb2a-4ffb3fb6db04"
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"w": 1,
|
|
50
|
-
"h": 1,
|
|
51
|
-
"x": 0,
|
|
52
|
-
"y": 1,
|
|
53
|
-
"i": "750ea929-fb31-46ef-b1d4-68c53b06e5a3"
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
"w": 1,
|
|
57
|
-
"h": 1,
|
|
58
|
-
"x": 0,
|
|
59
|
-
"y": 2,
|
|
60
|
-
"i": "92507e3e-2c99-4089-b75a-ce97ad4743d5"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"w": 2,
|
|
64
|
-
"h": 2,
|
|
65
|
-
"x": 0,
|
|
66
|
-
"y": 3,
|
|
67
|
-
"i": "f1535f10-a7ba-4c74-8ae6-d5be8c5655ee"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"w": 1,
|
|
71
|
-
"h": 1,
|
|
72
|
-
"x": 0,
|
|
73
|
-
"y": 7,
|
|
74
|
-
"i": "29df3495-eea3-45a2-b779-788d92c8baa4"
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
"w": 1,
|
|
78
|
-
"h": 1,
|
|
79
|
-
"x": 0,
|
|
80
|
-
"y": 8,
|
|
81
|
-
"i": "814000f8-9ffd-4ac3-90f8-26d321e9eba6"
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"w": 1,
|
|
85
|
-
"h": 1,
|
|
86
|
-
"x": 0,
|
|
87
|
-
"y": 9,
|
|
88
|
-
"i": "293fc7fd-eb34-4383-82b8-068b62ffdd61"
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
"w": 1,
|
|
92
|
-
"h": 1,
|
|
93
|
-
"x": 0,
|
|
94
|
-
"y": 10,
|
|
95
|
-
"i": "b2e1c9b2-9da8-40d9-a068-9a6a4e0f2ed3"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"w": 1,
|
|
99
|
-
"h": 1,
|
|
100
|
-
"x": 0,
|
|
101
|
-
"y": 11,
|
|
102
|
-
"i": "24bf65f6-e196-4e49-9e91-7d5bceb5c080"
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"w": 1,
|
|
106
|
-
"h": 1,
|
|
107
|
-
"x": 0,
|
|
108
|
-
"y": 12,
|
|
109
|
-
"i": "ce89d0fe-cd1d-4590-bffe-91c6f394ae4d"
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"w": 1,
|
|
113
|
-
"h": 1,
|
|
114
|
-
"x": 0,
|
|
115
|
-
"y": 13,
|
|
116
|
-
"i": "883dc4ba-6e75-44e6-8c42-8979c63c2a12"
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
"w": 1,
|
|
120
|
-
"h": 1,
|
|
121
|
-
"x": 0,
|
|
122
|
-
"y": 14,
|
|
123
|
-
"i": "6ed5488a-0969-4cda-af4b-2ecb74b3963c"
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"w": 1,
|
|
127
|
-
"h": 1,
|
|
128
|
-
"x": 0,
|
|
129
|
-
"y": 15,
|
|
130
|
-
"i": "7a5c6998-df18-474c-be1c-5938a5e68943"
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"w": 1,
|
|
134
|
-
"h": 1,
|
|
135
|
-
"x": 0,
|
|
136
|
-
"y": 16,
|
|
137
|
-
"i": "3810193b-b6b6-428c-ab5c-48217d234ab4"
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
"w": 1,
|
|
141
|
-
"h": 1,
|
|
142
|
-
"x": 0,
|
|
143
|
-
"y": 17,
|
|
144
|
-
"i": "f6a487a4-b385-421e-bfb8-03b1e651ce25"
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
"w": 1,
|
|
148
|
-
"h": 1,
|
|
149
|
-
"x": 0,
|
|
150
|
-
"y": 18,
|
|
151
|
-
"i": "fd572af2-0df0-4d66-95e0-913cd79b973d"
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
"w": 1,
|
|
155
|
-
"h": 1,
|
|
156
|
-
"x": 0,
|
|
157
|
-
"y": 19,
|
|
158
|
-
"i": "d1096b70-22fb-47d2-95d3-e1d63416d8e3"
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
"w": 1,
|
|
162
|
-
"h": 1,
|
|
163
|
-
"x": 0,
|
|
164
|
-
"y": 20,
|
|
165
|
-
"i": "7d2e98b1-48cb-40bd-bef0-19e735c1fd3f"
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
"w": 1,
|
|
169
|
-
"h": 1,
|
|
170
|
-
"x": 0,
|
|
171
|
-
"y": 21,
|
|
172
|
-
"i": "373a6c3e-77ee-4044-ba11-af176c813fb0"
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
"w": 1,
|
|
176
|
-
"h": 1,
|
|
177
|
-
"x": 0,
|
|
178
|
-
"y": 22,
|
|
179
|
-
"i": "d679fc5e-ead3-4b7d-b650-559167edbeff"
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
"w": 1,
|
|
183
|
-
"h": 1,
|
|
184
|
-
"x": 0,
|
|
185
|
-
"y": 23,
|
|
186
|
-
"i": "ce48c3e2-5ff9-42c6-85c3-e87ae9148762"
|
|
187
|
-
},
|
|
188
|
-
{
|
|
189
|
-
"w": 1,
|
|
190
|
-
"h": 1,
|
|
191
|
-
"x": 0,
|
|
192
|
-
"y": 24,
|
|
193
|
-
"i": "384f066c-a4fe-4c26-b7cb-08f333cf9fac"
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
"w": 1,
|
|
197
|
-
"h": 1,
|
|
198
|
-
"x": 0,
|
|
199
|
-
"y": 25,
|
|
200
|
-
"i": "b1caf3ba-4c6e-45aa-8def-e94f1d9e0e3c"
|
|
201
|
-
},
|
|
202
|
-
{
|
|
203
|
-
"w": 1,
|
|
204
|
-
"h": 1,
|
|
205
|
-
"x": 0,
|
|
206
|
-
"y": 26,
|
|
207
|
-
"i": "c18dbb26-ecd1-4f19-ab9a-0de6980da2dc"
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
"w": 1,
|
|
211
|
-
"h": 1,
|
|
212
|
-
"x": 0,
|
|
213
|
-
"y": 27,
|
|
214
|
-
"i": "450cc2ff-8f00-4311-b508-db8084df8725"
|
|
215
|
-
},
|
|
216
|
-
{
|
|
217
|
-
"w": 2,
|
|
218
|
-
"h": 2,
|
|
219
|
-
"x": 0,
|
|
220
|
-
"y": 5,
|
|
221
|
-
"i": "befe345c-e392-40de-ad1b-97a38ac18503"
|
|
222
|
-
},
|
|
223
|
-
{
|
|
224
|
-
"w": 1,
|
|
225
|
-
"h": 1,
|
|
226
|
-
"x": 0,
|
|
227
|
-
"y": 28,
|
|
228
|
-
"i": "e8f652ba-d3ac-4adb-a16e-f410af56414b"
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
"w": 1,
|
|
232
|
-
"h": 1,
|
|
233
|
-
"x": 0,
|
|
234
|
-
"y": 29,
|
|
235
|
-
"i": "448f356d-d79f-47a2-a6ed-6ddf93d50f90"
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"w": 1,
|
|
239
|
-
"h": 1,
|
|
240
|
-
"x": 0,
|
|
241
|
-
"y": 30,
|
|
242
|
-
"i": "4d8ec87c-9a01-41eb-a659-bb9ad2afd283"
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
"w": 1,
|
|
246
|
-
"h": 1,
|
|
247
|
-
"x": 0,
|
|
248
|
-
"y": 31,
|
|
249
|
-
"i": "6022a63e-38c0-42a4-bb9c-6a2c2e571da2"
|
|
250
|
-
}
|
|
251
|
-
],
|
|
252
|
-
"md": [],
|
|
253
|
-
"lg": [
|
|
254
|
-
{
|
|
255
|
-
"w": 8,
|
|
256
|
-
"h": 2,
|
|
257
|
-
"x": 4,
|
|
258
|
-
"y": 34,
|
|
259
|
-
"i": "cc1bb92b-736b-4b76-bb2a-4ffb3fb6db04"
|
|
260
|
-
},
|
|
261
|
-
{
|
|
262
|
-
"w": 12,
|
|
263
|
-
"h": 2,
|
|
264
|
-
"x": 0,
|
|
265
|
-
"y": 9,
|
|
266
|
-
"i": "750ea929-fb31-46ef-b1d4-68c53b06e5a3"
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
"w": 12,
|
|
270
|
-
"h": 1,
|
|
271
|
-
"x": 0,
|
|
272
|
-
"y": 8,
|
|
273
|
-
"i": "92507e3e-2c99-4089-b75a-ce97ad4743d5"
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
"w": 6,
|
|
277
|
-
"h": 2,
|
|
278
|
-
"x": 0,
|
|
279
|
-
"y": 1,
|
|
280
|
-
"i": "f1535f10-a7ba-4c74-8ae6-d5be8c5655ee"
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
"w": 12,
|
|
284
|
-
"h": 2,
|
|
285
|
-
"x": 0,
|
|
286
|
-
"y": 24,
|
|
287
|
-
"i": "29df3495-eea3-45a2-b779-788d92c8baa4"
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
"w": 12,
|
|
291
|
-
"h": 2,
|
|
292
|
-
"x": 0,
|
|
293
|
-
"y": 29,
|
|
294
|
-
"i": "814000f8-9ffd-4ac3-90f8-26d321e9eba6"
|
|
295
|
-
},
|
|
296
|
-
{
|
|
297
|
-
"w": 4,
|
|
298
|
-
"h": 2,
|
|
299
|
-
"x": 0,
|
|
300
|
-
"y": 18,
|
|
301
|
-
"i": "293fc7fd-eb34-4383-82b8-068b62ffdd61"
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
"w": 6,
|
|
305
|
-
"h": 2,
|
|
306
|
-
"x": 6,
|
|
307
|
-
"y": 22,
|
|
308
|
-
"i": "b2e1c9b2-9da8-40d9-a068-9a6a4e0f2ed3"
|
|
309
|
-
},
|
|
310
|
-
{
|
|
311
|
-
"w": 12,
|
|
312
|
-
"h": 2,
|
|
313
|
-
"x": 0,
|
|
314
|
-
"y": 15,
|
|
315
|
-
"i": "24bf65f6-e196-4e49-9e91-7d5bceb5c080"
|
|
316
|
-
},
|
|
317
|
-
{
|
|
318
|
-
"w": 12,
|
|
319
|
-
"h": 1,
|
|
320
|
-
"x": 0,
|
|
321
|
-
"y": 33,
|
|
322
|
-
"i": "ce89d0fe-cd1d-4590-bffe-91c6f394ae4d"
|
|
323
|
-
},
|
|
324
|
-
{
|
|
325
|
-
"w": 6,
|
|
326
|
-
"h": 2,
|
|
327
|
-
"x": 6,
|
|
328
|
-
"y": 20,
|
|
329
|
-
"i": "883dc4ba-6e75-44e6-8c42-8979c63c2a12"
|
|
330
|
-
},
|
|
331
|
-
{
|
|
332
|
-
"w": 6,
|
|
333
|
-
"h": 2,
|
|
334
|
-
"x": 0,
|
|
335
|
-
"y": 22,
|
|
336
|
-
"i": "6ed5488a-0969-4cda-af4b-2ecb74b3963c"
|
|
337
|
-
},
|
|
338
|
-
{
|
|
339
|
-
"w": 6,
|
|
340
|
-
"h": 2,
|
|
341
|
-
"x": 6,
|
|
342
|
-
"y": 31,
|
|
343
|
-
"i": "7a5c6998-df18-474c-be1c-5938a5e68943"
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
"w": 6,
|
|
347
|
-
"h": 2,
|
|
348
|
-
"x": 0,
|
|
349
|
-
"y": 20,
|
|
350
|
-
"i": "3810193b-b6b6-428c-ab5c-48217d234ab4"
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
"w": 12,
|
|
354
|
-
"h": 2,
|
|
355
|
-
"x": 0,
|
|
356
|
-
"y": 6,
|
|
357
|
-
"i": "f6a487a4-b385-421e-bfb8-03b1e651ce25"
|
|
358
|
-
},
|
|
359
|
-
{
|
|
360
|
-
"w": 6,
|
|
361
|
-
"h": 2,
|
|
362
|
-
"x": 6,
|
|
363
|
-
"y": 3,
|
|
364
|
-
"i": "fd572af2-0df0-4d66-95e0-913cd79b973d"
|
|
365
|
-
},
|
|
366
|
-
{
|
|
367
|
-
"w": 7,
|
|
368
|
-
"h": 2,
|
|
369
|
-
"x": 5,
|
|
370
|
-
"y": 11,
|
|
371
|
-
"i": "d1096b70-22fb-47d2-95d3-e1d63416d8e3"
|
|
372
|
-
},
|
|
373
|
-
{
|
|
374
|
-
"w": 12,
|
|
375
|
-
"h": 1,
|
|
376
|
-
"x": 0,
|
|
377
|
-
"y": 5,
|
|
378
|
-
"i": "7d2e98b1-48cb-40bd-bef0-19e735c1fd3f"
|
|
379
|
-
},
|
|
380
|
-
{
|
|
381
|
-
"w": 6,
|
|
382
|
-
"h": 2,
|
|
383
|
-
"x": 0,
|
|
384
|
-
"y": 3,
|
|
385
|
-
"i": "373a6c3e-77ee-4044-ba11-af176c813fb0"
|
|
386
|
-
},
|
|
387
|
-
{
|
|
388
|
-
"w": 8,
|
|
389
|
-
"h": 2,
|
|
390
|
-
"x": 4,
|
|
391
|
-
"y": 18,
|
|
392
|
-
"i": "d679fc5e-ead3-4b7d-b650-559167edbeff"
|
|
393
|
-
},
|
|
394
|
-
{
|
|
395
|
-
"w": 6,
|
|
396
|
-
"h": 2,
|
|
397
|
-
"x": 0,
|
|
398
|
-
"y": 31,
|
|
399
|
-
"i": "ce48c3e2-5ff9-42c6-85c3-e87ae9148762"
|
|
400
|
-
},
|
|
401
|
-
{
|
|
402
|
-
"w": 12,
|
|
403
|
-
"h": 1,
|
|
404
|
-
"x": 0,
|
|
405
|
-
"y": 26,
|
|
406
|
-
"i": "384f066c-a4fe-4c26-b7cb-08f333cf9fac"
|
|
407
|
-
},
|
|
408
|
-
{
|
|
409
|
-
"w": 12,
|
|
410
|
-
"h": 2,
|
|
411
|
-
"x": 0,
|
|
412
|
-
"y": 36,
|
|
413
|
-
"i": "b1caf3ba-4c6e-45aa-8def-e94f1d9e0e3c"
|
|
414
|
-
},
|
|
415
|
-
{
|
|
416
|
-
"w": 6,
|
|
417
|
-
"h": 2,
|
|
418
|
-
"x": 6,
|
|
419
|
-
"y": 1,
|
|
420
|
-
"i": "c18dbb26-ecd1-4f19-ab9a-0de6980da2dc"
|
|
421
|
-
},
|
|
422
|
-
{
|
|
423
|
-
"w": 12,
|
|
424
|
-
"h": 1,
|
|
425
|
-
"x": 0,
|
|
426
|
-
"y": 0,
|
|
427
|
-
"i": "450cc2ff-8f00-4311-b508-db8084df8725"
|
|
428
|
-
},
|
|
429
|
-
{
|
|
430
|
-
"w": 5,
|
|
431
|
-
"h": 2,
|
|
432
|
-
"x": 0,
|
|
433
|
-
"y": 11,
|
|
434
|
-
"i": "befe345c-e392-40de-ad1b-97a38ac18503"
|
|
435
|
-
},
|
|
436
|
-
{
|
|
437
|
-
"w": 12,
|
|
438
|
-
"h": 1,
|
|
439
|
-
"x": 0,
|
|
440
|
-
"y": 17,
|
|
441
|
-
"i": "e8f652ba-d3ac-4adb-a16e-f410af56414b"
|
|
442
|
-
},
|
|
443
|
-
{
|
|
444
|
-
"w": 12,
|
|
445
|
-
"h": 2,
|
|
446
|
-
"x": 0,
|
|
447
|
-
"y": 13,
|
|
448
|
-
"i": "448f356d-d79f-47a2-a6ed-6ddf93d50f90"
|
|
449
|
-
},
|
|
450
|
-
{
|
|
451
|
-
"w": 4,
|
|
452
|
-
"h": 2,
|
|
453
|
-
"x": 0,
|
|
454
|
-
"y": 34,
|
|
455
|
-
"i": "4d8ec87c-9a01-41eb-a659-bb9ad2afd283"
|
|
456
|
-
},
|
|
457
|
-
{
|
|
458
|
-
"w": 12,
|
|
459
|
-
"h": 2,
|
|
460
|
-
"x": 0,
|
|
461
|
-
"y": 27,
|
|
462
|
-
"i": "6022a63e-38c0-42a4-bb9c-6a2c2e571da2"
|
|
463
|
-
}
|
|
464
|
-
],
|
|
465
|
-
"xl": []
|
|
466
|
-
}
|
|
467
|
-
```
|