q2-tecton-platform 1.70.2 → 1.71.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,591 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "additionalProperties": false,
4
+ "definitions": {
5
+ "ApplicationModuleContexts": {
6
+ "description": "Authentication context types for application-level modules. Determines when application modules are active based on auth state.",
7
+ "enum": [
8
+ "Application::Unauthenticated",
9
+ "Application::Authenticated"
10
+ ],
11
+ "type": "string"
12
+ },
13
+ "ConfiguredOutlets": {
14
+ "additionalProperties": {
15
+ "anyOf": [
16
+ {
17
+ "items": {
18
+ "$ref": "#/definitions/ModuleLookup"
19
+ },
20
+ "type": "array"
21
+ },
22
+ {
23
+ "items": {
24
+ "$ref": "#/definitions/TabLookup"
25
+ },
26
+ "type": "array"
27
+ },
28
+ {
29
+ "items": {
30
+ "$ref": "#/definitions/MenuLookup"
31
+ },
32
+ "type": "array"
33
+ }
34
+ ]
35
+ },
36
+ "description": "Dictionary mapping outlet names to their module, tab, or menu lookup configurations. Used within module configs to define nested outlet content resolution.",
37
+ "type": "object"
38
+ },
39
+ "DeclaredMenuItem": {
40
+ "additionalProperties": false,
41
+ "description": "Menu item declaration for outlets that support menu content. Specifies the menu item label.",
42
+ "properties": {
43
+ "itemLabel": {
44
+ "type": "string"
45
+ }
46
+ },
47
+ "required": [
48
+ "itemLabel"
49
+ ],
50
+ "type": "object"
51
+ },
52
+ "DeclaredTab": {
53
+ "additionalProperties": false,
54
+ "description": "Tab declaration for outlets that support tabbed content. Specifies the tab label for the declared tab.",
55
+ "properties": {
56
+ "tabLabel": {
57
+ "type": "string"
58
+ }
59
+ },
60
+ "required": [
61
+ "tabLabel"
62
+ ],
63
+ "type": "object"
64
+ },
65
+ "DynamicContentConfigInput": {
66
+ "additionalProperties": {},
67
+ "description": "Dynamic content configuration for a module. Tecton passes this through opaquely — it is consumed by DCM, not by the platform.",
68
+ "properties": {
69
+ "description": {
70
+ "type": "string"
71
+ },
72
+ "height": {
73
+ "type": "string"
74
+ },
75
+ "name": {
76
+ "type": "string"
77
+ },
78
+ "type": {
79
+ "type": "string"
80
+ }
81
+ },
82
+ "required": [
83
+ "type",
84
+ "name",
85
+ "description",
86
+ "height"
87
+ ],
88
+ "type": "object"
89
+ },
90
+ "Loader": {
91
+ "additionalProperties": false,
92
+ "description": "Individual loader element configuration. Defines the visual appearance of a single skeleton loader element.",
93
+ "properties": {
94
+ "ariaLabel": {
95
+ "type": "string"
96
+ },
97
+ "classList": {
98
+ "items": {
99
+ "type": "string"
100
+ },
101
+ "type": "array"
102
+ },
103
+ "counts": {
104
+ "type": "string"
105
+ },
106
+ "modifiers": {
107
+ "type": "string"
108
+ },
109
+ "row": {
110
+ "type": "number"
111
+ },
112
+ "shape": {
113
+ "type": "string"
114
+ },
115
+ "style": {
116
+ "type": "string"
117
+ },
118
+ "type": {
119
+ "type": "string"
120
+ }
121
+ },
122
+ "required": [
123
+ "type",
124
+ "shape",
125
+ "row"
126
+ ],
127
+ "type": "object"
128
+ },
129
+ "LoadingOptions": {
130
+ "additionalProperties": false,
131
+ "description": "Configuration for skeleton loading states. Defines outlet styling and loader elements to display during content loading.",
132
+ "properties": {
133
+ "loaders": {
134
+ "items": {
135
+ "$ref": "#/definitions/Loader"
136
+ },
137
+ "type": "array"
138
+ },
139
+ "outlet": {
140
+ "additionalProperties": false,
141
+ "properties": {
142
+ "classList": {
143
+ "items": {
144
+ "type": "string"
145
+ },
146
+ "type": "array"
147
+ },
148
+ "style": {
149
+ "type": "string"
150
+ }
151
+ },
152
+ "type": "object"
153
+ }
154
+ },
155
+ "required": [
156
+ "loaders"
157
+ ],
158
+ "type": "object"
159
+ },
160
+ "MenuLookup": {
161
+ "additionalProperties": false,
162
+ "description": "Menu lookup configuration for resolving menu outlets. Associates a menu item with its action, modules, and context parameter name.",
163
+ "properties": {
164
+ "action": {
165
+ "type": "string"
166
+ },
167
+ "contextIdParamName": {
168
+ "type": "string"
169
+ },
170
+ "itemLabel": {
171
+ "type": "string"
172
+ },
173
+ "modules": {
174
+ "items": {
175
+ "$ref": "#/definitions/ModuleLookup"
176
+ },
177
+ "type": "array"
178
+ }
179
+ },
180
+ "required": [
181
+ "itemLabel",
182
+ "action",
183
+ "modules",
184
+ "contextIdParamName"
185
+ ],
186
+ "type": "object"
187
+ },
188
+ "ModuleConfig": {
189
+ "additionalProperties": false,
190
+ "description": "Complete configuration for a Tecton module instance. Contains identity, outlet configuration, security domains, and access rights. Used throughout the platform for module resolution and rendering decisions.",
191
+ "properties": {
192
+ "additionalDomains": {
193
+ "items": {
194
+ "type": "string"
195
+ },
196
+ "type": "array"
197
+ },
198
+ "allowDirectives": {
199
+ "items": {
200
+ "type": "string"
201
+ },
202
+ "type": "array"
203
+ },
204
+ "configuredOutlets": {
205
+ "$ref": "#/definitions/ConfiguredOutlets"
206
+ },
207
+ "featureName": {
208
+ "type": "string"
209
+ },
210
+ "moduleName": {
211
+ "type": "string"
212
+ },
213
+ "rightsEnabled": {
214
+ "type": "boolean"
215
+ },
216
+ "tabLabelOverride": {
217
+ "type": "string"
218
+ }
219
+ },
220
+ "required": [
221
+ "moduleName",
222
+ "featureName",
223
+ "configuredOutlets"
224
+ ],
225
+ "type": "object"
226
+ },
227
+ "ModuleContext": {
228
+ "anyOf": [
229
+ {
230
+ "$ref": "#/definitions/TectonDataTypes"
231
+ },
232
+ {
233
+ "const": "None",
234
+ "type": "string"
235
+ }
236
+ ],
237
+ "description": "Context specifier for modules and outlets. Controls when modules are rendered based on data context or 'None' for context-free modules."
238
+ },
239
+ "ModuleFeatureManifestInput": {
240
+ "additionalProperties": false,
241
+ "description": "Input shape for a module manifest entry as authored in Antilles or q2 config files. routeConfig is omitted — adaptConfig synthesizes it from the feature/module key names. meta uses ModuleMetaInput to reflect the same partial state.",
242
+ "properties": {
243
+ "additionalContextRequirements": {
244
+ "items": {
245
+ "type": "string"
246
+ },
247
+ "type": "array"
248
+ },
249
+ "dynamicContent": {
250
+ "$ref": "#/definitions/DynamicContentConfigInput"
251
+ },
252
+ "formPostAuth": {
253
+ "type": "boolean"
254
+ },
255
+ "loadingOptions": {
256
+ "$ref": "#/definitions/LoadingOptions"
257
+ },
258
+ "meta": {
259
+ "$ref": "#/definitions/ModuleMetaInput"
260
+ },
261
+ "navigable": {
262
+ "type": "boolean"
263
+ },
264
+ "overpanel": {
265
+ "type": "boolean"
266
+ },
267
+ "primary": {
268
+ "type": "boolean"
269
+ },
270
+ "requiredUserCapabilities": {
271
+ "items": {
272
+ "type": "string"
273
+ },
274
+ "type": "array"
275
+ },
276
+ "rightsEnabled": {
277
+ "type": "boolean"
278
+ },
279
+ "routeConfig": {
280
+ "$ref": "#/definitions/ModuleConfig"
281
+ },
282
+ "url": {
283
+ "type": "string"
284
+ }
285
+ },
286
+ "required": [
287
+ "meta",
288
+ "overpanel",
289
+ "primary",
290
+ "url"
291
+ ],
292
+ "type": "object"
293
+ },
294
+ "ModuleLookup": {
295
+ "additionalProperties": false,
296
+ "description": "Module lookup configuration for resolving feature outlets. Contains the feature and module names plus nested outlet configurations. Used by the feature resolver to find and render the appropriate module.",
297
+ "properties": {
298
+ "configuredOutlets": {
299
+ "$ref": "#/definitions/ConfiguredOutlets"
300
+ },
301
+ "featureName": {
302
+ "type": "string"
303
+ },
304
+ "moduleName": {
305
+ "type": "string"
306
+ }
307
+ },
308
+ "required": [
309
+ "featureName",
310
+ "moduleName",
311
+ "configuredOutlets"
312
+ ],
313
+ "type": "object"
314
+ },
315
+ "ModuleMetaInput": {
316
+ "additionalProperties": false,
317
+ "description": "Input shape for module metadata as authored in Antilles or q2 config files. featureName and moduleName are omitted — adaptConfig injects them from the feature/module key names at runtime.",
318
+ "properties": {
319
+ "featureName": {
320
+ "type": "string"
321
+ },
322
+ "moduleName": {
323
+ "type": "string"
324
+ },
325
+ "outlets": {
326
+ "additionalProperties": {
327
+ "$ref": "#/definitions/OutletType"
328
+ },
329
+ "type": "object"
330
+ },
331
+ "params": {
332
+ "additionalProperties": {
333
+ "$ref": "#/definitions/ParamOptions"
334
+ },
335
+ "type": "object"
336
+ },
337
+ "type": {
338
+ "$ref": "#/definitions/ModuleType"
339
+ }
340
+ },
341
+ "required": [
342
+ "type"
343
+ ],
344
+ "type": "object"
345
+ },
346
+ "ModuleType": {
347
+ "additionalProperties": false,
348
+ "description": "Module type definition specifying context and optional minimum height.",
349
+ "properties": {
350
+ "context": {
351
+ "$ref": "#/definitions/ModuleContext"
352
+ },
353
+ "minHeight": {
354
+ "type": "string"
355
+ }
356
+ },
357
+ "required": [
358
+ "context"
359
+ ],
360
+ "type": "object"
361
+ },
362
+ "OutletResolveType": {
363
+ "description": "Resolution strategy for outlet content. Determines how the platform resolves outlet content to modules.",
364
+ "enum": [
365
+ "Feature",
366
+ "Tabs",
367
+ "Menu"
368
+ ],
369
+ "type": "string"
370
+ },
371
+ "OutletType": {
372
+ "additionalProperties": false,
373
+ "description": "Outlet type definition extending module type with resolution configuration. Specifies how outlets resolve their content and what content is declared.",
374
+ "properties": {
375
+ "context": {
376
+ "$ref": "#/definitions/ModuleContext"
377
+ },
378
+ "declaredMenuItems": {
379
+ "items": {
380
+ "$ref": "#/definitions/DeclaredMenuItem"
381
+ },
382
+ "type": "array"
383
+ },
384
+ "declaredTabs": {
385
+ "items": {
386
+ "$ref": "#/definitions/DeclaredTab"
387
+ },
388
+ "type": "array"
389
+ },
390
+ "minHeight": {
391
+ "type": "string"
392
+ },
393
+ "required": {
394
+ "type": "boolean"
395
+ },
396
+ "resolveType": {
397
+ "$ref": "#/definitions/OutletResolveType"
398
+ }
399
+ },
400
+ "required": [
401
+ "context",
402
+ "required",
403
+ "resolveType"
404
+ ],
405
+ "type": "object"
406
+ },
407
+ "OverpanelConfigInput": {
408
+ "additionalProperties": false,
409
+ "description": "Input shape for an overpanel config entry as authored in Antilles or q2 config files. featureName and configuredOutlets are omitted — adaptConfig injects featureName from the feature key name, and configuredOutlets defaults to {}.",
410
+ "properties": {
411
+ "additionalDomains": {
412
+ "items": {
413
+ "type": "string"
414
+ },
415
+ "type": "array"
416
+ },
417
+ "allowDirectives": {
418
+ "items": {
419
+ "type": "string"
420
+ },
421
+ "type": "array"
422
+ },
423
+ "configuredOutlets": {
424
+ "$ref": "#/definitions/ConfiguredOutlets"
425
+ },
426
+ "featureName": {
427
+ "type": "string"
428
+ },
429
+ "moduleName": {
430
+ "type": "string"
431
+ },
432
+ "options": {
433
+ "$ref": "#/definitions/OverpanelOptions"
434
+ },
435
+ "public": {
436
+ "type": "boolean"
437
+ },
438
+ "rightsEnabled": {
439
+ "type": "boolean"
440
+ },
441
+ "tabLabelOverride": {
442
+ "type": "string"
443
+ }
444
+ },
445
+ "required": [
446
+ "moduleName"
447
+ ],
448
+ "type": "object"
449
+ },
450
+ "OverpanelOptions": {
451
+ "additionalProperties": false,
452
+ "description": "Display configuration options for overpanels. Controls the visual presentation and behavior of overpanel dialogs.",
453
+ "properties": {
454
+ "fullWidth": {
455
+ "type": "boolean"
456
+ },
457
+ "height": {
458
+ "type": "string"
459
+ },
460
+ "isBlocking": {
461
+ "type": "boolean"
462
+ },
463
+ "size": {
464
+ "type": "string"
465
+ },
466
+ "testId": {
467
+ "type": "string"
468
+ }
469
+ },
470
+ "type": "object"
471
+ },
472
+ "ParamOptions": {
473
+ "additionalProperties": false,
474
+ "description": "Parameter configuration options for module parameters. Specifies type validation and URL replacement behavior. Used by both SDK and platform for parameter handling.",
475
+ "properties": {
476
+ "replace": {
477
+ "type": "boolean"
478
+ },
479
+ "type": {
480
+ "enum": [
481
+ "string",
482
+ "number",
483
+ "boolean"
484
+ ],
485
+ "type": "string"
486
+ }
487
+ },
488
+ "required": [
489
+ "replace",
490
+ "type"
491
+ ],
492
+ "type": "object"
493
+ },
494
+ "TabLookup": {
495
+ "additionalProperties": false,
496
+ "description": "Tab lookup configuration for resolving tabbed outlets. Associates a tab label with an array of module lookups for that tab's content.",
497
+ "properties": {
498
+ "modules": {
499
+ "items": {
500
+ "$ref": "#/definitions/ModuleLookup"
501
+ },
502
+ "type": "array"
503
+ },
504
+ "tabLabel": {
505
+ "type": "string"
506
+ }
507
+ },
508
+ "required": [
509
+ "tabLabel",
510
+ "modules"
511
+ ],
512
+ "type": "object"
513
+ },
514
+ "TectonDataTypes": {
515
+ "anyOf": [
516
+ {
517
+ "$ref": "#/definitions/ApplicationModuleContexts"
518
+ },
519
+ {
520
+ "type": "string"
521
+ }
522
+ ],
523
+ "description": "Union of application contexts and arbitrary context strings. Allows for custom context types beyond the standard application contexts."
524
+ }
525
+ },
526
+ "description": "Input shape for a feature manifest as authored in Antilles or q2 config files. Uses input types so that adaptConfig-injected fields are optional.",
527
+ "properties": {
528
+ "additionalDomains": {
529
+ "items": {
530
+ "type": "string"
531
+ },
532
+ "type": "array"
533
+ },
534
+ "allowDirectives": {
535
+ "items": {
536
+ "type": "string"
537
+ },
538
+ "type": "array"
539
+ },
540
+ "configuredOverpanels": {
541
+ "additionalProperties": {
542
+ "$ref": "#/definitions/OverpanelConfigInput"
543
+ },
544
+ "type": "object"
545
+ },
546
+ "configuredSystemVariables": {
547
+ "items": {
548
+ "type": "string"
549
+ },
550
+ "type": "array"
551
+ },
552
+ "core": {
553
+ "type": "boolean"
554
+ },
555
+ "isMFA": {
556
+ "type": "boolean"
557
+ },
558
+ "legacy": {
559
+ "type": "boolean"
560
+ },
561
+ "legacyOverpanelName": {
562
+ "type": "string"
563
+ },
564
+ "legacyRouteName": {
565
+ "type": "string"
566
+ },
567
+ "modules": {
568
+ "additionalProperties": {
569
+ "$ref": "#/definitions/ModuleFeatureManifestInput"
570
+ },
571
+ "type": "object"
572
+ },
573
+ "requiredUserCapabilities": {
574
+ "items": {
575
+ "type": "string"
576
+ },
577
+ "type": "array"
578
+ },
579
+ "rightsEnabled": {
580
+ "type": "boolean"
581
+ },
582
+ "routeName": {
583
+ "type": "string"
584
+ }
585
+ },
586
+ "required": [
587
+ "core",
588
+ "modules"
589
+ ],
590
+ "type": "object"
591
+ }