@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.
- package/es/api/resources/Mail.d.ts +3 -2
- package/es/api/resources/Mail.d.ts.map +1 -1
- package/es/api/resources/Mail.js +6 -0
- package/es/api/resources/Mail.js.map +1 -1
- package/es/types/Enum/RoleDetail.d.ts +4 -0
- package/es/types/Enum/RoleDetail.d.ts.map +1 -1
- package/es/types/Enum/RoleDetail.js +4 -0
- package/es/types/Enum/RoleDetail.js.map +1 -1
- package/es/types/Interface/api/mail/QueryAllMail.d.ts +9 -0
- package/es/types/Interface/api/mail/QueryAllMail.d.ts.map +1 -0
- package/es/types/Interface/api/mail/QueryAllMail.js +2 -0
- package/es/types/Interface/api/mail/QueryAllMail.js.map +1 -0
- package/es/types/Interface/api/mail/QueryCountMail.d.ts +1 -0
- package/es/types/Interface/api/mail/QueryCountMail.d.ts.map +1 -1
- package/es/types/Interface/api/mail/QueryCountMail.js +7 -0
- package/es/types/Interface/api/mail/QueryCountMail.js.map +1 -1
- package/es/types/Interface/api/society/ListUserSociety.d.ts.map +1 -1
- package/es/types/Interface/api/society/ListUserSociety.js +8 -1
- package/es/types/Interface/api/society/ListUserSociety.js.map +1 -1
- package/es/types/Interface/api/user/ParamsGetAll.d.ts +9 -0
- package/es/types/Interface/api/user/ParamsGetAll.d.ts.map +1 -0
- package/es/types/Interface/api/user/ParamsGetAll.js +52 -0
- package/es/types/Interface/api/user/ParamsGetAll.js.map +1 -0
- package/es/types/Interface/api/user/ParamsGetAllUserWithRoles.d.ts +8 -0
- package/es/types/Interface/api/user/ParamsGetAllUserWithRoles.d.ts.map +1 -0
- package/es/types/Interface/api/user/ParamsGetAllUserWithRoles.js +50 -0
- package/es/types/Interface/api/user/ParamsGetAllUserWithRoles.js.map +1 -0
- package/es/types/Interface/api/user/QueryGetAllFromSociety.js +1 -1
- package/es/types/Interface/api/user/QueryGetAllFromSociety.js.map +1 -1
- package/es/types/Interface/models/IMail.d.ts +2 -2
- package/es/types/Interface/models/IMail.d.ts.map +1 -1
- package/es/types/Interface/models/IMail.js.map +1 -1
- package/es/types/index.d.ts +3 -0
- package/es/types/index.d.ts.map +1 -1
- package/es/types/index.js +3 -0
- package/es/types/index.js.map +1 -1
- package/js/api/resources/Mail.js +11 -0
- package/js/api/resources/Mail.js.map +1 -1
- package/js/types/Enum/RoleDetail.js +8 -4
- package/js/types/Enum/RoleDetail.js.map +1 -1
- package/js/types/Interface/api/mail/QueryAllMail.js +6 -0
- package/js/types/Interface/api/mail/QueryAllMail.js.map +1 -0
- package/js/types/Interface/api/mail/QueryCountMail.js +2 -0
- package/js/types/Interface/api/mail/QueryCountMail.js.map +1 -1
- package/js/types/Interface/api/society/ListUserSociety.js +8 -1
- package/js/types/Interface/api/society/ListUserSociety.js.map +1 -1
- package/js/types/Interface/api/user/ParamsGetAll.js +45 -0
- package/js/types/Interface/api/user/ParamsGetAll.js.map +1 -0
- package/js/types/Interface/api/user/ParamsGetAllUserWithRoles.js +45 -0
- package/js/types/Interface/api/user/ParamsGetAllUserWithRoles.js.map +1 -0
- package/js/types/Interface/api/user/QueryGetAllFromSociety.js +1 -1
- package/js/types/Interface/api/user/QueryGetAllFromSociety.js.map +1 -1
- package/js/types/index.js +36 -0
- package/js/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/Mail.ts +11 -1
- package/ts/types/Enum/RoleDetail.ts +4 -0
- package/ts/types/Interface/api/mail/QueryAllMail.ts +9 -0
- package/ts/types/Interface/api/mail/QueryCountMail.ts +6 -0
- package/ts/types/Interface/api/society/ListUserSociety.ts +8 -1
- package/ts/types/Interface/api/user/ParamsGetAll.ts +40 -0
- package/ts/types/Interface/api/user/ParamsGetAllUserWithRoles.ts +37 -0
- package/ts/types/Interface/api/user/QueryGetAllFromSociety.ts +1 -1
- package/ts/types/Interface/models/IMail.ts +2 -2
- 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
|
|
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
|
|
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';
|