@silexpert/core 1.1.352 → 1.1.353
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/Activity.js +1 -1
- package/dist/cjs/types/Enum/Activity.js.map +1 -1
- package/dist/cjs/types/Enum/BalanceSheet.d.ts +1 -1
- package/dist/cjs/types/Enum/BalanceSheet.js +1 -1
- package/dist/cjs/types/Enum/BalanceSheet.js.map +1 -1
- package/dist/cjs/types/Interface/api/companyCreationForm/CompanyCreationFormPayload.d.ts +1 -0
- package/dist/cjs/types/Interface/api/companyCreationForm/CompanyCreationFormPayload.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/companyCreationForm/CompanyCreationFormPayload.js.map +1 -1
- package/dist/cjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.d.ts +1 -0
- package/dist/cjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.js +6 -0
- package/dist/cjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.js.map +1 -1
- package/dist/cjs/types/Interface/api/pdf/ReadPdfizer.d.ts +1 -0
- package/dist/cjs/types/Interface/api/pdf/ReadPdfizer.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/pdf/ReadPdfizer.js.map +1 -1
- package/dist/cjs/types/Interface/api/sellsy/CreateInvoicesSellsy.d.ts +5 -0
- package/dist/cjs/types/Interface/api/sellsy/CreateInvoicesSellsy.d.ts.map +1 -0
- package/dist/cjs/types/Interface/api/sellsy/CreateInvoicesSellsy.js +30 -0
- package/dist/cjs/types/Interface/api/sellsy/CreateInvoicesSellsy.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/Activity.js +1 -1
- package/dist/mjs/types/Enum/Activity.js.map +1 -1
- package/dist/mjs/types/Enum/BalanceSheet.d.ts +1 -1
- package/dist/mjs/types/Enum/BalanceSheet.js +1 -1
- package/dist/mjs/types/Enum/BalanceSheet.js.map +1 -1
- package/dist/mjs/types/Interface/api/companyCreationForm/CompanyCreationFormPayload.d.ts +1 -0
- package/dist/mjs/types/Interface/api/companyCreationForm/CompanyCreationFormPayload.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/companyCreationForm/CompanyCreationFormPayload.js.map +1 -1
- package/dist/mjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.d.ts +1 -0
- package/dist/mjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.js +7 -0
- package/dist/mjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.js.map +1 -1
- package/dist/mjs/types/Interface/api/pdf/ReadPdfizer.d.ts +1 -0
- package/dist/mjs/types/Interface/api/pdf/ReadPdfizer.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/pdf/ReadPdfizer.js.map +1 -1
- package/dist/mjs/types/Interface/api/sellsy/CreateInvoicesSellsy.d.ts +5 -0
- package/dist/mjs/types/Interface/api/sellsy/CreateInvoicesSellsy.d.ts.map +1 -0
- package/dist/mjs/types/Interface/api/sellsy/CreateInvoicesSellsy.js +28 -0
- package/dist/mjs/types/Interface/api/sellsy/CreateInvoicesSellsy.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/Activity.ts +1 -1
- package/ts/types/Enum/BalanceSheet.ts +1 -1
- package/ts/types/Interface/api/companyCreationForm/CompanyCreationFormPayload.ts +2 -0
- package/ts/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.ts +5 -0
- package/ts/types/Interface/api/pdf/ReadPdfizer.ts +1 -1
- package/ts/types/Interface/api/sellsy/CreateInvoicesSellsy.ts +14 -0
- package/ts/types/index.ts +1 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { IsInt, IsOptional } from 'class-validator';
|
|
2
|
+
import { ApiPropertyOptional } from '../../../../utils';
|
|
3
|
+
|
|
4
|
+
export class CreateInvoicesSellsy {
|
|
5
|
+
@ApiPropertyOptional()
|
|
6
|
+
@IsOptional()
|
|
7
|
+
@IsInt()
|
|
8
|
+
limit?: number;
|
|
9
|
+
|
|
10
|
+
@ApiPropertyOptional()
|
|
11
|
+
@IsOptional()
|
|
12
|
+
@IsInt()
|
|
13
|
+
idSociety?: number;
|
|
14
|
+
}
|
package/ts/types/index.ts
CHANGED
|
@@ -1080,6 +1080,7 @@ export * from './Interface/api/userSocietyPermission/QueryDeleteSocietyPermissio
|
|
|
1080
1080
|
export * from './Interface/api/companyCreationForm/CreateCompanyCreationForm';
|
|
1081
1081
|
export * from './Interface/api/companyCreationForm/UpdateCompanyCreationForm';
|
|
1082
1082
|
export * from './Interface/api/companyCreationForm/CompanyCreationFormPayload';
|
|
1083
|
+
export * from './Interface/api/sellsy/CreateInvoicesSellsy';
|
|
1083
1084
|
|
|
1084
1085
|
|
|
1085
1086
|
// Enums types
|