@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.
- package/es/types/Enum/BankCollectingState.d.ts +11 -0
- package/es/types/Enum/BankCollectingState.d.ts.map +1 -0
- package/es/types/Enum/BankCollectingState.js +26 -0
- package/es/types/Enum/BankCollectingState.js.map +1 -0
- package/es/types/Enum/Phone.d.ts +38 -0
- package/es/types/Enum/Phone.d.ts.map +1 -0
- package/es/types/Enum/Phone.js +38 -0
- package/es/types/Enum/Phone.js.map +1 -0
- package/es/types/Interface/api/file/TFile.d.ts +1 -0
- package/es/types/Interface/api/file/TFile.d.ts.map +1 -1
- package/es/types/Interface/api/file/TFile.js.map +1 -1
- package/es/types/Interface/api/society/SocietyWithStatsCaParams.d.ts +1 -0
- package/es/types/Interface/api/society/SocietyWithStatsCaParams.d.ts.map +1 -1
- package/es/types/Interface/api/society/SocietyWithStatsCaParams.js.map +1 -1
- package/es/types/Interface/api/taxDeadline/QueryTaxDeadline.d.ts +2 -1
- package/es/types/Interface/api/taxDeadline/QueryTaxDeadline.d.ts.map +1 -1
- package/es/types/Interface/api/taxDeadline/QueryTaxDeadline.js +5 -1
- package/es/types/Interface/api/taxDeadline/QueryTaxDeadline.js.map +1 -1
- package/es/types/Interface/models/ISociety.d.ts +2 -1
- package/es/types/Interface/models/ISociety.d.ts.map +1 -1
- package/es/types/Interface/models/ISociety.js.map +1 -1
- package/es/types/index.d.ts +2 -0
- package/es/types/index.d.ts.map +1 -1
- package/es/types/index.js +2 -0
- package/es/types/index.js.map +1 -1
- package/js/types/Enum/BankCollectingState.js +28 -0
- package/js/types/Enum/BankCollectingState.js.map +1 -0
- package/js/types/Enum/Phone.js +43 -0
- package/js/types/Enum/Phone.js.map +1 -0
- package/js/types/Interface/api/taxDeadline/QueryTaxDeadline.js +5 -0
- package/js/types/Interface/api/taxDeadline/QueryTaxDeadline.js.map +1 -1
- package/js/types/index.js +24 -0
- package/js/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/types/Enum/BankCollectingState.ts +24 -0
- package/ts/types/Enum/Phone.ts +37 -0
- package/ts/types/Interface/api/file/TFile.ts +2 -1
- package/ts/types/Interface/api/society/SocietyWithStatsCaParams.ts +2 -1
- package/ts/types/Interface/api/taxDeadline/QueryTaxDeadline.ts +4 -1
- package/ts/types/Interface/models/ISociety.ts +2 -1
- 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';
|