@livetiles/reach-plugin-types 0.5.0-preview.78 → 0.5.0-preview.79

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.
Files changed (2) hide show
  1. package/lib/index.d.ts +2 -1
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -6646,6 +6646,7 @@ declare module "apps/reach-app/src/app/admin/users/invite-users-csv/useUserCsvIn
6646
6646
  export type CsvValidation = {
6647
6647
  Status?: ValidationStatus;
6648
6648
  Message?: string;
6649
+ InvalidItems?: string[];
6649
6650
  };
6650
6651
  export function useUserCsvInviter(): {
6651
6652
  invitedUsers: UserImport[];
@@ -6653,7 +6654,7 @@ declare module "apps/reach-app/src/app/admin/users/invite-users-csv/useUserCsvIn
6653
6654
  isCsvValid: boolean;
6654
6655
  parseCsvFile: (csvFile: File) => void;
6655
6656
  csvValidation: CsvValidation;
6656
- setCsvValidation: (status: ValidationStatus, message: string) => void;
6657
+ setCsvValidation: (status: ValidationStatus, message: string, invalidItems?: string[]) => void;
6657
6658
  inviteUsers: (onSuccess?: () => void) => Promise<void>;
6658
6659
  isParserReady: boolean;
6659
6660
  isInviting: boolean;
package/package.json CHANGED
@@ -4,6 +4,6 @@
4
4
  "main": "",
5
5
  "types": "./index.d.ts",
6
6
  "license": "ISC",
7
- "version": "0.5.0-preview.78",
7
+ "version": "0.5.0-preview.79",
8
8
  "dependencies": {}
9
9
  }