@silexpert/core 0.4.202 → 0.4.204

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 (57) hide show
  1. package/es/api/resources/Mobile.d.ts +1 -1
  2. package/es/api/resources/Mobile.js +2 -2
  3. package/es/api/resources/Mobile.js.map +1 -1
  4. package/es/api/resources/Transaction.d.ts +1 -0
  5. package/es/api/resources/Transaction.d.ts.map +1 -1
  6. package/es/api/resources/Transaction.js +3 -0
  7. package/es/api/resources/Transaction.js.map +1 -1
  8. package/es/types/Enum/SurveyType.d.ts +2 -1
  9. package/es/types/Enum/SurveyType.d.ts.map +1 -1
  10. package/es/types/Enum/SurveyType.js +1 -0
  11. package/es/types/Enum/SurveyType.js.map +1 -1
  12. package/es/types/Interface/api/mail/QueryPaginatedMail.d.ts.map +1 -1
  13. package/es/types/Interface/api/mail/QueryPaginatedMail.js +2 -3
  14. package/es/types/Interface/api/mail/QueryPaginatedMail.js.map +1 -1
  15. package/es/types/Interface/api/mobile/QueryMobileMigration.d.ts +5 -0
  16. package/es/types/Interface/api/mobile/QueryMobileMigration.d.ts.map +1 -0
  17. package/es/types/Interface/api/mobile/QueryMobileMigration.js +26 -0
  18. package/es/types/Interface/api/mobile/QueryMobileMigration.js.map +1 -0
  19. package/es/types/Interface/api/revision/QueryRevisionSearchEntries.d.ts +7 -1
  20. package/es/types/Interface/api/revision/QueryRevisionSearchEntries.d.ts.map +1 -1
  21. package/es/types/Interface/api/revision/QueryRevisionSearchEntries.js +43 -4
  22. package/es/types/Interface/api/revision/QueryRevisionSearchEntries.js.map +1 -1
  23. package/es/types/Interface/api/taxDeadline/ReadTaxDeadline.d.ts +2 -0
  24. package/es/types/Interface/api/taxDeadline/ReadTaxDeadline.d.ts.map +1 -1
  25. package/es/types/Interface/api/taxDeadline/ReadTaxDeadline.js.map +1 -1
  26. package/es/types/Interface/models/IMobile.d.ts +1 -0
  27. package/es/types/Interface/models/IMobile.d.ts.map +1 -1
  28. package/es/types/Interface/models/IMobile.js.map +1 -1
  29. package/es/types/index.d.ts +2 -1
  30. package/es/types/index.d.ts.map +1 -1
  31. package/es/types/index.js +2 -1
  32. package/es/types/index.js.map +1 -1
  33. package/js/api/resources/Mobile.js +2 -2
  34. package/js/api/resources/Mobile.js.map +1 -1
  35. package/js/api/resources/Transaction.js +4 -0
  36. package/js/api/resources/Transaction.js.map +1 -1
  37. package/js/types/Enum/SurveyType.js +1 -0
  38. package/js/types/Enum/SurveyType.js.map +1 -1
  39. package/js/types/Interface/api/mail/QueryPaginatedMail.js +3 -1
  40. package/js/types/Interface/api/mail/QueryPaginatedMail.js.map +1 -1
  41. package/js/types/Interface/api/mobile/QueryMobileMigration.js +35 -0
  42. package/js/types/Interface/api/mobile/QueryMobileMigration.js.map +1 -0
  43. package/js/types/Interface/api/revision/QueryRevisionSearchEntries.js +17 -1
  44. package/js/types/Interface/api/revision/QueryRevisionSearchEntries.js.map +1 -1
  45. package/js/types/Interface/api/taxDeadline/ReadTaxDeadline.js.map +1 -1
  46. package/js/types/index.js +18 -6
  47. package/js/types/index.js.map +1 -1
  48. package/package.json +1 -1
  49. package/ts/api/resources/Mobile.ts +2 -2
  50. package/ts/api/resources/Transaction.ts +4 -0
  51. package/ts/types/Enum/SurveyType.ts +1 -0
  52. package/ts/types/Interface/api/mail/QueryPaginatedMail.ts +2 -3
  53. package/ts/types/Interface/api/mobile/QueryMobileMigration.ts +14 -0
  54. package/ts/types/Interface/api/revision/QueryRevisionSearchEntries.ts +40 -4
  55. package/ts/types/Interface/api/taxDeadline/ReadTaxDeadline.ts +2 -0
  56. package/ts/types/Interface/models/IMobile.ts +1 -0
  57. package/ts/types/index.ts +2 -1
@@ -3,6 +3,7 @@ import { IUser } from './IUser';
3
3
  export interface IMobile {
4
4
  id?: number;
5
5
  lastConnection: Date | null;
6
+ firstConnection: Date | null;
6
7
  token: string | null;
7
8
  idUser: number;
8
9
  createdAt?: Date | null;
package/ts/types/index.ts CHANGED
@@ -701,10 +701,11 @@ export * from './Interface/api/checklist/Read';
701
701
  export * from './Interface/api/checklist/Query';
702
702
  export * from './Interface/api/checklist/Update';
703
703
  export * from './Interface/api/notification/CreateNotification';
704
+ export * from './Interface/api/mobile/UpdateMobile';
705
+ export * from './Interface/api/mobile/QueryMobileMigration';
704
706
 
705
707
  // Enums types
706
708
  export * from './Interface/enum/Util';
707
- export * from './Interface/api/mobile/UpdateMobile';
708
709
 
709
710
  export * from '../utils/cerfa';
710
711
  export * from '../utils/checklist';