@accounter/server 0.0.9-alpha-20251209134546-ceea0fd621c6fbe94cbcc52356f259f4f9bd5462 → 0.0.9-alpha-20251209135403-8ff0c644655c764ce404779933f0dbf26a6a54e9
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-20251209135403-8ff0c644655c764ce404779933f0dbf26a6a54e9
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -179,6 +179,16 @@
|
|
|
179
179
|
- **GraphQL API Update**: The `fetchDeelDocuments` GraphQL mutation now returns a list of `Charge`
|
|
180
180
|
objects instead of a boolean, providing more detailed feedback on the processed charges.
|
|
181
181
|
|
|
182
|
+
- [#2789](https://github.com/Urigo/accounter-fullstack/pull/2789)
|
|
183
|
+
[`8ff0c64`](https://github.com/Urigo/accounter-fullstack/commit/8ff0c644655c764ce404779933f0dbf26a6a54e9)
|
|
184
|
+
Thanks [@gilgardosh](https://github.com/gilgardosh)! - - **Client Integration**: Added a new
|
|
185
|
+
public method, `getDocumentLinks`, within the `GreenInvoiceClientProvider` to abstract the
|
|
186
|
+
fetching of document download links using the new GraphQL query.
|
|
187
|
+
- **Document URL Retrieval Logic**: Updated the `insertNewDocumentFromGreenInvoice` helper
|
|
188
|
+
function to utilize the new `getDocumentLinks` method for retrieving document file URLs,
|
|
189
|
+
prioritizing English language links and including error handling for cases where no links are
|
|
190
|
+
found.
|
|
191
|
+
|
|
182
192
|
- [#2781](https://github.com/Urigo/accounter-fullstack/pull/2781)
|
|
183
193
|
[`0590c3f`](https://github.com/Urigo/accounter-fullstack/commit/0590c3fdb9f1a9718ea80530361bbeb7512d11fd)
|
|
184
194
|
Thanks [@gilgardosh](https://github.com/gilgardosh)! - - **GreenInvoiceClient ID Refinement**: The
|
|
@@ -197,11 +207,12 @@
|
|
|
197
207
|
[`eb4e853`](https://github.com/Urigo/accounter-fullstack/commit/eb4e853581ac5cded01c5c804ee4894f9fb7dff6),
|
|
198
208
|
[`ef68321`](https://github.com/Urigo/accounter-fullstack/commit/ef68321608d60a7208e82a2c413f27beb502e3cc),
|
|
199
209
|
[`ef68321`](https://github.com/Urigo/accounter-fullstack/commit/ef68321608d60a7208e82a2c413f27beb502e3cc),
|
|
200
|
-
[`ef68321`](https://github.com/Urigo/accounter-fullstack/commit/ef68321608d60a7208e82a2c413f27beb502e3cc)
|
|
201
|
-
-
|
|
202
|
-
- @accounter/
|
|
203
|
-
- @accounter/
|
|
204
|
-
- @accounter/
|
|
210
|
+
[`ef68321`](https://github.com/Urigo/accounter-fullstack/commit/ef68321608d60a7208e82a2c413f27beb502e3cc),
|
|
211
|
+
[`8ff0c64`](https://github.com/Urigo/accounter-fullstack/commit/8ff0c644655c764ce404779933f0dbf26a6a54e9)]:
|
|
212
|
+
- @accounter/green-invoice-graphql@0.8.3-alpha-20251209135403-8ff0c644655c764ce404779933f0dbf26a6a54e9
|
|
213
|
+
- @accounter/pcn874-generator@0.6.4-alpha-20251209135403-8ff0c644655c764ce404779933f0dbf26a6a54e9
|
|
214
|
+
- @accounter/shaam-uniform-format-generator@0.2.3-alpha-20251209135403-8ff0c644655c764ce404779933f0dbf26a6a54e9
|
|
215
|
+
- @accounter/shaam6111-generator@0.1.5-alpha-20251209135403-8ff0c644655c764ce404779933f0dbf26a6a54e9
|
|
205
216
|
|
|
206
217
|
## 0.0.8
|
|
207
218
|
|
|
@@ -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