@masterteam/delegations 0.0.54 → 0.0.56
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/assets/delegations.css +1 -1
- package/assets/i18n/ar.json +175 -167
- package/assets/i18n/en.json +175 -167
- package/fesm2022/masterteam-delegations.mjs +467 -166
- package/fesm2022/masterteam-delegations.mjs.map +1 -1
- package/package.json +3 -3
- package/types/masterteam-delegations.d.ts +152 -25
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterteam/delegations",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.56",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/delegations",
|
|
6
6
|
"linkDirectory": false,
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"tailwindcss": "^4.2.2",
|
|
21
21
|
"tailwindcss-primeui": "^0.6.1",
|
|
22
22
|
"@ngxs/store": "^20.1.0",
|
|
23
|
-
"@masterteam/
|
|
23
|
+
"@masterteam/components": "^0.0.271",
|
|
24
24
|
"@masterteam/icons": "^0.0.17",
|
|
25
|
-
"@masterteam/
|
|
25
|
+
"@masterteam/forms": "^0.0.136"
|
|
26
26
|
},
|
|
27
27
|
"sideEffects": false,
|
|
28
28
|
"exports": {
|
|
@@ -4,13 +4,13 @@ import { OnInit, InjectionToken, EnvironmentProviders } from '@angular/core';
|
|
|
4
4
|
import { Popover } from 'primeng/popover';
|
|
5
5
|
import * as _masterteam_components_entities from '@masterteam/components/entities';
|
|
6
6
|
import { EntityUserValue } from '@masterteam/components/entities';
|
|
7
|
+
import { ModalService } from '@masterteam/components/modal';
|
|
7
8
|
import { PageHeaderTab } from '@masterteam/components/page-header';
|
|
8
9
|
import { TableAction, TableStatusMapValue, ColumnDef } from '@masterteam/components/table';
|
|
9
10
|
import { FormControl } from '@angular/forms';
|
|
10
11
|
import { HttpContext, HttpInterceptorFn, HttpContextToken } from '@angular/common/http';
|
|
11
12
|
import { DynamicFormConfig } from '@masterteam/components';
|
|
12
13
|
import { ModalRef } from '@masterteam/components/dialog';
|
|
13
|
-
import { ModalService } from '@masterteam/components/modal';
|
|
14
14
|
import * as rxjs from 'rxjs';
|
|
15
15
|
import { Observable } from 'rxjs';
|
|
16
16
|
import { StateContext } from '@ngxs/store';
|
|
@@ -421,20 +421,37 @@ declare class TopbarDelegationMenu implements OnInit {
|
|
|
421
421
|
* e.g. embedded in the user-avatar dropdown via {@link DelegationMenuPanel}.
|
|
422
422
|
*/
|
|
423
423
|
readonly headless: _angular_core.InputSignal<boolean>;
|
|
424
|
+
/**
|
|
425
|
+
* Optional richer profile for the "you" row of the switcher. Forwarded to
|
|
426
|
+
* {@link DelegationMenuPanel}; omit it and the current user is derived from
|
|
427
|
+
* the assigned delegation rows.
|
|
428
|
+
*/
|
|
429
|
+
readonly currentUser: _angular_core.InputSignal<DelegationParty | null>;
|
|
424
430
|
private readonly facade;
|
|
425
431
|
private readonly modal;
|
|
426
432
|
private readonly transloco;
|
|
433
|
+
private readonly destroyRef;
|
|
434
|
+
private readonly actions$;
|
|
435
|
+
private readonly toast;
|
|
427
436
|
protected readonly popover: _angular_core.Signal<Popover | undefined>;
|
|
428
437
|
protected readonly active: _angular_core.Signal<_masterteam_delegations.ActiveDelegationSession | null>;
|
|
429
438
|
protected readonly candidates: _angular_core.Signal<DelegationRow[]>;
|
|
430
439
|
protected readonly hasCandidates: _angular_core.Signal<boolean>;
|
|
431
|
-
protected readonly onBehalfOf: _angular_core.Signal<
|
|
432
|
-
protected readonly executedBy: _angular_core.Signal<
|
|
440
|
+
protected readonly onBehalfOf: _angular_core.Signal<DelegationParty | null>;
|
|
441
|
+
protected readonly executedBy: _angular_core.Signal<DelegationParty>;
|
|
433
442
|
protected readonly popoverOpen: _angular_core.WritableSignal<boolean>;
|
|
434
443
|
private promptPending;
|
|
435
444
|
private promptRefreshQueued;
|
|
436
445
|
private promptFlowOpen;
|
|
437
|
-
|
|
446
|
+
private destroyed;
|
|
447
|
+
/**
|
|
448
|
+
* Dialogs opened through `ModalService` live on `document.body`, so they
|
|
449
|
+
* outlive this component. Held so the whole prompt flow can be torn down when
|
|
450
|
+
* the authenticated shell goes away (sign-out) instead of stranding an
|
|
451
|
+
* "act on behalf of" dialog over the login page.
|
|
452
|
+
*/
|
|
453
|
+
private promptRefs;
|
|
454
|
+
protected readonly mode: _angular_core.Signal<"active" | "candidates" | "hidden">;
|
|
438
455
|
constructor();
|
|
439
456
|
ngOnInit(): void;
|
|
440
457
|
/** Two-letter initials for a delegator avatar (matches the user-menu pattern). */
|
|
@@ -444,18 +461,35 @@ declare class TopbarDelegationMenu implements OnInit {
|
|
|
444
461
|
private checkPromptCandidates;
|
|
445
462
|
private openConfirm;
|
|
446
463
|
private openCandidatesPrompt;
|
|
464
|
+
private trackPromptRef;
|
|
465
|
+
/** Tears down anything the prompt flow left on `document.body`. */
|
|
466
|
+
private closePromptFlow;
|
|
447
467
|
private finishPromptFlow;
|
|
448
468
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TopbarDelegationMenu, never>;
|
|
449
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TopbarDelegationMenu, "mt-topbar-delegation-menu", never, { "managePath": { "alias": "managePath"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; "showManageLink": { "alias": "showManageLink"; "required": false; "isSignal": true; }; "promptOnCandidates": { "alias": "promptOnCandidates"; "required": false; "isSignal": true; }; "headless": { "alias": "headless"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
469
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TopbarDelegationMenu, "mt-topbar-delegation-menu", never, { "managePath": { "alias": "managePath"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; "showManageLink": { "alias": "showManageLink"; "required": false; "isSignal": true; }; "promptOnCandidates": { "alias": "promptOnCandidates"; "required": false; "isSignal": true; }; "headless": { "alias": "headless"; "required": false; "isSignal": true; }; "currentUser": { "alias": "currentUser"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
450
470
|
}
|
|
451
471
|
|
|
472
|
+
/** One selectable identity in the switcher. */
|
|
473
|
+
interface DelegationIdentityOption {
|
|
474
|
+
/** `null` for the real signed-in user; the delegation row otherwise. */
|
|
475
|
+
row: DelegationRow | null;
|
|
476
|
+
party: DelegationParty | null;
|
|
477
|
+
isSelf: boolean;
|
|
478
|
+
isActive: boolean;
|
|
479
|
+
initials: string;
|
|
480
|
+
}
|
|
452
481
|
/**
|
|
453
|
-
* Embeddable
|
|
454
|
-
*
|
|
455
|
-
*
|
|
456
|
-
*
|
|
457
|
-
*
|
|
458
|
-
*
|
|
482
|
+
* Embeddable "acting as" account switcher (doc 05, 09).
|
|
483
|
+
*
|
|
484
|
+
* Renders one row per identity the user can operate as — themselves first, then
|
|
485
|
+
* every delegator who has an active delegation assigned to them — with the
|
|
486
|
+
* current one checked. Picking a row starts, switches, or ends the delegated
|
|
487
|
+
* session; the {@link StartSessionDialog} still takes explicit consent before
|
|
488
|
+
* any session begins, so this list never changes authority on its own.
|
|
489
|
+
*
|
|
490
|
+
* Designed to be dropped inside a host menu (e.g. the user-avatar dropdown) or
|
|
491
|
+
* the topbar popover. Candidate loading + the post-login prompt stay in the
|
|
492
|
+
* always-mounted `TopbarDelegationMenu` controller.
|
|
459
493
|
*
|
|
460
494
|
* Emits `closeRequested` after any action so the host overlay can dismiss.
|
|
461
495
|
*/
|
|
@@ -463,28 +497,37 @@ declare class DelegationMenuPanel {
|
|
|
463
497
|
/** Path to the management page, e.g. `/control-panel/delegations` or `/delegations`. */
|
|
464
498
|
readonly managePath: _angular_core.InputSignal<string>;
|
|
465
499
|
readonly showManageLink: _angular_core.InputSignal<boolean>;
|
|
500
|
+
/**
|
|
501
|
+
* Optional richer profile for the "you" row. Falls back to the current user
|
|
502
|
+
* carried on the assigned delegation rows, so the host may omit it.
|
|
503
|
+
*/
|
|
504
|
+
readonly currentUser: _angular_core.InputSignal<DelegationParty | null>;
|
|
466
505
|
readonly closeRequested: _angular_core.OutputEmitterRef<void>;
|
|
467
506
|
private readonly facade;
|
|
468
507
|
private readonly modal;
|
|
469
508
|
private readonly transloco;
|
|
509
|
+
private readonly toast;
|
|
470
510
|
protected readonly active: _angular_core.Signal<_masterteam_delegations.ActiveDelegationSession | null>;
|
|
471
511
|
protected readonly candidates: _angular_core.Signal<DelegationRow[]>;
|
|
472
512
|
protected readonly hasCandidates: _angular_core.Signal<boolean>;
|
|
473
513
|
protected readonly hasMoreCandidates: _angular_core.Signal<boolean>;
|
|
474
514
|
protected readonly isLoadingCandidates: _angular_core.Signal<boolean>;
|
|
475
|
-
protected readonly
|
|
476
|
-
protected readonly
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
protected
|
|
481
|
-
|
|
482
|
-
protected
|
|
515
|
+
protected readonly isBusy: _angular_core.Signal<boolean>;
|
|
516
|
+
protected readonly onBehalfOf: _angular_core.Signal<DelegationParty | null>;
|
|
517
|
+
/** The real signed-in user — host-supplied when available, derived otherwise. */
|
|
518
|
+
protected readonly self: _angular_core.Signal<DelegationParty | null>;
|
|
519
|
+
/** Nothing to switch between and no session running — render nothing. */
|
|
520
|
+
protected readonly visible: _angular_core.Signal<boolean>;
|
|
521
|
+
/** "You", then every delegator. The active identity carries the checkmark. */
|
|
522
|
+
protected readonly identities: _angular_core.Signal<DelegationIdentityOption[]>;
|
|
523
|
+
/** Two-letter initials for an avatar (matches the user-menu pattern). */
|
|
524
|
+
protected initials(party: DelegationParty | null | undefined): string;
|
|
525
|
+
protected select(option: DelegationIdentityOption, event: Event): void;
|
|
483
526
|
protected onManage(): void;
|
|
484
527
|
protected loadMore(event: MouseEvent): void;
|
|
485
528
|
private openConfirm;
|
|
486
529
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DelegationMenuPanel, never>;
|
|
487
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DelegationMenuPanel, "mt-delegation-menu-panel", never, { "managePath": { "alias": "managePath"; "required": false; "isSignal": true; }; "showManageLink": { "alias": "showManageLink"; "required": false; "isSignal": true; }; }, { "closeRequested": "closeRequested"; }, never, never, true, never>;
|
|
530
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DelegationMenuPanel, "mt-delegation-menu-panel", never, { "managePath": { "alias": "managePath"; "required": false; "isSignal": true; }; "showManageLink": { "alias": "showManageLink"; "required": false; "isSignal": true; }; "currentUser": { "alias": "currentUser"; "required": false; "isSignal": true; }; }, { "closeRequested": "closeRequested"; }, never, never, true, never>;
|
|
488
531
|
}
|
|
489
532
|
|
|
490
533
|
interface StatusVisual {
|
|
@@ -507,6 +550,8 @@ declare class DelegationStatusChip {
|
|
|
507
550
|
declare class StartSessionDialog {
|
|
508
551
|
readonly delegation: _angular_core.InputSignal<DelegationRow>;
|
|
509
552
|
readonly intent: _angular_core.InputSignal<"start" | "switch">;
|
|
553
|
+
/** Supplies the shared `mt-modal-content` / `mt-modal-footer` shell classes. */
|
|
554
|
+
protected readonly modal: ModalService;
|
|
510
555
|
private readonly ref;
|
|
511
556
|
private readonly facade;
|
|
512
557
|
private readonly toast;
|
|
@@ -530,6 +575,8 @@ declare class StartSessionDialog {
|
|
|
530
575
|
*/
|
|
531
576
|
declare class RejectDelegationDialog {
|
|
532
577
|
readonly delegation: _angular_core.InputSignal<DelegationRow>;
|
|
578
|
+
/** Supplies the shared `mt-modal-content` / `mt-modal-footer` shell classes. */
|
|
579
|
+
protected readonly modal: ModalService;
|
|
533
580
|
private readonly ref;
|
|
534
581
|
private readonly facade;
|
|
535
582
|
protected readonly reason: _angular_core.WritableSignal<string>;
|
|
@@ -994,10 +1041,19 @@ interface DelegationPromptNamespace {
|
|
|
994
1041
|
applicationKey: string;
|
|
995
1042
|
tenantKey?: string | null;
|
|
996
1043
|
}
|
|
1044
|
+
/**
|
|
1045
|
+
* Why the effective actor changed. `StartSession` / `SwitchSession` mean a new
|
|
1046
|
+
* delegated actor is now in force; every other value ends delegated mode. Hosts
|
|
1047
|
+
* should branch on this — `Logout`, `UserSwitch`, `TenantSwitch` and `AppSwitch`
|
|
1048
|
+
* are session teardowns where there is no new actor to load data for.
|
|
1049
|
+
*/
|
|
1050
|
+
type DelegationContextChangeReason = DelegationSessionInvalidationReason | 'StartSession' | 'SwitchSession'
|
|
1051
|
+
/** Re-minted after a page reload — same actor, so the host should stay put. */
|
|
1052
|
+
| 'ResumeSession';
|
|
997
1053
|
interface DelegationContextChange {
|
|
998
1054
|
previous: ActiveDelegationSession | null;
|
|
999
1055
|
current: ActiveDelegationSession | null;
|
|
1000
|
-
reason:
|
|
1056
|
+
reason: DelegationContextChangeReason;
|
|
1001
1057
|
}
|
|
1002
1058
|
interface DelegationRuntimeConfig {
|
|
1003
1059
|
resolveApplicationApiBaseUrl: () => string;
|
|
@@ -1011,6 +1067,42 @@ declare function provideDelegationRuntime(config: DelegationRuntimeConfig | Dele
|
|
|
1011
1067
|
declare const DELEGATED_RUNTIME_REQUEST: HttpContextToken<boolean>;
|
|
1012
1068
|
declare function withDelegatedRuntime(context?: HttpContext): HttpContext;
|
|
1013
1069
|
|
|
1070
|
+
/**
|
|
1071
|
+
* Lets a delegated session survive a page reload **without persisting the
|
|
1072
|
+
* token**.
|
|
1073
|
+
*
|
|
1074
|
+
* Doc 05 is unambiguous: the delegation access token is memory-only, and it
|
|
1075
|
+
* stays that way — this store keeps a single opaque `delegationId` plus the
|
|
1076
|
+
* owning user/app/tenant namespace. On the next boot the runtime calls
|
|
1077
|
+
* `POST identity/delegations/{id}/session` again and mints a *fresh* token,
|
|
1078
|
+
* which is what doc 09 already prescribes for restarting a session ("use the
|
|
1079
|
+
* newly returned token because the scope hash or delegation version may have
|
|
1080
|
+
* changed"). The backend re-authorizes from scratch every time, so a delegation
|
|
1081
|
+
* that expired, was cancelled, or had its scope revoked while the tab was shut
|
|
1082
|
+
* simply fails to resume and the user stays themselves.
|
|
1083
|
+
*
|
|
1084
|
+
* Never holds a token, a candidate record, a name, or an email.
|
|
1085
|
+
*/
|
|
1086
|
+
declare class DelegationSessionResumeStore {
|
|
1087
|
+
private readonly document;
|
|
1088
|
+
private readonly config;
|
|
1089
|
+
remember(delegationId: number): void;
|
|
1090
|
+
/**
|
|
1091
|
+
* The delegation to resume for the *current* user/app/tenant, or `null`. A
|
|
1092
|
+
* marker left by a different actor is dropped rather than honoured, so
|
|
1093
|
+
* signing in as someone else on a shared browser never resumes their
|
|
1094
|
+
* delegation.
|
|
1095
|
+
*/
|
|
1096
|
+
pending(): number | null;
|
|
1097
|
+
clear(): void;
|
|
1098
|
+
private namespace;
|
|
1099
|
+
private read;
|
|
1100
|
+
private write;
|
|
1101
|
+
private storage;
|
|
1102
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DelegationSessionResumeStore, never>;
|
|
1103
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DelegationSessionResumeStore>;
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1014
1106
|
declare class GetMyDelegations {
|
|
1015
1107
|
query: DelegationListQuery;
|
|
1016
1108
|
static readonly type = "[Delegations] Get My Delegations";
|
|
@@ -1235,6 +1327,15 @@ declare class StartDelegationSession {
|
|
|
1235
1327
|
static readonly type = "[DelegationSession] Start";
|
|
1236
1328
|
constructor(delegation: DelegationRow);
|
|
1237
1329
|
}
|
|
1330
|
+
/**
|
|
1331
|
+
* Re-mint the session the user was in before they reloaded the page. Dispatched
|
|
1332
|
+
* by the state itself from the persisted delegation id — never a token.
|
|
1333
|
+
*/
|
|
1334
|
+
declare class ResumeDelegationSession {
|
|
1335
|
+
delegation: DelegationRow;
|
|
1336
|
+
static readonly type = "[DelegationSession] Resume";
|
|
1337
|
+
constructor(delegation: DelegationRow);
|
|
1338
|
+
}
|
|
1238
1339
|
/** End the current delegated session. Client-local only (doc 05). */
|
|
1239
1340
|
declare class EndDelegationSession {
|
|
1240
1341
|
reason: DelegationSessionInvalidationReason;
|
|
@@ -1255,6 +1356,17 @@ declare class DelegationSessionState {
|
|
|
1255
1356
|
private vault;
|
|
1256
1357
|
private runtime;
|
|
1257
1358
|
private expiryTimer;
|
|
1359
|
+
/**
|
|
1360
|
+
* Bumped whenever candidates are cleared (logout / user / tenant / app
|
|
1361
|
+
* switch). A `LoadDelegationCandidates` response that was already in flight
|
|
1362
|
+
* when the actor went away resolves against a stale generation and is
|
|
1363
|
+
* dropped, so the previous user's delegators can never repopulate the menu —
|
|
1364
|
+
* or open the availability prompt — after sign-out.
|
|
1365
|
+
*/
|
|
1366
|
+
private candidatesGeneration;
|
|
1367
|
+
private resumeStore;
|
|
1368
|
+
/** One resume attempt per page load — a dead delegation must not retry. */
|
|
1369
|
+
private resumeAttempted;
|
|
1258
1370
|
constructor();
|
|
1259
1371
|
static getActive(state: DelegationSessionStateModel): ActiveDelegationSession | null;
|
|
1260
1372
|
static getCandidates(state: DelegationSessionStateModel): DelegationRow[];
|
|
@@ -1263,6 +1375,16 @@ declare class DelegationSessionState {
|
|
|
1263
1375
|
static getLoadingActive(state: DelegationSessionStateModel): string[];
|
|
1264
1376
|
static getErrors(state: DelegationSessionStateModel): Record<string, string | null | undefined>;
|
|
1265
1377
|
loadCandidates(ctx: StateContext<DelegationSessionStateModel>, { page, pageSize, append }: LoadDelegationCandidates): rxjs.Observable<Response<DelegationPage<DelegationRow>>>;
|
|
1378
|
+
/**
|
|
1379
|
+
* Re-mints the delegated session the user was in before they reloaded.
|
|
1380
|
+
*
|
|
1381
|
+
* The token itself was never persisted (doc 05); only the delegation id was,
|
|
1382
|
+
* so this is a full `POST .../session` and the backend re-authorizes from
|
|
1383
|
+
* scratch. Attempted at most once per page load — a delegation that has since
|
|
1384
|
+
* expired or been revoked must not retry on every candidate refresh.
|
|
1385
|
+
*/
|
|
1386
|
+
private tryResume;
|
|
1387
|
+
resume(ctx: StateContext<DelegationSessionStateModel>, { delegation }: ResumeDelegationSession): rxjs.Observable<void>;
|
|
1266
1388
|
start(ctx: StateContext<DelegationSessionStateModel>, { delegation }: StartDelegationSession): rxjs.Observable<void>;
|
|
1267
1389
|
private startSession;
|
|
1268
1390
|
end(ctx: StateContext<DelegationSessionStateModel>, { reason }: EndDelegationSession): rxjs.Observable<void>;
|
|
@@ -1284,8 +1406,13 @@ declare class DelegationSessionFacade {
|
|
|
1284
1406
|
private readonly loadingActive;
|
|
1285
1407
|
/** On-behalf-of (delegator). */
|
|
1286
1408
|
readonly onBehalfOf: _angular_core.Signal<_masterteam_delegations.DelegationParty | null>;
|
|
1287
|
-
/**
|
|
1288
|
-
|
|
1409
|
+
/**
|
|
1410
|
+
* Executed-by (the real signed-in user), known whether or not a session is
|
|
1411
|
+
* active: every assigned row carries the current user as its `delegatedUser`,
|
|
1412
|
+
* so the account switcher can list "you" alongside the delegators without the
|
|
1413
|
+
* package depending on the host's auth state.
|
|
1414
|
+
*/
|
|
1415
|
+
readonly executedBy: _angular_core.Signal<_masterteam_delegations.DelegationParty>;
|
|
1289
1416
|
readonly hasCandidates: _angular_core.Signal<boolean>;
|
|
1290
1417
|
readonly hasMoreCandidates: _angular_core.Signal<boolean>;
|
|
1291
1418
|
readonly isStarting: _angular_core.Signal<boolean>;
|
|
@@ -1300,5 +1427,5 @@ declare class DelegationSessionFacade {
|
|
|
1300
1427
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DelegationSessionFacade>;
|
|
1301
1428
|
}
|
|
1302
1429
|
|
|
1303
|
-
export { ApproveDelegation, CancelDelegation, ClearDelegationDetail, ClearScopePreview, CreateDelegationLegacy, CreateDelegationV2, DELEGATED_RUNTIME_REQUEST, DELEGATION_RUNTIME_CONFIG, DelegationDetailDrawer, DelegationForm, DelegationMenuPanel, DelegationSessionActionKey, DelegationSessionFacade, DelegationSessionState, DelegationStatusChip, Delegations, DelegationsActionKey, DelegationsFacade, DelegationsList, DelegationsState, EndDelegationSession, GetActiveAssignedDelegations, GetAdminDelegations, GetApprovalDelegations, GetAssignedDelegations, GetDelegationDetail, GetMyDelegations, GetScopeOptions, LoadDelegationCandidates, PreviewScope, RejectDelegation, RejectDelegationDialog, ScopePicker, StartDelegationSession, StartSessionDialog, SwitchDelegationSession, TopbarDelegationMenu, UpdateDelegationLegacy, UpdateDelegationV2, appDelegationInterceptor, provideDelegationRuntime, withDelegatedRuntime };
|
|
1304
|
-
export type { ActiveDelegationSession, AdminCreateDelegationV2Request, AdminUpdateDelegationV2Request, ApproveDelegationRequest, CreateDelegationLegacyRequest, CreateDelegationV2Request, DelegationAllowedAction, DelegationAppAccessibility, DelegationApprovalInfo, DelegationApprovalStatus, DelegationCancellationInfo, DelegationContextChange, DelegationDayRuleMode, DelegationDetail, DelegationDisplayValue, DelegationDto, DelegationEffectiveStatus, DelegationGrant, DelegationListQuery, DelegationPage, DelegationParty, DelegationPromptNamespace, DelegationRow, DelegationRuntimeConfig, DelegationScopeAction, DelegationScopeCombinationRule, DelegationScopeDeniedItem, DelegationScopeFact, DelegationScopeHierarchyGroup, DelegationScopeHierarchyTarget, DelegationScopeLevelNode, DelegationScopeModuleNode, DelegationScopeOptions, DelegationScopePermissionGroup, DelegationScopePreview, DelegationScopePreviewRequest, DelegationScopeSelection, DelegationScopeTarget, DelegationScopeView, DelegationScopeViewLevel, DelegationScopeViewModule, DelegationScopeViewOperation, DelegationScopeViewTemplate, DelegationScopeWarning, DelegationSessionInvalidationReason, DelegationSessionStartResponse, DelegationSessionStateModel, DelegationSortDirection, DelegationStatusInfo, DelegationsStateModel, RejectDelegationRequest, UpdateDelegationLegacyRequest, UpdateDelegationV2Request };
|
|
1430
|
+
export { ApproveDelegation, CancelDelegation, ClearDelegationDetail, ClearScopePreview, CreateDelegationLegacy, CreateDelegationV2, DELEGATED_RUNTIME_REQUEST, DELEGATION_RUNTIME_CONFIG, DelegationDetailDrawer, DelegationForm, DelegationMenuPanel, DelegationSessionActionKey, DelegationSessionFacade, DelegationSessionResumeStore, DelegationSessionState, DelegationStatusChip, Delegations, DelegationsActionKey, DelegationsFacade, DelegationsList, DelegationsState, EndDelegationSession, GetActiveAssignedDelegations, GetAdminDelegations, GetApprovalDelegations, GetAssignedDelegations, GetDelegationDetail, GetMyDelegations, GetScopeOptions, LoadDelegationCandidates, PreviewScope, RejectDelegation, RejectDelegationDialog, ResumeDelegationSession, ScopePicker, StartDelegationSession, StartSessionDialog, SwitchDelegationSession, TopbarDelegationMenu, UpdateDelegationLegacy, UpdateDelegationV2, appDelegationInterceptor, provideDelegationRuntime, withDelegatedRuntime };
|
|
1431
|
+
export type { ActiveDelegationSession, AdminCreateDelegationV2Request, AdminUpdateDelegationV2Request, ApproveDelegationRequest, CreateDelegationLegacyRequest, CreateDelegationV2Request, DelegationAllowedAction, DelegationAppAccessibility, DelegationApprovalInfo, DelegationApprovalStatus, DelegationCancellationInfo, DelegationContextChange, DelegationContextChangeReason, DelegationDayRuleMode, DelegationDetail, DelegationDisplayValue, DelegationDto, DelegationEffectiveStatus, DelegationGrant, DelegationListQuery, DelegationPage, DelegationParty, DelegationPromptNamespace, DelegationRow, DelegationRuntimeConfig, DelegationScopeAction, DelegationScopeCombinationRule, DelegationScopeDeniedItem, DelegationScopeFact, DelegationScopeHierarchyGroup, DelegationScopeHierarchyTarget, DelegationScopeLevelNode, DelegationScopeModuleNode, DelegationScopeOptions, DelegationScopePermissionGroup, DelegationScopePreview, DelegationScopePreviewRequest, DelegationScopeSelection, DelegationScopeTarget, DelegationScopeView, DelegationScopeViewLevel, DelegationScopeViewModule, DelegationScopeViewOperation, DelegationScopeViewTemplate, DelegationScopeWarning, DelegationSessionInvalidationReason, DelegationSessionStartResponse, DelegationSessionStateModel, DelegationSortDirection, DelegationStatusInfo, DelegationsStateModel, RejectDelegationRequest, UpdateDelegationLegacyRequest, UpdateDelegationV2Request };
|