@silexpert/core 0.4.3 → 0.4.5
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/Simulation.d.ts +2 -2
- package/es/api/resources/Simulation.d.ts.map +1 -1
- package/es/api/resources/Simulation.js.map +1 -1
- package/es/types/Enum/ImmobilizationType.d.ts +2 -2
- package/es/types/Enum/ImmobilizationType.js +2 -2
- package/es/types/Enum/ImmobilizationType.js.map +1 -1
- package/es/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.d.ts +3 -3
- package/es/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.d.ts.map +1 -1
- package/es/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.js +24 -1
- package/es/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.js.map +1 -1
- package/es/types/Interface/api/accountingTransaction/QueryTransaction.d.ts +17 -0
- package/es/types/Interface/api/accountingTransaction/QueryTransaction.d.ts.map +1 -0
- package/es/types/Interface/api/accountingTransaction/QueryTransaction.js +65 -0
- package/es/types/Interface/api/accountingTransaction/QueryTransaction.js.map +1 -0
- package/es/types/Interface/api/simulationColors/ReadSimulationColors.d.ts +2 -1
- package/es/types/Interface/api/simulationColors/ReadSimulationColors.d.ts.map +1 -1
- package/es/types/Interface/api/simulationColors/ReadSimulationColors.js +7 -3
- package/es/types/Interface/api/simulationColors/ReadSimulationColors.js.map +1 -1
- package/es/types/index.d.ts +1 -0
- package/es/types/index.d.ts.map +1 -1
- package/es/types/index.js +1 -0
- package/es/types/index.js.map +1 -1
- package/es/utils/decorators.d.ts +1 -0
- package/es/utils/decorators.d.ts.map +1 -1
- package/es/utils/decorators.js +1 -1
- package/es/utils/decorators.js.map +1 -1
- package/js/api/resources/Simulation.js.map +1 -1
- package/js/types/Enum/ImmobilizationType.js +2 -2
- package/js/types/Enum/ImmobilizationType.js.map +1 -1
- package/js/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.js +25 -0
- package/js/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.js.map +1 -1
- package/js/types/Interface/api/accountingTransaction/QueryTransaction.js +51 -0
- package/js/types/Interface/api/accountingTransaction/QueryTransaction.js.map +1 -0
- package/js/types/Interface/api/simulationColors/ReadSimulationColors.js +7 -5
- package/js/types/Interface/api/simulationColors/ReadSimulationColors.js.map +1 -1
- package/js/types/index.js +12 -0
- package/js/types/index.js.map +1 -1
- package/js/utils/decorators.js +2 -1
- package/js/utils/decorators.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/Simulation.ts +2 -2
- package/ts/types/Enum/ImmobilizationType.ts +2 -2
- package/ts/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.ts +9 -5
- package/ts/types/Interface/api/accountingTransaction/QueryTransaction.ts +44 -0
- package/ts/types/Interface/api/simulationColors/ReadSimulationColors.ts +4 -1
- package/ts/types/index.ts +1 -0
- package/ts/utils/decorators.ts +1 -1
package/ts/types/index.ts
CHANGED
|
@@ -303,6 +303,7 @@ export * from './Interface/api/paymentExpectationCustomer/UpdatePaymentExpectati
|
|
|
303
303
|
export * from './Interface/api/paymentExpectationCustomer/CreatePaymentExpectationCustomer';
|
|
304
304
|
export * from './Interface/api/accountType/ReadAccountType';
|
|
305
305
|
export * from './Interface/api/account/QueryAccounts';
|
|
306
|
+
export * from './Interface/api/accountingTransaction/QueryTransaction';
|
|
306
307
|
export * from './Interface/api/user/QueryConfirm';
|
|
307
308
|
export * from './Interface/api/user/QueryResendConfirmationLink';
|
|
308
309
|
export * from './Interface/api/account/ReadAccounts';
|
package/ts/utils/decorators.ts
CHANGED
|
@@ -16,4 +16,4 @@ const retrieveDecorator = (name: 'ApiPropertyOptional' | 'ApiProperty') => {
|
|
|
16
16
|
export const ApiPropertyOptional = retrieveDecorator('ApiPropertyOptional');
|
|
17
17
|
export const ApiProperty = retrieveDecorator('ApiProperty');
|
|
18
18
|
|
|
19
|
-
export default { ApiPropertyOptional };
|
|
19
|
+
export default { ApiPropertyOptional, ApiProperty };
|