@silexpert/core 0.4.151 → 0.4.153

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 (92) hide show
  1. package/es/api/resources/Dashboard.d.ts +2 -3
  2. package/es/api/resources/Dashboard.d.ts.map +1 -1
  3. package/es/api/resources/Dashboard.js +2 -5
  4. package/es/api/resources/Dashboard.js.map +1 -1
  5. package/es/api/resources/Transaction.d.ts +3 -1
  6. package/es/api/resources/Transaction.d.ts.map +1 -1
  7. package/es/api/resources/Transaction.js +6 -0
  8. package/es/api/resources/Transaction.js.map +1 -1
  9. package/es/api/resources/VatControl.d.ts +1 -2
  10. package/es/api/resources/VatControl.d.ts.map +1 -1
  11. package/es/api/resources/VatControl.js +0 -3
  12. package/es/api/resources/VatControl.js.map +1 -1
  13. package/es/types/Enum/AccountingJournal.d.ts +12 -0
  14. package/es/types/Enum/AccountingJournal.d.ts.map +1 -1
  15. package/es/types/Enum/AccountingJournal.js +12 -0
  16. package/es/types/Enum/AccountingJournal.js.map +1 -1
  17. package/es/types/Enum/BalanceSheet.js +4 -4
  18. package/es/types/Enum/BalanceSheet.js.map +1 -1
  19. package/es/types/Enum/Vat.js +1 -1
  20. package/es/types/Enum/Vat.js.map +1 -1
  21. package/es/types/Interface/api/SocietyTransaction/QuerySocietyTransactionCount.d.ts +5 -0
  22. package/es/types/Interface/api/SocietyTransaction/QuerySocietyTransactionCount.d.ts.map +1 -0
  23. package/es/types/Interface/api/SocietyTransaction/QuerySocietyTransactionCount.js +30 -0
  24. package/es/types/Interface/api/SocietyTransaction/QuerySocietyTransactionCount.js.map +1 -0
  25. package/es/types/Interface/api/SocietyTransaction/ReadSocietyTransactionCount.d.ts +13 -0
  26. package/es/types/Interface/api/SocietyTransaction/ReadSocietyTransactionCount.d.ts.map +1 -0
  27. package/es/types/Interface/api/SocietyTransaction/ReadSocietyTransactionCount.js +3 -0
  28. package/es/types/Interface/api/SocietyTransaction/ReadSocietyTransactionCount.js.map +1 -0
  29. package/es/types/Interface/api/accountingTransaction/QueryBankAccountSum.d.ts +10 -0
  30. package/es/types/Interface/api/accountingTransaction/QueryBankAccountSum.d.ts.map +1 -0
  31. package/es/types/Interface/api/{dashboard/QueryVat.js → accountingTransaction/QueryBankAccountSum.js} +19 -9
  32. package/es/types/Interface/api/accountingTransaction/QueryBankAccountSum.js.map +1 -0
  33. package/es/types/Interface/api/dashboard/ReadTurnOverProfitAndLossAndVats.d.ts +31 -0
  34. package/es/types/Interface/api/dashboard/ReadTurnOverProfitAndLossAndVats.d.ts.map +1 -0
  35. package/es/types/Interface/api/dashboard/ReadTurnOverProfitAndLossAndVats.js +13 -0
  36. package/es/types/Interface/api/dashboard/ReadTurnOverProfitAndLossAndVats.js.map +1 -0
  37. package/es/types/index.d.ts +4 -3
  38. package/es/types/index.d.ts.map +1 -1
  39. package/es/types/index.js +4 -4
  40. package/es/types/index.js.map +1 -1
  41. package/js/api/resources/Dashboard.js +2 -8
  42. package/js/api/resources/Dashboard.js.map +1 -1
  43. package/js/api/resources/Transaction.js +12 -0
  44. package/js/api/resources/Transaction.js.map +1 -1
  45. package/js/api/resources/VatControl.js +0 -6
  46. package/js/api/resources/VatControl.js.map +1 -1
  47. package/js/types/Enum/AccountingJournal.js +13 -0
  48. package/js/types/Enum/AccountingJournal.js.map +1 -1
  49. package/js/types/Enum/BalanceSheet.js +4 -4
  50. package/js/types/Enum/BalanceSheet.js.map +1 -1
  51. package/js/types/Enum/Vat.js +1 -1
  52. package/js/types/Enum/Vat.js.map +1 -1
  53. package/js/types/Interface/api/{dashboard/QueryVat.js → SocietyTransaction/QuerySocietyTransactionCount.js} +12 -6
  54. package/js/types/Interface/api/SocietyTransaction/QuerySocietyTransactionCount.js.map +1 -0
  55. package/js/types/Interface/api/SocietyTransaction/ReadSocietyTransactionCount.js +10 -0
  56. package/js/types/Interface/api/SocietyTransaction/ReadSocietyTransactionCount.js.map +1 -0
  57. package/js/types/Interface/api/accountingTransaction/QueryBankAccountSum.js +33 -0
  58. package/js/types/Interface/api/accountingTransaction/QueryBankAccountSum.js.map +1 -0
  59. package/js/types/Interface/api/dashboard/{ReadTurnOverProfitAndLoss.js → ReadTurnOverProfitAndLossAndVats.js} +13 -1
  60. package/js/types/Interface/api/dashboard/ReadTurnOverProfitAndLossAndVats.js.map +1 -0
  61. package/js/types/index.js +39 -27
  62. package/js/types/index.js.map +1 -1
  63. package/package.json +1 -1
  64. package/ts/api/resources/Dashboard.ts +4 -10
  65. package/ts/api/resources/Transaction.ts +12 -1
  66. package/ts/api/resources/VatControl.ts +1 -5
  67. package/ts/types/Enum/AccountingJournal.ts +14 -1
  68. package/ts/types/Enum/BalanceSheet.ts +4 -4
  69. package/ts/types/Enum/Vat.ts +1 -1
  70. package/ts/types/Interface/api/SocietyTransaction/QuerySocietyTransactionCount.ts +21 -0
  71. package/ts/types/Interface/api/SocietyTransaction/ReadSocietyTransactionCount.ts +12 -0
  72. package/ts/types/Interface/api/accountingTransaction/QueryBankAccountSum.ts +25 -0
  73. package/ts/types/Interface/api/dashboard/ReadTurnOverProfitAndLossAndVats.ts +35 -0
  74. package/ts/types/index.ts +4 -4
  75. package/es/types/Interface/api/dashboard/QueryVat.d.ts +0 -5
  76. package/es/types/Interface/api/dashboard/QueryVat.d.ts.map +0 -1
  77. package/es/types/Interface/api/dashboard/QueryVat.js.map +0 -1
  78. package/es/types/Interface/api/dashboard/ReadTurnOverProfitAndLoss.d.ts +0 -17
  79. package/es/types/Interface/api/dashboard/ReadTurnOverProfitAndLoss.d.ts.map +0 -1
  80. package/es/types/Interface/api/dashboard/ReadTurnOverProfitAndLoss.js +0 -7
  81. package/es/types/Interface/api/dashboard/ReadTurnOverProfitAndLoss.js.map +0 -1
  82. package/es/types/Interface/api/dashboard/ReadVat.d.ts +0 -11
  83. package/es/types/Interface/api/dashboard/ReadVat.d.ts.map +0 -1
  84. package/es/types/Interface/api/dashboard/ReadVat.js +0 -5
  85. package/es/types/Interface/api/dashboard/ReadVat.js.map +0 -1
  86. package/js/types/Interface/api/dashboard/QueryVat.js.map +0 -1
  87. package/js/types/Interface/api/dashboard/ReadTurnOverProfitAndLoss.js.map +0 -1
  88. package/js/types/Interface/api/dashboard/ReadVat.js +0 -14
  89. package/js/types/Interface/api/dashboard/ReadVat.js.map +0 -1
  90. package/ts/types/Interface/api/dashboard/QueryVat.ts +0 -9
  91. package/ts/types/Interface/api/dashboard/ReadTurnOverProfitAndLoss.ts +0 -18
  92. package/ts/types/Interface/api/dashboard/ReadVat.ts +0 -11
@@ -0,0 +1,35 @@
1
+ export class ReadTurnoverProfitAndLoss {
2
+ data: any;
3
+ chart: {
4
+ labels: Array<string>;
5
+ dataSets: Array<Chart>;
6
+ periodicity: Periocidity;
7
+ };
8
+ }
9
+
10
+ export class Chart {
11
+ label: string;
12
+ data: Array<number>;
13
+ }
14
+
15
+ export class Periocidity {
16
+ type: 'month' | 'day';
17
+ intervales: number;
18
+ }
19
+
20
+ export class ReadVat {
21
+ vats: Array<VatData>;
22
+ totalAmount: number;
23
+ isDebitor: boolean;
24
+ }
25
+
26
+ export class VatData {
27
+ label: string;
28
+ collectible: number;
29
+ deductible: number;
30
+ }
31
+
32
+ export class ReadTurnoverProfitAndLossAndVats {
33
+ turnOverProfitAndloss: ReadTurnoverProfitAndLoss;
34
+ vats: ReadVat;
35
+ }
package/ts/types/index.ts CHANGED
@@ -422,6 +422,7 @@ export * from './Interface/api/account/QueryGenericAccount';
422
422
  export * from './Interface/api/accountingTransaction/QueryTransaction';
423
423
  export * from './Interface/api/accountingTransaction/DeleteInvoices';
424
424
  export * from './Interface/api/accountingTransaction/GetTransactionsBetweenDates';
425
+ export * from './Interface/api/accountingTransaction/QueryBankAccountSum';
425
426
  export * from './Interface/api/user/QueryConfirm';
426
427
  export * from './Interface/api/user/QuerySocieties';
427
428
  export * from './Interface/api/user/QueryResendConfirmationLink';
@@ -454,19 +455,16 @@ export * from './Interface/api/accountingFiles/queryAccountingFiles';
454
455
  export * from './Interface/api/accountingFiles/Ocr';
455
456
  export * from './Interface/api/accountingFiles/OcrPayload';
456
457
  export * from './Interface/api/accountingFiles/OcrValue';
457
- // export * from './Interface/api/stock/stockEntries';
458
458
  export * from './Interface/api/stock/StockEntries';
459
459
  export * from './Interface/api/dashboard/QueryTurnoverProfitAndLoss';
460
- export * from './Interface/api/dashboard/ReadTurnOverProfitAndLoss';
460
+ export * from './Interface/api/dashboard/ReadTurnOverProfitAndLossAndVats';
461
461
  export * from './Interface/api/pdf/BillingDocumentData';
462
462
  export * from './Interface/api/dashboard/QueryBalanceBankAccount';
463
- export * from './Interface/api/dashboard/QueryVat';
464
463
  export * from './Interface/api/dashboard/QueryTopBuys';
465
464
  export * from './Interface/api/dashboard/QueryTopProviders';
466
465
  export * from './Interface/api/dashboard/ReadBalanceBankAccount';
467
466
  export * from './Interface/api/dashboard/QueryGescom';
468
467
  export * from './Interface/api/dashboard/QueryDeadline';
469
- export * from './Interface/api/dashboard/ReadVat';
470
468
  export * from './Interface/api/dashboard/ReadTopBuys';
471
469
  export * from './Interface/api/dashboard/ReadTopProviders';
472
470
  export * from './Interface/api/dashboard/ReadGescom';
@@ -502,6 +500,8 @@ export * from './Interface/api/vatDeclaration/ReadVatVariousOperations';
502
500
  export * from './Interface/api/vatDeclaration/ResultFormatToEntries';
503
501
  export * from './Interface/api/promoCode/QueryDefaultPromotion';
504
502
  export * from './Interface/api/promoCode/ReadDefaultPromotion';
503
+ export * from './Interface/api/SocietyTransaction/QuerySocietyTransactionCount';
504
+ export * from './Interface/api/SocietyTransaction/ReadSocietyTransactionCount';
505
505
 
506
506
  // export * from './Interface/api/survey/QuerySurvey';
507
507
  export * from './Interface/api/survey/ReadSurvey';
@@ -1,5 +0,0 @@
1
- export declare class QueryVat {
2
- startDate: string | Date;
3
- endDate: string | Date;
4
- }
5
- //# sourceMappingURL=QueryVat.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"QueryVat.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/dashboard/QueryVat.ts"],"names":[],"mappings":"AAEA,qBAAa,QAAQ;IAEnB,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IAGzB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;CACxB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"QueryVat.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/dashboard/QueryVat.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAEhD,MAAM,OAAO,QAAQ;CAMpB;AAJC;IADC,WAAW,EAAE;;2CACW;AAGzB;IADC,WAAW,EAAE;;yCACS","sourcesContent":["import { ApiProperty } from '../../../../utils';\n\nexport class QueryVat {\n @ApiProperty()\n startDate: string | Date;\n\n @ApiProperty()\n endDate: string | Date;\n}"]}
@@ -1,17 +0,0 @@
1
- export declare class ReadTurnoverProfitAndLoss {
2
- data: any;
3
- chart: {
4
- labels: Array<string>;
5
- dataSets: Array<Chart>;
6
- periodicity: Periocidity;
7
- };
8
- }
9
- export declare class Chart {
10
- label: string;
11
- data: Array<number>;
12
- }
13
- export declare class Periocidity {
14
- type: 'month' | 'day';
15
- intervales: number;
16
- }
17
- //# sourceMappingURL=ReadTurnOverProfitAndLoss.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ReadTurnOverProfitAndLoss.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/dashboard/ReadTurnOverProfitAndLoss.ts"],"names":[],"mappings":"AAAA,qBAAa,yBAAyB;IACpC,IAAI,EAAE,GAAG,CAAC;IACV,KAAK,EAAE;QACL,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;QACtB,QAAQ,EAAE,KAAK,CAAC,KAAK,CAAC,CAAC;QACvB,WAAW,EAAE,WAAW,CAAC;KAC1B,CAAC;CACH;AAED,qBAAa,KAAK;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CACrB;AAED,qBAAa,WAAW;IACtB,IAAI,EAAE,OAAO,GAAG,KAAK,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;CACpB"}
@@ -1,7 +0,0 @@
1
- export class ReadTurnoverProfitAndLoss {
2
- }
3
- export class Chart {
4
- }
5
- export class Periocidity {
6
- }
7
- //# sourceMappingURL=ReadTurnOverProfitAndLoss.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ReadTurnOverProfitAndLoss.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/dashboard/ReadTurnOverProfitAndLoss.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,yBAAyB;CAOrC;AAED,MAAM,OAAO,KAAK;CAGjB;AAED,MAAM,OAAO,WAAW;CAGvB","sourcesContent":["export class ReadTurnoverProfitAndLoss {\n data: any;\n chart: {\n labels: Array<string>;\n dataSets: Array<Chart>;\n periodicity: Periocidity;\n };\n}\n\nexport class Chart {\n label: string;\n data: Array<number>;\n}\n\nexport class Periocidity {\n type: 'month' | 'day';\n intervales: number;\n}\n"]}
@@ -1,11 +0,0 @@
1
- export declare class ReadVat {
2
- tvas: Array<VatData>;
3
- totalAmount: number;
4
- isDebitor: boolean;
5
- }
6
- export declare class VatData {
7
- label: string;
8
- dataCollectible: number;
9
- dataDeductible: number;
10
- }
11
- //# sourceMappingURL=ReadVat.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ReadVat.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/dashboard/ReadVat.ts"],"names":[],"mappings":"AAAA,qBAAa,OAAO;IAClB,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,OAAO,CAAC;CACpB;AAED,qBAAa,OAAO;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,eAAe,EAAE,MAAM,CAAC;IACxB,cAAc,EAAE,MAAM,CAAC;CACxB"}
@@ -1,5 +0,0 @@
1
- export class ReadVat {
2
- }
3
- export class VatData {
4
- }
5
- //# sourceMappingURL=ReadVat.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ReadVat.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/dashboard/ReadVat.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,OAAO;CAInB;AAED,MAAM,OAAO,OAAO;CAInB","sourcesContent":["export class ReadVat {\n tvas: Array<VatData>;\n totalAmount: number;\n isDebitor: boolean;\n}\n\nexport class VatData {\n label: string;\n dataCollectible: number;\n dataDeductible: number;\n}"]}
@@ -1 +0,0 @@
1
- {"version":3,"file":"QueryVat.js","mappings":";;;;;;;AAAA;;;;;;;;;;;;;;AAEM,MAAOA,QAAP,CAAe;;QAARA,Q,GAAAA,Q;;AAEXC,YADC,yBACD;;AAGAA,YADC,yBACD","names":["QueryVat","__decorate"],"sourceRoot":"","sources":["../../../../../ts/types/Interface/api/dashboard/QueryVat.ts"],"sourcesContent":["import { ApiProperty } from '../../../../utils';\n\nexport class QueryVat {\n @ApiProperty()\n startDate: string | Date;\n\n @ApiProperty()\n endDate: string | Date;\n}"]}
@@ -1 +0,0 @@
1
- {"version":3,"file":"ReadTurnOverProfitAndLoss.js","mappings":";;;;;;AAAM,MAAOA,yBAAP,CAAgC;;QAAzBA,yB,GAAAA,yB;;AASP,MAAOC,KAAP,CAAY;;QAALA,K,GAAAA,K;;AAKP,MAAOC,WAAP,CAAkB;;QAAXA,W,GAAAA,W","names":["ReadTurnoverProfitAndLoss","Chart","Periocidity"],"sourceRoot":"","sources":["../../../../../ts/types/Interface/api/dashboard/ReadTurnOverProfitAndLoss.ts"],"sourcesContent":["export class ReadTurnoverProfitAndLoss {\n data: any;\n chart: {\n labels: Array<string>;\n dataSets: Array<Chart>;\n periodicity: Periocidity;\n };\n}\n\nexport class Chart {\n label: string;\n data: Array<number>;\n}\n\nexport class Periocidity {\n type: 'month' | 'day';\n intervales: number;\n}\n"]}
@@ -1,14 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
-
7
- class ReadVat {}
8
-
9
- exports.ReadVat = ReadVat;
10
-
11
- class VatData {}
12
-
13
- exports.VatData = VatData;
14
- //# sourceMappingURL=ReadVat.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ReadVat.js","mappings":";;;;;;AAAM,MAAOA,OAAP,CAAc;;QAAPA,O,GAAAA,O;;AAMP,MAAOC,OAAP,CAAc;;QAAPA,O,GAAAA,O","names":["ReadVat","VatData"],"sourceRoot":"","sources":["../../../../../ts/types/Interface/api/dashboard/ReadVat.ts"],"sourcesContent":["export class ReadVat {\n tvas: Array<VatData>;\n totalAmount: number;\n isDebitor: boolean;\n}\n\nexport class VatData {\n label: string;\n dataCollectible: number;\n dataDeductible: number;\n}"]}
@@ -1,9 +0,0 @@
1
- import { ApiProperty } from '../../../../utils';
2
-
3
- export class QueryVat {
4
- @ApiProperty()
5
- startDate: string | Date;
6
-
7
- @ApiProperty()
8
- endDate: string | Date;
9
- }
@@ -1,18 +0,0 @@
1
- export class ReadTurnoverProfitAndLoss {
2
- data: any;
3
- chart: {
4
- labels: Array<string>;
5
- dataSets: Array<Chart>;
6
- periodicity: Periocidity;
7
- };
8
- }
9
-
10
- export class Chart {
11
- label: string;
12
- data: Array<number>;
13
- }
14
-
15
- export class Periocidity {
16
- type: 'month' | 'day';
17
- intervales: number;
18
- }
@@ -1,11 +0,0 @@
1
- export class ReadVat {
2
- tvas: Array<VatData>;
3
- totalAmount: number;
4
- isDebitor: boolean;
5
- }
6
-
7
- export class VatData {
8
- label: string;
9
- dataCollectible: number;
10
- dataDeductible: number;
11
- }