@arsedizioni/ars-utils 18.2.395 → 18.2.396

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.
@@ -544,13 +544,13 @@ export interface ClipperTeamProductInfo {
544
544
  usedMembers: number;
545
545
  }
546
546
  export interface ClipperQueryTeamMembersResult {
547
- teamId: string;
548
- teamTitle: string;
549
- total: number;
550
- customerId: number;
551
- canEdit: boolean;
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: ClipperTeamMemberInfo[] | null;
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;