@silexpert/core 2.0.112 → 2.0.113

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 (58) hide show
  1. package/dist/api/resources/Authenticate.d.ts +6 -2
  2. package/dist/api/resources/Authenticate.d.ts.map +1 -1
  3. package/dist/api/resources/Authenticate.js +4 -0
  4. package/dist/api/resources/Authenticate.js.map +1 -1
  5. package/dist/api/resources/User.d.ts +1 -1
  6. package/dist/api/resources/User.d.ts.map +1 -1
  7. package/dist/api/resources/User.js.map +1 -1
  8. package/dist/types/Enum/ExternalAuthenticationLinkPurpose.d.ts +11 -0
  9. package/dist/types/Enum/ExternalAuthenticationLinkPurpose.d.ts.map +1 -0
  10. package/dist/types/Enum/ExternalAuthenticationLinkPurpose.js +13 -0
  11. package/dist/types/Enum/ExternalAuthenticationLinkPurpose.js.map +1 -0
  12. package/dist/types/Form/FormAuthenticate.d.ts.map +1 -1
  13. package/dist/types/Form/FormAuthenticate.js +5 -1
  14. package/dist/types/Form/FormAuthenticate.js.map +1 -1
  15. package/dist/types/Interface/api/authentification/ExchangeExternalAuthenticationLink.d.ts +5 -0
  16. package/dist/types/Interface/api/authentification/ExchangeExternalAuthenticationLink.d.ts.map +1 -0
  17. package/dist/types/Interface/api/authentification/ExchangeExternalAuthenticationLink.js +33 -0
  18. package/dist/types/Interface/api/authentification/ExchangeExternalAuthenticationLink.js.map +1 -0
  19. package/dist/types/Interface/api/authentification/ForgotPassword.d.ts +1 -0
  20. package/dist/types/Interface/api/authentification/ForgotPassword.d.ts.map +1 -1
  21. package/dist/types/Interface/api/authentification/ForgotPassword.js +8 -1
  22. package/dist/types/Interface/api/authentification/ForgotPassword.js.map +1 -1
  23. package/dist/types/Interface/api/commercialManagement/Create.d.ts +6 -1
  24. package/dist/types/Interface/api/commercialManagement/Create.d.ts.map +1 -1
  25. package/dist/types/Interface/api/commercialManagement/Create.js +25 -1
  26. package/dist/types/Interface/api/commercialManagement/Create.js.map +1 -1
  27. package/dist/types/Interface/api/taxDeadline/QueryTaxDeadline.d.ts.map +1 -1
  28. package/dist/types/Interface/api/taxDeadline/QueryTaxDeadline.js +7 -1
  29. package/dist/types/Interface/api/taxDeadline/QueryTaxDeadline.js.map +1 -1
  30. package/dist/types/Interface/api/timeRecorder/CreateRecorder.d.ts +2 -2
  31. package/dist/types/Interface/api/timeRecorder/CreateRecorder.d.ts.map +1 -1
  32. package/dist/types/Interface/api/timeRecorder/CreateRecorder.js +11 -3
  33. package/dist/types/Interface/api/timeRecorder/CreateRecorder.js.map +1 -1
  34. package/dist/types/Interface/api/timeRecorder/UpdateRecorder.d.ts +2 -2
  35. package/dist/types/Interface/api/timeRecorder/UpdateRecorder.d.ts.map +1 -1
  36. package/dist/types/Interface/api/timeRecorder/UpdateRecorder.js +11 -3
  37. package/dist/types/Interface/api/timeRecorder/UpdateRecorder.js.map +1 -1
  38. package/dist/types/Interface/models/IExternalAuthenticationLink.d.ts +18 -0
  39. package/dist/types/Interface/models/IExternalAuthenticationLink.d.ts.map +1 -0
  40. package/dist/types/Interface/models/IExternalAuthenticationLink.js +2 -0
  41. package/dist/types/Interface/models/IExternalAuthenticationLink.js.map +1 -0
  42. package/dist/types/index.d.ts +3 -0
  43. package/dist/types/index.d.ts.map +1 -1
  44. package/dist/types/index.js +3 -0
  45. package/dist/types/index.js.map +1 -1
  46. package/package.json +1 -1
  47. package/ts/api/resources/Authenticate.ts +7 -1
  48. package/ts/api/resources/User.ts +1 -1
  49. package/ts/types/Enum/ExternalAuthenticationLinkPurpose.ts +11 -0
  50. package/ts/types/Form/FormAuthenticate.ts +5 -1
  51. package/ts/types/Interface/api/authentification/ExchangeExternalAuthenticationLink.ts +19 -0
  52. package/ts/types/Interface/api/authentification/ForgotPassword.ts +6 -1
  53. package/ts/types/Interface/api/commercialManagement/Create.ts +22 -2
  54. package/ts/types/Interface/api/taxDeadline/QueryTaxDeadline.ts +7 -1
  55. package/ts/types/Interface/api/timeRecorder/CreateRecorder.ts +20 -3
  56. package/ts/types/Interface/api/timeRecorder/UpdateRecorder.ts +20 -3
  57. package/ts/types/Interface/models/IExternalAuthenticationLink.ts +18 -0
  58. package/ts/types/index.ts +3 -0
@@ -62,6 +62,7 @@ export * from './Interface/models/IExerciceComment.js';
62
62
  export * from './Interface/models/IExercice.js';
63
63
  export * from './Interface/models/IExercicePrestation.js';
64
64
  export * from './Interface/models/IExercicePrestationOffer.js';
65
+ export * from './Interface/models/IExternalAuthenticationLink.js';
65
66
  export * from './Interface/models/IFileType.js';
66
67
  export * from './Interface/models/IFile.js';
67
68
  export * from './Interface/models/IFiscalRegime.js';
@@ -537,6 +538,7 @@ export * from './Enum/UsersHistory.js';
537
538
  export * from './Enum/UrgencyLevel.js';
538
539
  export * from './Enum/Formalism.js';
539
540
  export * from './Enum/Kyc.js';
541
+ export * from './Enum/ExternalAuthenticationLinkPurpose.js';
540
542
  // Interfaces API
541
543
  export * from './Interface/api/accountingTransaction/Create.js';
542
544
  export * from './Interface/api/acd/Vat.js';
@@ -1201,6 +1203,7 @@ export * from './Interface/api/docoon/Create.js';
1201
1203
  export * from './Interface/api/authentification/FinalizeMobileApprovalDto.js';
1202
1204
  export * from './Interface/api/formalism/Create.js';
1203
1205
  export * from './Interface/api/authentification/ProviderAuthDto.js';
1206
+ export * from './Interface/api/authentification/ExchangeExternalAuthenticationLink.js';
1204
1207
  export * from './Interface/api/kyc/Create.js';
1205
1208
  export * from './Interface/api/kyc/Read.js';
1206
1209
  export * from './Interface/api/kyc/kyc.js';