@silexpert/core 0.4.193 → 0.4.196

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 (65) hide show
  1. package/es/api/resources/Mail.d.ts +3 -2
  2. package/es/api/resources/Mail.d.ts.map +1 -1
  3. package/es/api/resources/Mail.js +6 -0
  4. package/es/api/resources/Mail.js.map +1 -1
  5. package/es/types/Enum/RoleDetail.d.ts +4 -0
  6. package/es/types/Enum/RoleDetail.d.ts.map +1 -1
  7. package/es/types/Enum/RoleDetail.js +4 -0
  8. package/es/types/Enum/RoleDetail.js.map +1 -1
  9. package/es/types/Interface/api/mail/QueryAllMail.d.ts +9 -0
  10. package/es/types/Interface/api/mail/QueryAllMail.d.ts.map +1 -0
  11. package/es/types/Interface/api/mail/QueryAllMail.js +2 -0
  12. package/es/types/Interface/api/mail/QueryAllMail.js.map +1 -0
  13. package/es/types/Interface/api/mail/QueryCountMail.d.ts +1 -0
  14. package/es/types/Interface/api/mail/QueryCountMail.d.ts.map +1 -1
  15. package/es/types/Interface/api/mail/QueryCountMail.js +7 -0
  16. package/es/types/Interface/api/mail/QueryCountMail.js.map +1 -1
  17. package/es/types/Interface/api/society/ListUserSociety.d.ts.map +1 -1
  18. package/es/types/Interface/api/society/ListUserSociety.js +8 -1
  19. package/es/types/Interface/api/society/ListUserSociety.js.map +1 -1
  20. package/es/types/Interface/api/user/ParamsGetAll.d.ts +9 -0
  21. package/es/types/Interface/api/user/ParamsGetAll.d.ts.map +1 -0
  22. package/es/types/Interface/api/user/ParamsGetAll.js +52 -0
  23. package/es/types/Interface/api/user/ParamsGetAll.js.map +1 -0
  24. package/es/types/Interface/api/user/ParamsGetAllUserWithRoles.d.ts +8 -0
  25. package/es/types/Interface/api/user/ParamsGetAllUserWithRoles.d.ts.map +1 -0
  26. package/es/types/Interface/api/user/ParamsGetAllUserWithRoles.js +50 -0
  27. package/es/types/Interface/api/user/ParamsGetAllUserWithRoles.js.map +1 -0
  28. package/es/types/Interface/api/user/QueryGetAllFromSociety.js +1 -1
  29. package/es/types/Interface/api/user/QueryGetAllFromSociety.js.map +1 -1
  30. package/es/types/Interface/models/IMail.d.ts +2 -2
  31. package/es/types/Interface/models/IMail.d.ts.map +1 -1
  32. package/es/types/Interface/models/IMail.js.map +1 -1
  33. package/es/types/index.d.ts +3 -0
  34. package/es/types/index.d.ts.map +1 -1
  35. package/es/types/index.js +3 -0
  36. package/es/types/index.js.map +1 -1
  37. package/js/api/resources/Mail.js +11 -0
  38. package/js/api/resources/Mail.js.map +1 -1
  39. package/js/types/Enum/RoleDetail.js +8 -4
  40. package/js/types/Enum/RoleDetail.js.map +1 -1
  41. package/js/types/Interface/api/mail/QueryAllMail.js +6 -0
  42. package/js/types/Interface/api/mail/QueryAllMail.js.map +1 -0
  43. package/js/types/Interface/api/mail/QueryCountMail.js +2 -0
  44. package/js/types/Interface/api/mail/QueryCountMail.js.map +1 -1
  45. package/js/types/Interface/api/society/ListUserSociety.js +8 -1
  46. package/js/types/Interface/api/society/ListUserSociety.js.map +1 -1
  47. package/js/types/Interface/api/user/ParamsGetAll.js +45 -0
  48. package/js/types/Interface/api/user/ParamsGetAll.js.map +1 -0
  49. package/js/types/Interface/api/user/ParamsGetAllUserWithRoles.js +45 -0
  50. package/js/types/Interface/api/user/ParamsGetAllUserWithRoles.js.map +1 -0
  51. package/js/types/Interface/api/user/QueryGetAllFromSociety.js +1 -1
  52. package/js/types/Interface/api/user/QueryGetAllFromSociety.js.map +1 -1
  53. package/js/types/index.js +36 -0
  54. package/js/types/index.js.map +1 -1
  55. package/package.json +1 -1
  56. package/ts/api/resources/Mail.ts +11 -1
  57. package/ts/types/Enum/RoleDetail.ts +4 -0
  58. package/ts/types/Interface/api/mail/QueryAllMail.ts +9 -0
  59. package/ts/types/Interface/api/mail/QueryCountMail.ts +6 -0
  60. package/ts/types/Interface/api/society/ListUserSociety.ts +8 -1
  61. package/ts/types/Interface/api/user/ParamsGetAll.ts +40 -0
  62. package/ts/types/Interface/api/user/ParamsGetAllUserWithRoles.ts +37 -0
  63. package/ts/types/Interface/api/user/QueryGetAllFromSociety.ts +1 -1
  64. package/ts/types/Interface/models/IMail.ts +2 -2
  65. package/ts/types/index.ts +3 -0
@@ -9,7 +9,7 @@ import { IMailAttachment } from './IMailAttachment';
9
9
  export interface IMail {
10
10
  id?: number;
11
11
  messageId?: string | null;
12
- date: Date;
12
+ date?: Date;
13
13
  subject?: string | null;
14
14
  fromName?: string | null;
15
15
  fromAddress?: string;
@@ -21,7 +21,7 @@ export interface IMail {
21
21
  listReferences?: string | null;
22
22
  spamScore?: number;
23
23
  textMini?: string | null;
24
- isSent: boolean;
24
+ isSent?: boolean;
25
25
  isRead?: boolean;
26
26
  isDraft?: boolean;
27
27
  isImportant?: boolean;
package/ts/types/index.ts CHANGED
@@ -442,6 +442,8 @@ export * from './Interface/api/user/QuerySocieties';
442
442
  export * from './Interface/api/user/QueryGetAllFromSociety';
443
443
  export * from './Interface/api/user/QueryResendConfirmationLink';
444
444
  export * from './Interface/api/user/CreateUser';
445
+ export * from './Interface/api/user/ParamsGetAll';
446
+ export * from './Interface/api/user/ParamsGetAllUserWithRoles';
445
447
  export * from './Interface/api/user/CreateCoworker';
446
448
  export * from './Interface/api/user/QueryUserSmsConfirmation';
447
449
  export * from './Interface/api/user/Permissions';
@@ -454,6 +456,7 @@ export * from './Interface/api/cerfa/CreateCerfa';
454
456
  export * from './Interface/api/cerfa/ReadCerfa';
455
457
  export * from './Interface/api/customerProviderOperation/CreateCustomerProviderOperation';
456
458
  export * from './Interface/api/mail/QueryMail';
459
+ export * from './Interface/api/mail/QueryAllMail';
457
460
  export * from './Interface/api/mail/QueryPaginatedMail';
458
461
  export * from './Interface/api/mail/QueryCountProcessedByUser';
459
462
  export * from './Interface/api/mail/QueryGetAnsweringTimeByUser';