application-sidebar 1.0.41 → 2.0.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.
- package/esm2022/lib/app-details.mjs +1 -1
- package/esm2022/lib/application-sidebar.component.mjs +839 -88
- package/esm2022/lib/nav-menu-item.mjs +1 -1
- package/esm2022/lib/nav-menus/nav-menus.component.mjs +33 -9
- package/esm2022/lib/navmenu1.mjs +263 -216
- package/esm2022/lib/revised-navigation.mjs +2 -0
- package/esm2022/lib/services/application-sidebar.service.mjs +305 -8
- package/esm2022/lib/services/rest-api.services.mjs +39 -6
- package/esm2022/lib/sidebar-layout.local.mjs +86 -0
- package/esm2022/lib/translations/translations-en.mjs +57 -31
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/application-sidebar.mjs +3031 -135
- package/fesm2022/application-sidebar.mjs.map +1 -1
- package/lib/app-details.d.ts +2 -0
- package/lib/application-sidebar.component.d.ts +132 -1
- package/lib/nav-menu-item.d.ts +7 -0
- package/lib/navmenu1.d.ts +146 -77
- package/lib/revised-navigation.d.ts +83 -0
- package/lib/services/application-sidebar.service.d.ts +49 -1
- package/lib/services/rest-api.services.d.ts +12 -0
- package/lib/sidebar-layout.local.d.ts +19 -0
- package/lib/translations/translations-en.d.ts +53 -27
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
package/lib/navmenu1.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
17
17
|
level: string;
|
|
18
18
|
icon: string;
|
|
19
19
|
link: string;
|
|
20
|
+
route: string;
|
|
20
21
|
child_routes: string[];
|
|
21
22
|
all_accounts: boolean;
|
|
22
23
|
visibility_roles?: undefined;
|
|
@@ -34,6 +35,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
34
35
|
level: string;
|
|
35
36
|
icon: string;
|
|
36
37
|
link: string;
|
|
38
|
+
route: string;
|
|
37
39
|
all_accounts: boolean;
|
|
38
40
|
child_routes?: undefined;
|
|
39
41
|
visibility_roles?: undefined;
|
|
@@ -51,6 +53,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
51
53
|
level: string;
|
|
52
54
|
icon: string;
|
|
53
55
|
link: string;
|
|
56
|
+
route: string;
|
|
54
57
|
visibility_roles: string[];
|
|
55
58
|
child_routes?: undefined;
|
|
56
59
|
all_accounts?: undefined;
|
|
@@ -68,6 +71,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
68
71
|
level: string;
|
|
69
72
|
icon: string;
|
|
70
73
|
link: string;
|
|
74
|
+
route: string;
|
|
71
75
|
child_routes: string[];
|
|
72
76
|
visibility_roles: string[];
|
|
73
77
|
incontext_campaign_targeting: any[];
|
|
@@ -85,6 +89,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
85
89
|
level: string;
|
|
86
90
|
icon: string;
|
|
87
91
|
link: string;
|
|
92
|
+
route: string;
|
|
88
93
|
child_routes: string[];
|
|
89
94
|
all_accounts?: undefined;
|
|
90
95
|
visibility_roles?: undefined;
|
|
@@ -102,6 +107,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
102
107
|
type: string;
|
|
103
108
|
level: string;
|
|
104
109
|
link: string;
|
|
110
|
+
route?: undefined;
|
|
105
111
|
child_routes?: undefined;
|
|
106
112
|
all_accounts?: undefined;
|
|
107
113
|
visibility_roles?: undefined;
|
|
@@ -115,12 +121,13 @@ export declare const GLOBAL_LIST: ({
|
|
|
115
121
|
} | {
|
|
116
122
|
id: string;
|
|
117
123
|
name: string;
|
|
124
|
+
icon: string;
|
|
118
125
|
type: string;
|
|
119
126
|
level: string;
|
|
120
|
-
icon: string;
|
|
121
127
|
link: string;
|
|
122
|
-
|
|
128
|
+
route: string;
|
|
123
129
|
incontext_campaign_targeting: string[];
|
|
130
|
+
child_routes?: undefined;
|
|
124
131
|
all_accounts?: undefined;
|
|
125
132
|
visibility_roles?: undefined;
|
|
126
133
|
children?: undefined;
|
|
@@ -132,15 +139,49 @@ export declare const GLOBAL_LIST: ({
|
|
|
132
139
|
} | {
|
|
133
140
|
id: string;
|
|
134
141
|
name: string;
|
|
135
|
-
icon: string;
|
|
136
142
|
type: string;
|
|
143
|
+
icon: string;
|
|
137
144
|
level: string;
|
|
138
|
-
|
|
139
|
-
|
|
145
|
+
children: ({
|
|
146
|
+
id: string;
|
|
147
|
+
name: string;
|
|
148
|
+
type: string;
|
|
149
|
+
level: string;
|
|
150
|
+
icon: string;
|
|
151
|
+
link: string;
|
|
152
|
+
route: string;
|
|
153
|
+
child_routes: string[];
|
|
154
|
+
incontext_campaign_targeting: string[];
|
|
155
|
+
targetting_types_not_in?: undefined;
|
|
156
|
+
} | {
|
|
157
|
+
id: string;
|
|
158
|
+
name: string;
|
|
159
|
+
icon: string;
|
|
160
|
+
type: string;
|
|
161
|
+
level: string;
|
|
162
|
+
link: string;
|
|
163
|
+
route: string;
|
|
164
|
+
child_routes: string[];
|
|
165
|
+
targetting_types_not_in: string[];
|
|
166
|
+
incontext_campaign_targeting?: undefined;
|
|
167
|
+
} | {
|
|
168
|
+
id: string;
|
|
169
|
+
name: string;
|
|
170
|
+
icon: string;
|
|
171
|
+
type: string;
|
|
172
|
+
level: string;
|
|
173
|
+
child_routes: string[];
|
|
174
|
+
link: string;
|
|
175
|
+
route?: undefined;
|
|
176
|
+
incontext_campaign_targeting?: undefined;
|
|
177
|
+
targetting_types_not_in?: undefined;
|
|
178
|
+
})[];
|
|
179
|
+
link?: undefined;
|
|
180
|
+
route?: undefined;
|
|
140
181
|
child_routes?: undefined;
|
|
141
182
|
all_accounts?: undefined;
|
|
142
183
|
visibility_roles?: undefined;
|
|
143
|
-
|
|
184
|
+
incontext_campaign_targeting?: undefined;
|
|
144
185
|
badge?: undefined;
|
|
145
186
|
campaign_types?: undefined;
|
|
146
187
|
account_type?: undefined;
|
|
@@ -159,6 +200,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
159
200
|
type: string;
|
|
160
201
|
level: string;
|
|
161
202
|
link: string;
|
|
203
|
+
route: string;
|
|
162
204
|
hide_for_user: string[];
|
|
163
205
|
child_routes: string[];
|
|
164
206
|
account_type: string[];
|
|
@@ -172,6 +214,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
172
214
|
badge: string;
|
|
173
215
|
level: string;
|
|
174
216
|
link: string;
|
|
217
|
+
route: string;
|
|
175
218
|
hide_for_user: string[];
|
|
176
219
|
account_type: string[];
|
|
177
220
|
subscription_types: string[];
|
|
@@ -184,12 +227,14 @@ export declare const GLOBAL_LIST: ({
|
|
|
184
227
|
badge: string;
|
|
185
228
|
level: string;
|
|
186
229
|
link: string;
|
|
230
|
+
route: string;
|
|
187
231
|
hide_for_user: string[];
|
|
188
232
|
child_routes: string[];
|
|
189
233
|
account_type: string[];
|
|
190
234
|
subscription_types?: undefined;
|
|
191
235
|
})[];
|
|
192
236
|
link?: undefined;
|
|
237
|
+
route?: undefined;
|
|
193
238
|
child_routes?: undefined;
|
|
194
239
|
all_accounts?: undefined;
|
|
195
240
|
visibility_roles?: undefined;
|
|
@@ -213,6 +258,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
213
258
|
type: string;
|
|
214
259
|
level: string;
|
|
215
260
|
link: string;
|
|
261
|
+
route: string;
|
|
216
262
|
child_routes: string[];
|
|
217
263
|
account_type?: undefined;
|
|
218
264
|
incontext_campaign_targeting?: undefined;
|
|
@@ -223,11 +269,13 @@ export declare const GLOBAL_LIST: ({
|
|
|
223
269
|
type: string;
|
|
224
270
|
level: string;
|
|
225
271
|
link: string;
|
|
272
|
+
route: string;
|
|
226
273
|
child_routes: string[];
|
|
227
274
|
account_type: string[];
|
|
228
275
|
incontext_campaign_targeting: any[];
|
|
229
276
|
})[];
|
|
230
277
|
link?: undefined;
|
|
278
|
+
route?: undefined;
|
|
231
279
|
child_routes?: undefined;
|
|
232
280
|
all_accounts?: undefined;
|
|
233
281
|
visibility_roles?: undefined;
|
|
@@ -242,33 +290,14 @@ export declare const GLOBAL_LIST: ({
|
|
|
242
290
|
icon: string;
|
|
243
291
|
type: string;
|
|
244
292
|
level: string;
|
|
293
|
+
link: string;
|
|
294
|
+
route: string;
|
|
245
295
|
campaign_types: string[];
|
|
246
|
-
children: ({
|
|
247
|
-
id: string;
|
|
248
|
-
name: string;
|
|
249
|
-
icon: string;
|
|
250
|
-
type: string;
|
|
251
|
-
level: string;
|
|
252
|
-
link: string;
|
|
253
|
-
campaign_types: string[];
|
|
254
|
-
child_routes?: undefined;
|
|
255
|
-
targetting_types_not_in?: undefined;
|
|
256
|
-
} | {
|
|
257
|
-
id: string;
|
|
258
|
-
name: string;
|
|
259
|
-
icon: string;
|
|
260
|
-
type: string;
|
|
261
|
-
level: string;
|
|
262
|
-
link: string;
|
|
263
|
-
child_routes: string[];
|
|
264
|
-
targetting_types_not_in: string[];
|
|
265
|
-
campaign_types?: undefined;
|
|
266
|
-
})[];
|
|
267
|
-
link?: undefined;
|
|
268
296
|
child_routes?: undefined;
|
|
269
297
|
all_accounts?: undefined;
|
|
270
298
|
visibility_roles?: undefined;
|
|
271
299
|
incontext_campaign_targeting?: undefined;
|
|
300
|
+
children?: undefined;
|
|
272
301
|
badge?: undefined;
|
|
273
302
|
account_type?: undefined;
|
|
274
303
|
regions?: undefined;
|
|
@@ -287,9 +316,11 @@ export declare const GLOBAL_LIST: ({
|
|
|
287
316
|
type: string;
|
|
288
317
|
level: string;
|
|
289
318
|
link: string;
|
|
319
|
+
route: string;
|
|
290
320
|
incontext_campaign_targeting: string[];
|
|
291
321
|
}[];
|
|
292
322
|
link?: undefined;
|
|
323
|
+
route?: undefined;
|
|
293
324
|
child_routes?: undefined;
|
|
294
325
|
all_accounts?: undefined;
|
|
295
326
|
visibility_roles?: undefined;
|
|
@@ -312,6 +343,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
312
343
|
type: string;
|
|
313
344
|
level: string;
|
|
314
345
|
link: string;
|
|
346
|
+
route: string;
|
|
315
347
|
account_ids: number[];
|
|
316
348
|
organization_setting: string[];
|
|
317
349
|
subscription_types?: undefined;
|
|
@@ -322,6 +354,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
322
354
|
type: string;
|
|
323
355
|
level: string;
|
|
324
356
|
link: string;
|
|
357
|
+
route: string;
|
|
325
358
|
subscription_types: string[];
|
|
326
359
|
organization_setting: string[];
|
|
327
360
|
account_ids?: undefined;
|
|
@@ -332,6 +365,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
332
365
|
type: string;
|
|
333
366
|
level: string;
|
|
334
367
|
link: string;
|
|
368
|
+
route: string;
|
|
335
369
|
account_ids: number[];
|
|
336
370
|
organization_setting?: undefined;
|
|
337
371
|
subscription_types?: undefined;
|
|
@@ -342,11 +376,13 @@ export declare const GLOBAL_LIST: ({
|
|
|
342
376
|
type: string;
|
|
343
377
|
level: string;
|
|
344
378
|
link: string;
|
|
379
|
+
route: string;
|
|
345
380
|
organization_setting: string[];
|
|
346
381
|
account_ids?: undefined;
|
|
347
382
|
subscription_types?: undefined;
|
|
348
383
|
})[];
|
|
349
384
|
link?: undefined;
|
|
385
|
+
route?: undefined;
|
|
350
386
|
child_routes?: undefined;
|
|
351
387
|
all_accounts?: undefined;
|
|
352
388
|
visibility_roles?: undefined;
|
|
@@ -362,6 +398,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
362
398
|
level: string;
|
|
363
399
|
icon: string;
|
|
364
400
|
link: string;
|
|
401
|
+
route: string;
|
|
365
402
|
badge: string;
|
|
366
403
|
account_type: string[];
|
|
367
404
|
regions: string[];
|
|
@@ -386,6 +423,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
386
423
|
type: string;
|
|
387
424
|
level: string;
|
|
388
425
|
link: string;
|
|
426
|
+
route: string;
|
|
389
427
|
child_routes: string[];
|
|
390
428
|
incontext_campaign_targeting: any[];
|
|
391
429
|
visibility_roles_not_in?: undefined;
|
|
@@ -398,6 +436,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
398
436
|
type: string;
|
|
399
437
|
level: string;
|
|
400
438
|
link: string;
|
|
439
|
+
route: string;
|
|
401
440
|
incontext_campaign_targeting: any[];
|
|
402
441
|
child_routes: string[];
|
|
403
442
|
visibility_roles_not_in: string[];
|
|
@@ -410,6 +449,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
410
449
|
type: string;
|
|
411
450
|
level: string;
|
|
412
451
|
link: string;
|
|
452
|
+
route?: undefined;
|
|
413
453
|
child_routes?: undefined;
|
|
414
454
|
incontext_campaign_targeting?: undefined;
|
|
415
455
|
visibility_roles_not_in?: undefined;
|
|
@@ -423,12 +463,14 @@ export declare const GLOBAL_LIST: ({
|
|
|
423
463
|
type: string;
|
|
424
464
|
level: string;
|
|
425
465
|
link: string;
|
|
466
|
+
route: string;
|
|
426
467
|
incontext_campaign_targeting: any[];
|
|
427
468
|
child_routes?: undefined;
|
|
428
469
|
visibility_roles_not_in?: undefined;
|
|
429
470
|
customer_types_not_in?: undefined;
|
|
430
471
|
})[];
|
|
431
472
|
link?: undefined;
|
|
473
|
+
route?: undefined;
|
|
432
474
|
child_routes?: undefined;
|
|
433
475
|
all_accounts?: undefined;
|
|
434
476
|
visibility_roles?: undefined;
|
|
@@ -442,7 +484,6 @@ export declare const GLOBAL_LIST: ({
|
|
|
442
484
|
siteNotIds?: undefined;
|
|
443
485
|
visibility_roles?: undefined;
|
|
444
486
|
org_user_ctrl?: undefined;
|
|
445
|
-
badge?: undefined;
|
|
446
487
|
sticky?: undefined;
|
|
447
488
|
route?: undefined;
|
|
448
489
|
link?: undefined;
|
|
@@ -468,6 +509,22 @@ export declare const GLOBAL_LIST: ({
|
|
|
468
509
|
route: string;
|
|
469
510
|
link: string;
|
|
470
511
|
visibility_roles: string[];
|
|
512
|
+
matchRoutes?: undefined;
|
|
513
|
+
child_routes?: undefined;
|
|
514
|
+
badge?: undefined;
|
|
515
|
+
campaign_types?: undefined;
|
|
516
|
+
children?: undefined;
|
|
517
|
+
} | {
|
|
518
|
+
id: string;
|
|
519
|
+
name: string;
|
|
520
|
+
type: string;
|
|
521
|
+
level: string;
|
|
522
|
+
icon: string;
|
|
523
|
+
route: string;
|
|
524
|
+
link: string;
|
|
525
|
+
visibility_roles: string[];
|
|
526
|
+
matchRoutes: string[];
|
|
527
|
+
child_routes: string[];
|
|
471
528
|
badge?: undefined;
|
|
472
529
|
campaign_types?: undefined;
|
|
473
530
|
children?: undefined;
|
|
@@ -481,6 +538,8 @@ export declare const GLOBAL_LIST: ({
|
|
|
481
538
|
badge: string;
|
|
482
539
|
link: string;
|
|
483
540
|
visibility_roles: string[];
|
|
541
|
+
matchRoutes: string[];
|
|
542
|
+
child_routes: string[];
|
|
484
543
|
campaign_types?: undefined;
|
|
485
544
|
children?: undefined;
|
|
486
545
|
} | {
|
|
@@ -495,6 +554,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
495
554
|
id: string;
|
|
496
555
|
name: string;
|
|
497
556
|
type: string;
|
|
557
|
+
level: string;
|
|
498
558
|
icon: string;
|
|
499
559
|
link: string;
|
|
500
560
|
route: string;
|
|
@@ -506,6 +566,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
506
566
|
id: string;
|
|
507
567
|
name: string;
|
|
508
568
|
type: string;
|
|
569
|
+
level: string;
|
|
509
570
|
icon: string;
|
|
510
571
|
route: string;
|
|
511
572
|
link: string;
|
|
@@ -517,6 +578,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
517
578
|
id: string;
|
|
518
579
|
name: string;
|
|
519
580
|
type: string;
|
|
581
|
+
level: string;
|
|
520
582
|
icon: string;
|
|
521
583
|
route: string;
|
|
522
584
|
link: string;
|
|
@@ -527,12 +589,13 @@ export declare const GLOBAL_LIST: ({
|
|
|
527
589
|
})[];
|
|
528
590
|
route?: undefined;
|
|
529
591
|
link?: undefined;
|
|
592
|
+
matchRoutes?: undefined;
|
|
593
|
+
child_routes?: undefined;
|
|
530
594
|
badge?: undefined;
|
|
531
595
|
})[];
|
|
532
596
|
siteNotIds?: undefined;
|
|
533
597
|
visibility_roles?: undefined;
|
|
534
598
|
org_user_ctrl?: undefined;
|
|
535
|
-
badge?: undefined;
|
|
536
599
|
sticky?: undefined;
|
|
537
600
|
route?: undefined;
|
|
538
601
|
link?: undefined;
|
|
@@ -607,7 +670,6 @@ export declare const GLOBAL_LIST: ({
|
|
|
607
670
|
siteNotIds?: undefined;
|
|
608
671
|
visibility_roles?: undefined;
|
|
609
672
|
org_user_ctrl?: undefined;
|
|
610
|
-
badge?: undefined;
|
|
611
673
|
sticky?: undefined;
|
|
612
674
|
route?: undefined;
|
|
613
675
|
link?: undefined;
|
|
@@ -694,19 +756,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
694
756
|
level: string;
|
|
695
757
|
siteIds: number[];
|
|
696
758
|
visibility_roles: string[];
|
|
697
|
-
children:
|
|
698
|
-
id: string;
|
|
699
|
-
name: string;
|
|
700
|
-
type: string;
|
|
701
|
-
level: string;
|
|
702
|
-
icon: string;
|
|
703
|
-
route: string;
|
|
704
|
-
link: string;
|
|
705
|
-
not_account_name: number[];
|
|
706
|
-
organization_setting: string[];
|
|
707
|
-
visibility_roles: string[];
|
|
708
|
-
siteIds: number[];
|
|
709
|
-
} | {
|
|
759
|
+
children: {
|
|
710
760
|
id: string;
|
|
711
761
|
name: string;
|
|
712
762
|
type: string;
|
|
@@ -717,8 +767,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
717
767
|
organization_setting: string[];
|
|
718
768
|
visibility_roles: string[];
|
|
719
769
|
siteIds: number[];
|
|
720
|
-
|
|
721
|
-
})[];
|
|
770
|
+
}[];
|
|
722
771
|
route?: undefined;
|
|
723
772
|
link?: undefined;
|
|
724
773
|
badge?: undefined;
|
|
@@ -741,7 +790,6 @@ export declare const GLOBAL_LIST: ({
|
|
|
741
790
|
siteIds?: undefined;
|
|
742
791
|
visibility_roles?: undefined;
|
|
743
792
|
org_user_ctrl?: undefined;
|
|
744
|
-
badge?: undefined;
|
|
745
793
|
sticky?: undefined;
|
|
746
794
|
route?: undefined;
|
|
747
795
|
link?: undefined;
|
|
@@ -762,12 +810,12 @@ export declare const GLOBAL_LIST: ({
|
|
|
762
810
|
id: string;
|
|
763
811
|
name: string;
|
|
764
812
|
type: string;
|
|
813
|
+
level: string;
|
|
765
814
|
icon: string;
|
|
766
815
|
route: string;
|
|
767
816
|
link: string;
|
|
768
817
|
visibility_roles: string[];
|
|
769
818
|
visibility_roles_not_in: string[];
|
|
770
|
-
level?: undefined;
|
|
771
819
|
siteIds?: undefined;
|
|
772
820
|
badge?: undefined;
|
|
773
821
|
matchRoutes?: undefined;
|
|
@@ -790,6 +838,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
790
838
|
id: string;
|
|
791
839
|
name: string;
|
|
792
840
|
type: string;
|
|
841
|
+
level: string;
|
|
793
842
|
icon: string;
|
|
794
843
|
route: string;
|
|
795
844
|
link: string;
|
|
@@ -797,7 +846,6 @@ export declare const GLOBAL_LIST: ({
|
|
|
797
846
|
child_routes: string[];
|
|
798
847
|
visibility_roles: string[];
|
|
799
848
|
visibility_roles_not_in: string[];
|
|
800
|
-
level?: undefined;
|
|
801
849
|
siteIds?: undefined;
|
|
802
850
|
badge?: undefined;
|
|
803
851
|
} | {
|
|
@@ -818,6 +866,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
818
866
|
id: string;
|
|
819
867
|
name: string;
|
|
820
868
|
type: string;
|
|
869
|
+
level: string;
|
|
821
870
|
icon: string;
|
|
822
871
|
route: string;
|
|
823
872
|
link: string;
|
|
@@ -825,19 +874,18 @@ export declare const GLOBAL_LIST: ({
|
|
|
825
874
|
child_routes: string[];
|
|
826
875
|
visibility_roles: string[];
|
|
827
876
|
visibility_roles_not_in?: undefined;
|
|
828
|
-
level?: undefined;
|
|
829
877
|
siteIds?: undefined;
|
|
830
878
|
badge?: undefined;
|
|
831
879
|
} | {
|
|
832
880
|
id: string;
|
|
833
881
|
name: string;
|
|
834
882
|
type: string;
|
|
883
|
+
level: string;
|
|
835
884
|
icon: string;
|
|
836
885
|
route: string;
|
|
837
886
|
link: string;
|
|
838
887
|
visibility_roles: string[];
|
|
839
888
|
visibility_roles_not_in?: undefined;
|
|
840
|
-
level?: undefined;
|
|
841
889
|
siteIds?: undefined;
|
|
842
890
|
badge?: undefined;
|
|
843
891
|
matchRoutes?: undefined;
|
|
@@ -846,7 +894,6 @@ export declare const GLOBAL_LIST: ({
|
|
|
846
894
|
siteNotIds?: undefined;
|
|
847
895
|
visibility_roles?: undefined;
|
|
848
896
|
org_user_ctrl?: undefined;
|
|
849
|
-
badge?: undefined;
|
|
850
897
|
sticky?: undefined;
|
|
851
898
|
route?: undefined;
|
|
852
899
|
link?: undefined;
|
|
@@ -920,12 +967,12 @@ export declare const GLOBAL_LIST: ({
|
|
|
920
967
|
icon: string;
|
|
921
968
|
route: string;
|
|
922
969
|
link: string;
|
|
923
|
-
badge: string;
|
|
924
970
|
visibility_roles: string[];
|
|
925
971
|
incontext_campaign_targeting_walmart: string[];
|
|
972
|
+
matchRoutes: string[];
|
|
973
|
+
child_routes: string[];
|
|
974
|
+
badge?: undefined;
|
|
926
975
|
recCount?: undefined;
|
|
927
|
-
matchRoutes?: undefined;
|
|
928
|
-
child_routes?: undefined;
|
|
929
976
|
campaign_types?: undefined;
|
|
930
977
|
children?: undefined;
|
|
931
978
|
} | {
|
|
@@ -936,30 +983,40 @@ export declare const GLOBAL_LIST: ({
|
|
|
936
983
|
icon: string;
|
|
937
984
|
route: string;
|
|
938
985
|
link: string;
|
|
986
|
+
badge: string;
|
|
939
987
|
visibility_roles: string[];
|
|
940
988
|
incontext_campaign_targeting_walmart: string[];
|
|
941
|
-
matchRoutes: string[];
|
|
942
|
-
child_routes: string[];
|
|
943
|
-
badge?: undefined;
|
|
944
989
|
recCount?: undefined;
|
|
990
|
+
matchRoutes?: undefined;
|
|
991
|
+
child_routes?: undefined;
|
|
945
992
|
campaign_types?: undefined;
|
|
946
993
|
children?: undefined;
|
|
947
994
|
} | {
|
|
948
995
|
id: string;
|
|
949
996
|
name: string;
|
|
950
997
|
type: string;
|
|
951
|
-
level: string;
|
|
952
998
|
icon: string;
|
|
953
|
-
|
|
954
|
-
|
|
999
|
+
level: string;
|
|
1000
|
+
campaign_types: any[];
|
|
955
1001
|
visibility_roles: string[];
|
|
956
|
-
|
|
1002
|
+
children: {
|
|
1003
|
+
id: string;
|
|
1004
|
+
name: string;
|
|
1005
|
+
type: string;
|
|
1006
|
+
level: string;
|
|
1007
|
+
icon: string;
|
|
1008
|
+
route: string;
|
|
1009
|
+
link: string;
|
|
1010
|
+
visibility_roles: string[];
|
|
1011
|
+
incontext_campaign_targeting_walmart: string[];
|
|
1012
|
+
}[];
|
|
1013
|
+
route?: undefined;
|
|
1014
|
+
link?: undefined;
|
|
957
1015
|
badge?: undefined;
|
|
958
1016
|
recCount?: undefined;
|
|
1017
|
+
incontext_campaign_targeting_walmart?: undefined;
|
|
959
1018
|
matchRoutes?: undefined;
|
|
960
1019
|
child_routes?: undefined;
|
|
961
|
-
campaign_types?: undefined;
|
|
962
|
-
children?: undefined;
|
|
963
1020
|
} | {
|
|
964
1021
|
id: string;
|
|
965
1022
|
name: string;
|
|
@@ -979,6 +1036,20 @@ export declare const GLOBAL_LIST: ({
|
|
|
979
1036
|
link: string;
|
|
980
1037
|
visibility_roles: string[];
|
|
981
1038
|
incontext_campaign_targeting_walmart: any[];
|
|
1039
|
+
matchRoutes: string[];
|
|
1040
|
+
child_routes: string[];
|
|
1041
|
+
} | {
|
|
1042
|
+
id: string;
|
|
1043
|
+
name: string;
|
|
1044
|
+
type: string;
|
|
1045
|
+
level: string;
|
|
1046
|
+
icon: string;
|
|
1047
|
+
route: string;
|
|
1048
|
+
link: string;
|
|
1049
|
+
visibility_roles: string[];
|
|
1050
|
+
incontext_campaign_targeting_walmart: any[];
|
|
1051
|
+
matchRoutes?: undefined;
|
|
1052
|
+
child_routes?: undefined;
|
|
982
1053
|
} | {
|
|
983
1054
|
id: string;
|
|
984
1055
|
name: string;
|
|
@@ -989,6 +1060,8 @@ export declare const GLOBAL_LIST: ({
|
|
|
989
1060
|
link: string;
|
|
990
1061
|
visibility_roles: string[];
|
|
991
1062
|
incontext_campaign_targeting_walmart?: undefined;
|
|
1063
|
+
matchRoutes?: undefined;
|
|
1064
|
+
child_routes?: undefined;
|
|
992
1065
|
})[];
|
|
993
1066
|
route?: undefined;
|
|
994
1067
|
link?: undefined;
|
|
@@ -999,7 +1072,6 @@ export declare const GLOBAL_LIST: ({
|
|
|
999
1072
|
})[];
|
|
1000
1073
|
siteNotIds?: undefined;
|
|
1001
1074
|
org_user_ctrl?: undefined;
|
|
1002
|
-
badge?: undefined;
|
|
1003
1075
|
sticky?: undefined;
|
|
1004
1076
|
route?: undefined;
|
|
1005
1077
|
link?: undefined;
|
|
@@ -1039,6 +1111,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
1039
1111
|
id: string;
|
|
1040
1112
|
name: string;
|
|
1041
1113
|
type: string;
|
|
1114
|
+
level: string;
|
|
1042
1115
|
icon: string;
|
|
1043
1116
|
link: string;
|
|
1044
1117
|
route: string;
|
|
@@ -1051,7 +1124,6 @@ export declare const GLOBAL_LIST: ({
|
|
|
1051
1124
|
siteNotIds?: undefined;
|
|
1052
1125
|
visibility_roles?: undefined;
|
|
1053
1126
|
org_user_ctrl?: undefined;
|
|
1054
|
-
badge?: undefined;
|
|
1055
1127
|
sticky?: undefined;
|
|
1056
1128
|
route?: undefined;
|
|
1057
1129
|
link?: undefined;
|
|
@@ -1093,6 +1165,7 @@ export declare const GLOBAL_LIST: ({
|
|
|
1093
1165
|
name: string;
|
|
1094
1166
|
type: string;
|
|
1095
1167
|
icon: string;
|
|
1168
|
+
level: string;
|
|
1096
1169
|
route: string;
|
|
1097
1170
|
link: string;
|
|
1098
1171
|
visibility_roles: string[];
|
|
@@ -1102,7 +1175,6 @@ export declare const GLOBAL_LIST: ({
|
|
|
1102
1175
|
})[];
|
|
1103
1176
|
siteNotIds?: undefined;
|
|
1104
1177
|
org_user_ctrl?: undefined;
|
|
1105
|
-
badge?: undefined;
|
|
1106
1178
|
sticky?: undefined;
|
|
1107
1179
|
route?: undefined;
|
|
1108
1180
|
link?: undefined;
|
|
@@ -1123,7 +1195,6 @@ export declare const GLOBAL_LIST: ({
|
|
|
1123
1195
|
})[];
|
|
1124
1196
|
order: number;
|
|
1125
1197
|
siteIds: number[];
|
|
1126
|
-
badge: string;
|
|
1127
1198
|
children: ({
|
|
1128
1199
|
id: string;
|
|
1129
1200
|
name: string;
|
|
@@ -1132,9 +1203,9 @@ export declare const GLOBAL_LIST: ({
|
|
|
1132
1203
|
route: string;
|
|
1133
1204
|
link: string;
|
|
1134
1205
|
visibility_roles: string[];
|
|
1206
|
+
organization_setting?: undefined;
|
|
1135
1207
|
matchRoutes?: undefined;
|
|
1136
1208
|
child_routes?: undefined;
|
|
1137
|
-
organization_setting?: undefined;
|
|
1138
1209
|
} | {
|
|
1139
1210
|
id: string;
|
|
1140
1211
|
name: string;
|
|
@@ -1142,10 +1213,10 @@ export declare const GLOBAL_LIST: ({
|
|
|
1142
1213
|
level: string;
|
|
1143
1214
|
route: string;
|
|
1144
1215
|
link: string;
|
|
1145
|
-
|
|
1146
|
-
child_routes: string[];
|
|
1216
|
+
organization_setting: string[];
|
|
1147
1217
|
visibility_roles?: undefined;
|
|
1148
|
-
|
|
1218
|
+
matchRoutes?: undefined;
|
|
1219
|
+
child_routes?: undefined;
|
|
1149
1220
|
} | {
|
|
1150
1221
|
id: string;
|
|
1151
1222
|
name: string;
|
|
@@ -1153,10 +1224,10 @@ export declare const GLOBAL_LIST: ({
|
|
|
1153
1224
|
level: string;
|
|
1154
1225
|
route: string;
|
|
1155
1226
|
link: string;
|
|
1156
|
-
|
|
1227
|
+
matchRoutes: string[];
|
|
1228
|
+
child_routes: string[];
|
|
1157
1229
|
visibility_roles?: undefined;
|
|
1158
|
-
|
|
1159
|
-
child_routes?: undefined;
|
|
1230
|
+
organization_setting?: undefined;
|
|
1160
1231
|
})[];
|
|
1161
1232
|
visibility_roles_not_in?: undefined;
|
|
1162
1233
|
organization_setting_not_in?: undefined;
|
|
@@ -1186,7 +1257,6 @@ export declare const GLOBAL_LIST: ({
|
|
|
1186
1257
|
siteNotIds?: undefined;
|
|
1187
1258
|
visibility_roles?: undefined;
|
|
1188
1259
|
org_user_ctrl?: undefined;
|
|
1189
|
-
badge?: undefined;
|
|
1190
1260
|
} | {
|
|
1191
1261
|
id: string;
|
|
1192
1262
|
name: string;
|
|
@@ -1301,7 +1371,6 @@ export declare const GLOBAL_LIST: ({
|
|
|
1301
1371
|
siteNotIds?: undefined;
|
|
1302
1372
|
visibility_roles?: undefined;
|
|
1303
1373
|
org_user_ctrl?: undefined;
|
|
1304
|
-
badge?: undefined;
|
|
1305
1374
|
route?: undefined;
|
|
1306
1375
|
link?: undefined;
|
|
1307
1376
|
})[];
|