@accounter/server 0.0.8-alpha-20251113122341-c58e52e8511e5013a5241c221ce87b94fa12b555 → 0.0.8-alpha-20251113125151-ae647874aee37f85ac6e19eefd38c97b45c10014
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/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @accounter/server
|
|
2
2
|
|
|
3
|
-
## 0.0.8-alpha-
|
|
3
|
+
## 0.0.8-alpha-20251113125151-ae647874aee37f85ac6e19eefd38c97b45c10014
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -378,6 +378,19 @@
|
|
|
378
378
|
retrieved 'adminContext.locality' instead of a hardcoded country name, improving flexibility and
|
|
379
379
|
accuracy.
|
|
380
380
|
|
|
381
|
+
- [#2697](https://github.com/Urigo/accounter-fullstack/pull/2697)
|
|
382
|
+
[`ae64787`](https://github.com/Urigo/accounter-fullstack/commit/ae647874aee37f85ac6e19eefd38c97b45c10014)
|
|
383
|
+
Thanks [@gilgardosh](https://github.com/gilgardosh)! - - **New Annual Revenue Report**: A new
|
|
384
|
+
report screen has been added to display annual revenue data, categorized by country and client.
|
|
385
|
+
- **Interactive User Interface**: The report features an interactive user interface allowing users
|
|
386
|
+
to expand and collapse country and client details to view underlying transactions.
|
|
387
|
+
- **Data Filtering and Export**: Users can filter the report by year using a dedicated year picker
|
|
388
|
+
and export the displayed data into a CSV format.
|
|
389
|
+
- **GraphQL API Integration**: New GraphQL types and a query have been introduced on the
|
|
390
|
+
server-side to fetch the structured annual revenue data.
|
|
391
|
+
- **Navigation Integration**: The new Annual Revenue Report is now accessible via a new entry in
|
|
392
|
+
the application's sidebar navigation.
|
|
393
|
+
|
|
381
394
|
- [#2649](https://github.com/Urigo/accounter-fullstack/pull/2649)
|
|
382
395
|
[`15ed6f9`](https://github.com/Urigo/accounter-fullstack/commit/15ed6f982a5d288a1159ccd069fca14b35801a18)
|
|
383
396
|
Thanks [@gilgardosh](https://github.com/gilgardosh)! - \* **New Charges Auto-Matcher Module**: A
|
|
@@ -763,10 +776,10 @@
|
|
|
763
776
|
[`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6),
|
|
764
777
|
[`7a898a0`](https://github.com/Urigo/accounter-fullstack/commit/7a898a0ff1ee15420ab2532370a1d2f618cc86ab),
|
|
765
778
|
[`15ed6f9`](https://github.com/Urigo/accounter-fullstack/commit/15ed6f982a5d288a1159ccd069fca14b35801a18)]:
|
|
766
|
-
- @accounter/green-invoice-graphql@0.8.2-alpha-
|
|
767
|
-
- @accounter/pcn874-generator@0.6.3-alpha-
|
|
768
|
-
- @accounter/shaam-uniform-format-generator@0.2.2-alpha-
|
|
769
|
-
- @accounter/shaam6111-generator@0.1.4-alpha-
|
|
779
|
+
- @accounter/green-invoice-graphql@0.8.2-alpha-20251113125151-ae647874aee37f85ac6e19eefd38c97b45c10014
|
|
780
|
+
- @accounter/pcn874-generator@0.6.3-alpha-20251113125151-ae647874aee37f85ac6e19eefd38c97b45c10014
|
|
781
|
+
- @accounter/shaam-uniform-format-generator@0.2.2-alpha-20251113125151-ae647874aee37f85ac6e19eefd38c97b45c10014
|
|
782
|
+
- @accounter/shaam6111-generator@0.1.4-alpha-20251113125151-ae647874aee37f85ac6e19eefd38c97b45c10014
|
|
770
783
|
|
|
771
784
|
## 0.0.7
|
|
772
785
|
|
|
@@ -4,8 +4,8 @@ import type { GetMeshOptions } from '@graphql-mesh/runtime';
|
|
|
4
4
|
import type { YamlConfig } from '@graphql-mesh/types';
|
|
5
5
|
import { MeshHTTPHandler } from '@graphql-mesh/http';
|
|
6
6
|
import { type ExecuteMeshFn, type SubscribeMeshFn, type MeshContext as BaseMeshContext, type MeshInstance } from '@graphql-mesh/runtime';
|
|
7
|
-
import type { GreenInvoiceNewTypes } from './sources/GreenInvoiceNew/types';
|
|
8
7
|
import type { GreenInvoiceTypes } from './sources/GreenInvoice/types';
|
|
8
|
+
import type { GreenInvoiceNewTypes } from './sources/GreenInvoiceNew/types';
|
|
9
9
|
export type Maybe<T> = T | null;
|
|
10
10
|
export type InputMaybe<T> = Maybe<T>;
|
|
11
11
|
export type Exact<T extends {
|
package/package.json
CHANGED