@accounter/server 0.0.8-alpha-20251023121008-8c51a83a479af2fcbc3aa02c876285dc4e21f02b → 0.0.8-alpha-20251023122900-7a815283add88dac9904c7a135ddeb225f89589c
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-20251023122900-7a815283add88dac9904c7a135ddeb225f89589c
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -324,6 +324,24 @@
|
|
|
324
324
|
have been updated to pass `charge.id` to the refactored `storeInitialGeneratedRecords` function,
|
|
325
325
|
aligning with the new signature and ensuring consistent behavior.
|
|
326
326
|
|
|
327
|
+
- [#2608](https://github.com/Urigo/accounter-fullstack/pull/2608)
|
|
328
|
+
[`7a81528`](https://github.com/Urigo/accounter-fullstack/commit/7a815283add88dac9904c7a135ddeb225f89589c)
|
|
329
|
+
Thanks [@gilgardosh](https://github.com/gilgardosh)! - - **Businesses Screen UI Overhaul**: The
|
|
330
|
+
main businesses listing screen has been completely redesigned, transitioning from a traditional
|
|
331
|
+
table layout to a modern, card-like display for improved aesthetics and user experience.
|
|
332
|
+
- **New BusinessHeader Component**: A dedicated `BusinessHeader` component was introduced to
|
|
333
|
+
standardize the display of business information, including dynamic status (Active/Inactive) and
|
|
334
|
+
role (Admin/Client) badges.
|
|
335
|
+
- **Enhanced Business Navigation**: Each business entry in the list is now clickable, allowing
|
|
336
|
+
direct navigation to its detailed page, and includes integrated checkboxes for selection,
|
|
337
|
+
enhancing interactivity.
|
|
338
|
+
- **Refactored New Business Form**: The 'Insert Business' modal has been significantly refactored,
|
|
339
|
+
incorporating Zod for robust validation and organizing the form into distinct, user-friendly
|
|
340
|
+
sections for contact information, default settings, and auto-matching configurations.
|
|
341
|
+
- **Simplified Business Insertion Logic**: The backend `insertBusiness` resolver was updated to
|
|
342
|
+
streamline the process of adding new businesses, specifically by simplifying the handling of tax
|
|
343
|
+
category insertions.
|
|
344
|
+
|
|
327
345
|
- [#2547](https://github.com/Urigo/accounter-fullstack/pull/2547)
|
|
328
346
|
[`fd9fb24`](https://github.com/Urigo/accounter-fullstack/commit/fd9fb2445cba9a450f8c78f8100160d9b7c5c38a)
|
|
329
347
|
Thanks [@gilgardosh](https://github.com/gilgardosh)! - 1. **Environment Variable Validation**: The
|
|
@@ -346,9 +364,9 @@
|
|
|
346
364
|
[[`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6),
|
|
347
365
|
[`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6),
|
|
348
366
|
[`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6)]:
|
|
349
|
-
- @accounter/pcn874-generator@0.6.3-alpha-
|
|
350
|
-
- @accounter/shaam-uniform-format-generator@0.2.2-alpha-
|
|
351
|
-
- @accounter/shaam6111-generator@0.1.4-alpha-
|
|
367
|
+
- @accounter/pcn874-generator@0.6.3-alpha-20251023122900-7a815283add88dac9904c7a135ddeb225f89589c
|
|
368
|
+
- @accounter/shaam-uniform-format-generator@0.2.2-alpha-20251023122900-7a815283add88dac9904c7a135ddeb225f89589c
|
|
369
|
+
- @accounter/shaam6111-generator@0.1.4-alpha-20251023122900-7a815283add88dac9904c7a135ddeb225f89589c
|
|
352
370
|
|
|
353
371
|
## 0.0.7
|
|
354
372
|
|
|
@@ -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