@accounter/server 0.0.8-alpha-20251028120608-255010a90e4b23163e8a832606cd6b5b74442462 → 0.0.8-alpha-20251028120806-2ffeafaf43eece2a7685012216a6fcc962bc1406
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-20251028120806-2ffeafaf43eece2a7685012216a6fcc962bc1406
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -242,6 +242,23 @@
|
|
|
242
242
|
* `packages/server/src/modules/transactions/resolvers/transaction-suggestions.resolver.ts`:
|
|
243
243
|
Updated import path for `suggestionDataSchema`.
|
|
244
244
|
|
|
245
|
+
- [#2626](https://github.com/Urigo/accounter-fullstack/pull/2626)
|
|
246
|
+
[`2ffeafa`](https://github.com/Urigo/accounter-fullstack/commit/2ffeafaf43eece2a7685012216a6fcc962bc1406)
|
|
247
|
+
Thanks [@gilgardosh](https://github.com/gilgardosh)! - - **Client Creation Flow Enhancement**: The
|
|
248
|
+
"Create New Business" dialog now includes an option to immediately create a client associated with
|
|
249
|
+
the new business. If selected, a `ModifyClientDialog` will automatically open after business
|
|
250
|
+
creation, streamlining the onboarding process.
|
|
251
|
+
- **`ModifyClientDialog` Flexibility**: The `ModifyClientDialog` component has been enhanced with
|
|
252
|
+
a `showTrigger` prop, allowing it to be rendered without its default trigger button, making it
|
|
253
|
+
suitable for programmatic opening. It also now consistently calls the `onDone` callback when
|
|
254
|
+
closed, improving callback reliability.
|
|
255
|
+
- **User Navigation Improvements**: The user dropdown menu now displays the actual logged-in
|
|
256
|
+
username from the `UserContext` and includes a direct link to the "Admin Configurations" page
|
|
257
|
+
for the user's primary business, providing quicker access to administrative settings.
|
|
258
|
+
- **Form Schema Refinements**: The business creation form schema has been updated to use more
|
|
259
|
+
direct Zod validators (`z.email()`, `z.url()`) for better type safety and includes a new
|
|
260
|
+
`isClient` boolean field to indicate if the business is also a client.
|
|
261
|
+
|
|
245
262
|
- [#2582](https://github.com/Urigo/accounter-fullstack/pull/2582)
|
|
246
263
|
[`32276b4`](https://github.com/Urigo/accounter-fullstack/commit/32276b47e164f0976fcdd5523fa5e26f0704014f)
|
|
247
264
|
Thanks [@gilgardosh](https://github.com/gilgardosh)! - - **New Business/Client Page**: Introduced
|
|
@@ -380,9 +397,9 @@
|
|
|
380
397
|
[[`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6),
|
|
381
398
|
[`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6),
|
|
382
399
|
[`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6)]:
|
|
383
|
-
- @accounter/pcn874-generator@0.6.3-alpha-
|
|
384
|
-
- @accounter/shaam-uniform-format-generator@0.2.2-alpha-
|
|
385
|
-
- @accounter/shaam6111-generator@0.1.4-alpha-
|
|
400
|
+
- @accounter/pcn874-generator@0.6.3-alpha-20251028120806-2ffeafaf43eece2a7685012216a6fcc962bc1406
|
|
401
|
+
- @accounter/shaam-uniform-format-generator@0.2.2-alpha-20251028120806-2ffeafaf43eece2a7685012216a6fcc962bc1406
|
|
402
|
+
- @accounter/shaam6111-generator@0.1.4-alpha-20251028120806-2ffeafaf43eece2a7685012216a6fcc962bc1406
|
|
386
403
|
|
|
387
404
|
## 0.0.7
|
|
388
405
|
|
|
@@ -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