@accounter/server 0.0.8-alpha-20251027160059-e9b68d02d14d04ec8244b80972712f758c9e8db7 → 0.0.8-alpha-20251027161502-94aef57edfb3d60d26446071ab5afcd8d7e35640

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-20251027160059-e9b68d02d14d04ec8244b80972712f758c9e8db7
3
+ ## 0.0.8-alpha-20251027161502-94aef57edfb3d60d26446071ab5afcd8d7e35640
4
4
 
5
5
  ### Patch Changes
6
6
 
@@ -380,9 +380,9 @@
380
380
  [[`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6),
381
381
  [`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6),
382
382
  [`65e3c7f`](https://github.com/Urigo/accounter-fullstack/commit/65e3c7f01993eb4f41244a40feefefa08b31a4e6)]:
383
- - @accounter/pcn874-generator@0.6.3-alpha-20251027160059-e9b68d02d14d04ec8244b80972712f758c9e8db7
384
- - @accounter/shaam-uniform-format-generator@0.2.2-alpha-20251027160059-e9b68d02d14d04ec8244b80972712f758c9e8db7
385
- - @accounter/shaam6111-generator@0.1.4-alpha-20251027160059-e9b68d02d14d04ec8244b80972712f758c9e8db7
383
+ - @accounter/pcn874-generator@0.6.3-alpha-20251027161502-94aef57edfb3d60d26446071ab5afcd8d7e35640
384
+ - @accounter/shaam-uniform-format-generator@0.2.2-alpha-20251027161502-94aef57edfb3d60d26446071ab5afcd8d7e35640
385
+ - @accounter/shaam6111-generator@0.1.4-alpha-20251027161502-94aef57edfb3d60d26446071ab5afcd8d7e35640
386
386
 
387
387
  ## 0.0.7
388
388
 
@@ -18,7 +18,6 @@ export interface IGetAllOpenContractsResult {
18
18
  ms_cloud: string | null;
19
19
  plan: string | null;
20
20
  product: string | null;
21
- purchase_order: string | null;
22
21
  purchase_orders: stringArray;
23
22
  remarks: string | null;
24
23
  signed_agreement: string | null;
@@ -46,7 +45,6 @@ export interface IGetContractsByIdsResult {
46
45
  ms_cloud: string | null;
47
46
  plan: string | null;
48
47
  product: string | null;
49
- purchase_order: string | null;
50
48
  purchase_orders: stringArray;
51
49
  remarks: string | null;
52
50
  signed_agreement: string | null;
@@ -74,7 +72,6 @@ export interface IGetContractsByClientIdsResult {
74
72
  ms_cloud: string | null;
75
73
  plan: string | null;
76
74
  product: string | null;
77
- purchase_order: string | null;
78
75
  purchase_orders: stringArray;
79
76
  remarks: string | null;
80
77
  signed_agreement: string | null;
@@ -126,7 +123,6 @@ export interface IUpdateContractResult {
126
123
  ms_cloud: string | null;
127
124
  plan: string | null;
128
125
  product: string | null;
129
- purchase_order: string | null;
130
126
  purchase_orders: stringArray;
131
127
  remarks: string | null;
132
128
  signed_agreement: string | null;
@@ -166,7 +162,6 @@ export interface IInsertContractResult {
166
162
  ms_cloud: string | null;
167
163
  plan: string | null;
168
164
  product: string | null;
169
- purchase_order: string | null;
170
165
  purchase_orders: stringArray;
171
166
  remarks: string | null;
172
167
  signed_agreement: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@accounter/server",
3
- "version": "0.0.8-alpha-20251027160059-e9b68d02d14d04ec8244b80972712f758c9e8db7",
3
+ "version": "0.0.8-alpha-20251027161502-94aef57edfb3d60d26446071ab5afcd8d7e35640",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "license": "MIT",
@@ -23,7 +23,6 @@ export interface IGetAllOpenContractsResult {
23
23
  ms_cloud: string | null;
24
24
  plan: string | null;
25
25
  product: string | null;
26
- purchase_order: string | null;
27
26
  purchase_orders: stringArray;
28
27
  remarks: string | null;
29
28
  signed_agreement: string | null;
@@ -54,7 +53,6 @@ export interface IGetContractsByIdsResult {
54
53
  ms_cloud: string | null;
55
54
  plan: string | null;
56
55
  product: string | null;
57
- purchase_order: string | null;
58
56
  purchase_orders: stringArray;
59
57
  remarks: string | null;
60
58
  signed_agreement: string | null;
@@ -85,7 +83,6 @@ export interface IGetContractsByClientIdsResult {
85
83
  ms_cloud: string | null;
86
84
  plan: string | null;
87
85
  product: string | null;
88
- purchase_order: string | null;
89
86
  purchase_orders: stringArray;
90
87
  remarks: string | null;
91
88
  signed_agreement: string | null;
@@ -143,7 +140,6 @@ export interface IUpdateContractResult {
143
140
  ms_cloud: string | null;
144
141
  plan: string | null;
145
142
  product: string | null;
146
- purchase_order: string | null;
147
143
  purchase_orders: stringArray;
148
144
  remarks: string | null;
149
145
  signed_agreement: string | null;
@@ -186,7 +182,6 @@ export interface IInsertContractResult {
186
182
  ms_cloud: string | null;
187
183
  plan: string | null;
188
184
  product: string | null;
189
- purchase_order: string | null;
190
185
  purchase_orders: stringArray;
191
186
  remarks: string | null;
192
187
  signed_agreement: string | null;