@silexpert/core 1.1.155 → 1.1.156
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/dist/cjs/types/Enum/BrandClementine.d.ts +61 -0
- package/dist/cjs/types/Enum/BrandClementine.d.ts.map +1 -1
- package/dist/cjs/types/Enum/BrandClementine.js +5 -0
- package/dist/cjs/types/Enum/BrandClementine.js.map +1 -1
- package/dist/cjs/types/Enum/BrandLegalstart.d.ts +1 -0
- package/dist/cjs/types/Enum/BrandLegalstart.d.ts.map +1 -1
- package/dist/cjs/types/Enum/BrandLegalstart.js +1 -0
- package/dist/cjs/types/Enum/BrandLegalstart.js.map +1 -1
- package/dist/cjs/types/Enum/BrandPourcentage.d.ts +4 -0
- package/dist/cjs/types/Enum/BrandPourcentage.d.ts.map +1 -1
- package/dist/cjs/types/Enum/BrandPourcentage.js +6 -0
- package/dist/cjs/types/Enum/BrandPourcentage.js.map +1 -1
- package/dist/cjs/types/Interface/api/thirdParty/CreateThirdPartyForm.d.ts +1 -0
- package/dist/cjs/types/Interface/api/thirdParty/CreateThirdPartyForm.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/thirdParty/CreateThirdPartyForm.js +4 -0
- package/dist/cjs/types/Interface/api/thirdParty/CreateThirdPartyForm.js.map +1 -1
- package/dist/cjs/types/Interface/api/thirdParty/UpdateThirdPartyForm.d.ts +1 -0
- package/dist/cjs/types/Interface/api/thirdParty/UpdateThirdPartyForm.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/thirdParty/UpdateThirdPartyForm.js +4 -0
- package/dist/cjs/types/Interface/api/thirdParty/UpdateThirdPartyForm.js.map +1 -1
- package/dist/cjs/types/Interface/api/webmail/ExportEmails.d.ts +7 -0
- package/dist/cjs/types/Interface/api/webmail/ExportEmails.d.ts.map +1 -0
- package/dist/cjs/types/Interface/api/webmail/ExportEmails.js +42 -0
- package/dist/cjs/types/Interface/api/webmail/ExportEmails.js.map +1 -0
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/cjs/types/index.d.ts.map +1 -1
- package/dist/cjs/types/index.js +1 -0
- package/dist/cjs/types/index.js.map +1 -1
- package/dist/mjs/types/Enum/BrandClementine.d.ts +61 -0
- package/dist/mjs/types/Enum/BrandClementine.d.ts.map +1 -1
- package/dist/mjs/types/Enum/BrandClementine.js +5 -0
- package/dist/mjs/types/Enum/BrandClementine.js.map +1 -1
- package/dist/mjs/types/Enum/BrandLegalstart.d.ts +1 -0
- package/dist/mjs/types/Enum/BrandLegalstart.d.ts.map +1 -1
- package/dist/mjs/types/Enum/BrandLegalstart.js +1 -0
- package/dist/mjs/types/Enum/BrandLegalstart.js.map +1 -1
- package/dist/mjs/types/Enum/BrandPourcentage.d.ts +4 -0
- package/dist/mjs/types/Enum/BrandPourcentage.d.ts.map +1 -1
- package/dist/mjs/types/Enum/BrandPourcentage.js +6 -0
- package/dist/mjs/types/Enum/BrandPourcentage.js.map +1 -1
- package/dist/mjs/types/Interface/api/thirdParty/CreateThirdPartyForm.d.ts +1 -0
- package/dist/mjs/types/Interface/api/thirdParty/CreateThirdPartyForm.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/thirdParty/CreateThirdPartyForm.js +5 -0
- package/dist/mjs/types/Interface/api/thirdParty/CreateThirdPartyForm.js.map +1 -1
- package/dist/mjs/types/Interface/api/thirdParty/UpdateThirdPartyForm.d.ts +1 -0
- package/dist/mjs/types/Interface/api/thirdParty/UpdateThirdPartyForm.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/thirdParty/UpdateThirdPartyForm.js +5 -0
- package/dist/mjs/types/Interface/api/thirdParty/UpdateThirdPartyForm.js.map +1 -1
- package/dist/mjs/types/Interface/api/webmail/ExportEmails.d.ts +7 -0
- package/dist/mjs/types/Interface/api/webmail/ExportEmails.d.ts.map +1 -0
- package/dist/mjs/types/Interface/api/webmail/ExportEmails.js +42 -0
- package/dist/mjs/types/Interface/api/webmail/ExportEmails.js.map +1 -0
- package/dist/mjs/types/index.d.ts +1 -0
- package/dist/mjs/types/index.d.ts.map +1 -1
- package/dist/mjs/types/index.js +1 -0
- package/dist/mjs/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/types/Enum/BrandClementine.ts +5 -0
- package/ts/types/Enum/BrandLegalstart.ts +1 -0
- package/ts/types/Enum/BrandPourcentage.ts +6 -0
- package/ts/types/Interface/api/thirdParty/CreateThirdPartyForm.ts +3 -0
- package/ts/types/Interface/api/thirdParty/UpdateThirdPartyForm.ts +3 -0
- package/ts/types/Interface/api/webmail/ExportEmails.ts +27 -0
- package/ts/types/index.ts +1 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import {
|
|
2
|
+
IsDate,
|
|
3
|
+
IsInt, IsOptional,
|
|
4
|
+
} from 'class-validator';
|
|
5
|
+
import { ApiPropertyOptional } from '../../../../utils';
|
|
6
|
+
|
|
7
|
+
export class ExportEmailsParams {
|
|
8
|
+
@ApiPropertyOptional()
|
|
9
|
+
@IsOptional()
|
|
10
|
+
@IsInt()
|
|
11
|
+
idSociety?: number;
|
|
12
|
+
|
|
13
|
+
@ApiPropertyOptional()
|
|
14
|
+
@IsOptional()
|
|
15
|
+
@IsDate()
|
|
16
|
+
startDate?: Date;
|
|
17
|
+
|
|
18
|
+
@ApiPropertyOptional()
|
|
19
|
+
@IsOptional()
|
|
20
|
+
@IsDate()
|
|
21
|
+
startEnd?: Date;
|
|
22
|
+
|
|
23
|
+
@ApiPropertyOptional()
|
|
24
|
+
@IsOptional()
|
|
25
|
+
@IsInt({ each: true })
|
|
26
|
+
sendingType?: number[];
|
|
27
|
+
}
|
package/ts/types/index.ts
CHANGED
|
@@ -652,6 +652,7 @@ export * from './Interface/api/salesContract/SendSalesContractParams';
|
|
|
652
652
|
export * from './Interface/api/salesContract/GenerateSalesContractParams';
|
|
653
653
|
export * from './Interface/api/webmail/CreateMailFromLambda';
|
|
654
654
|
export * from './Interface/api/webmail/MigrateMailAddresses';
|
|
655
|
+
export * from './Interface/api/webmail/ExportEmails';
|
|
655
656
|
export * from './Interface/api/webmail/PostAttachmentEmailFromLambdaParams';
|
|
656
657
|
export * from './Interface/api/webmail/GetPaginatedWhereObjectParams';
|
|
657
658
|
export * from './Interface/api/promoCode/CreateDefaultPromoCode';
|