@arsedizioni/ars-utils 18.2.392 → 18.2.394

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.
@@ -537,14 +537,20 @@ export declare class ClipperTeamMemberInfo {
537
537
  hasPermission56?: boolean | null;
538
538
  hasPermission57?: boolean | null;
539
539
  }
540
+ export interface ClipperTeamProductInfo {
541
+ permissionId: number;
542
+ name: string;
543
+ maxMembers: number;
544
+ usedMembers: number;
545
+ }
540
546
  export interface ClipperQueryTeamMembersResult {
541
547
  teamId: string;
542
548
  teamTitle: string;
543
549
  total: number;
544
550
  customerId: number;
545
551
  canEdit: boolean;
546
- products: any;
547
- items: ClipperTeamMemberInfo[];
552
+ products?: ClipperTeamProductInfo[] | null;
553
+ items: ClipperTeamMemberInfo[] | null;
548
554
  }
549
555
  export interface ClipperQueryTeamsParams {
550
556
  teamId?: string | null;
@@ -559,6 +565,7 @@ export interface ClipperQueryTeamResult {
559
565
  }
560
566
  export declare class ClipperTeamInfo {
561
567
  id?: string | null;
568
+ items?: ClipperTeamMemberInfo[] | null;
562
569
  customerId?: number | null;
563
570
  title?: string | null;
564
571
  isDisabled?: boolean | null;