@silexpert/core 1.0.89 → 1.0.90

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 (41) hide show
  1. package/es/types/Enum/BankCollectingState.d.ts +11 -0
  2. package/es/types/Enum/BankCollectingState.d.ts.map +1 -0
  3. package/es/types/Enum/BankCollectingState.js +26 -0
  4. package/es/types/Enum/BankCollectingState.js.map +1 -0
  5. package/es/types/Enum/Phone.d.ts +38 -0
  6. package/es/types/Enum/Phone.d.ts.map +1 -0
  7. package/es/types/Enum/Phone.js +38 -0
  8. package/es/types/Enum/Phone.js.map +1 -0
  9. package/es/types/Interface/api/file/TFile.d.ts +1 -0
  10. package/es/types/Interface/api/file/TFile.d.ts.map +1 -1
  11. package/es/types/Interface/api/file/TFile.js.map +1 -1
  12. package/es/types/Interface/api/society/SocietyWithStatsCaParams.d.ts +1 -0
  13. package/es/types/Interface/api/society/SocietyWithStatsCaParams.d.ts.map +1 -1
  14. package/es/types/Interface/api/society/SocietyWithStatsCaParams.js.map +1 -1
  15. package/es/types/Interface/api/taxDeadline/QueryTaxDeadline.d.ts +2 -1
  16. package/es/types/Interface/api/taxDeadline/QueryTaxDeadline.d.ts.map +1 -1
  17. package/es/types/Interface/api/taxDeadline/QueryTaxDeadline.js +5 -1
  18. package/es/types/Interface/api/taxDeadline/QueryTaxDeadline.js.map +1 -1
  19. package/es/types/Interface/models/ISociety.d.ts +2 -1
  20. package/es/types/Interface/models/ISociety.d.ts.map +1 -1
  21. package/es/types/Interface/models/ISociety.js.map +1 -1
  22. package/es/types/index.d.ts +2 -0
  23. package/es/types/index.d.ts.map +1 -1
  24. package/es/types/index.js +2 -0
  25. package/es/types/index.js.map +1 -1
  26. package/js/types/Enum/BankCollectingState.js +28 -0
  27. package/js/types/Enum/BankCollectingState.js.map +1 -0
  28. package/js/types/Enum/Phone.js +43 -0
  29. package/js/types/Enum/Phone.js.map +1 -0
  30. package/js/types/Interface/api/taxDeadline/QueryTaxDeadline.js +5 -0
  31. package/js/types/Interface/api/taxDeadline/QueryTaxDeadline.js.map +1 -1
  32. package/js/types/index.js +24 -0
  33. package/js/types/index.js.map +1 -1
  34. package/package.json +1 -1
  35. package/ts/types/Enum/BankCollectingState.ts +24 -0
  36. package/ts/types/Enum/Phone.ts +37 -0
  37. package/ts/types/Interface/api/file/TFile.ts +2 -1
  38. package/ts/types/Interface/api/society/SocietyWithStatsCaParams.ts +2 -1
  39. package/ts/types/Interface/api/taxDeadline/QueryTaxDeadline.ts +4 -1
  40. package/ts/types/Interface/models/ISociety.ts +2 -1
  41. package/ts/types/index.ts +2 -0
@@ -1,6 +1,6 @@
1
1
  import { IsOptional, IsEnum } from 'class-validator';
2
2
  import { ApiProperty, ApiPropertyOptional } from '../../../../utils';
3
- import { VatRegime, ToDoOrDone } from '../../..';
3
+ import { VatRegime, ToDoOrDone, BankCollectingState } from '../../..';
4
4
  import { ComptaType } from '../../../Enum/ComptaType';
5
5
  import { TaxSystem } from '../../../Enum/TaxSystem';
6
6
  import { Supervision } from '../../../Enum/Supervision';
@@ -49,6 +49,9 @@ export class QueryTaxDeadline {
49
49
  @ApiPropertyOptional({ description: 'État de la supervision', enum: Supervision })
50
50
  idSupervisionState?: Supervision;
51
51
 
52
+ @ApiPropertyOptional({ description: 'État de l encaissement', enum: BankCollectingState })
53
+ bankCollectingState?: BankCollectingState[];
54
+
52
55
  @ApiPropertyOptional({ description: 'Statuts de l\'IS/IR' })
53
56
  @IsOptional()
54
57
  @IsEnum(ToDoOrDone)
@@ -48,7 +48,7 @@ import { ISms } from './ISms';
48
48
  import { IUser } from './IUser';
49
49
  import { ISocietyEvent } from './ISocietyEvent';
50
50
  import {
51
- ComptaType, CountryId, INafCode, IPartneredAccountantCompanyService, Sector, UnpaidDetail, IPartneredAccountantToSociety, IMail, IAccountingTransaction, IFecFile, IGedFile, IBusinessPartner, IPaymentSchedule,
51
+ ComptaType, CountryId, INafCode, IPartneredAccountantCompanyService, Sector, UnpaidDetail, IPartneredAccountantToSociety, IMail, IAccountingTransaction, IFecFile, IGedFile, IBusinessPartner, IPaymentSchedule, IRegulate,
52
52
  } from '../..';
53
53
  import { IBrandType } from './IBrandType';
54
54
 
@@ -199,6 +199,7 @@ export interface ISociety {
199
199
  logs?: ILog[];
200
200
  sms?: ISms[];
201
201
  users?: IUser[];
202
+ regulates?: IRegulate[];
202
203
  brandType?: IBrandType;
203
204
  partneredAccountantCompaniesServices: IPartneredAccountantCompanyService[];
204
205
  partneredAccountantRelated: IPartneredAccountantToSociety;
package/ts/types/index.ts CHANGED
@@ -460,6 +460,8 @@ export * from './Enum/ReportService';
460
460
  export * from './Enum/RegulateType';
461
461
  export * from './Enum/ProcessingState';
462
462
  export * from './Enum/InpiType';
463
+ export * from './Enum/BankCollectingState';
464
+ export * from './Enum/Phone';
463
465
 
464
466
  // Interfaces API
465
467
  export * from './Interface/api/partnerTransactionType/ReadPartnerTransactionType';