@umbraco-cms/backoffice 1.0.0-next.bf0e5e95 → 1.0.0-next.c45ef438
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/backend-api.d.ts +594 -272
- package/context-api.d.ts +72 -2
- package/controller.d.ts +3 -2
- package/custom-elements.json +1442 -994
- package/element.d.ts +5 -5
- package/entity-action.d.ts +19 -9
- package/extensions-api.d.ts +6 -4
- package/extensions-registry.d.ts +174 -13
- package/modal.d.ts +60 -324
- package/models.d.ts +14 -9
- package/notification.d.ts +1 -1
- package/observable-api.d.ts +89 -48
- package/package.json +1 -1
- package/picker-input.d.ts +24 -0
- package/property-editor.d.ts +1 -1
- package/repository.d.ts +85 -30
- package/resources.d.ts +7 -5
- package/router.d.ts +275 -25
- package/sorter.d.ts +103 -0
- package/store.d.ts +51 -56
- package/umbraco-package-schema.json +2439 -0
- package/utils.d.ts +4 -2
- package/vscode-html-custom-data.json +457 -298
- package/workspace.d.ts +14 -7
|
@@ -0,0 +1,2439 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"definitions": {
|
|
4
|
+
"ConditionsCollectionView": {
|
|
5
|
+
"properties": {
|
|
6
|
+
"entityType": {
|
|
7
|
+
"type": "string"
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"required": [
|
|
11
|
+
"entityType"
|
|
12
|
+
],
|
|
13
|
+
"type": "object"
|
|
14
|
+
},
|
|
15
|
+
"ConditionsDashboard": {
|
|
16
|
+
"properties": {
|
|
17
|
+
"sections": {
|
|
18
|
+
"description": "An array of section aliases that the dashboard should be available in",
|
|
19
|
+
"items": {
|
|
20
|
+
"examples": [
|
|
21
|
+
"Umb.Section.Content",
|
|
22
|
+
"Umb.Section.Settings"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"minItems": 1,
|
|
26
|
+
"type": "array",
|
|
27
|
+
"uniqueItems": true
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"required": [
|
|
31
|
+
"sections"
|
|
32
|
+
],
|
|
33
|
+
"type": "object"
|
|
34
|
+
},
|
|
35
|
+
"ConditionsDashboardCollection": {
|
|
36
|
+
"properties": {
|
|
37
|
+
"entityType": {
|
|
38
|
+
"type": "string"
|
|
39
|
+
},
|
|
40
|
+
"sections": {
|
|
41
|
+
"items": {
|
|
42
|
+
"type": "string"
|
|
43
|
+
},
|
|
44
|
+
"type": "array"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"required": [
|
|
48
|
+
"entityType",
|
|
49
|
+
"sections"
|
|
50
|
+
],
|
|
51
|
+
"type": "object"
|
|
52
|
+
},
|
|
53
|
+
"ConditionsEditorViewCollection": {
|
|
54
|
+
"properties": {
|
|
55
|
+
"workspaces": {
|
|
56
|
+
"items": {
|
|
57
|
+
"type": "string"
|
|
58
|
+
},
|
|
59
|
+
"type": "array"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"required": [
|
|
63
|
+
"workspaces"
|
|
64
|
+
],
|
|
65
|
+
"type": "object"
|
|
66
|
+
},
|
|
67
|
+
"ConditionsEntityAction": {
|
|
68
|
+
"properties": {
|
|
69
|
+
"entityType": {
|
|
70
|
+
"type": "string"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"required": [
|
|
74
|
+
"entityType"
|
|
75
|
+
],
|
|
76
|
+
"type": "object"
|
|
77
|
+
},
|
|
78
|
+
"ConditionsEntityBulkAction": {
|
|
79
|
+
"properties": {
|
|
80
|
+
"entityType": {
|
|
81
|
+
"type": "string"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"required": [
|
|
85
|
+
"entityType"
|
|
86
|
+
],
|
|
87
|
+
"type": "object"
|
|
88
|
+
},
|
|
89
|
+
"ConditionsMenuItem": {
|
|
90
|
+
"properties": {
|
|
91
|
+
"menus": {
|
|
92
|
+
"items": {
|
|
93
|
+
"type": "string"
|
|
94
|
+
},
|
|
95
|
+
"type": "array"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"required": [
|
|
99
|
+
"menus"
|
|
100
|
+
],
|
|
101
|
+
"type": "object"
|
|
102
|
+
},
|
|
103
|
+
"ConditionsPropertyAction": {
|
|
104
|
+
"properties": {
|
|
105
|
+
"propertyEditors": {
|
|
106
|
+
"items": {
|
|
107
|
+
"type": "string"
|
|
108
|
+
},
|
|
109
|
+
"type": "array"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"required": [
|
|
113
|
+
"propertyEditors"
|
|
114
|
+
],
|
|
115
|
+
"type": "object"
|
|
116
|
+
},
|
|
117
|
+
"ConditionsSectionSidebarApp": {
|
|
118
|
+
"properties": {
|
|
119
|
+
"sections": {
|
|
120
|
+
"items": {
|
|
121
|
+
"type": "string"
|
|
122
|
+
},
|
|
123
|
+
"type": "array"
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"required": [
|
|
127
|
+
"sections"
|
|
128
|
+
],
|
|
129
|
+
"type": "object"
|
|
130
|
+
},
|
|
131
|
+
"ConditionsSectionView": {
|
|
132
|
+
"properties": {
|
|
133
|
+
"sections": {
|
|
134
|
+
"items": {
|
|
135
|
+
"type": "string"
|
|
136
|
+
},
|
|
137
|
+
"type": "array"
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"required": [
|
|
141
|
+
"sections"
|
|
142
|
+
],
|
|
143
|
+
"type": "object"
|
|
144
|
+
},
|
|
145
|
+
"ConditionsTreeItem": {
|
|
146
|
+
"properties": {
|
|
147
|
+
"entityType": {
|
|
148
|
+
"type": "string"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"required": [
|
|
152
|
+
"entityType"
|
|
153
|
+
],
|
|
154
|
+
"type": "object"
|
|
155
|
+
},
|
|
156
|
+
"ConditionsWorkspaceAction": {
|
|
157
|
+
"properties": {
|
|
158
|
+
"workspaces": {
|
|
159
|
+
"items": {
|
|
160
|
+
"type": "string"
|
|
161
|
+
},
|
|
162
|
+
"type": "array"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"required": [
|
|
166
|
+
"workspaces"
|
|
167
|
+
],
|
|
168
|
+
"type": "object"
|
|
169
|
+
},
|
|
170
|
+
"ConditionsWorkspaceView": {
|
|
171
|
+
"properties": {
|
|
172
|
+
"workspaces": {
|
|
173
|
+
"items": {
|
|
174
|
+
"type": "string"
|
|
175
|
+
},
|
|
176
|
+
"type": "array"
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
"required": [
|
|
180
|
+
"workspaces"
|
|
181
|
+
],
|
|
182
|
+
"type": "object"
|
|
183
|
+
},
|
|
184
|
+
"ManifestBase": {
|
|
185
|
+
"properties": {
|
|
186
|
+
"alias": {
|
|
187
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
188
|
+
"type": "string"
|
|
189
|
+
},
|
|
190
|
+
"kind": {
|
|
191
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
192
|
+
"examples": [
|
|
193
|
+
"button"
|
|
194
|
+
]
|
|
195
|
+
},
|
|
196
|
+
"name": {
|
|
197
|
+
"description": "The friendly name of the extension",
|
|
198
|
+
"type": "string"
|
|
199
|
+
},
|
|
200
|
+
"type": {
|
|
201
|
+
"description": "The type of extension such as dashboard etc...",
|
|
202
|
+
"type": "string"
|
|
203
|
+
},
|
|
204
|
+
"weight": {
|
|
205
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
206
|
+
"type": "number"
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"required": [
|
|
210
|
+
"alias",
|
|
211
|
+
"name",
|
|
212
|
+
"type"
|
|
213
|
+
],
|
|
214
|
+
"type": "object"
|
|
215
|
+
},
|
|
216
|
+
"ManifestCollectionView": {
|
|
217
|
+
"properties": {
|
|
218
|
+
"alias": {
|
|
219
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
220
|
+
"type": "string"
|
|
221
|
+
},
|
|
222
|
+
"conditions": {
|
|
223
|
+
"$ref": "#/definitions/ConditionsCollectionView",
|
|
224
|
+
"description": "Set the conditions for when the extension should be loaded"
|
|
225
|
+
},
|
|
226
|
+
"elementName": {
|
|
227
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
228
|
+
"type": "string"
|
|
229
|
+
},
|
|
230
|
+
"js": {
|
|
231
|
+
"description": "The file location of the javascript file to load",
|
|
232
|
+
"type": "string"
|
|
233
|
+
},
|
|
234
|
+
"kind": {
|
|
235
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
236
|
+
"examples": [
|
|
237
|
+
"button"
|
|
238
|
+
]
|
|
239
|
+
},
|
|
240
|
+
"meta": {
|
|
241
|
+
"$ref": "#/definitions/MetaCollectionView",
|
|
242
|
+
"description": "This contains properties specific to the type of extension"
|
|
243
|
+
},
|
|
244
|
+
"name": {
|
|
245
|
+
"description": "The friendly name of the extension",
|
|
246
|
+
"type": "string"
|
|
247
|
+
},
|
|
248
|
+
"type": {
|
|
249
|
+
"description": "The type of extension such as dashboard etc...",
|
|
250
|
+
"enum": [
|
|
251
|
+
"collectionView"
|
|
252
|
+
],
|
|
253
|
+
"type": "string"
|
|
254
|
+
},
|
|
255
|
+
"weight": {
|
|
256
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
257
|
+
"type": "number"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
"required": [
|
|
261
|
+
"alias",
|
|
262
|
+
"conditions",
|
|
263
|
+
"meta",
|
|
264
|
+
"name",
|
|
265
|
+
"type"
|
|
266
|
+
],
|
|
267
|
+
"type": "object"
|
|
268
|
+
},
|
|
269
|
+
"ManifestDashboard": {
|
|
270
|
+
"properties": {
|
|
271
|
+
"alias": {
|
|
272
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
273
|
+
"type": "string"
|
|
274
|
+
},
|
|
275
|
+
"conditions": {
|
|
276
|
+
"$ref": "#/definitions/ConditionsDashboard",
|
|
277
|
+
"description": "Set the conditions for when the extension should be loaded"
|
|
278
|
+
},
|
|
279
|
+
"elementName": {
|
|
280
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
281
|
+
"type": "string"
|
|
282
|
+
},
|
|
283
|
+
"js": {
|
|
284
|
+
"description": "The file location of the javascript file to load",
|
|
285
|
+
"type": "string"
|
|
286
|
+
},
|
|
287
|
+
"kind": {
|
|
288
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
289
|
+
"examples": [
|
|
290
|
+
"button"
|
|
291
|
+
]
|
|
292
|
+
},
|
|
293
|
+
"meta": {
|
|
294
|
+
"$ref": "#/definitions/MetaDashboard",
|
|
295
|
+
"description": "This contains properties specific to the type of extension"
|
|
296
|
+
},
|
|
297
|
+
"name": {
|
|
298
|
+
"description": "The friendly name of the extension",
|
|
299
|
+
"type": "string"
|
|
300
|
+
},
|
|
301
|
+
"type": {
|
|
302
|
+
"description": "The type of extension such as dashboard etc...",
|
|
303
|
+
"enum": [
|
|
304
|
+
"dashboard"
|
|
305
|
+
],
|
|
306
|
+
"type": "string"
|
|
307
|
+
},
|
|
308
|
+
"weight": {
|
|
309
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
310
|
+
"type": "number"
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
"required": [
|
|
314
|
+
"alias",
|
|
315
|
+
"conditions",
|
|
316
|
+
"meta",
|
|
317
|
+
"name",
|
|
318
|
+
"type"
|
|
319
|
+
],
|
|
320
|
+
"type": "object"
|
|
321
|
+
},
|
|
322
|
+
"ManifestDashboardCollection": {
|
|
323
|
+
"properties": {
|
|
324
|
+
"alias": {
|
|
325
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
326
|
+
"type": "string"
|
|
327
|
+
},
|
|
328
|
+
"conditions": {
|
|
329
|
+
"$ref": "#/definitions/ConditionsDashboardCollection"
|
|
330
|
+
},
|
|
331
|
+
"kind": {
|
|
332
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
333
|
+
"examples": [
|
|
334
|
+
"button"
|
|
335
|
+
]
|
|
336
|
+
},
|
|
337
|
+
"meta": {
|
|
338
|
+
"$ref": "#/definitions/MetaDashboardCollection"
|
|
339
|
+
},
|
|
340
|
+
"name": {
|
|
341
|
+
"description": "The friendly name of the extension",
|
|
342
|
+
"type": "string"
|
|
343
|
+
},
|
|
344
|
+
"type": {
|
|
345
|
+
"description": "The type of extension such as dashboard etc...",
|
|
346
|
+
"enum": [
|
|
347
|
+
"dashboardCollection"
|
|
348
|
+
],
|
|
349
|
+
"type": "string"
|
|
350
|
+
},
|
|
351
|
+
"weight": {
|
|
352
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
353
|
+
"type": "number"
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
"required": [
|
|
357
|
+
"alias",
|
|
358
|
+
"conditions",
|
|
359
|
+
"meta",
|
|
360
|
+
"name",
|
|
361
|
+
"type"
|
|
362
|
+
],
|
|
363
|
+
"type": "object"
|
|
364
|
+
},
|
|
365
|
+
"ManifestEntityAction": {
|
|
366
|
+
"description": "An action to perform on an entity\nFor example for content you may wish to create a new document etc",
|
|
367
|
+
"properties": {
|
|
368
|
+
"alias": {
|
|
369
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
370
|
+
"type": "string"
|
|
371
|
+
},
|
|
372
|
+
"conditions": {
|
|
373
|
+
"$ref": "#/definitions/ConditionsEntityAction"
|
|
374
|
+
},
|
|
375
|
+
"elementName": {
|
|
376
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
377
|
+
"type": "string"
|
|
378
|
+
},
|
|
379
|
+
"js": {
|
|
380
|
+
"description": "The file location of the javascript file to load",
|
|
381
|
+
"type": "string"
|
|
382
|
+
},
|
|
383
|
+
"kind": {
|
|
384
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
385
|
+
"examples": [
|
|
386
|
+
"button"
|
|
387
|
+
]
|
|
388
|
+
},
|
|
389
|
+
"meta": {
|
|
390
|
+
"$ref": "#/definitions/MetaEntityAction",
|
|
391
|
+
"description": "This contains properties specific to the type of extension"
|
|
392
|
+
},
|
|
393
|
+
"name": {
|
|
394
|
+
"description": "The friendly name of the extension",
|
|
395
|
+
"type": "string"
|
|
396
|
+
},
|
|
397
|
+
"type": {
|
|
398
|
+
"description": "The type of extension such as dashboard etc...",
|
|
399
|
+
"enum": [
|
|
400
|
+
"entityAction"
|
|
401
|
+
],
|
|
402
|
+
"type": "string"
|
|
403
|
+
},
|
|
404
|
+
"weight": {
|
|
405
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
406
|
+
"type": "number"
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
"required": [
|
|
410
|
+
"alias",
|
|
411
|
+
"conditions",
|
|
412
|
+
"meta",
|
|
413
|
+
"name",
|
|
414
|
+
"type"
|
|
415
|
+
],
|
|
416
|
+
"type": "object"
|
|
417
|
+
},
|
|
418
|
+
"ManifestEntityBulkAction": {
|
|
419
|
+
"description": "An action to perform on multiple entities\nFor example for content you may wish to move one or more documents in bulk",
|
|
420
|
+
"properties": {
|
|
421
|
+
"alias": {
|
|
422
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
423
|
+
"type": "string"
|
|
424
|
+
},
|
|
425
|
+
"conditions": {
|
|
426
|
+
"$ref": "#/definitions/ConditionsEntityBulkAction",
|
|
427
|
+
"description": "Set the conditions for when the extension should be loaded"
|
|
428
|
+
},
|
|
429
|
+
"elementName": {
|
|
430
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
431
|
+
"type": "string"
|
|
432
|
+
},
|
|
433
|
+
"js": {
|
|
434
|
+
"description": "The file location of the javascript file to load",
|
|
435
|
+
"type": "string"
|
|
436
|
+
},
|
|
437
|
+
"kind": {
|
|
438
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
439
|
+
"examples": [
|
|
440
|
+
"button"
|
|
441
|
+
]
|
|
442
|
+
},
|
|
443
|
+
"meta": {
|
|
444
|
+
"$ref": "#/definitions/MetaEntityBulkAction",
|
|
445
|
+
"description": "This contains properties specific to the type of extension"
|
|
446
|
+
},
|
|
447
|
+
"name": {
|
|
448
|
+
"description": "The friendly name of the extension",
|
|
449
|
+
"type": "string"
|
|
450
|
+
},
|
|
451
|
+
"type": {
|
|
452
|
+
"description": "The type of extension such as dashboard etc...",
|
|
453
|
+
"enum": [
|
|
454
|
+
"entityBulkAction"
|
|
455
|
+
],
|
|
456
|
+
"type": "string"
|
|
457
|
+
},
|
|
458
|
+
"weight": {
|
|
459
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
460
|
+
"type": "number"
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
"required": [
|
|
464
|
+
"alias",
|
|
465
|
+
"conditions",
|
|
466
|
+
"meta",
|
|
467
|
+
"name",
|
|
468
|
+
"type"
|
|
469
|
+
],
|
|
470
|
+
"type": "object"
|
|
471
|
+
},
|
|
472
|
+
"ManifestEntrypoint": {
|
|
473
|
+
"description": "This type of extension gives full control and will simply load the specified JS file\nYou could have custom logic to decide which extensions to load/register by using extensionRegistry",
|
|
474
|
+
"properties": {
|
|
475
|
+
"alias": {
|
|
476
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
477
|
+
"type": "string"
|
|
478
|
+
},
|
|
479
|
+
"js": {
|
|
480
|
+
"description": "The file location of the javascript file to load in the backoffice",
|
|
481
|
+
"type": "string"
|
|
482
|
+
},
|
|
483
|
+
"kind": {
|
|
484
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
485
|
+
"examples": [
|
|
486
|
+
"button"
|
|
487
|
+
]
|
|
488
|
+
},
|
|
489
|
+
"name": {
|
|
490
|
+
"description": "The friendly name of the extension",
|
|
491
|
+
"type": "string"
|
|
492
|
+
},
|
|
493
|
+
"type": {
|
|
494
|
+
"description": "The type of extension such as dashboard etc...",
|
|
495
|
+
"enum": [
|
|
496
|
+
"entryPoint"
|
|
497
|
+
],
|
|
498
|
+
"type": "string"
|
|
499
|
+
},
|
|
500
|
+
"weight": {
|
|
501
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
502
|
+
"type": "number"
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
"required": [
|
|
506
|
+
"alias",
|
|
507
|
+
"js",
|
|
508
|
+
"name",
|
|
509
|
+
"type"
|
|
510
|
+
],
|
|
511
|
+
"type": "object"
|
|
512
|
+
},
|
|
513
|
+
"ManifestExternalLoginProvider": {
|
|
514
|
+
"properties": {
|
|
515
|
+
"alias": {
|
|
516
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
517
|
+
"type": "string"
|
|
518
|
+
},
|
|
519
|
+
"elementName": {
|
|
520
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
521
|
+
"type": "string"
|
|
522
|
+
},
|
|
523
|
+
"js": {
|
|
524
|
+
"description": "The file location of the javascript file to load",
|
|
525
|
+
"type": "string"
|
|
526
|
+
},
|
|
527
|
+
"kind": {
|
|
528
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
529
|
+
"examples": [
|
|
530
|
+
"button"
|
|
531
|
+
]
|
|
532
|
+
},
|
|
533
|
+
"meta": {
|
|
534
|
+
"$ref": "#/definitions/MetaExternalLoginProvider",
|
|
535
|
+
"description": "This contains properties specific to the type of extension"
|
|
536
|
+
},
|
|
537
|
+
"name": {
|
|
538
|
+
"description": "The friendly name of the extension",
|
|
539
|
+
"type": "string"
|
|
540
|
+
},
|
|
541
|
+
"type": {
|
|
542
|
+
"description": "The type of extension such as dashboard etc...",
|
|
543
|
+
"enum": [
|
|
544
|
+
"externalLoginProvider"
|
|
545
|
+
],
|
|
546
|
+
"type": "string"
|
|
547
|
+
},
|
|
548
|
+
"weight": {
|
|
549
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
550
|
+
"type": "number"
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
"required": [
|
|
554
|
+
"alias",
|
|
555
|
+
"meta",
|
|
556
|
+
"name",
|
|
557
|
+
"type"
|
|
558
|
+
],
|
|
559
|
+
"type": "object"
|
|
560
|
+
},
|
|
561
|
+
"ManifestHeaderApp": {
|
|
562
|
+
"description": "Header apps are displayed in the top right corner of the backoffice\nThe two provided header apps are the search and the user menu",
|
|
563
|
+
"properties": {
|
|
564
|
+
"alias": {
|
|
565
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
566
|
+
"type": "string"
|
|
567
|
+
},
|
|
568
|
+
"elementName": {
|
|
569
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
570
|
+
"type": "string"
|
|
571
|
+
},
|
|
572
|
+
"js": {
|
|
573
|
+
"description": "The file location of the javascript file to load",
|
|
574
|
+
"type": "string"
|
|
575
|
+
},
|
|
576
|
+
"kind": {
|
|
577
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
578
|
+
"examples": [
|
|
579
|
+
"button"
|
|
580
|
+
]
|
|
581
|
+
},
|
|
582
|
+
"meta": {
|
|
583
|
+
"description": "This contains properties specific to the type of extension"
|
|
584
|
+
},
|
|
585
|
+
"name": {
|
|
586
|
+
"description": "The friendly name of the extension",
|
|
587
|
+
"type": "string"
|
|
588
|
+
},
|
|
589
|
+
"type": {
|
|
590
|
+
"description": "The type of extension such as dashboard etc...",
|
|
591
|
+
"enum": [
|
|
592
|
+
"headerApp"
|
|
593
|
+
],
|
|
594
|
+
"type": "string"
|
|
595
|
+
},
|
|
596
|
+
"weight": {
|
|
597
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
598
|
+
"type": "number"
|
|
599
|
+
}
|
|
600
|
+
},
|
|
601
|
+
"required": [
|
|
602
|
+
"alias",
|
|
603
|
+
"name",
|
|
604
|
+
"type"
|
|
605
|
+
],
|
|
606
|
+
"type": "object"
|
|
607
|
+
},
|
|
608
|
+
"ManifestHeaderAppButtonKind": {
|
|
609
|
+
"properties": {
|
|
610
|
+
"alias": {
|
|
611
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
612
|
+
"type": "string"
|
|
613
|
+
},
|
|
614
|
+
"elementName": {
|
|
615
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
616
|
+
"type": "string"
|
|
617
|
+
},
|
|
618
|
+
"js": {
|
|
619
|
+
"description": "The file location of the javascript file to load",
|
|
620
|
+
"type": "string"
|
|
621
|
+
},
|
|
622
|
+
"kind": {
|
|
623
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
624
|
+
"enum": [
|
|
625
|
+
"button"
|
|
626
|
+
],
|
|
627
|
+
"type": "string"
|
|
628
|
+
},
|
|
629
|
+
"meta": {
|
|
630
|
+
"$ref": "#/definitions/MetaHeaderAppButtonKind",
|
|
631
|
+
"description": "This contains properties specific to the type of extension"
|
|
632
|
+
},
|
|
633
|
+
"name": {
|
|
634
|
+
"description": "The friendly name of the extension",
|
|
635
|
+
"type": "string"
|
|
636
|
+
},
|
|
637
|
+
"type": {
|
|
638
|
+
"description": "The type of extension such as dashboard etc...",
|
|
639
|
+
"enum": [
|
|
640
|
+
"headerApp"
|
|
641
|
+
],
|
|
642
|
+
"type": "string"
|
|
643
|
+
},
|
|
644
|
+
"weight": {
|
|
645
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
646
|
+
"type": "number"
|
|
647
|
+
}
|
|
648
|
+
},
|
|
649
|
+
"required": [
|
|
650
|
+
"alias",
|
|
651
|
+
"kind",
|
|
652
|
+
"meta",
|
|
653
|
+
"name",
|
|
654
|
+
"type"
|
|
655
|
+
],
|
|
656
|
+
"type": "object"
|
|
657
|
+
},
|
|
658
|
+
"ManifestHealthCheck": {
|
|
659
|
+
"properties": {
|
|
660
|
+
"alias": {
|
|
661
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
662
|
+
"type": "string"
|
|
663
|
+
},
|
|
664
|
+
"elementName": {
|
|
665
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
666
|
+
"type": "string"
|
|
667
|
+
},
|
|
668
|
+
"js": {
|
|
669
|
+
"description": "The file location of the javascript file to load",
|
|
670
|
+
"type": "string"
|
|
671
|
+
},
|
|
672
|
+
"kind": {
|
|
673
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
674
|
+
"examples": [
|
|
675
|
+
"button"
|
|
676
|
+
]
|
|
677
|
+
},
|
|
678
|
+
"meta": {
|
|
679
|
+
"$ref": "#/definitions/MetaHealthCheck",
|
|
680
|
+
"description": "This contains properties specific to the type of extension"
|
|
681
|
+
},
|
|
682
|
+
"name": {
|
|
683
|
+
"description": "The friendly name of the extension",
|
|
684
|
+
"type": "string"
|
|
685
|
+
},
|
|
686
|
+
"type": {
|
|
687
|
+
"description": "The type of extension such as dashboard etc...",
|
|
688
|
+
"enum": [
|
|
689
|
+
"healthCheck"
|
|
690
|
+
],
|
|
691
|
+
"type": "string"
|
|
692
|
+
},
|
|
693
|
+
"weight": {
|
|
694
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
695
|
+
"type": "number"
|
|
696
|
+
}
|
|
697
|
+
},
|
|
698
|
+
"required": [
|
|
699
|
+
"alias",
|
|
700
|
+
"meta",
|
|
701
|
+
"name",
|
|
702
|
+
"type"
|
|
703
|
+
],
|
|
704
|
+
"type": "object"
|
|
705
|
+
},
|
|
706
|
+
"ManifestItemStore": {
|
|
707
|
+
"properties": {
|
|
708
|
+
"alias": {
|
|
709
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
710
|
+
"type": "string"
|
|
711
|
+
},
|
|
712
|
+
"js": {
|
|
713
|
+
"description": "The file location of the javascript file to load",
|
|
714
|
+
"type": "string"
|
|
715
|
+
},
|
|
716
|
+
"kind": {
|
|
717
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
718
|
+
"examples": [
|
|
719
|
+
"button"
|
|
720
|
+
]
|
|
721
|
+
},
|
|
722
|
+
"name": {
|
|
723
|
+
"description": "The friendly name of the extension",
|
|
724
|
+
"type": "string"
|
|
725
|
+
},
|
|
726
|
+
"type": {
|
|
727
|
+
"description": "The type of extension such as dashboard etc...",
|
|
728
|
+
"enum": [
|
|
729
|
+
"itemStore"
|
|
730
|
+
],
|
|
731
|
+
"type": "string"
|
|
732
|
+
},
|
|
733
|
+
"weight": {
|
|
734
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
735
|
+
"type": "number"
|
|
736
|
+
}
|
|
737
|
+
},
|
|
738
|
+
"required": [
|
|
739
|
+
"alias",
|
|
740
|
+
"name",
|
|
741
|
+
"type"
|
|
742
|
+
],
|
|
743
|
+
"type": "object"
|
|
744
|
+
},
|
|
745
|
+
"ManifestMenu": {
|
|
746
|
+
"properties": {
|
|
747
|
+
"alias": {
|
|
748
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
749
|
+
"type": "string"
|
|
750
|
+
},
|
|
751
|
+
"elementName": {
|
|
752
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
753
|
+
"type": "string"
|
|
754
|
+
},
|
|
755
|
+
"js": {
|
|
756
|
+
"description": "The file location of the javascript file to load",
|
|
757
|
+
"type": "string"
|
|
758
|
+
},
|
|
759
|
+
"kind": {
|
|
760
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
761
|
+
"examples": [
|
|
762
|
+
"button"
|
|
763
|
+
]
|
|
764
|
+
},
|
|
765
|
+
"meta": {
|
|
766
|
+
"description": "This contains properties specific to the type of extension"
|
|
767
|
+
},
|
|
768
|
+
"name": {
|
|
769
|
+
"description": "The friendly name of the extension",
|
|
770
|
+
"type": "string"
|
|
771
|
+
},
|
|
772
|
+
"type": {
|
|
773
|
+
"description": "The type of extension such as dashboard etc...",
|
|
774
|
+
"enum": [
|
|
775
|
+
"menu"
|
|
776
|
+
],
|
|
777
|
+
"type": "string"
|
|
778
|
+
},
|
|
779
|
+
"weight": {
|
|
780
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
781
|
+
"type": "number"
|
|
782
|
+
}
|
|
783
|
+
},
|
|
784
|
+
"required": [
|
|
785
|
+
"alias",
|
|
786
|
+
"name",
|
|
787
|
+
"type"
|
|
788
|
+
],
|
|
789
|
+
"type": "object"
|
|
790
|
+
},
|
|
791
|
+
"ManifestMenuItem": {
|
|
792
|
+
"properties": {
|
|
793
|
+
"alias": {
|
|
794
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
795
|
+
"type": "string"
|
|
796
|
+
},
|
|
797
|
+
"conditions": {
|
|
798
|
+
"$ref": "#/definitions/ConditionsMenuItem"
|
|
799
|
+
},
|
|
800
|
+
"elementName": {
|
|
801
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
802
|
+
"type": "string"
|
|
803
|
+
},
|
|
804
|
+
"js": {
|
|
805
|
+
"description": "The file location of the javascript file to load",
|
|
806
|
+
"type": "string"
|
|
807
|
+
},
|
|
808
|
+
"kind": {
|
|
809
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
810
|
+
"examples": [
|
|
811
|
+
"button"
|
|
812
|
+
]
|
|
813
|
+
},
|
|
814
|
+
"meta": {
|
|
815
|
+
"$ref": "#/definitions/MetaMenuItem",
|
|
816
|
+
"description": "This contains properties specific to the type of extension"
|
|
817
|
+
},
|
|
818
|
+
"name": {
|
|
819
|
+
"description": "The friendly name of the extension",
|
|
820
|
+
"type": "string"
|
|
821
|
+
},
|
|
822
|
+
"type": {
|
|
823
|
+
"description": "The type of extension such as dashboard etc...",
|
|
824
|
+
"enum": [
|
|
825
|
+
"menuItem"
|
|
826
|
+
],
|
|
827
|
+
"type": "string"
|
|
828
|
+
},
|
|
829
|
+
"weight": {
|
|
830
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
831
|
+
"type": "number"
|
|
832
|
+
}
|
|
833
|
+
},
|
|
834
|
+
"required": [
|
|
835
|
+
"alias",
|
|
836
|
+
"conditions",
|
|
837
|
+
"meta",
|
|
838
|
+
"name",
|
|
839
|
+
"type"
|
|
840
|
+
],
|
|
841
|
+
"type": "object"
|
|
842
|
+
},
|
|
843
|
+
"ManifestMenuItemTreeKind": {
|
|
844
|
+
"properties": {
|
|
845
|
+
"alias": {
|
|
846
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
847
|
+
"type": "string"
|
|
848
|
+
},
|
|
849
|
+
"conditions": {
|
|
850
|
+
"$ref": "#/definitions/ConditionsMenuItem"
|
|
851
|
+
},
|
|
852
|
+
"elementName": {
|
|
853
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
854
|
+
"type": "string"
|
|
855
|
+
},
|
|
856
|
+
"js": {
|
|
857
|
+
"description": "The file location of the javascript file to load",
|
|
858
|
+
"type": "string"
|
|
859
|
+
},
|
|
860
|
+
"kind": {
|
|
861
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
862
|
+
"enum": [
|
|
863
|
+
"tree"
|
|
864
|
+
],
|
|
865
|
+
"type": "string"
|
|
866
|
+
},
|
|
867
|
+
"meta": {
|
|
868
|
+
"$ref": "#/definitions/MetaMenuItemTreeKind",
|
|
869
|
+
"description": "This contains properties specific to the type of extension"
|
|
870
|
+
},
|
|
871
|
+
"name": {
|
|
872
|
+
"description": "The friendly name of the extension",
|
|
873
|
+
"type": "string"
|
|
874
|
+
},
|
|
875
|
+
"type": {
|
|
876
|
+
"description": "The type of extension such as dashboard etc...",
|
|
877
|
+
"enum": [
|
|
878
|
+
"menuItem"
|
|
879
|
+
],
|
|
880
|
+
"type": "string"
|
|
881
|
+
},
|
|
882
|
+
"weight": {
|
|
883
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
884
|
+
"type": "number"
|
|
885
|
+
}
|
|
886
|
+
},
|
|
887
|
+
"required": [
|
|
888
|
+
"alias",
|
|
889
|
+
"conditions",
|
|
890
|
+
"kind",
|
|
891
|
+
"meta",
|
|
892
|
+
"name",
|
|
893
|
+
"type"
|
|
894
|
+
],
|
|
895
|
+
"type": "object"
|
|
896
|
+
},
|
|
897
|
+
"ManifestModal": {
|
|
898
|
+
"properties": {
|
|
899
|
+
"alias": {
|
|
900
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
901
|
+
"type": "string"
|
|
902
|
+
},
|
|
903
|
+
"elementName": {
|
|
904
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
905
|
+
"type": "string"
|
|
906
|
+
},
|
|
907
|
+
"js": {
|
|
908
|
+
"description": "The file location of the javascript file to load",
|
|
909
|
+
"type": "string"
|
|
910
|
+
},
|
|
911
|
+
"kind": {
|
|
912
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
913
|
+
"examples": [
|
|
914
|
+
"button"
|
|
915
|
+
]
|
|
916
|
+
},
|
|
917
|
+
"meta": {
|
|
918
|
+
"description": "This contains properties specific to the type of extension"
|
|
919
|
+
},
|
|
920
|
+
"name": {
|
|
921
|
+
"description": "The friendly name of the extension",
|
|
922
|
+
"type": "string"
|
|
923
|
+
},
|
|
924
|
+
"type": {
|
|
925
|
+
"description": "The type of extension such as dashboard etc...",
|
|
926
|
+
"enum": [
|
|
927
|
+
"modal"
|
|
928
|
+
],
|
|
929
|
+
"type": "string"
|
|
930
|
+
},
|
|
931
|
+
"weight": {
|
|
932
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
933
|
+
"type": "number"
|
|
934
|
+
}
|
|
935
|
+
},
|
|
936
|
+
"required": [
|
|
937
|
+
"alias",
|
|
938
|
+
"name",
|
|
939
|
+
"type"
|
|
940
|
+
],
|
|
941
|
+
"type": "object"
|
|
942
|
+
},
|
|
943
|
+
"ManifestPackageView": {
|
|
944
|
+
"properties": {
|
|
945
|
+
"alias": {
|
|
946
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
947
|
+
"type": "string"
|
|
948
|
+
},
|
|
949
|
+
"elementName": {
|
|
950
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
951
|
+
"type": "string"
|
|
952
|
+
},
|
|
953
|
+
"js": {
|
|
954
|
+
"description": "The file location of the javascript file to load",
|
|
955
|
+
"type": "string"
|
|
956
|
+
},
|
|
957
|
+
"kind": {
|
|
958
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
959
|
+
"examples": [
|
|
960
|
+
"button"
|
|
961
|
+
]
|
|
962
|
+
},
|
|
963
|
+
"meta": {
|
|
964
|
+
"$ref": "#/definitions/MetaPackageView",
|
|
965
|
+
"description": "This contains properties specific to the type of extension"
|
|
966
|
+
},
|
|
967
|
+
"name": {
|
|
968
|
+
"description": "The friendly name of the extension",
|
|
969
|
+
"type": "string"
|
|
970
|
+
},
|
|
971
|
+
"type": {
|
|
972
|
+
"description": "The type of extension such as dashboard etc...",
|
|
973
|
+
"enum": [
|
|
974
|
+
"packageView"
|
|
975
|
+
],
|
|
976
|
+
"type": "string"
|
|
977
|
+
},
|
|
978
|
+
"weight": {
|
|
979
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
980
|
+
"type": "number"
|
|
981
|
+
}
|
|
982
|
+
},
|
|
983
|
+
"required": [
|
|
984
|
+
"alias",
|
|
985
|
+
"meta",
|
|
986
|
+
"name",
|
|
987
|
+
"type"
|
|
988
|
+
],
|
|
989
|
+
"type": "object"
|
|
990
|
+
},
|
|
991
|
+
"ManifestPropertyAction": {
|
|
992
|
+
"properties": {
|
|
993
|
+
"alias": {
|
|
994
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
995
|
+
"type": "string"
|
|
996
|
+
},
|
|
997
|
+
"conditions": {
|
|
998
|
+
"$ref": "#/definitions/ConditionsPropertyAction",
|
|
999
|
+
"description": "Set the conditions for when the extension should be loaded"
|
|
1000
|
+
},
|
|
1001
|
+
"elementName": {
|
|
1002
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
1003
|
+
"type": "string"
|
|
1004
|
+
},
|
|
1005
|
+
"js": {
|
|
1006
|
+
"description": "The file location of the javascript file to load",
|
|
1007
|
+
"type": "string"
|
|
1008
|
+
},
|
|
1009
|
+
"kind": {
|
|
1010
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1011
|
+
"examples": [
|
|
1012
|
+
"button"
|
|
1013
|
+
]
|
|
1014
|
+
},
|
|
1015
|
+
"meta": {
|
|
1016
|
+
"description": "This contains properties specific to the type of extension"
|
|
1017
|
+
},
|
|
1018
|
+
"name": {
|
|
1019
|
+
"description": "The friendly name of the extension",
|
|
1020
|
+
"type": "string"
|
|
1021
|
+
},
|
|
1022
|
+
"type": {
|
|
1023
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1024
|
+
"enum": [
|
|
1025
|
+
"propertyAction"
|
|
1026
|
+
],
|
|
1027
|
+
"type": "string"
|
|
1028
|
+
},
|
|
1029
|
+
"weight": {
|
|
1030
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1031
|
+
"type": "number"
|
|
1032
|
+
}
|
|
1033
|
+
},
|
|
1034
|
+
"required": [
|
|
1035
|
+
"alias",
|
|
1036
|
+
"conditions",
|
|
1037
|
+
"name",
|
|
1038
|
+
"type"
|
|
1039
|
+
],
|
|
1040
|
+
"type": "object"
|
|
1041
|
+
},
|
|
1042
|
+
"ManifestPropertyEditorModel": {
|
|
1043
|
+
"properties": {
|
|
1044
|
+
"alias": {
|
|
1045
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1046
|
+
"type": "string"
|
|
1047
|
+
},
|
|
1048
|
+
"kind": {
|
|
1049
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1050
|
+
"examples": [
|
|
1051
|
+
"button"
|
|
1052
|
+
]
|
|
1053
|
+
},
|
|
1054
|
+
"meta": {
|
|
1055
|
+
"$ref": "#/definitions/MetaPropertyEditorModel"
|
|
1056
|
+
},
|
|
1057
|
+
"name": {
|
|
1058
|
+
"description": "The friendly name of the extension",
|
|
1059
|
+
"type": "string"
|
|
1060
|
+
},
|
|
1061
|
+
"type": {
|
|
1062
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1063
|
+
"enum": [
|
|
1064
|
+
"propertyEditorModel"
|
|
1065
|
+
],
|
|
1066
|
+
"type": "string"
|
|
1067
|
+
},
|
|
1068
|
+
"weight": {
|
|
1069
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1070
|
+
"type": "number"
|
|
1071
|
+
}
|
|
1072
|
+
},
|
|
1073
|
+
"required": [
|
|
1074
|
+
"alias",
|
|
1075
|
+
"meta",
|
|
1076
|
+
"name",
|
|
1077
|
+
"type"
|
|
1078
|
+
],
|
|
1079
|
+
"type": "object"
|
|
1080
|
+
},
|
|
1081
|
+
"ManifestPropertyEditorUI": {
|
|
1082
|
+
"properties": {
|
|
1083
|
+
"alias": {
|
|
1084
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1085
|
+
"type": "string"
|
|
1086
|
+
},
|
|
1087
|
+
"elementName": {
|
|
1088
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
1089
|
+
"type": "string"
|
|
1090
|
+
},
|
|
1091
|
+
"js": {
|
|
1092
|
+
"description": "The file location of the javascript file to load",
|
|
1093
|
+
"type": "string"
|
|
1094
|
+
},
|
|
1095
|
+
"kind": {
|
|
1096
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1097
|
+
"examples": [
|
|
1098
|
+
"button"
|
|
1099
|
+
]
|
|
1100
|
+
},
|
|
1101
|
+
"meta": {
|
|
1102
|
+
"$ref": "#/definitions/MetaPropertyEditorUI",
|
|
1103
|
+
"description": "This contains properties specific to the type of extension"
|
|
1104
|
+
},
|
|
1105
|
+
"name": {
|
|
1106
|
+
"description": "The friendly name of the extension",
|
|
1107
|
+
"type": "string"
|
|
1108
|
+
},
|
|
1109
|
+
"type": {
|
|
1110
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1111
|
+
"enum": [
|
|
1112
|
+
"propertyEditorUI"
|
|
1113
|
+
],
|
|
1114
|
+
"type": "string"
|
|
1115
|
+
},
|
|
1116
|
+
"weight": {
|
|
1117
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1118
|
+
"type": "number"
|
|
1119
|
+
}
|
|
1120
|
+
},
|
|
1121
|
+
"required": [
|
|
1122
|
+
"alias",
|
|
1123
|
+
"meta",
|
|
1124
|
+
"name",
|
|
1125
|
+
"type"
|
|
1126
|
+
],
|
|
1127
|
+
"type": "object"
|
|
1128
|
+
},
|
|
1129
|
+
"ManifestRepository": {
|
|
1130
|
+
"properties": {
|
|
1131
|
+
"alias": {
|
|
1132
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1133
|
+
"type": "string"
|
|
1134
|
+
},
|
|
1135
|
+
"js": {
|
|
1136
|
+
"description": "The file location of the javascript file to load",
|
|
1137
|
+
"type": "string"
|
|
1138
|
+
},
|
|
1139
|
+
"kind": {
|
|
1140
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1141
|
+
"examples": [
|
|
1142
|
+
"button"
|
|
1143
|
+
]
|
|
1144
|
+
},
|
|
1145
|
+
"name": {
|
|
1146
|
+
"description": "The friendly name of the extension",
|
|
1147
|
+
"type": "string"
|
|
1148
|
+
},
|
|
1149
|
+
"type": {
|
|
1150
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1151
|
+
"enum": [
|
|
1152
|
+
"repository"
|
|
1153
|
+
],
|
|
1154
|
+
"type": "string"
|
|
1155
|
+
},
|
|
1156
|
+
"weight": {
|
|
1157
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1158
|
+
"type": "number"
|
|
1159
|
+
}
|
|
1160
|
+
},
|
|
1161
|
+
"required": [
|
|
1162
|
+
"alias",
|
|
1163
|
+
"name",
|
|
1164
|
+
"type"
|
|
1165
|
+
],
|
|
1166
|
+
"type": "object"
|
|
1167
|
+
},
|
|
1168
|
+
"ManifestSection": {
|
|
1169
|
+
"properties": {
|
|
1170
|
+
"alias": {
|
|
1171
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1172
|
+
"type": "string"
|
|
1173
|
+
},
|
|
1174
|
+
"elementName": {
|
|
1175
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
1176
|
+
"type": "string"
|
|
1177
|
+
},
|
|
1178
|
+
"js": {
|
|
1179
|
+
"description": "The file location of the javascript file to load",
|
|
1180
|
+
"type": "string"
|
|
1181
|
+
},
|
|
1182
|
+
"kind": {
|
|
1183
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1184
|
+
"examples": [
|
|
1185
|
+
"button"
|
|
1186
|
+
]
|
|
1187
|
+
},
|
|
1188
|
+
"meta": {
|
|
1189
|
+
"$ref": "#/definitions/MetaSection",
|
|
1190
|
+
"description": "This contains properties specific to the type of extension"
|
|
1191
|
+
},
|
|
1192
|
+
"name": {
|
|
1193
|
+
"description": "The friendly name of the extension",
|
|
1194
|
+
"type": "string"
|
|
1195
|
+
},
|
|
1196
|
+
"type": {
|
|
1197
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1198
|
+
"enum": [
|
|
1199
|
+
"section"
|
|
1200
|
+
],
|
|
1201
|
+
"type": "string"
|
|
1202
|
+
},
|
|
1203
|
+
"weight": {
|
|
1204
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1205
|
+
"type": "number"
|
|
1206
|
+
}
|
|
1207
|
+
},
|
|
1208
|
+
"required": [
|
|
1209
|
+
"alias",
|
|
1210
|
+
"meta",
|
|
1211
|
+
"name",
|
|
1212
|
+
"type"
|
|
1213
|
+
],
|
|
1214
|
+
"type": "object"
|
|
1215
|
+
},
|
|
1216
|
+
"ManifestSectionSidebarApp": {
|
|
1217
|
+
"properties": {
|
|
1218
|
+
"alias": {
|
|
1219
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1220
|
+
"type": "string"
|
|
1221
|
+
},
|
|
1222
|
+
"conditions": {
|
|
1223
|
+
"$ref": "#/definitions/ConditionsSectionSidebarApp"
|
|
1224
|
+
},
|
|
1225
|
+
"elementName": {
|
|
1226
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
1227
|
+
"type": "string"
|
|
1228
|
+
},
|
|
1229
|
+
"js": {
|
|
1230
|
+
"description": "The file location of the javascript file to load",
|
|
1231
|
+
"type": "string"
|
|
1232
|
+
},
|
|
1233
|
+
"kind": {
|
|
1234
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1235
|
+
"examples": [
|
|
1236
|
+
"button"
|
|
1237
|
+
]
|
|
1238
|
+
},
|
|
1239
|
+
"meta": {
|
|
1240
|
+
"description": "This contains properties specific to the type of extension"
|
|
1241
|
+
},
|
|
1242
|
+
"name": {
|
|
1243
|
+
"description": "The friendly name of the extension",
|
|
1244
|
+
"type": "string"
|
|
1245
|
+
},
|
|
1246
|
+
"type": {
|
|
1247
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1248
|
+
"enum": [
|
|
1249
|
+
"sectionSidebarApp"
|
|
1250
|
+
],
|
|
1251
|
+
"type": "string"
|
|
1252
|
+
},
|
|
1253
|
+
"weight": {
|
|
1254
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1255
|
+
"type": "number"
|
|
1256
|
+
}
|
|
1257
|
+
},
|
|
1258
|
+
"required": [
|
|
1259
|
+
"alias",
|
|
1260
|
+
"conditions",
|
|
1261
|
+
"name",
|
|
1262
|
+
"type"
|
|
1263
|
+
],
|
|
1264
|
+
"type": "object"
|
|
1265
|
+
},
|
|
1266
|
+
"ManifestSectionSidebarAppMenuKind": {
|
|
1267
|
+
"properties": {
|
|
1268
|
+
"alias": {
|
|
1269
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1270
|
+
"type": "string"
|
|
1271
|
+
},
|
|
1272
|
+
"conditions": {
|
|
1273
|
+
"$ref": "#/definitions/ConditionsSectionSidebarApp"
|
|
1274
|
+
},
|
|
1275
|
+
"elementName": {
|
|
1276
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
1277
|
+
"type": "string"
|
|
1278
|
+
},
|
|
1279
|
+
"js": {
|
|
1280
|
+
"description": "The file location of the javascript file to load",
|
|
1281
|
+
"type": "string"
|
|
1282
|
+
},
|
|
1283
|
+
"kind": {
|
|
1284
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1285
|
+
"enum": [
|
|
1286
|
+
"menu"
|
|
1287
|
+
],
|
|
1288
|
+
"type": "string"
|
|
1289
|
+
},
|
|
1290
|
+
"meta": {
|
|
1291
|
+
"$ref": "#/definitions/MetaSectionSidebarAppMenuKind",
|
|
1292
|
+
"description": "This contains properties specific to the type of extension"
|
|
1293
|
+
},
|
|
1294
|
+
"name": {
|
|
1295
|
+
"description": "The friendly name of the extension",
|
|
1296
|
+
"type": "string"
|
|
1297
|
+
},
|
|
1298
|
+
"type": {
|
|
1299
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1300
|
+
"enum": [
|
|
1301
|
+
"sectionSidebarApp"
|
|
1302
|
+
],
|
|
1303
|
+
"type": "string"
|
|
1304
|
+
},
|
|
1305
|
+
"weight": {
|
|
1306
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1307
|
+
"type": "number"
|
|
1308
|
+
}
|
|
1309
|
+
},
|
|
1310
|
+
"required": [
|
|
1311
|
+
"alias",
|
|
1312
|
+
"conditions",
|
|
1313
|
+
"kind",
|
|
1314
|
+
"meta",
|
|
1315
|
+
"name",
|
|
1316
|
+
"type"
|
|
1317
|
+
],
|
|
1318
|
+
"type": "object"
|
|
1319
|
+
},
|
|
1320
|
+
"ManifestSectionView": {
|
|
1321
|
+
"properties": {
|
|
1322
|
+
"alias": {
|
|
1323
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1324
|
+
"type": "string"
|
|
1325
|
+
},
|
|
1326
|
+
"conditions": {
|
|
1327
|
+
"$ref": "#/definitions/ConditionsSectionView",
|
|
1328
|
+
"description": "Set the conditions for when the extension should be loaded"
|
|
1329
|
+
},
|
|
1330
|
+
"elementName": {
|
|
1331
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
1332
|
+
"type": "string"
|
|
1333
|
+
},
|
|
1334
|
+
"js": {
|
|
1335
|
+
"description": "The file location of the javascript file to load",
|
|
1336
|
+
"type": "string"
|
|
1337
|
+
},
|
|
1338
|
+
"kind": {
|
|
1339
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1340
|
+
"examples": [
|
|
1341
|
+
"button"
|
|
1342
|
+
]
|
|
1343
|
+
},
|
|
1344
|
+
"meta": {
|
|
1345
|
+
"$ref": "#/definitions/MetaSectionView",
|
|
1346
|
+
"description": "This contains properties specific to the type of extension"
|
|
1347
|
+
},
|
|
1348
|
+
"name": {
|
|
1349
|
+
"description": "The friendly name of the extension",
|
|
1350
|
+
"type": "string"
|
|
1351
|
+
},
|
|
1352
|
+
"type": {
|
|
1353
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1354
|
+
"enum": [
|
|
1355
|
+
"sectionView"
|
|
1356
|
+
],
|
|
1357
|
+
"type": "string"
|
|
1358
|
+
},
|
|
1359
|
+
"weight": {
|
|
1360
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1361
|
+
"type": "number"
|
|
1362
|
+
}
|
|
1363
|
+
},
|
|
1364
|
+
"required": [
|
|
1365
|
+
"alias",
|
|
1366
|
+
"conditions",
|
|
1367
|
+
"meta",
|
|
1368
|
+
"name",
|
|
1369
|
+
"type"
|
|
1370
|
+
],
|
|
1371
|
+
"type": "object"
|
|
1372
|
+
},
|
|
1373
|
+
"ManifestStore": {
|
|
1374
|
+
"properties": {
|
|
1375
|
+
"alias": {
|
|
1376
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1377
|
+
"type": "string"
|
|
1378
|
+
},
|
|
1379
|
+
"js": {
|
|
1380
|
+
"description": "The file location of the javascript file to load",
|
|
1381
|
+
"type": "string"
|
|
1382
|
+
},
|
|
1383
|
+
"kind": {
|
|
1384
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1385
|
+
"examples": [
|
|
1386
|
+
"button"
|
|
1387
|
+
]
|
|
1388
|
+
},
|
|
1389
|
+
"name": {
|
|
1390
|
+
"description": "The friendly name of the extension",
|
|
1391
|
+
"type": "string"
|
|
1392
|
+
},
|
|
1393
|
+
"type": {
|
|
1394
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1395
|
+
"enum": [
|
|
1396
|
+
"store"
|
|
1397
|
+
],
|
|
1398
|
+
"type": "string"
|
|
1399
|
+
},
|
|
1400
|
+
"weight": {
|
|
1401
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1402
|
+
"type": "number"
|
|
1403
|
+
}
|
|
1404
|
+
},
|
|
1405
|
+
"required": [
|
|
1406
|
+
"alias",
|
|
1407
|
+
"name",
|
|
1408
|
+
"type"
|
|
1409
|
+
],
|
|
1410
|
+
"type": "object"
|
|
1411
|
+
},
|
|
1412
|
+
"ManifestTheme": {
|
|
1413
|
+
"description": "Theme manifest for styling the backoffice of Umbraco such as dark, high contrast etc",
|
|
1414
|
+
"properties": {
|
|
1415
|
+
"alias": {
|
|
1416
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1417
|
+
"type": "string"
|
|
1418
|
+
},
|
|
1419
|
+
"css": {
|
|
1420
|
+
"description": "File location of the CSS file of the theme",
|
|
1421
|
+
"examples": [
|
|
1422
|
+
"themes/dark.theme.css"
|
|
1423
|
+
],
|
|
1424
|
+
"type": "string"
|
|
1425
|
+
},
|
|
1426
|
+
"kind": {
|
|
1427
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1428
|
+
"examples": [
|
|
1429
|
+
"button"
|
|
1430
|
+
]
|
|
1431
|
+
},
|
|
1432
|
+
"name": {
|
|
1433
|
+
"description": "The friendly name of the extension",
|
|
1434
|
+
"type": "string"
|
|
1435
|
+
},
|
|
1436
|
+
"type": {
|
|
1437
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1438
|
+
"enum": [
|
|
1439
|
+
"theme"
|
|
1440
|
+
],
|
|
1441
|
+
"type": "string"
|
|
1442
|
+
},
|
|
1443
|
+
"weight": {
|
|
1444
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1445
|
+
"type": "number"
|
|
1446
|
+
}
|
|
1447
|
+
},
|
|
1448
|
+
"required": [
|
|
1449
|
+
"alias",
|
|
1450
|
+
"name",
|
|
1451
|
+
"type"
|
|
1452
|
+
],
|
|
1453
|
+
"type": "object"
|
|
1454
|
+
},
|
|
1455
|
+
"ManifestTree": {
|
|
1456
|
+
"properties": {
|
|
1457
|
+
"alias": {
|
|
1458
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1459
|
+
"type": "string"
|
|
1460
|
+
},
|
|
1461
|
+
"kind": {
|
|
1462
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1463
|
+
"examples": [
|
|
1464
|
+
"button"
|
|
1465
|
+
]
|
|
1466
|
+
},
|
|
1467
|
+
"meta": {
|
|
1468
|
+
"$ref": "#/definitions/MetaTree"
|
|
1469
|
+
},
|
|
1470
|
+
"name": {
|
|
1471
|
+
"description": "The friendly name of the extension",
|
|
1472
|
+
"type": "string"
|
|
1473
|
+
},
|
|
1474
|
+
"type": {
|
|
1475
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1476
|
+
"enum": [
|
|
1477
|
+
"tree"
|
|
1478
|
+
],
|
|
1479
|
+
"type": "string"
|
|
1480
|
+
},
|
|
1481
|
+
"weight": {
|
|
1482
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1483
|
+
"type": "number"
|
|
1484
|
+
}
|
|
1485
|
+
},
|
|
1486
|
+
"required": [
|
|
1487
|
+
"alias",
|
|
1488
|
+
"meta",
|
|
1489
|
+
"name",
|
|
1490
|
+
"type"
|
|
1491
|
+
],
|
|
1492
|
+
"type": "object"
|
|
1493
|
+
},
|
|
1494
|
+
"ManifestTreeItem": {
|
|
1495
|
+
"properties": {
|
|
1496
|
+
"alias": {
|
|
1497
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1498
|
+
"type": "string"
|
|
1499
|
+
},
|
|
1500
|
+
"conditions": {
|
|
1501
|
+
"$ref": "#/definitions/ConditionsTreeItem"
|
|
1502
|
+
},
|
|
1503
|
+
"elementName": {
|
|
1504
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
1505
|
+
"type": "string"
|
|
1506
|
+
},
|
|
1507
|
+
"js": {
|
|
1508
|
+
"description": "The file location of the javascript file to load",
|
|
1509
|
+
"type": "string"
|
|
1510
|
+
},
|
|
1511
|
+
"kind": {
|
|
1512
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1513
|
+
"examples": [
|
|
1514
|
+
"button"
|
|
1515
|
+
]
|
|
1516
|
+
},
|
|
1517
|
+
"meta": {
|
|
1518
|
+
"description": "This contains properties specific to the type of extension"
|
|
1519
|
+
},
|
|
1520
|
+
"name": {
|
|
1521
|
+
"description": "The friendly name of the extension",
|
|
1522
|
+
"type": "string"
|
|
1523
|
+
},
|
|
1524
|
+
"type": {
|
|
1525
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1526
|
+
"enum": [
|
|
1527
|
+
"treeItem"
|
|
1528
|
+
],
|
|
1529
|
+
"type": "string"
|
|
1530
|
+
},
|
|
1531
|
+
"weight": {
|
|
1532
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1533
|
+
"type": "number"
|
|
1534
|
+
}
|
|
1535
|
+
},
|
|
1536
|
+
"required": [
|
|
1537
|
+
"alias",
|
|
1538
|
+
"conditions",
|
|
1539
|
+
"name",
|
|
1540
|
+
"type"
|
|
1541
|
+
],
|
|
1542
|
+
"type": "object"
|
|
1543
|
+
},
|
|
1544
|
+
"ManifestTreeStore": {
|
|
1545
|
+
"properties": {
|
|
1546
|
+
"alias": {
|
|
1547
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1548
|
+
"type": "string"
|
|
1549
|
+
},
|
|
1550
|
+
"js": {
|
|
1551
|
+
"description": "The file location of the javascript file to load",
|
|
1552
|
+
"type": "string"
|
|
1553
|
+
},
|
|
1554
|
+
"kind": {
|
|
1555
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1556
|
+
"examples": [
|
|
1557
|
+
"button"
|
|
1558
|
+
]
|
|
1559
|
+
},
|
|
1560
|
+
"name": {
|
|
1561
|
+
"description": "The friendly name of the extension",
|
|
1562
|
+
"type": "string"
|
|
1563
|
+
},
|
|
1564
|
+
"type": {
|
|
1565
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1566
|
+
"enum": [
|
|
1567
|
+
"treeStore"
|
|
1568
|
+
],
|
|
1569
|
+
"type": "string"
|
|
1570
|
+
},
|
|
1571
|
+
"weight": {
|
|
1572
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1573
|
+
"type": "number"
|
|
1574
|
+
}
|
|
1575
|
+
},
|
|
1576
|
+
"required": [
|
|
1577
|
+
"alias",
|
|
1578
|
+
"name",
|
|
1579
|
+
"type"
|
|
1580
|
+
],
|
|
1581
|
+
"type": "object"
|
|
1582
|
+
},
|
|
1583
|
+
"ManifestTypes": {
|
|
1584
|
+
"anyOf": [
|
|
1585
|
+
{
|
|
1586
|
+
"$ref": "#/definitions/ManifestDashboard"
|
|
1587
|
+
},
|
|
1588
|
+
{
|
|
1589
|
+
"$ref": "#/definitions/ManifestBase"
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
"$ref": "#/definitions/ManifestDashboardCollection"
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"$ref": "#/definitions/ManifestEntityAction"
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
"$ref": "#/definitions/ManifestEntityBulkAction"
|
|
1599
|
+
},
|
|
1600
|
+
{
|
|
1601
|
+
"$ref": "#/definitions/ManifestExternalLoginProvider"
|
|
1602
|
+
},
|
|
1603
|
+
{
|
|
1604
|
+
"$ref": "#/definitions/ManifestHeaderApp"
|
|
1605
|
+
},
|
|
1606
|
+
{
|
|
1607
|
+
"$ref": "#/definitions/ManifestHeaderAppButtonKind"
|
|
1608
|
+
},
|
|
1609
|
+
{
|
|
1610
|
+
"$ref": "#/definitions/ManifestHealthCheck"
|
|
1611
|
+
},
|
|
1612
|
+
{
|
|
1613
|
+
"$ref": "#/definitions/ManifestPackageView"
|
|
1614
|
+
},
|
|
1615
|
+
{
|
|
1616
|
+
"$ref": "#/definitions/ManifestPropertyAction"
|
|
1617
|
+
},
|
|
1618
|
+
{
|
|
1619
|
+
"$ref": "#/definitions/ManifestPropertyEditorUI"
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
"$ref": "#/definitions/ManifestPropertyEditorModel"
|
|
1623
|
+
},
|
|
1624
|
+
{
|
|
1625
|
+
"$ref": "#/definitions/ManifestSection"
|
|
1626
|
+
},
|
|
1627
|
+
{
|
|
1628
|
+
"$ref": "#/definitions/ManifestSectionView"
|
|
1629
|
+
},
|
|
1630
|
+
{
|
|
1631
|
+
"$ref": "#/definitions/ManifestSectionSidebarApp"
|
|
1632
|
+
},
|
|
1633
|
+
{
|
|
1634
|
+
"$ref": "#/definitions/ManifestSectionSidebarAppMenuKind"
|
|
1635
|
+
},
|
|
1636
|
+
{
|
|
1637
|
+
"$ref": "#/definitions/ManifestMenu"
|
|
1638
|
+
},
|
|
1639
|
+
{
|
|
1640
|
+
"$ref": "#/definitions/ManifestMenuItem"
|
|
1641
|
+
},
|
|
1642
|
+
{
|
|
1643
|
+
"$ref": "#/definitions/ManifestMenuItemTreeKind"
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
"$ref": "#/definitions/ManifestTheme"
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
"$ref": "#/definitions/ManifestTree"
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
"$ref": "#/definitions/ManifestTreeItem"
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
"$ref": "#/definitions/ManifestUserProfileApp"
|
|
1656
|
+
},
|
|
1657
|
+
{
|
|
1658
|
+
"$ref": "#/definitions/ManifestWorkspace"
|
|
1659
|
+
},
|
|
1660
|
+
{
|
|
1661
|
+
"$ref": "#/definitions/ManifestWorkspaceAction"
|
|
1662
|
+
},
|
|
1663
|
+
{
|
|
1664
|
+
"$ref": "#/definitions/ManifestWorkspaceView"
|
|
1665
|
+
},
|
|
1666
|
+
{
|
|
1667
|
+
"$ref": "#/definitions/ManifestWorkspaceViewCollection"
|
|
1668
|
+
},
|
|
1669
|
+
{
|
|
1670
|
+
"$ref": "#/definitions/ManifestRepository"
|
|
1671
|
+
},
|
|
1672
|
+
{
|
|
1673
|
+
"$ref": "#/definitions/ManifestModal"
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
"$ref": "#/definitions/ManifestStore"
|
|
1677
|
+
},
|
|
1678
|
+
{
|
|
1679
|
+
"$ref": "#/definitions/ManifestTreeStore"
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
"$ref": "#/definitions/ManifestItemStore"
|
|
1683
|
+
},
|
|
1684
|
+
{
|
|
1685
|
+
"$ref": "#/definitions/ManifestCollectionView"
|
|
1686
|
+
},
|
|
1687
|
+
{
|
|
1688
|
+
"$ref": "#/definitions/ManifestEntrypoint"
|
|
1689
|
+
}
|
|
1690
|
+
]
|
|
1691
|
+
},
|
|
1692
|
+
"ManifestUserProfileApp": {
|
|
1693
|
+
"properties": {
|
|
1694
|
+
"alias": {
|
|
1695
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1696
|
+
"type": "string"
|
|
1697
|
+
},
|
|
1698
|
+
"elementName": {
|
|
1699
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
1700
|
+
"type": "string"
|
|
1701
|
+
},
|
|
1702
|
+
"js": {
|
|
1703
|
+
"description": "The file location of the javascript file to load",
|
|
1704
|
+
"type": "string"
|
|
1705
|
+
},
|
|
1706
|
+
"kind": {
|
|
1707
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1708
|
+
"examples": [
|
|
1709
|
+
"button"
|
|
1710
|
+
]
|
|
1711
|
+
},
|
|
1712
|
+
"meta": {
|
|
1713
|
+
"$ref": "#/definitions/MetaUserProfileApp",
|
|
1714
|
+
"description": "This contains properties specific to the type of extension"
|
|
1715
|
+
},
|
|
1716
|
+
"name": {
|
|
1717
|
+
"description": "The friendly name of the extension",
|
|
1718
|
+
"type": "string"
|
|
1719
|
+
},
|
|
1720
|
+
"type": {
|
|
1721
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1722
|
+
"enum": [
|
|
1723
|
+
"userProfileApp"
|
|
1724
|
+
],
|
|
1725
|
+
"type": "string"
|
|
1726
|
+
},
|
|
1727
|
+
"weight": {
|
|
1728
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1729
|
+
"type": "number"
|
|
1730
|
+
}
|
|
1731
|
+
},
|
|
1732
|
+
"required": [
|
|
1733
|
+
"alias",
|
|
1734
|
+
"meta",
|
|
1735
|
+
"name",
|
|
1736
|
+
"type"
|
|
1737
|
+
],
|
|
1738
|
+
"type": "object"
|
|
1739
|
+
},
|
|
1740
|
+
"ManifestWorkspace": {
|
|
1741
|
+
"properties": {
|
|
1742
|
+
"alias": {
|
|
1743
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1744
|
+
"type": "string"
|
|
1745
|
+
},
|
|
1746
|
+
"elementName": {
|
|
1747
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
1748
|
+
"type": "string"
|
|
1749
|
+
},
|
|
1750
|
+
"js": {
|
|
1751
|
+
"description": "The file location of the javascript file to load",
|
|
1752
|
+
"type": "string"
|
|
1753
|
+
},
|
|
1754
|
+
"kind": {
|
|
1755
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1756
|
+
"examples": [
|
|
1757
|
+
"button"
|
|
1758
|
+
]
|
|
1759
|
+
},
|
|
1760
|
+
"meta": {
|
|
1761
|
+
"$ref": "#/definitions/MetaEditor",
|
|
1762
|
+
"description": "This contains properties specific to the type of extension"
|
|
1763
|
+
},
|
|
1764
|
+
"name": {
|
|
1765
|
+
"description": "The friendly name of the extension",
|
|
1766
|
+
"type": "string"
|
|
1767
|
+
},
|
|
1768
|
+
"type": {
|
|
1769
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1770
|
+
"enum": [
|
|
1771
|
+
"workspace"
|
|
1772
|
+
],
|
|
1773
|
+
"type": "string"
|
|
1774
|
+
},
|
|
1775
|
+
"weight": {
|
|
1776
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1777
|
+
"type": "number"
|
|
1778
|
+
}
|
|
1779
|
+
},
|
|
1780
|
+
"required": [
|
|
1781
|
+
"alias",
|
|
1782
|
+
"meta",
|
|
1783
|
+
"name",
|
|
1784
|
+
"type"
|
|
1785
|
+
],
|
|
1786
|
+
"type": "object"
|
|
1787
|
+
},
|
|
1788
|
+
"ManifestWorkspaceAction": {
|
|
1789
|
+
"properties": {
|
|
1790
|
+
"alias": {
|
|
1791
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1792
|
+
"type": "string"
|
|
1793
|
+
},
|
|
1794
|
+
"conditions": {
|
|
1795
|
+
"$ref": "#/definitions/ConditionsWorkspaceAction"
|
|
1796
|
+
},
|
|
1797
|
+
"elementName": {
|
|
1798
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
1799
|
+
"type": "string"
|
|
1800
|
+
},
|
|
1801
|
+
"js": {
|
|
1802
|
+
"description": "The file location of the javascript file to load",
|
|
1803
|
+
"type": "string"
|
|
1804
|
+
},
|
|
1805
|
+
"kind": {
|
|
1806
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1807
|
+
"examples": [
|
|
1808
|
+
"button"
|
|
1809
|
+
]
|
|
1810
|
+
},
|
|
1811
|
+
"meta": {
|
|
1812
|
+
"$ref": "#/definitions/MetaWorkspaceAction",
|
|
1813
|
+
"description": "This contains properties specific to the type of extension"
|
|
1814
|
+
},
|
|
1815
|
+
"name": {
|
|
1816
|
+
"description": "The friendly name of the extension",
|
|
1817
|
+
"type": "string"
|
|
1818
|
+
},
|
|
1819
|
+
"type": {
|
|
1820
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1821
|
+
"enum": [
|
|
1822
|
+
"workspaceAction"
|
|
1823
|
+
],
|
|
1824
|
+
"type": "string"
|
|
1825
|
+
},
|
|
1826
|
+
"weight": {
|
|
1827
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1828
|
+
"type": "number"
|
|
1829
|
+
}
|
|
1830
|
+
},
|
|
1831
|
+
"required": [
|
|
1832
|
+
"alias",
|
|
1833
|
+
"conditions",
|
|
1834
|
+
"meta",
|
|
1835
|
+
"name",
|
|
1836
|
+
"type"
|
|
1837
|
+
],
|
|
1838
|
+
"type": "object"
|
|
1839
|
+
},
|
|
1840
|
+
"ManifestWorkspaceView": {
|
|
1841
|
+
"properties": {
|
|
1842
|
+
"alias": {
|
|
1843
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1844
|
+
"type": "string"
|
|
1845
|
+
},
|
|
1846
|
+
"conditions": {
|
|
1847
|
+
"$ref": "#/definitions/ConditionsWorkspaceView"
|
|
1848
|
+
},
|
|
1849
|
+
"elementName": {
|
|
1850
|
+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard> but just the name",
|
|
1851
|
+
"type": "string"
|
|
1852
|
+
},
|
|
1853
|
+
"js": {
|
|
1854
|
+
"description": "The file location of the javascript file to load",
|
|
1855
|
+
"type": "string"
|
|
1856
|
+
},
|
|
1857
|
+
"kind": {
|
|
1858
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1859
|
+
"examples": [
|
|
1860
|
+
"button"
|
|
1861
|
+
]
|
|
1862
|
+
},
|
|
1863
|
+
"meta": {
|
|
1864
|
+
"$ref": "#/definitions/MetaWorkspaceView",
|
|
1865
|
+
"description": "This contains properties specific to the type of extension"
|
|
1866
|
+
},
|
|
1867
|
+
"name": {
|
|
1868
|
+
"description": "The friendly name of the extension",
|
|
1869
|
+
"type": "string"
|
|
1870
|
+
},
|
|
1871
|
+
"type": {
|
|
1872
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1873
|
+
"enum": [
|
|
1874
|
+
"workspaceView"
|
|
1875
|
+
],
|
|
1876
|
+
"type": "string"
|
|
1877
|
+
},
|
|
1878
|
+
"weight": {
|
|
1879
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1880
|
+
"type": "number"
|
|
1881
|
+
}
|
|
1882
|
+
},
|
|
1883
|
+
"required": [
|
|
1884
|
+
"alias",
|
|
1885
|
+
"conditions",
|
|
1886
|
+
"meta",
|
|
1887
|
+
"name",
|
|
1888
|
+
"type"
|
|
1889
|
+
],
|
|
1890
|
+
"type": "object"
|
|
1891
|
+
},
|
|
1892
|
+
"ManifestWorkspaceViewCollection": {
|
|
1893
|
+
"properties": {
|
|
1894
|
+
"alias": {
|
|
1895
|
+
"description": "The alias of the extension, ensure it is unique",
|
|
1896
|
+
"type": "string"
|
|
1897
|
+
},
|
|
1898
|
+
"conditions": {
|
|
1899
|
+
"$ref": "#/definitions/ConditionsEditorViewCollection",
|
|
1900
|
+
"description": "Set the conditions for when the extension should be loaded"
|
|
1901
|
+
},
|
|
1902
|
+
"kind": {
|
|
1903
|
+
"description": "The kind of the extension, used to group extensions together",
|
|
1904
|
+
"examples": [
|
|
1905
|
+
"button"
|
|
1906
|
+
]
|
|
1907
|
+
},
|
|
1908
|
+
"meta": {
|
|
1909
|
+
"$ref": "#/definitions/MetaEditorViewCollection"
|
|
1910
|
+
},
|
|
1911
|
+
"name": {
|
|
1912
|
+
"description": "The friendly name of the extension",
|
|
1913
|
+
"type": "string"
|
|
1914
|
+
},
|
|
1915
|
+
"type": {
|
|
1916
|
+
"description": "The type of extension such as dashboard etc...",
|
|
1917
|
+
"enum": [
|
|
1918
|
+
"workspaceViewCollection"
|
|
1919
|
+
],
|
|
1920
|
+
"type": "string"
|
|
1921
|
+
},
|
|
1922
|
+
"weight": {
|
|
1923
|
+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
|
|
1924
|
+
"type": "number"
|
|
1925
|
+
}
|
|
1926
|
+
},
|
|
1927
|
+
"required": [
|
|
1928
|
+
"alias",
|
|
1929
|
+
"conditions",
|
|
1930
|
+
"meta",
|
|
1931
|
+
"name",
|
|
1932
|
+
"type"
|
|
1933
|
+
],
|
|
1934
|
+
"type": "object"
|
|
1935
|
+
},
|
|
1936
|
+
"MetaCollectionView": {
|
|
1937
|
+
"properties": {
|
|
1938
|
+
"icon": {
|
|
1939
|
+
"description": "An icon to represent the collection view",
|
|
1940
|
+
"examples": [
|
|
1941
|
+
"umb:box",
|
|
1942
|
+
"umb:grid"
|
|
1943
|
+
],
|
|
1944
|
+
"type": "string"
|
|
1945
|
+
},
|
|
1946
|
+
"label": {
|
|
1947
|
+
"description": "The friendly name of the collection view",
|
|
1948
|
+
"type": "string"
|
|
1949
|
+
},
|
|
1950
|
+
"pathName": {
|
|
1951
|
+
"description": "The URL pathname for this collection view that can be deep linked to by sharing the url",
|
|
1952
|
+
"type": "string"
|
|
1953
|
+
}
|
|
1954
|
+
},
|
|
1955
|
+
"required": [
|
|
1956
|
+
"icon",
|
|
1957
|
+
"label",
|
|
1958
|
+
"pathName"
|
|
1959
|
+
],
|
|
1960
|
+
"type": "object"
|
|
1961
|
+
},
|
|
1962
|
+
"MetaDashboard": {
|
|
1963
|
+
"properties": {
|
|
1964
|
+
"label": {
|
|
1965
|
+
"description": "The displayed name (label) for the tab of the dashboard",
|
|
1966
|
+
"type": "string"
|
|
1967
|
+
},
|
|
1968
|
+
"pathname": {
|
|
1969
|
+
"description": "This is the URL path for the dashboard which is used for navigating or deep linking directly to the dashboard\nhttps://yoursite.com/section/settings/dashboard/my-dashboard-path",
|
|
1970
|
+
"examples": [
|
|
1971
|
+
"my-dashboard-path"
|
|
1972
|
+
],
|
|
1973
|
+
"type": "string"
|
|
1974
|
+
}
|
|
1975
|
+
},
|
|
1976
|
+
"required": [
|
|
1977
|
+
"pathname"
|
|
1978
|
+
],
|
|
1979
|
+
"type": "object"
|
|
1980
|
+
},
|
|
1981
|
+
"MetaDashboardCollection": {
|
|
1982
|
+
"properties": {
|
|
1983
|
+
"label": {
|
|
1984
|
+
"type": "string"
|
|
1985
|
+
},
|
|
1986
|
+
"pathname": {
|
|
1987
|
+
"type": "string"
|
|
1988
|
+
},
|
|
1989
|
+
"repositoryAlias": {
|
|
1990
|
+
"type": "string"
|
|
1991
|
+
}
|
|
1992
|
+
},
|
|
1993
|
+
"required": [
|
|
1994
|
+
"pathname",
|
|
1995
|
+
"repositoryAlias"
|
|
1996
|
+
],
|
|
1997
|
+
"type": "object"
|
|
1998
|
+
},
|
|
1999
|
+
"MetaEditor": {
|
|
2000
|
+
"properties": {
|
|
2001
|
+
"entityType": {
|
|
2002
|
+
"type": "string"
|
|
2003
|
+
}
|
|
2004
|
+
},
|
|
2005
|
+
"required": [
|
|
2006
|
+
"entityType"
|
|
2007
|
+
],
|
|
2008
|
+
"type": "object"
|
|
2009
|
+
},
|
|
2010
|
+
"MetaEditorViewCollection": {
|
|
2011
|
+
"properties": {
|
|
2012
|
+
"entityType": {
|
|
2013
|
+
"type": "string"
|
|
2014
|
+
},
|
|
2015
|
+
"icon": {
|
|
2016
|
+
"type": "string"
|
|
2017
|
+
},
|
|
2018
|
+
"label": {
|
|
2019
|
+
"type": "string"
|
|
2020
|
+
},
|
|
2021
|
+
"pathname": {
|
|
2022
|
+
"type": "string"
|
|
2023
|
+
},
|
|
2024
|
+
"repositoryAlias": {
|
|
2025
|
+
"type": "string"
|
|
2026
|
+
},
|
|
2027
|
+
"storeAlias": {
|
|
2028
|
+
"type": "string"
|
|
2029
|
+
}
|
|
2030
|
+
},
|
|
2031
|
+
"required": [
|
|
2032
|
+
"entityType",
|
|
2033
|
+
"icon",
|
|
2034
|
+
"label",
|
|
2035
|
+
"pathname"
|
|
2036
|
+
],
|
|
2037
|
+
"type": "object"
|
|
2038
|
+
},
|
|
2039
|
+
"MetaEntityAction": {
|
|
2040
|
+
"properties": {
|
|
2041
|
+
"icon": {
|
|
2042
|
+
"description": "An icon to represent the action to be performed",
|
|
2043
|
+
"examples": [
|
|
2044
|
+
"umb:box",
|
|
2045
|
+
"umb:grid"
|
|
2046
|
+
],
|
|
2047
|
+
"type": "string"
|
|
2048
|
+
},
|
|
2049
|
+
"label": {
|
|
2050
|
+
"description": "The friendly name of the action to perform",
|
|
2051
|
+
"examples": [
|
|
2052
|
+
"Create",
|
|
2053
|
+
"Create Content Template"
|
|
2054
|
+
],
|
|
2055
|
+
"type": "string"
|
|
2056
|
+
},
|
|
2057
|
+
"repositoryAlias": {
|
|
2058
|
+
"description": "The alias for the repsoitory of the entity type this action is for\nsuch as 'Umb.Repository.Documents'",
|
|
2059
|
+
"examples": [
|
|
2060
|
+
"Umb.Repository.Documents"
|
|
2061
|
+
],
|
|
2062
|
+
"type": "string"
|
|
2063
|
+
}
|
|
2064
|
+
},
|
|
2065
|
+
"required": [
|
|
2066
|
+
"label",
|
|
2067
|
+
"repositoryAlias"
|
|
2068
|
+
],
|
|
2069
|
+
"type": "object"
|
|
2070
|
+
},
|
|
2071
|
+
"MetaEntityBulkAction": {
|
|
2072
|
+
"properties": {
|
|
2073
|
+
"label": {
|
|
2074
|
+
"description": "A friendly label for the action",
|
|
2075
|
+
"type": "string"
|
|
2076
|
+
},
|
|
2077
|
+
"repositoryAlias": {
|
|
2078
|
+
"description": "The alias for the repsoitory of the entity type this action is for\nsuch as 'Umb.Repository.Documents'",
|
|
2079
|
+
"examples": [
|
|
2080
|
+
"Umb.Repository.Documents"
|
|
2081
|
+
],
|
|
2082
|
+
"type": "string"
|
|
2083
|
+
}
|
|
2084
|
+
},
|
|
2085
|
+
"required": [
|
|
2086
|
+
"label",
|
|
2087
|
+
"repositoryAlias"
|
|
2088
|
+
],
|
|
2089
|
+
"type": "object"
|
|
2090
|
+
},
|
|
2091
|
+
"MetaExternalLoginProvider": {
|
|
2092
|
+
"properties": {
|
|
2093
|
+
"label": {
|
|
2094
|
+
"type": "string"
|
|
2095
|
+
},
|
|
2096
|
+
"pathname": {
|
|
2097
|
+
"type": "string"
|
|
2098
|
+
}
|
|
2099
|
+
},
|
|
2100
|
+
"required": [
|
|
2101
|
+
"label",
|
|
2102
|
+
"pathname"
|
|
2103
|
+
],
|
|
2104
|
+
"type": "object"
|
|
2105
|
+
},
|
|
2106
|
+
"MetaHeaderAppButtonKind": {
|
|
2107
|
+
"properties": {
|
|
2108
|
+
"href": {
|
|
2109
|
+
"type": "string"
|
|
2110
|
+
},
|
|
2111
|
+
"icon": {
|
|
2112
|
+
"type": "string"
|
|
2113
|
+
},
|
|
2114
|
+
"label": {
|
|
2115
|
+
"type": "string"
|
|
2116
|
+
}
|
|
2117
|
+
},
|
|
2118
|
+
"required": [
|
|
2119
|
+
"href",
|
|
2120
|
+
"icon",
|
|
2121
|
+
"label"
|
|
2122
|
+
],
|
|
2123
|
+
"type": "object"
|
|
2124
|
+
},
|
|
2125
|
+
"MetaHealthCheck": {
|
|
2126
|
+
"properties": {
|
|
2127
|
+
"api": {},
|
|
2128
|
+
"label": {
|
|
2129
|
+
"type": "string"
|
|
2130
|
+
}
|
|
2131
|
+
},
|
|
2132
|
+
"required": [
|
|
2133
|
+
"api",
|
|
2134
|
+
"label"
|
|
2135
|
+
],
|
|
2136
|
+
"type": "object"
|
|
2137
|
+
},
|
|
2138
|
+
"MetaMenuItem": {
|
|
2139
|
+
"properties": {
|
|
2140
|
+
"entityType": {
|
|
2141
|
+
"type": "string"
|
|
2142
|
+
},
|
|
2143
|
+
"icon": {
|
|
2144
|
+
"type": "string"
|
|
2145
|
+
},
|
|
2146
|
+
"label": {
|
|
2147
|
+
"type": "string"
|
|
2148
|
+
}
|
|
2149
|
+
},
|
|
2150
|
+
"required": [
|
|
2151
|
+
"icon",
|
|
2152
|
+
"label"
|
|
2153
|
+
],
|
|
2154
|
+
"type": "object"
|
|
2155
|
+
},
|
|
2156
|
+
"MetaMenuItemTreeKind": {
|
|
2157
|
+
"properties": {
|
|
2158
|
+
"entityType": {
|
|
2159
|
+
"type": "string"
|
|
2160
|
+
},
|
|
2161
|
+
"icon": {
|
|
2162
|
+
"type": "string"
|
|
2163
|
+
},
|
|
2164
|
+
"label": {
|
|
2165
|
+
"type": "string"
|
|
2166
|
+
},
|
|
2167
|
+
"treeAlias": {
|
|
2168
|
+
"type": "string"
|
|
2169
|
+
}
|
|
2170
|
+
},
|
|
2171
|
+
"required": [
|
|
2172
|
+
"icon",
|
|
2173
|
+
"label",
|
|
2174
|
+
"treeAlias"
|
|
2175
|
+
],
|
|
2176
|
+
"type": "object"
|
|
2177
|
+
},
|
|
2178
|
+
"MetaPackageView": {
|
|
2179
|
+
"properties": {
|
|
2180
|
+
"packageName": {
|
|
2181
|
+
"type": "string"
|
|
2182
|
+
}
|
|
2183
|
+
},
|
|
2184
|
+
"required": [
|
|
2185
|
+
"packageName"
|
|
2186
|
+
],
|
|
2187
|
+
"type": "object"
|
|
2188
|
+
},
|
|
2189
|
+
"MetaPropertyEditorModel": {
|
|
2190
|
+
"properties": {
|
|
2191
|
+
"config": {
|
|
2192
|
+
"$ref": "#/definitions/PropertyEditorConfig"
|
|
2193
|
+
}
|
|
2194
|
+
},
|
|
2195
|
+
"type": "object"
|
|
2196
|
+
},
|
|
2197
|
+
"MetaPropertyEditorUI": {
|
|
2198
|
+
"properties": {
|
|
2199
|
+
"config": {
|
|
2200
|
+
"$ref": "#/definitions/PropertyEditorConfig"
|
|
2201
|
+
},
|
|
2202
|
+
"group": {
|
|
2203
|
+
"type": "string"
|
|
2204
|
+
},
|
|
2205
|
+
"icon": {
|
|
2206
|
+
"type": "string"
|
|
2207
|
+
},
|
|
2208
|
+
"label": {
|
|
2209
|
+
"type": "string"
|
|
2210
|
+
},
|
|
2211
|
+
"propertyEditorModel": {
|
|
2212
|
+
"type": "string"
|
|
2213
|
+
},
|
|
2214
|
+
"supportsReadOnly": {
|
|
2215
|
+
"type": "boolean"
|
|
2216
|
+
}
|
|
2217
|
+
},
|
|
2218
|
+
"required": [
|
|
2219
|
+
"group",
|
|
2220
|
+
"icon",
|
|
2221
|
+
"label",
|
|
2222
|
+
"propertyEditorModel"
|
|
2223
|
+
],
|
|
2224
|
+
"type": "object"
|
|
2225
|
+
},
|
|
2226
|
+
"MetaSection": {
|
|
2227
|
+
"properties": {
|
|
2228
|
+
"label": {
|
|
2229
|
+
"type": "string"
|
|
2230
|
+
},
|
|
2231
|
+
"pathname": {
|
|
2232
|
+
"type": "string"
|
|
2233
|
+
}
|
|
2234
|
+
},
|
|
2235
|
+
"required": [
|
|
2236
|
+
"label",
|
|
2237
|
+
"pathname"
|
|
2238
|
+
],
|
|
2239
|
+
"type": "object"
|
|
2240
|
+
},
|
|
2241
|
+
"MetaSectionSidebarAppMenuKind": {
|
|
2242
|
+
"properties": {
|
|
2243
|
+
"label": {
|
|
2244
|
+
"type": "string"
|
|
2245
|
+
},
|
|
2246
|
+
"menu": {
|
|
2247
|
+
"type": "string"
|
|
2248
|
+
}
|
|
2249
|
+
},
|
|
2250
|
+
"required": [
|
|
2251
|
+
"label",
|
|
2252
|
+
"menu"
|
|
2253
|
+
],
|
|
2254
|
+
"type": "object"
|
|
2255
|
+
},
|
|
2256
|
+
"MetaSectionView": {
|
|
2257
|
+
"properties": {
|
|
2258
|
+
"icon": {
|
|
2259
|
+
"type": "string"
|
|
2260
|
+
},
|
|
2261
|
+
"label": {
|
|
2262
|
+
"type": "string"
|
|
2263
|
+
},
|
|
2264
|
+
"pathname": {
|
|
2265
|
+
"type": "string"
|
|
2266
|
+
}
|
|
2267
|
+
},
|
|
2268
|
+
"required": [
|
|
2269
|
+
"icon",
|
|
2270
|
+
"label",
|
|
2271
|
+
"pathname"
|
|
2272
|
+
],
|
|
2273
|
+
"type": "object"
|
|
2274
|
+
},
|
|
2275
|
+
"MetaTree": {
|
|
2276
|
+
"properties": {
|
|
2277
|
+
"repositoryAlias": {
|
|
2278
|
+
"type": "string"
|
|
2279
|
+
}
|
|
2280
|
+
},
|
|
2281
|
+
"required": [
|
|
2282
|
+
"repositoryAlias"
|
|
2283
|
+
],
|
|
2284
|
+
"type": "object"
|
|
2285
|
+
},
|
|
2286
|
+
"MetaUserProfileApp": {
|
|
2287
|
+
"properties": {
|
|
2288
|
+
"label": {
|
|
2289
|
+
"type": "string"
|
|
2290
|
+
},
|
|
2291
|
+
"pathname": {
|
|
2292
|
+
"type": "string"
|
|
2293
|
+
}
|
|
2294
|
+
},
|
|
2295
|
+
"required": [
|
|
2296
|
+
"label",
|
|
2297
|
+
"pathname"
|
|
2298
|
+
],
|
|
2299
|
+
"type": "object"
|
|
2300
|
+
},
|
|
2301
|
+
"MetaWorkspaceAction": {
|
|
2302
|
+
"properties": {
|
|
2303
|
+
"api": {
|
|
2304
|
+
"type": "object"
|
|
2305
|
+
},
|
|
2306
|
+
"color": {
|
|
2307
|
+
"enum": [
|
|
2308
|
+
"",
|
|
2309
|
+
"danger",
|
|
2310
|
+
"default",
|
|
2311
|
+
"positive",
|
|
2312
|
+
"warning"
|
|
2313
|
+
],
|
|
2314
|
+
"type": "string"
|
|
2315
|
+
},
|
|
2316
|
+
"label": {
|
|
2317
|
+
"type": "string"
|
|
2318
|
+
},
|
|
2319
|
+
"look": {
|
|
2320
|
+
"enum": [
|
|
2321
|
+
"",
|
|
2322
|
+
"default",
|
|
2323
|
+
"outline",
|
|
2324
|
+
"placeholder",
|
|
2325
|
+
"primary",
|
|
2326
|
+
"secondary"
|
|
2327
|
+
],
|
|
2328
|
+
"type": "string"
|
|
2329
|
+
}
|
|
2330
|
+
},
|
|
2331
|
+
"required": [
|
|
2332
|
+
"api"
|
|
2333
|
+
],
|
|
2334
|
+
"type": "object"
|
|
2335
|
+
},
|
|
2336
|
+
"MetaWorkspaceView": {
|
|
2337
|
+
"properties": {
|
|
2338
|
+
"icon": {
|
|
2339
|
+
"type": "string"
|
|
2340
|
+
},
|
|
2341
|
+
"label": {
|
|
2342
|
+
"type": "string"
|
|
2343
|
+
},
|
|
2344
|
+
"pathname": {
|
|
2345
|
+
"type": "string"
|
|
2346
|
+
}
|
|
2347
|
+
},
|
|
2348
|
+
"required": [
|
|
2349
|
+
"icon",
|
|
2350
|
+
"label",
|
|
2351
|
+
"pathname"
|
|
2352
|
+
],
|
|
2353
|
+
"type": "object"
|
|
2354
|
+
},
|
|
2355
|
+
"PropertyEditorConfig": {
|
|
2356
|
+
"properties": {
|
|
2357
|
+
"defaultData": {
|
|
2358
|
+
"items": {
|
|
2359
|
+
"$ref": "#/definitions/PropertyEditorConfigDefaultData"
|
|
2360
|
+
},
|
|
2361
|
+
"type": "array"
|
|
2362
|
+
},
|
|
2363
|
+
"properties": {
|
|
2364
|
+
"items": {
|
|
2365
|
+
"$ref": "#/definitions/PropertyEditorConfigProperty"
|
|
2366
|
+
},
|
|
2367
|
+
"type": "array"
|
|
2368
|
+
}
|
|
2369
|
+
},
|
|
2370
|
+
"required": [
|
|
2371
|
+
"properties"
|
|
2372
|
+
],
|
|
2373
|
+
"type": "object"
|
|
2374
|
+
},
|
|
2375
|
+
"PropertyEditorConfigDefaultData": {
|
|
2376
|
+
"properties": {
|
|
2377
|
+
"alias": {
|
|
2378
|
+
"type": "string"
|
|
2379
|
+
},
|
|
2380
|
+
"value": {}
|
|
2381
|
+
},
|
|
2382
|
+
"required": [
|
|
2383
|
+
"alias",
|
|
2384
|
+
"value"
|
|
2385
|
+
],
|
|
2386
|
+
"type": "object"
|
|
2387
|
+
},
|
|
2388
|
+
"PropertyEditorConfigProperty": {
|
|
2389
|
+
"properties": {
|
|
2390
|
+
"alias": {
|
|
2391
|
+
"type": "string"
|
|
2392
|
+
},
|
|
2393
|
+
"description": {
|
|
2394
|
+
"type": "string"
|
|
2395
|
+
},
|
|
2396
|
+
"label": {
|
|
2397
|
+
"type": "string"
|
|
2398
|
+
},
|
|
2399
|
+
"propertyEditorUI": {
|
|
2400
|
+
"type": "string"
|
|
2401
|
+
}
|
|
2402
|
+
},
|
|
2403
|
+
"required": [
|
|
2404
|
+
"alias",
|
|
2405
|
+
"label",
|
|
2406
|
+
"propertyEditorUI"
|
|
2407
|
+
],
|
|
2408
|
+
"type": "object"
|
|
2409
|
+
}
|
|
2410
|
+
},
|
|
2411
|
+
"description": "Umbraco package manifest JSON",
|
|
2412
|
+
"properties": {
|
|
2413
|
+
"allowTelemetry": {
|
|
2414
|
+
"default": true,
|
|
2415
|
+
"title": "Decides if the package sends telemetry data for collection",
|
|
2416
|
+
"type": "boolean"
|
|
2417
|
+
},
|
|
2418
|
+
"extensions": {
|
|
2419
|
+
"items": {
|
|
2420
|
+
"$ref": "#/definitions/ManifestTypes"
|
|
2421
|
+
},
|
|
2422
|
+
"title": "An array of Umbraco package manifest types that will be installed",
|
|
2423
|
+
"type": "array"
|
|
2424
|
+
},
|
|
2425
|
+
"name": {
|
|
2426
|
+
"title": "The name of the Umbraco package",
|
|
2427
|
+
"type": "string"
|
|
2428
|
+
},
|
|
2429
|
+
"version": {
|
|
2430
|
+
"examples": [
|
|
2431
|
+
"0.1.0"
|
|
2432
|
+
],
|
|
2433
|
+
"title": "The version of the Umbraco package in the style of semver",
|
|
2434
|
+
"type": "string"
|
|
2435
|
+
}
|
|
2436
|
+
},
|
|
2437
|
+
"type": "object"
|
|
2438
|
+
}
|
|
2439
|
+
|