@arsedizioni/ars-utils 18.2.395 → 18.2.397
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.
|
@@ -528,7 +528,7 @@ export declare class ClipperDashboard {
|
|
|
528
528
|
getUnreadItems(module: ClipperModule): number;
|
|
529
529
|
}
|
|
530
530
|
export declare class ClipperTeamMemberInfo {
|
|
531
|
-
id
|
|
531
|
+
id: number;
|
|
532
532
|
teamId?: string | null;
|
|
533
533
|
name?: string | null;
|
|
534
534
|
email?: string | null;
|
|
@@ -544,13 +544,13 @@ export interface ClipperTeamProductInfo {
|
|
|
544
544
|
usedMembers: number;
|
|
545
545
|
}
|
|
546
546
|
export interface ClipperQueryTeamMembersResult {
|
|
547
|
-
teamId
|
|
548
|
-
teamTitle
|
|
549
|
-
total
|
|
550
|
-
customerId
|
|
551
|
-
canEdit
|
|
547
|
+
teamId?: string | null;
|
|
548
|
+
teamTitle?: string | null;
|
|
549
|
+
total?: number | null;
|
|
550
|
+
customerId?: number | null;
|
|
551
|
+
canEdit?: boolean | null;
|
|
552
552
|
products?: ClipperTeamProductInfo[] | null;
|
|
553
|
-
items
|
|
553
|
+
items?: ClipperTeamMemberInfo[] | null;
|
|
554
554
|
}
|
|
555
555
|
export interface ClipperQueryTeamsParams {
|
|
556
556
|
teamId?: string | null;
|
|
@@ -565,7 +565,6 @@ export interface ClipperQueryTeamResult {
|
|
|
565
565
|
}
|
|
566
566
|
export declare class ClipperTeamInfo {
|
|
567
567
|
id?: string | null;
|
|
568
|
-
items?: ClipperTeamMemberInfo[] | null;
|
|
569
568
|
customerId?: number | null;
|
|
570
569
|
title?: string | null;
|
|
571
570
|
isDisabled?: boolean | null;
|