@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.
Files changed (47) hide show
  1. package/es/api/resources/Simulation.d.ts +2 -2
  2. package/es/api/resources/Simulation.d.ts.map +1 -1
  3. package/es/api/resources/Simulation.js.map +1 -1
  4. package/es/types/Enum/ImmobilizationType.d.ts +2 -2
  5. package/es/types/Enum/ImmobilizationType.js +2 -2
  6. package/es/types/Enum/ImmobilizationType.js.map +1 -1
  7. package/es/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.d.ts +3 -3
  8. package/es/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.d.ts.map +1 -1
  9. package/es/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.js +24 -1
  10. package/es/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.js.map +1 -1
  11. package/es/types/Interface/api/accountingTransaction/QueryTransaction.d.ts +17 -0
  12. package/es/types/Interface/api/accountingTransaction/QueryTransaction.d.ts.map +1 -0
  13. package/es/types/Interface/api/accountingTransaction/QueryTransaction.js +65 -0
  14. package/es/types/Interface/api/accountingTransaction/QueryTransaction.js.map +1 -0
  15. package/es/types/Interface/api/simulationColors/ReadSimulationColors.d.ts +2 -1
  16. package/es/types/Interface/api/simulationColors/ReadSimulationColors.d.ts.map +1 -1
  17. package/es/types/Interface/api/simulationColors/ReadSimulationColors.js +7 -3
  18. package/es/types/Interface/api/simulationColors/ReadSimulationColors.js.map +1 -1
  19. package/es/types/index.d.ts +1 -0
  20. package/es/types/index.d.ts.map +1 -1
  21. package/es/types/index.js +1 -0
  22. package/es/types/index.js.map +1 -1
  23. package/es/utils/decorators.d.ts +1 -0
  24. package/es/utils/decorators.d.ts.map +1 -1
  25. package/es/utils/decorators.js +1 -1
  26. package/es/utils/decorators.js.map +1 -1
  27. package/js/api/resources/Simulation.js.map +1 -1
  28. package/js/types/Enum/ImmobilizationType.js +2 -2
  29. package/js/types/Enum/ImmobilizationType.js.map +1 -1
  30. package/js/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.js +25 -0
  31. package/js/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.js.map +1 -1
  32. package/js/types/Interface/api/accountingTransaction/QueryTransaction.js +51 -0
  33. package/js/types/Interface/api/accountingTransaction/QueryTransaction.js.map +1 -0
  34. package/js/types/Interface/api/simulationColors/ReadSimulationColors.js +7 -5
  35. package/js/types/Interface/api/simulationColors/ReadSimulationColors.js.map +1 -1
  36. package/js/types/index.js +12 -0
  37. package/js/types/index.js.map +1 -1
  38. package/js/utils/decorators.js +2 -1
  39. package/js/utils/decorators.js.map +1 -1
  40. package/package.json +1 -1
  41. package/ts/api/resources/Simulation.ts +2 -2
  42. package/ts/types/Enum/ImmobilizationType.ts +2 -2
  43. package/ts/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.ts +9 -5
  44. package/ts/types/Interface/api/accountingTransaction/QueryTransaction.ts +44 -0
  45. package/ts/types/Interface/api/simulationColors/ReadSimulationColors.ts +4 -1
  46. package/ts/types/index.ts +1 -0
  47. 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';
@@ -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 };