@arsedizioni/ars-utils 18.2.390 → 18.2.392
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/clipper.common/common/definitions.d.ts +16 -16
- package/clipper.common/common/services/clipper.service.d.ts +2 -2
- package/esm2022/clipper.common/common/definitions.mjs +23 -1
- package/esm2022/clipper.common/common/services/clipper.service.mjs +1 -1
- package/esm2022/ui/ui/dialogs/credentials/credentials-dialog.component.mjs +3 -3
- package/esm2022/ui/ui/dialogs/recover-password/recover-password-dialog.component.mjs +3 -3
- package/esm2022/ui/ui/dialogs/reset-password/reset-password-dialog.component.mjs +3 -3
- package/esm2022/ui.application/ui/dialogs/send-to/send-to-dialog.component.mjs +3 -3
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +23 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.mjs +6 -6
- package/fesm2022/arsedizioni-ars-utils-ui.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -527,15 +527,15 @@ export declare class ClipperDashboard {
|
|
|
527
527
|
*/
|
|
528
528
|
getUnreadItems(module: ClipperModule): number;
|
|
529
529
|
}
|
|
530
|
-
export
|
|
530
|
+
export declare class ClipperTeamMemberInfo {
|
|
531
531
|
id?: number | null;
|
|
532
532
|
teamId?: string | null;
|
|
533
|
-
name
|
|
534
|
-
email
|
|
535
|
-
isAdmin
|
|
536
|
-
hasPermission55
|
|
537
|
-
hasPermission56
|
|
538
|
-
hasPermission57
|
|
533
|
+
name?: string | null;
|
|
534
|
+
email?: string | null;
|
|
535
|
+
isAdmin?: boolean | null;
|
|
536
|
+
hasPermission55?: boolean | null;
|
|
537
|
+
hasPermission56?: boolean | null;
|
|
538
|
+
hasPermission57?: boolean | null;
|
|
539
539
|
}
|
|
540
540
|
export interface ClipperQueryTeamMembersResult {
|
|
541
541
|
teamId: string;
|
|
@@ -550,20 +550,20 @@ export interface ClipperQueryTeamsParams {
|
|
|
550
550
|
teamId?: string | null;
|
|
551
551
|
permissionId?: number | null;
|
|
552
552
|
productId?: number | null;
|
|
553
|
-
activeMembersOnly
|
|
554
|
-
includeRSTeams
|
|
553
|
+
activeMembersOnly?: boolean | null;
|
|
554
|
+
includeRSTeams?: boolean | null;
|
|
555
555
|
}
|
|
556
556
|
export interface ClipperQueryTeamResult {
|
|
557
557
|
total: number;
|
|
558
558
|
items: NameValueItem<string>[];
|
|
559
559
|
}
|
|
560
|
-
export
|
|
561
|
-
id
|
|
562
|
-
customerId
|
|
563
|
-
title
|
|
564
|
-
isDisabled
|
|
565
|
-
created
|
|
566
|
-
lastModified
|
|
560
|
+
export declare class ClipperTeamInfo {
|
|
561
|
+
id?: string | null;
|
|
562
|
+
customerId?: number | null;
|
|
563
|
+
title?: string | null;
|
|
564
|
+
isDisabled?: boolean | null;
|
|
565
|
+
created?: string | null;
|
|
566
|
+
lastModified?: string | null;
|
|
567
567
|
}
|
|
568
568
|
export declare class ClipperUtils {
|
|
569
569
|
/**
|
|
@@ -3,7 +3,7 @@ import { ApiResult, FolderTree, NameValueItem } from '@arsedizioni/ars-utils/cor
|
|
|
3
3
|
import { RecoverPasswordDialogData, RecoverPasswordDialogResult, ResetPasswordDialogResult } from '@arsedizioni/ars-utils/ui';
|
|
4
4
|
import { LoginOAuthType } from '@arsedizioni/ars-utils/ui.oauth';
|
|
5
5
|
import { Subscription } from 'rxjs';
|
|
6
|
-
import { ClipperServiceFlags, ClipperDashboard, ClipperDashboardResult, ClipperDocumentInfo, ClipperDocumentStructure, ClipperDocumentUpdateStateParams, ClipperExportDocumentsParams, ClipperLoginInfo, ClipperLoginResult, ClipperModule, ClipperOTPInfo, ClipperQueryArsEventsParams, ClipperQueryArsEventsResult, ClipperReferencesSearchParams, ClipperSearchFacetsResult, ClipperSearchParams, ClipperSearchResult, ClipperSendDocumentsByEmailParams, ClipperTaxonomyParams, ClipperUserLink, ClipperUserSearch, ClipperTeamMemberInfo, ClipperQueryTeamsParams, ClipperQueryTeamResult, ClipperTeamInfo } from '../definitions';
|
|
6
|
+
import { ClipperServiceFlags, ClipperDashboard, ClipperDashboardResult, ClipperDocumentInfo, ClipperDocumentStructure, ClipperDocumentUpdateStateParams, ClipperExportDocumentsParams, ClipperLoginInfo, ClipperLoginResult, ClipperModule, ClipperOTPInfo, ClipperQueryArsEventsParams, ClipperQueryArsEventsResult, ClipperReferencesSearchParams, ClipperSearchFacetsResult, ClipperSearchParams, ClipperSearchResult, ClipperSendDocumentsByEmailParams, ClipperTaxonomyParams, ClipperUserLink, ClipperUserSearch, ClipperTeamMemberInfo, ClipperQueryTeamsParams, ClipperQueryTeamResult, ClipperTeamInfo, ClipperQueryTeamMembersResult } from '../definitions';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class ClipperService implements OnDestroy {
|
|
9
9
|
private httpClient;
|
|
@@ -268,7 +268,7 @@ export declare class ClipperService implements OnDestroy {
|
|
|
268
268
|
/**
|
|
269
269
|
* Retrieve team members
|
|
270
270
|
*/
|
|
271
|
-
getTeamMembers(params: ClipperQueryTeamsParams): import("rxjs").Observable<ApiResult<
|
|
271
|
+
getTeamMembers(params: ClipperQueryTeamsParams): import("rxjs").Observable<ApiResult<ClipperQueryTeamMembersResult>>;
|
|
272
272
|
/**
|
|
273
273
|
* Delete members
|
|
274
274
|
* @param ids: the id list to delete
|