@silexpert/core 0.4.274 → 0.4.277
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/api/resources/Dashboard.d.ts +2 -1
- package/es/api/resources/Dashboard.d.ts.map +1 -1
- package/es/api/resources/Dashboard.js +3 -0
- package/es/api/resources/Dashboard.js.map +1 -1
- package/es/types/Enum/CustomerVat.d.ts +24 -0
- package/es/types/Enum/CustomerVat.d.ts.map +1 -0
- package/es/types/Enum/CustomerVat.js +26 -0
- package/es/types/Enum/CustomerVat.js.map +1 -0
- package/es/types/Enum/RoleDetail.d.ts +7 -0
- package/es/types/Enum/RoleDetail.d.ts.map +1 -1
- package/es/types/Enum/RoleDetail.js +7 -0
- package/es/types/Enum/RoleDetail.js.map +1 -1
- package/es/types/Interface/api/3cx/Query3cxSearch.d.ts +1 -0
- package/es/types/Interface/api/3cx/Query3cxSearch.d.ts.map +1 -1
- package/es/types/Interface/api/3cx/Query3cxSearch.js +6 -0
- package/es/types/Interface/api/3cx/Query3cxSearch.js.map +1 -1
- package/es/types/Interface/api/dashboard/QueryVatDisbursed.d.ts +5 -0
- package/es/types/Interface/api/dashboard/QueryVatDisbursed.d.ts.map +1 -0
- package/es/types/Interface/api/dashboard/QueryVatDisbursed.js +24 -0
- package/es/types/Interface/api/dashboard/QueryVatDisbursed.js.map +1 -0
- package/es/types/Interface/api/dashboard/ReadVatDisbursed.d.ts +13 -0
- package/es/types/Interface/api/dashboard/ReadVatDisbursed.d.ts.map +1 -0
- package/es/types/Interface/api/dashboard/ReadVatDisbursed.js +2 -0
- package/es/types/Interface/api/dashboard/ReadVatDisbursed.js.map +1 -0
- package/es/types/Interface/api/mail/QueryPaginatedMail.d.ts +1 -0
- package/es/types/Interface/api/mail/QueryPaginatedMail.d.ts.map +1 -1
- package/es/types/Interface/api/mail/QueryPaginatedMail.js +6 -0
- package/es/types/Interface/api/mail/QueryPaginatedMail.js.map +1 -1
- package/es/types/Interface/models/IExercice.d.ts +1 -0
- package/es/types/Interface/models/IExercice.d.ts.map +1 -1
- package/es/types/Interface/models/IExercice.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 +3 -0
- package/es/types/index.d.ts.map +1 -1
- package/es/types/index.js +3 -0
- package/es/types/index.js.map +1 -1
- package/js/api/resources/Dashboard.js +6 -0
- package/js/api/resources/Dashboard.js.map +1 -1
- package/js/types/Enum/CustomerVat.js +34 -0
- package/js/types/Enum/CustomerVat.js.map +1 -0
- package/js/types/Enum/RoleDetail.js +7 -0
- package/js/types/Enum/RoleDetail.js.map +1 -1
- package/js/types/Interface/api/3cx/Query3cxSearch.js +2 -0
- package/js/types/Interface/api/3cx/Query3cxSearch.js.map +1 -1
- package/js/types/Interface/api/dashboard/QueryVatDisbursed.js +31 -0
- package/js/types/Interface/api/dashboard/QueryVatDisbursed.js.map +1 -0
- package/js/types/Interface/api/dashboard/ReadVatDisbursed.js +6 -0
- package/js/types/Interface/api/dashboard/ReadVatDisbursed.js.map +1 -0
- package/js/types/Interface/api/mail/QueryPaginatedMail.js +2 -0
- package/js/types/Interface/api/mail/QueryPaginatedMail.js.map +1 -1
- package/js/types/index.js +36 -0
- package/js/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/Dashboard.ts +6 -0
- package/ts/types/Enum/CustomerVat.ts +24 -0
- package/ts/types/Enum/RoleDetail.ts +7 -0
- package/ts/types/Interface/api/3cx/Query3cxSearch.ts +5 -0
- package/ts/types/Interface/api/dashboard/QueryVatDisbursed.ts +12 -0
- package/ts/types/Interface/api/dashboard/ReadVatDisbursed.ts +14 -0
- package/ts/types/Interface/api/mail/QueryPaginatedMail.ts +5 -0
- package/ts/types/Interface/models/IExercice.ts +1 -0
- package/ts/types/Interface/models/ISociety.ts +2 -1
- package/ts/types/index.ts +3 -0
|
@@ -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, Country, INafCode, IPartneredAccountantCompanyService, Sector, UnpaidDetail, IPartneredAccountantToSociety, IMail, IAccountingTransaction,
|
|
51
|
+
ComptaType, Country, INafCode, IPartneredAccountantCompanyService, Sector, UnpaidDetail, IPartneredAccountantToSociety, IMail, IAccountingTransaction, IFecFile,
|
|
52
52
|
} from '../..';
|
|
53
53
|
import { IBrandType } from './IBrandType';
|
|
54
54
|
|
|
@@ -204,4 +204,5 @@ export interface ISociety {
|
|
|
204
204
|
events: ISocietyEvent[];
|
|
205
205
|
mails: IMail[];
|
|
206
206
|
transactions: IAccountingTransaction[];
|
|
207
|
+
fecFile: IFecFile | null
|
|
207
208
|
}
|
package/ts/types/index.ts
CHANGED
|
@@ -434,6 +434,7 @@ export * from './Enum/Call';
|
|
|
434
434
|
export * from './Enum/ConnectionError';
|
|
435
435
|
export * from './Enum/FolderFile';
|
|
436
436
|
export * from './Enum/Rules';
|
|
437
|
+
export * from './Enum/CustomerVat';
|
|
437
438
|
|
|
438
439
|
// Interfaces API
|
|
439
440
|
export * from './Interface/api/partnerTransactionType/ReadPartnerTransactionType';
|
|
@@ -519,6 +520,8 @@ export * from './Interface/api/pdf/BillingDocumentData';
|
|
|
519
520
|
export * from './Interface/api/dashboard/QueryBalanceBankAccount';
|
|
520
521
|
export * from './Interface/api/dashboard/QueryTopBuys';
|
|
521
522
|
export * from './Interface/api/dashboard/QueryTopProviders';
|
|
523
|
+
export * from './Interface/api/dashboard/QueryVatDisbursed';
|
|
524
|
+
export * from './Interface/api/dashboard/ReadVatDisbursed';
|
|
522
525
|
export * from './Interface/api/dashboard/ReadBalanceBankAccount';
|
|
523
526
|
export * from './Interface/api/dashboard/QueryGescom';
|
|
524
527
|
export * from './Interface/api/dashboard/QueryDeadline';
|