@accounter/server 0.0.9-alpha-20251211123542-a79f1ece46fe30491ea85ce629db6dc43d55e4aa → 0.0.9-alpha-20251211124913-bd38c4cc06ebca0f37d9100992240e1d0b65ac0f
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.9-alpha-
|
|
3
|
+
## 0.0.9-alpha-20251211124913-bd38c4cc06ebca0f37d9100992240e1d0b65ac0f
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -192,6 +192,21 @@
|
|
|
192
192
|
updated with comprehensive documentation on the new test suite structure, how to run tests, and
|
|
193
193
|
prerequisites for integration tests.
|
|
194
194
|
|
|
195
|
+
- [#2813](https://github.com/Urigo/accounter-fullstack/pull/2813)
|
|
196
|
+
[`bd38c4c`](https://github.com/Urigo/accounter-fullstack/commit/bd38c4cc06ebca0f37d9100992240e1d0b65ac0f)
|
|
197
|
+
Thanks [@gilgardosh](https://github.com/gilgardosh)! - - **New Hook for Admin Businesses**:
|
|
198
|
+
Implemented a new React hook, `useGetAdminBusinesses`, to specifically fetch and manage admin
|
|
199
|
+
business data, replacing the more generic financial entities.
|
|
200
|
+
- **VAT Report Filter Update**: Updated the VAT monthly report filters to utilize the new
|
|
201
|
+
`useGetAdminBusinesses` hook and changed the UI label from 'Financial Entities' to 'Report
|
|
202
|
+
Issuer (Admin Business)' for clarity.
|
|
203
|
+
- **Conditional Data Fetching**: Modified the VAT monthly report component to pause data fetching
|
|
204
|
+
when no admin business ID (represented by `financialEntityId`) is selected, preventing
|
|
205
|
+
unnecessary queries and potential errors.
|
|
206
|
+
- **Server-side Environment Validation**: Added a defensive null check in the server's
|
|
207
|
+
`PubsubServiceProvider` to ensure the Gmail environment configuration is present, throwing an
|
|
208
|
+
explicit error if it's missing.
|
|
209
|
+
|
|
195
210
|
- [#2796](https://github.com/Urigo/accounter-fullstack/pull/2796)
|
|
196
211
|
[`11b37d7`](https://github.com/Urigo/accounter-fullstack/commit/11b37d7543cf857859d7605c1e48c59870aedcc6)
|
|
197
212
|
Thanks [@gilgardosh](https://github.com/gilgardosh)! - - **Centralized Migration Verification
|
|
@@ -304,10 +319,10 @@
|
|
|
304
319
|
[`ef68321`](https://github.com/Urigo/accounter-fullstack/commit/ef68321608d60a7208e82a2c413f27beb502e3cc),
|
|
305
320
|
[`ef68321`](https://github.com/Urigo/accounter-fullstack/commit/ef68321608d60a7208e82a2c413f27beb502e3cc),
|
|
306
321
|
[`c7d6f21`](https://github.com/Urigo/accounter-fullstack/commit/c7d6f21ed62658159b1323334501daca03c8d3e5)]:
|
|
307
|
-
- @accounter/green-invoice-graphql@0.8.3-alpha-
|
|
308
|
-
- @accounter/pcn874-generator@0.6.4-alpha-
|
|
309
|
-
- @accounter/shaam-uniform-format-generator@0.2.3-alpha-
|
|
310
|
-
- @accounter/shaam6111-generator@0.1.5-alpha-
|
|
322
|
+
- @accounter/green-invoice-graphql@0.8.3-alpha-20251211124913-bd38c4cc06ebca0f37d9100992240e1d0b65ac0f
|
|
323
|
+
- @accounter/pcn874-generator@0.6.4-alpha-20251211124913-bd38c4cc06ebca0f37d9100992240e1d0b65ac0f
|
|
324
|
+
- @accounter/shaam-uniform-format-generator@0.2.3-alpha-20251211124913-bd38c4cc06ebca0f37d9100992240e1d0b65ac0f
|
|
325
|
+
- @accounter/shaam6111-generator@0.1.5-alpha-20251211124913-bd38c4cc06ebca0f37d9100992240e1d0b65ac0f
|
|
311
326
|
|
|
312
327
|
## 0.0.8
|
|
313
328
|
|
|
@@ -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 { GreenInvoiceTypes } from './sources/GreenInvoice/types';
|
|
8
7
|
import type { GreenInvoiceNewTypes } from './sources/GreenInvoiceNew/types';
|
|
8
|
+
import type { GreenInvoiceTypes } from './sources/GreenInvoice/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