@accounter/server 0.0.8-alpha-20251028124537-8b0946b10a6e597c997017c33fb80fbf674e2feb → 0.0.8-alpha-20251028215142-58f2a3b66bb50de659a3b7d03ea774d2dabdc039
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-20251028215142-58f2a3b66bb50de659a3b7d03ea774d2dabdc039
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -201,8 +201,8 @@
|
|
|
201
201
|
- Updated dependency [`puppeteer@24.26.1` ↗︎](https://www.npmjs.com/package/puppeteer/v/24.26.1)
|
|
202
202
|
(from `24.26.0`, in `dependencies`)
|
|
203
203
|
|
|
204
|
-
- [#
|
|
205
|
-
[`
|
|
204
|
+
- [#2634](https://github.com/Urigo/accounter-fullstack/pull/2634)
|
|
205
|
+
[`b05ab20`](https://github.com/Urigo/accounter-fullstack/commit/b05ab20692349fbc7b74f36d9f0f19c02f5ba9a3)
|
|
206
206
|
Thanks [@gilgardosh](https://github.com/gilgardosh)! - dependencies updates:
|
|
207
207
|
- Updated dependency
|
|
208
208
|
[`@ai-sdk/anthropic@2.0.38` ↗︎](https://www.npmjs.com/package/@ai-sdk/anthropic/v/2.0.38) (from
|
|
@@ -213,7 +213,7 @@
|
|
|
213
213
|
(from `24.26.0`, in `dependencies`)
|
|
214
214
|
|
|
215
215
|
- [#2631](https://github.com/Urigo/accounter-fullstack/pull/2631)
|
|
216
|
-
[`
|
|
216
|
+
[`86c8b3e`](https://github.com/Urigo/accounter-fullstack/commit/86c8b3ebea4e3be0c0e99a108ec1cdad8b39e5d8)
|
|
217
217
|
Thanks [@gilgardosh](https://github.com/gilgardosh)! - - **Database Schema Update**: A new
|
|
218
218
|
"operations_count" column has been added to the "clients_contracts" table to store the operational
|
|
219
219
|
limit for each contract.
|
|
@@ -472,9 +472,9 @@
|
|
|
472
472
|
[[`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6),
|
|
473
473
|
[`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6),
|
|
474
474
|
[`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6)]:
|
|
475
|
-
- @accounter/pcn874-generator@0.6.3-alpha-
|
|
476
|
-
- @accounter/shaam-uniform-format-generator@0.2.2-alpha-
|
|
477
|
-
- @accounter/shaam6111-generator@0.1.4-alpha-
|
|
475
|
+
- @accounter/pcn874-generator@0.6.3-alpha-20251028215142-58f2a3b66bb50de659a3b7d03ea774d2dabdc039
|
|
476
|
+
- @accounter/shaam-uniform-format-generator@0.2.2-alpha-20251028215142-58f2a3b66bb50de659a3b7d03ea774d2dabdc039
|
|
477
|
+
- @accounter/shaam6111-generator@0.1.4-alpha-20251028215142-58f2a3b66bb50de659a3b7d03ea774d2dabdc039
|
|
478
478
|
|
|
479
479
|
## 0.0.7
|
|
480
480
|
|
|
@@ -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