@fctc/interface-logic 1.10.4 → 1.10.5

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.
@@ -253,31 +253,4 @@ declare const ViewService: {
253
253
  }): Promise<any>;
254
254
  };
255
255
 
256
- declare function useAuthService(): {
257
- login: (body: LoginCredentialBody) => Promise<any>;
258
- forgotPassword: (email: string) => Promise<any>;
259
- forgotPasswordSSO: ({ email, with_context, method, }: {
260
- email: string;
261
- with_context: any;
262
- method: string;
263
- }) => Promise<any>;
264
- resetPassword: (data: ResetPasswordRequest, token: string | null) => Promise<any>;
265
- resetPasswordSSO: ({ method, password, with_context, }: {
266
- method: any;
267
- password: string;
268
- with_context: any;
269
- }) => Promise<any>;
270
- updatePassword: (data: UpdatePasswordRequest, token: string | null) => Promise<any>;
271
- isValidToken: (token: string | null) => Promise<any>;
272
- isValidActionToken: (actionToken: string | null, path: string) => Promise<any>;
273
- loginSocial: ({ db, state, access_token, }: {
274
- db: string;
275
- state: object;
276
- access_token: string;
277
- }) => Promise<any>;
278
- getProviders: (db?: string) => Promise<any>;
279
- getAccessByCode: (code: string) => Promise<any>;
280
- logout: (data: string) => Promise<any>;
281
- };
282
-
283
- export { ActionService, AuthService, CompanyService, ExcelService, FormService, KanbanServices as KanbanService, ModelService, UserService, ViewService, useAuthService };
256
+ export { ActionService, AuthService, CompanyService, ExcelService, FormService, KanbanServices as KanbanService, ModelService, UserService, ViewService };