@accounter/server 0.0.8-alpha-20251101163244-a0ac3eb3753ca02c908157d17146a99adf3641ce → 0.0.8-alpha-20251102085113-c0cdb662e463be814b2a43709b35b6bd586978d5
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-20251102085113-c0cdb662e463be814b2a43709b35b6bd586978d5
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -558,10 +558,10 @@
|
|
|
558
558
|
[`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6),
|
|
559
559
|
[`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6),
|
|
560
560
|
[`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6)]:
|
|
561
|
-
- @accounter/green-invoice-graphql@0.8.2-alpha-
|
|
562
|
-
- @accounter/pcn874-generator@0.6.3-alpha-
|
|
563
|
-
- @accounter/shaam-uniform-format-generator@0.2.2-alpha-
|
|
564
|
-
- @accounter/shaam6111-generator@0.1.4-alpha-
|
|
561
|
+
- @accounter/green-invoice-graphql@0.8.2-alpha-20251102085113-c0cdb662e463be814b2a43709b35b6bd586978d5
|
|
562
|
+
- @accounter/pcn874-generator@0.6.3-alpha-20251102085113-c0cdb662e463be814b2a43709b35b6bd586978d5
|
|
563
|
+
- @accounter/shaam-uniform-format-generator@0.2.2-alpha-20251102085113-c0cdb662e463be814b2a43709b35b6bd586978d5
|
|
564
|
+
- @accounter/shaam6111-generator@0.1.4-alpha-20251102085113-c0cdb662e463be814b2a43709b35b6bd586978d5
|
|
565
565
|
|
|
566
566
|
## 0.0.7
|
|
567
567
|
|
|
@@ -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 {
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
/** Types generated for queries found in "src/modules/financial-entities/providers/clients.provider.ts" */
|
|
2
2
|
export type document_type = 'CREDIT_INVOICE' | 'INVOICE' | 'INVOICE_RECEIPT' | 'OTHER' | 'PROFORMA' | 'RECEIPT' | 'UNPROCESSED';
|
|
3
|
+
export type Json = null | boolean | number | string | Json[] | {
|
|
4
|
+
[key: string]: Json;
|
|
5
|
+
};
|
|
3
6
|
export type stringArray = (string)[];
|
|
4
7
|
/** 'GetAllClients' parameters type */
|
|
5
8
|
export type IGetAllClientsParams = void;
|
|
@@ -10,6 +13,7 @@ export interface IGetAllClientsResult {
|
|
|
10
13
|
emails: stringArray | null;
|
|
11
14
|
green_invoice_id: string;
|
|
12
15
|
hive_id: string | null;
|
|
16
|
+
integrations: Json | null;
|
|
13
17
|
remark: string | null;
|
|
14
18
|
}
|
|
15
19
|
/** 'GetAllClients' query type */
|
|
@@ -28,6 +32,7 @@ export interface IGetClientsByIdsResult {
|
|
|
28
32
|
emails: stringArray | null;
|
|
29
33
|
green_invoice_id: string;
|
|
30
34
|
hive_id: string | null;
|
|
35
|
+
integrations: Json | null;
|
|
31
36
|
remark: string | null;
|
|
32
37
|
}
|
|
33
38
|
/** 'GetClientsByIds' query type */
|
|
@@ -46,6 +51,7 @@ export interface IGetClientsByGreenInvoiceIdsResult {
|
|
|
46
51
|
emails: stringArray | null;
|
|
47
52
|
green_invoice_id: string;
|
|
48
53
|
hive_id: string | null;
|
|
54
|
+
integrations: Json | null;
|
|
49
55
|
remark: string | null;
|
|
50
56
|
}
|
|
51
57
|
/** 'GetClientsByGreenInvoiceIds' query type */
|
|
@@ -68,6 +74,7 @@ export interface IUpdateClientResult {
|
|
|
68
74
|
emails: stringArray | null;
|
|
69
75
|
green_invoice_id: string;
|
|
70
76
|
hive_id: string | null;
|
|
77
|
+
integrations: Json | null;
|
|
71
78
|
remark: string | null;
|
|
72
79
|
}
|
|
73
80
|
/** 'UpdateClient' query type */
|
|
@@ -102,6 +109,7 @@ export interface IInsertClientResult {
|
|
|
102
109
|
emails: stringArray | null;
|
|
103
110
|
green_invoice_id: string;
|
|
104
111
|
hive_id: string | null;
|
|
112
|
+
integrations: Json | null;
|
|
105
113
|
remark: string | null;
|
|
106
114
|
}
|
|
107
115
|
/** 'InsertClient' query type */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@accounter/server",
|
|
3
|
-
"version": "0.0.8-alpha-
|
|
3
|
+
"version": "0.0.8-alpha-20251102085113-c0cdb662e463be814b2a43709b35b6bd586978d5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"dotenv": "17.2.3",
|
|
41
41
|
"dotenv-cli": "11.0.0",
|
|
42
42
|
"googleapis": "164.1.0",
|
|
43
|
-
"graphql": "16.
|
|
43
|
+
"graphql": "16.11.0",
|
|
44
44
|
"graphql-modules": "3.0.0",
|
|
45
45
|
"graphql-scalars": "1.25.0",
|
|
46
46
|
"graphql-yoga": "5.16.0",
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
/** Types generated for queries found in "src/modules/financial-entities/providers/clients.provider.ts" */
|
|
2
2
|
export type document_type = 'CREDIT_INVOICE' | 'INVOICE' | 'INVOICE_RECEIPT' | 'OTHER' | 'PROFORMA' | 'RECEIPT' | 'UNPROCESSED';
|
|
3
3
|
|
|
4
|
+
export type Json = null | boolean | number | string | Json[] | { [key: string]: Json };
|
|
5
|
+
|
|
4
6
|
export type stringArray = (string)[];
|
|
5
7
|
|
|
6
8
|
/** 'GetAllClients' parameters type */
|
|
@@ -13,6 +15,7 @@ export interface IGetAllClientsResult {
|
|
|
13
15
|
emails: stringArray | null;
|
|
14
16
|
green_invoice_id: string;
|
|
15
17
|
hive_id: string | null;
|
|
18
|
+
integrations: Json | null;
|
|
16
19
|
remark: string | null;
|
|
17
20
|
}
|
|
18
21
|
|
|
@@ -34,6 +37,7 @@ export interface IGetClientsByIdsResult {
|
|
|
34
37
|
emails: stringArray | null;
|
|
35
38
|
green_invoice_id: string;
|
|
36
39
|
hive_id: string | null;
|
|
40
|
+
integrations: Json | null;
|
|
37
41
|
remark: string | null;
|
|
38
42
|
}
|
|
39
43
|
|
|
@@ -55,6 +59,7 @@ export interface IGetClientsByGreenInvoiceIdsResult {
|
|
|
55
59
|
emails: stringArray | null;
|
|
56
60
|
green_invoice_id: string;
|
|
57
61
|
hive_id: string | null;
|
|
62
|
+
integrations: Json | null;
|
|
58
63
|
remark: string | null;
|
|
59
64
|
}
|
|
60
65
|
|
|
@@ -80,6 +85,7 @@ export interface IUpdateClientResult {
|
|
|
80
85
|
emails: stringArray | null;
|
|
81
86
|
green_invoice_id: string;
|
|
82
87
|
hive_id: string | null;
|
|
88
|
+
integrations: Json | null;
|
|
83
89
|
remark: string | null;
|
|
84
90
|
}
|
|
85
91
|
|
|
@@ -120,6 +126,7 @@ export interface IInsertClientResult {
|
|
|
120
126
|
emails: stringArray | null;
|
|
121
127
|
green_invoice_id: string;
|
|
122
128
|
hive_id: string | null;
|
|
129
|
+
integrations: Json | null;
|
|
123
130
|
remark: string | null;
|
|
124
131
|
}
|
|
125
132
|
|