@dakkitor/api-contracts 1.1.54 → 1.1.56

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.
@@ -86,21 +86,21 @@ export declare const authContract: {
86
86
  firstName: z.ZodOptional<z.ZodString>;
87
87
  lastName: z.ZodOptional<z.ZodString>;
88
88
  phone: z.ZodOptional<z.ZodString>;
89
- roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING"]>, "many">>;
89
+ roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
90
90
  }, "strip", z.ZodTypeAny, {
91
91
  email: string;
92
92
  id: string;
93
93
  lastName?: string | undefined;
94
94
  firstName?: string | undefined;
95
95
  phone?: string | undefined;
96
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
96
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
97
97
  }, {
98
98
  email: string;
99
99
  id: string;
100
100
  lastName?: string | undefined;
101
101
  firstName?: string | undefined;
102
102
  phone?: string | undefined;
103
- roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING")[] | undefined;
103
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
104
104
  }>;
105
105
  401: z.ZodObject<{
106
106
  statusCode: z.ZodNumber;