@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.
Files changed (54) hide show
  1. package/dist/cjs/types/Enum/Activity.js +1 -1
  2. package/dist/cjs/types/Enum/Activity.js.map +1 -1
  3. package/dist/cjs/types/Enum/BalanceSheet.d.ts +1 -1
  4. package/dist/cjs/types/Enum/BalanceSheet.js +1 -1
  5. package/dist/cjs/types/Enum/BalanceSheet.js.map +1 -1
  6. package/dist/cjs/types/Interface/api/companyCreationForm/CompanyCreationFormPayload.d.ts +1 -0
  7. package/dist/cjs/types/Interface/api/companyCreationForm/CompanyCreationFormPayload.d.ts.map +1 -1
  8. package/dist/cjs/types/Interface/api/companyCreationForm/CompanyCreationFormPayload.js.map +1 -1
  9. package/dist/cjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.d.ts +1 -0
  10. package/dist/cjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.d.ts.map +1 -1
  11. package/dist/cjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.js +6 -0
  12. package/dist/cjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.js.map +1 -1
  13. package/dist/cjs/types/Interface/api/pdf/ReadPdfizer.d.ts +1 -0
  14. package/dist/cjs/types/Interface/api/pdf/ReadPdfizer.d.ts.map +1 -1
  15. package/dist/cjs/types/Interface/api/pdf/ReadPdfizer.js.map +1 -1
  16. package/dist/cjs/types/Interface/api/sellsy/CreateInvoicesSellsy.d.ts +5 -0
  17. package/dist/cjs/types/Interface/api/sellsy/CreateInvoicesSellsy.d.ts.map +1 -0
  18. package/dist/cjs/types/Interface/api/sellsy/CreateInvoicesSellsy.js +30 -0
  19. package/dist/cjs/types/Interface/api/sellsy/CreateInvoicesSellsy.js.map +1 -0
  20. package/dist/cjs/types/index.d.ts +1 -0
  21. package/dist/cjs/types/index.d.ts.map +1 -1
  22. package/dist/cjs/types/index.js +1 -0
  23. package/dist/cjs/types/index.js.map +1 -1
  24. package/dist/mjs/types/Enum/Activity.js +1 -1
  25. package/dist/mjs/types/Enum/Activity.js.map +1 -1
  26. package/dist/mjs/types/Enum/BalanceSheet.d.ts +1 -1
  27. package/dist/mjs/types/Enum/BalanceSheet.js +1 -1
  28. package/dist/mjs/types/Enum/BalanceSheet.js.map +1 -1
  29. package/dist/mjs/types/Interface/api/companyCreationForm/CompanyCreationFormPayload.d.ts +1 -0
  30. package/dist/mjs/types/Interface/api/companyCreationForm/CompanyCreationFormPayload.d.ts.map +1 -1
  31. package/dist/mjs/types/Interface/api/companyCreationForm/CompanyCreationFormPayload.js.map +1 -1
  32. package/dist/mjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.d.ts +1 -0
  33. package/dist/mjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.d.ts.map +1 -1
  34. package/dist/mjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.js +7 -0
  35. package/dist/mjs/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.js.map +1 -1
  36. package/dist/mjs/types/Interface/api/pdf/ReadPdfizer.d.ts +1 -0
  37. package/dist/mjs/types/Interface/api/pdf/ReadPdfizer.d.ts.map +1 -1
  38. package/dist/mjs/types/Interface/api/pdf/ReadPdfizer.js.map +1 -1
  39. package/dist/mjs/types/Interface/api/sellsy/CreateInvoicesSellsy.d.ts +5 -0
  40. package/dist/mjs/types/Interface/api/sellsy/CreateInvoicesSellsy.d.ts.map +1 -0
  41. package/dist/mjs/types/Interface/api/sellsy/CreateInvoicesSellsy.js +28 -0
  42. package/dist/mjs/types/Interface/api/sellsy/CreateInvoicesSellsy.js.map +1 -0
  43. package/dist/mjs/types/index.d.ts +1 -0
  44. package/dist/mjs/types/index.d.ts.map +1 -1
  45. package/dist/mjs/types/index.js +1 -0
  46. package/dist/mjs/types/index.js.map +1 -1
  47. package/package.json +1 -1
  48. package/ts/types/Enum/Activity.ts +1 -1
  49. package/ts/types/Enum/BalanceSheet.ts +1 -1
  50. package/ts/types/Interface/api/companyCreationForm/CompanyCreationFormPayload.ts +2 -0
  51. package/ts/types/Interface/api/companyCreationForm/CreateCompanyCreationForm.ts +5 -0
  52. package/ts/types/Interface/api/pdf/ReadPdfizer.ts +1 -1
  53. package/ts/types/Interface/api/sellsy/CreateInvoicesSellsy.ts +14 -0
  54. 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