@grafana/plugin-e2e 0.0.0 → 0.0.1

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.
Files changed (90) hide show
  1. package/README.md +1 -0
  2. package/dist/api.d.ts +41 -0
  3. package/dist/api.js +15 -0
  4. package/dist/e2e-selectors/index.d.ts +2 -0
  5. package/dist/e2e-selectors/index.js +20 -0
  6. package/dist/e2e-selectors/resolver.d.ts +3 -0
  7. package/dist/e2e-selectors/resolver.js +38 -0
  8. package/dist/e2e-selectors/resolver.test.d.ts +1 -0
  9. package/dist/e2e-selectors/resolver.test.js +39 -0
  10. package/dist/e2e-selectors/types.d.ts +691 -0
  11. package/dist/e2e-selectors/types.js +2 -0
  12. package/dist/e2e-selectors/versioned/apis.d.ts +29 -0
  13. package/dist/e2e-selectors/versioned/apis.js +35 -0
  14. package/dist/e2e-selectors/versioned/components.d.ts +419 -0
  15. package/dist/e2e-selectors/versioned/components.js +426 -0
  16. package/dist/e2e-selectors/versioned/constants.d.ts +1 -0
  17. package/dist/e2e-selectors/versioned/constants.js +4 -0
  18. package/dist/e2e-selectors/versioned/index.d.ts +2 -0
  19. package/dist/e2e-selectors/versioned/index.js +7 -0
  20. package/dist/e2e-selectors/versioned/pages.d.ts +334 -0
  21. package/dist/e2e-selectors/versioned/pages.js +345 -0
  22. package/dist/e2e-selectors/versioned/types.d.ts +8 -0
  23. package/dist/e2e-selectors/versioned/types.js +2 -0
  24. package/dist/fixtures/annotationEditPage.d.ts +7 -0
  25. package/dist/fixtures/annotationEditPage.js +62 -0
  26. package/dist/fixtures/commands/createDataSource.d.ts +8 -0
  27. package/dist/fixtures/commands/createDataSource.js +110 -0
  28. package/dist/fixtures/commands/createDataSourceConfigPage.d.ts +8 -0
  29. package/dist/fixtures/commands/createDataSourceConfigPage.js +82 -0
  30. package/dist/fixtures/commands/login.d.ts +6 -0
  31. package/dist/fixtures/commands/login.js +88 -0
  32. package/dist/fixtures/commands/readProvision.d.ts +7 -0
  33. package/dist/fixtures/commands/readProvision.js +67 -0
  34. package/dist/fixtures/explorePage.d.ts +7 -0
  35. package/dist/fixtures/explorePage.js +59 -0
  36. package/dist/fixtures/grafanaVersion.d.ts +6 -0
  37. package/dist/fixtures/grafanaVersion.js +63 -0
  38. package/dist/fixtures/index.d.ts +14 -0
  39. package/dist/fixtures/index.js +29 -0
  40. package/dist/fixtures/newDashboardPage.d.ts +7 -0
  41. package/dist/fixtures/newDashboardPage.js +59 -0
  42. package/dist/fixtures/panelEditPage.d.ts +7 -0
  43. package/dist/fixtures/panelEditPage.js +56 -0
  44. package/dist/fixtures/selectors.d.ts +7 -0
  45. package/dist/fixtures/selectors.js +62 -0
  46. package/dist/fixtures/types.d.ts +2 -0
  47. package/dist/fixtures/types.js +2 -0
  48. package/dist/fixtures/variableEditPage.d.ts +7 -0
  49. package/dist/fixtures/variableEditPage.js +62 -0
  50. package/dist/index.d.ts +3 -0
  51. package/dist/index.js +22 -0
  52. package/dist/matchers/index.d.ts +20 -0
  53. package/dist/matchers/index.js +13 -0
  54. package/dist/matchers/toBeOK.d.ts +7 -0
  55. package/dist/matchers/toBeOK.js +69 -0
  56. package/dist/matchers/toDisplayPreviews.d.ts +7 -0
  57. package/dist/matchers/toDisplayPreviews.js +70 -0
  58. package/dist/matchers/toHavePanelError.d.ts +9 -0
  59. package/dist/matchers/toHavePanelError.js +74 -0
  60. package/dist/matchers/utils.d.ts +1 -0
  61. package/dist/matchers/utils.js +5 -0
  62. package/dist/models/AnnotationEditPage.d.ts +8 -0
  63. package/dist/models/AnnotationEditPage.js +82 -0
  64. package/dist/models/AnnotationPage.d.ts +8 -0
  65. package/dist/models/AnnotationPage.js +123 -0
  66. package/dist/models/DashboardPage.d.ts +15 -0
  67. package/dist/models/DashboardPage.js +163 -0
  68. package/dist/models/DataSourceConfigPage.d.ts +10 -0
  69. package/dist/models/DataSourceConfigPage.js +135 -0
  70. package/dist/models/DataSourcePicker.d.ts +6 -0
  71. package/dist/models/DataSourcePicker.js +86 -0
  72. package/dist/models/ExplorePage.d.ts +12 -0
  73. package/dist/models/ExplorePage.js +130 -0
  74. package/dist/models/GrafanaPage.d.ts +11 -0
  75. package/dist/models/GrafanaPage.js +150 -0
  76. package/dist/models/PanelEditPage.d.ts +15 -0
  77. package/dist/models/PanelEditPage.js +165 -0
  78. package/dist/models/TimeRange.d.ts +6 -0
  79. package/dist/models/TimeRange.js +119 -0
  80. package/dist/models/VariableEditPage.d.ts +10 -0
  81. package/dist/models/VariableEditPage.js +109 -0
  82. package/dist/models/VariablePage.d.ts +8 -0
  83. package/dist/models/VariablePage.js +107 -0
  84. package/dist/models/index.d.ts +8 -0
  85. package/dist/models/index.js +19 -0
  86. package/dist/selectorEngine.d.ts +4 -0
  87. package/dist/selectorEngine.js +18 -0
  88. package/dist/types.d.ts +54 -0
  89. package/dist/types.js +2 -0
  90. package/package.json +4 -4
@@ -0,0 +1,691 @@
1
+ export type E2ESelectors = {
2
+ pages: Pages;
3
+ components: Components;
4
+ apis: APIs;
5
+ };
6
+ export type APIs = {
7
+ DataSource: {
8
+ resourcePattern: string;
9
+ resourceUIDPattern: string;
10
+ queryPattern: string;
11
+ query: string;
12
+ health: (uid: string, id: string) => string;
13
+ delete: (uid: string) => string;
14
+ };
15
+ Dashboard: {
16
+ delete: (uid: string) => string;
17
+ };
18
+ };
19
+ export type Components = {
20
+ Breadcrumbs: {
21
+ breadcrumb: (title: string) => string;
22
+ };
23
+ TimePicker: {
24
+ openButton: string;
25
+ fromField: string;
26
+ toField: string;
27
+ applyTimeRange: string;
28
+ calendar: {
29
+ label: string;
30
+ openButton: string;
31
+ closeButton: string;
32
+ };
33
+ absoluteTimeRangeTitle: string;
34
+ };
35
+ DataSourcePermissions: {
36
+ roleType: string;
37
+ rolePicker: string;
38
+ permissionLevel: string;
39
+ };
40
+ DataSource: {
41
+ TestData: {
42
+ QueryTab: {
43
+ scenarioSelectContainer: string;
44
+ scenarioSelect: string;
45
+ max: string;
46
+ min: string;
47
+ noise: string;
48
+ seriesCount: string;
49
+ spread: string;
50
+ startValue: string;
51
+ drop: string;
52
+ };
53
+ };
54
+ DataSourceHttpSettings: {
55
+ urlInput: string;
56
+ };
57
+ Jaeger: {
58
+ traceIDInput: string;
59
+ };
60
+ Prometheus: {
61
+ configPage: {
62
+ connectionSettings: string;
63
+ exemplarsAddButton: string;
64
+ internalLinkSwitch: string;
65
+ };
66
+ exemplarMarker: string;
67
+ };
68
+ };
69
+ Menu: {
70
+ SubMenu: {
71
+ container: string;
72
+ icon: string;
73
+ };
74
+ };
75
+ Panels: {
76
+ Panel: {
77
+ title: (title: string) => string;
78
+ headerItems: (item: string) => string;
79
+ menuItems: (item: string) => string;
80
+ menu: (title: string) => string;
81
+ containerByTitle: (title: string) => string;
82
+ headerCornerInfo: (mode: string) => string;
83
+ status: (status: string) => string;
84
+ loadingBar: () => string;
85
+ HoverWidget: {
86
+ container: string;
87
+ dragIcon: string;
88
+ };
89
+ };
90
+ Visualization: {
91
+ Graph: {
92
+ container: string;
93
+ VisualizationTab: {
94
+ legendSection: string;
95
+ };
96
+ Legend: {
97
+ showLegendSwitch: string;
98
+ };
99
+ xAxis: {};
100
+ };
101
+ BarGauge: {
102
+ value: string;
103
+ valueV2: string;
104
+ };
105
+ PieChart: {
106
+ svgSlice: string;
107
+ };
108
+ Text: {};
109
+ Table: {
110
+ header: string;
111
+ footer: string;
112
+ body: string;
113
+ };
114
+ };
115
+ };
116
+ VizLegend: {
117
+ seriesName: (name: string) => string;
118
+ };
119
+ Drawer: {
120
+ General: {
121
+ expand: string;
122
+ contract: string;
123
+ close: string;
124
+ };
125
+ };
126
+ PanelEditor: {
127
+ General: {
128
+ content: string;
129
+ };
130
+ OptionsPane: {
131
+ content: string;
132
+ select: string;
133
+ };
134
+ DataPane: {
135
+ content: string;
136
+ };
137
+ applyButton: string;
138
+ toggleVizPicker: string;
139
+ toggleVizOptions: string;
140
+ toggleTableView: string;
141
+ showZoomField: string;
142
+ showAttributionField: string;
143
+ showScaleField: string;
144
+ showMeasureField: string;
145
+ showDebugField: string;
146
+ measureButton: string;
147
+ };
148
+ PanelInspector: {
149
+ Data: {
150
+ content: string;
151
+ };
152
+ Stats: {
153
+ content: string;
154
+ };
155
+ Json: {
156
+ content: string;
157
+ };
158
+ Query: {
159
+ content: string;
160
+ refreshButton: string;
161
+ };
162
+ };
163
+ Tab: {
164
+ title: (title: string) => string;
165
+ active: () => string;
166
+ };
167
+ RefreshPicker: {
168
+ runButton: string;
169
+ intervalButton: string;
170
+ runButtonV2: string;
171
+ intervalButtonV2: string;
172
+ };
173
+ QueryTab: {
174
+ content: string;
175
+ queryInspectorButton: string;
176
+ queryHistoryButton: string;
177
+ addQuery: string;
178
+ };
179
+ QueryHistory: {
180
+ queryText: string;
181
+ };
182
+ QueryEditorRows: {
183
+ rows: string;
184
+ };
185
+ QueryEditorRow: {
186
+ actionButton: (title: string) => string;
187
+ title: (refId: string) => string;
188
+ container: (refId: string) => string;
189
+ };
190
+ AlertTab: {
191
+ content: string;
192
+ };
193
+ Alert: {};
194
+ TransformTab: {
195
+ content: string;
196
+ };
197
+ Transforms: {
198
+ Reduce: {
199
+ modeLabel: string;
200
+ calculationsLabel: string;
201
+ };
202
+ SpatialOperations: {
203
+ actionLabel: string;
204
+ locationLabel: string;
205
+ location: {
206
+ autoOption: string;
207
+ coords: {
208
+ option: string;
209
+ latitudeFieldLabel: string;
210
+ longitudeFieldLabel: string;
211
+ };
212
+ geohash: {
213
+ option: string;
214
+ geohashFieldLabel: string;
215
+ };
216
+ lookup: {
217
+ option: string;
218
+ lookupFieldLabel: string;
219
+ gazetteerFieldLabel: string;
220
+ };
221
+ };
222
+ };
223
+ searchInput: string;
224
+ addTransformationButton: string;
225
+ };
226
+ NavBar: {
227
+ Configuration: {
228
+ button: string;
229
+ };
230
+ Toggle: {
231
+ button: string;
232
+ };
233
+ Reporting: {
234
+ button: string;
235
+ };
236
+ };
237
+ NavMenu: {
238
+ item: string;
239
+ };
240
+ NavToolbar: {
241
+ container: string;
242
+ };
243
+ PageToolbar: {
244
+ item: (tooltip: string) => string;
245
+ shotMoreItems: string;
246
+ container: string;
247
+ itemButton: (title: string) => string;
248
+ itemButtonTitle: string;
249
+ };
250
+ QueryEditorToolbarItem: {};
251
+ BackButton: {
252
+ backArrow: string;
253
+ };
254
+ OptionsGroup: {
255
+ group: (title?: string) => string;
256
+ toggle: (title?: string) => string;
257
+ };
258
+ PluginVisualization: {
259
+ current: string;
260
+ item: (title: string) => string;
261
+ };
262
+ Select: {
263
+ option: string;
264
+ };
265
+ FieldConfigEditor: {
266
+ content: string;
267
+ };
268
+ OverridesConfigEditor: {
269
+ content: string;
270
+ };
271
+ FolderPicker: {
272
+ container: string;
273
+ containerV2: string;
274
+ input: string;
275
+ };
276
+ ReadonlyFolderPicker: {
277
+ container: string;
278
+ };
279
+ DataSourcePicker: {
280
+ container: string;
281
+ inputV2: string;
282
+ };
283
+ TimeZonePicker: {
284
+ container: string;
285
+ containerV2: string;
286
+ };
287
+ WeekStartPicker: {
288
+ container: string;
289
+ containerV2: string;
290
+ placeholder: string;
291
+ };
292
+ TraceViewer: {
293
+ spanBar: string;
294
+ };
295
+ QueryField: {
296
+ container: string;
297
+ };
298
+ QueryBuilder: {
299
+ queryPatterns: string;
300
+ labelSelect: string;
301
+ valueSelect: string;
302
+ matchOperatorSelect: string;
303
+ };
304
+ ValuePicker: {};
305
+ Search: {
306
+ section: string;
307
+ sectionV2: string;
308
+ items: string;
309
+ itemsV2: string;
310
+ cards: string;
311
+ dashboardItems: string;
312
+ };
313
+ DashboardLinks: {
314
+ container: string;
315
+ dropDown: string;
316
+ link: string;
317
+ };
318
+ LoadingIndicator: {
319
+ icon: string;
320
+ };
321
+ CallToActionCard: {};
322
+ DataLinksContextMenu: {
323
+ singleLink: string;
324
+ };
325
+ CodeEditor: {
326
+ container: string;
327
+ };
328
+ DashboardImportPage: {
329
+ textarea: string;
330
+ submit: string;
331
+ };
332
+ ImportDashboardForm: {
333
+ name: string;
334
+ submit: string;
335
+ };
336
+ PanelAlertTabContent: {
337
+ content: string;
338
+ };
339
+ VisualizationPreview: {};
340
+ ColorSwatch: {
341
+ name: string;
342
+ };
343
+ DashboardRow: {};
344
+ UserProfile: {
345
+ profileSaveButton: string;
346
+ preferencesSaveButton: string;
347
+ orgsTable: string;
348
+ sessionsTable: string;
349
+ };
350
+ FileUpload: {
351
+ inputField: string;
352
+ fileNameSpan: string;
353
+ };
354
+ DebugOverlay: {
355
+ wrapper: string;
356
+ };
357
+ OrgRolePicker: {
358
+ input: string;
359
+ };
360
+ AnalyticsToolbarButton: {
361
+ button: string;
362
+ };
363
+ Variables: {
364
+ variableOption: string;
365
+ };
366
+ Annotations: {
367
+ annotationsTypeInput: string;
368
+ annotationsChoosePanelInput: string;
369
+ };
370
+ Tooltip: {
371
+ container: string;
372
+ };
373
+ };
374
+ export type Pages = {
375
+ Login: {
376
+ url: string;
377
+ username: string;
378
+ password: string;
379
+ submit: string;
380
+ skip: string;
381
+ };
382
+ Home: {
383
+ url: string;
384
+ };
385
+ DataSource: {
386
+ name: string;
387
+ delete: string;
388
+ readOnly: string;
389
+ saveAndTest: string;
390
+ alert: string;
391
+ };
392
+ DataSources: {
393
+ url: string;
394
+ dataSources: (dataSourceName: string) => string;
395
+ };
396
+ EditDataSource: {
397
+ url: (dataSourceUid: string) => string;
398
+ settings: string;
399
+ };
400
+ AddDataSource: {
401
+ url: string;
402
+ dataSourcePlugins: (pluginName: string) => string;
403
+ dataSourcePluginsV2: (pluginName: string) => string;
404
+ };
405
+ ConfirmModal: {
406
+ delete: string;
407
+ };
408
+ AddDashboard: {
409
+ url: string;
410
+ itemButton: (title: string) => string;
411
+ addNewPanel: string;
412
+ addNewRow: string;
413
+ addNewPanelLibrary: string;
414
+ itemButtonAddViz: string;
415
+ Settings: {
416
+ Annotations: {
417
+ List: {
418
+ url: string;
419
+ };
420
+ Edit: {
421
+ url: (annotationIndex: string) => string;
422
+ };
423
+ };
424
+ Variables: {
425
+ url: string;
426
+ };
427
+ };
428
+ };
429
+ Dashboard: {
430
+ url: (uid: string) => string;
431
+ DashNav: {
432
+ nav: string;
433
+ navV2: string;
434
+ publicDashboardTag: string;
435
+ };
436
+ SubMenu: {
437
+ submenu: string;
438
+ submenuItem: string;
439
+ submenuItemLabels: (item: string) => string;
440
+ submenuItemValueDropDownValueLinkTexts: (item: string) => string;
441
+ submenuItemValueDropDownDropDown: string;
442
+ submenuItemValueDropDownOptionTexts: (item: string) => string;
443
+ Annotations: {
444
+ annotationsWrapper: string;
445
+ annotationLabel: (label: string) => string;
446
+ annotationToggle: (label: string) => string;
447
+ };
448
+ };
449
+ Settings: {
450
+ Actions: {
451
+ close: string;
452
+ };
453
+ General: {
454
+ deleteDashBoard: string;
455
+ sectionItems: (item: string) => string;
456
+ saveDashBoard: string;
457
+ saveAsDashBoard: string;
458
+ timezone: string;
459
+ title: string;
460
+ };
461
+ Annotations: {
462
+ List: {
463
+ addAnnotationCTA: string;
464
+ addAnnotationCTAV2: string;
465
+ };
466
+ Settings: {
467
+ name: string;
468
+ };
469
+ NewAnnotation: {
470
+ panelFilterSelect: string;
471
+ showInLabel: string;
472
+ previewInDashboard: string;
473
+ };
474
+ };
475
+ Variables: {
476
+ List: {
477
+ newButton: string;
478
+ table: string;
479
+ tableRowNameFields: (variableName: string) => string;
480
+ tableRowDefinitionFields: (variableName: string) => string;
481
+ tableRowArrowUpButtons: (variableName: string) => string;
482
+ tableRowArrowDownButtons: (variableName: string) => string;
483
+ tableRowDuplicateButtons: (variableName: string) => string;
484
+ tableRowRemoveButtons: (variableName: string) => string;
485
+ addVariableCTAV2: (variableName: string) => string;
486
+ addVariableCTAV2Item: string;
487
+ };
488
+ Edit: {
489
+ General: {
490
+ headerLink: string;
491
+ modeLabelNew: string;
492
+ modeLabelEdit: string;
493
+ generalNameInput: string;
494
+ generalNameInputV2: string;
495
+ generalTypeSelect: string;
496
+ generalTypeSelectV2: string;
497
+ generalLabelInput: string;
498
+ generalLabelInputV2: string;
499
+ generalHideSelect: string;
500
+ generalHideSelectV2: string;
501
+ selectionOptionsMultiSwitch: string;
502
+ selectionOptionsIncludeAllSwitch: string;
503
+ selectionOptionsCustomAllInput: string;
504
+ selectionOptionsCustomAllInputV2: string;
505
+ previewOfValuesOption: string;
506
+ submitButton: string;
507
+ applyButton: string;
508
+ };
509
+ QueryVariable: {
510
+ queryOptionsRefreshSelect: string;
511
+ queryOptionsRefreshSelectV2: string;
512
+ queryOptionsRegExInput: string;
513
+ queryOptionsRegExInputV2: string;
514
+ queryOptionsSortSelect: string;
515
+ queryOptionsSortSelectV2: string;
516
+ queryOptionsQueryInput: string;
517
+ valueGroupsTagsEnabledSwitch: string;
518
+ valueGroupsTagsTagsQueryInput: string;
519
+ valueGroupsTagsTagsValuesQueryInput: string;
520
+ };
521
+ ConstantVariable: {
522
+ constantOptionsQueryInput: string;
523
+ constantOptionsQueryInputV2: string;
524
+ };
525
+ DatasourceVariable: {
526
+ datasourceSelect: string;
527
+ };
528
+ TextBoxVariable: {
529
+ textBoxOptionsQueryInput: string;
530
+ textBoxOptionsQueryInputV2: string;
531
+ };
532
+ CustomVariable: {
533
+ customValueInput: string;
534
+ };
535
+ IntervalVariable: {
536
+ intervalsValueInput: string;
537
+ };
538
+ };
539
+ };
540
+ };
541
+ Annotations: {
542
+ marker: string;
543
+ };
544
+ Rows: {
545
+ Repeated: {
546
+ ConfigSection: {
547
+ warningMessage: string;
548
+ };
549
+ };
550
+ };
551
+ };
552
+ Dashboards: {
553
+ url: string;
554
+ dashboards: (title: string) => string;
555
+ };
556
+ SaveDashboardAsModal: {
557
+ newName: string;
558
+ save: string;
559
+ };
560
+ SaveDashboardModal: {
561
+ save: string;
562
+ saveVariables: string;
563
+ saveTimerange: string;
564
+ };
565
+ SharePanelModal: {
566
+ linkToRenderedImage: string;
567
+ };
568
+ ShareDashboardModal: {
569
+ shareButton: string;
570
+ PublicDashboard: {
571
+ Tab: string;
572
+ WillBePublicCheckbox: string;
573
+ LimitedDSCheckbox: string;
574
+ CostIncreaseCheckbox: string;
575
+ PauseSwitch: string;
576
+ EnableAnnotationsSwitch: string;
577
+ CreateButton: string;
578
+ DeleteButton: string;
579
+ CopyUrlInput: string;
580
+ CopyUrlButton: string;
581
+ SettingsDropdown: string;
582
+ TemplateVariablesWarningAlert: string;
583
+ UnsupportedDataSourcesWarningAlert: string;
584
+ NoUpsertPermissionsWarningAlert: string;
585
+ EnableTimeRangeSwitch: string;
586
+ EmailSharingConfiguration: {
587
+ Container: string;
588
+ ShareType: string;
589
+ EmailSharingInput: string;
590
+ EmailSharingInviteButton: string;
591
+ EmailSharingList: string;
592
+ DeleteEmail: string;
593
+ ReshareLink: string;
594
+ };
595
+ };
596
+ };
597
+ PublicDashboard: {
598
+ page: string;
599
+ NotAvailable: {
600
+ container: string;
601
+ title: string;
602
+ pausedDescription: string;
603
+ };
604
+ };
605
+ RequestViewAccess: {
606
+ form: string;
607
+ recipientInput: string;
608
+ submitButton: string;
609
+ };
610
+ Explore: {
611
+ url: string;
612
+ General: {
613
+ container: string;
614
+ graph: string;
615
+ table: string;
616
+ scrollView: string;
617
+ };
618
+ };
619
+ SoloPanel: {
620
+ url: (page: string) => string;
621
+ };
622
+ PluginsList: {
623
+ page: string;
624
+ list: string;
625
+ listItem: string;
626
+ signatureErrorNotice: string;
627
+ };
628
+ PluginPage: {
629
+ page: string;
630
+ signatureInfo: string;
631
+ disabledInfo: string;
632
+ };
633
+ PlaylistForm: {
634
+ name: string;
635
+ interval: string;
636
+ itemDelete: string;
637
+ };
638
+ BrowseDashboards: {
639
+ table: {
640
+ body: string;
641
+ row: (uid: string) => string;
642
+ checkbox: (uid: string) => string;
643
+ };
644
+ };
645
+ Search: {
646
+ url: string;
647
+ FolderView: {
648
+ url: string;
649
+ };
650
+ };
651
+ PublicDashboards: {
652
+ ListItem: {
653
+ linkButton: string;
654
+ configButton: string;
655
+ trashcanButton: string;
656
+ pauseSwitch: string;
657
+ };
658
+ };
659
+ UserListPage: {
660
+ tabs: {
661
+ allUsers: string;
662
+ orgUsers: string;
663
+ publicDashboardsUsers: string;
664
+ users: string;
665
+ };
666
+ org: {
667
+ url: string;
668
+ };
669
+ admin: {
670
+ url: string;
671
+ };
672
+ publicDashboards: {
673
+ container: string;
674
+ };
675
+ UserListAdminPage: {
676
+ container: string;
677
+ };
678
+ UsersListPage: {
679
+ container: string;
680
+ };
681
+ UsersListPublicDashboardsPage: {
682
+ container: string;
683
+ DashboardsListModal: {
684
+ listItem: (uid: string) => string;
685
+ };
686
+ };
687
+ };
688
+ ProfilePage: {
689
+ url: string;
690
+ };
691
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,29 @@
1
+ export declare const versionedAPIs: {
2
+ DataSource: {
3
+ resourcePattern: {
4
+ "8.0.0": string;
5
+ };
6
+ resourceUIDPattern: {
7
+ '9.4.4': string;
8
+ "8.0.0": string;
9
+ };
10
+ queryPattern: {
11
+ "8.0.0": string;
12
+ };
13
+ query: {
14
+ "8.0.0": string;
15
+ };
16
+ health: {
17
+ "9.5.0": (uid: string, _: string) => string;
18
+ "8.0.0": (_: string, id: string) => string;
19
+ };
20
+ delete: {
21
+ "8.0.0": (uid: string) => string;
22
+ };
23
+ };
24
+ Dashboard: {
25
+ delete: {
26
+ "8.0.0": (uid: string) => string;
27
+ };
28
+ };
29
+ };