@openbox/shared-types 0.3.63 → 0.3.65
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/lib/accounting/Settings/GetGenerals/Response.d.ts +2 -0
- package/lib/accounting/Settings/GetGenerals/Response.js +3 -0
- package/lib/accounting/Settings/GetGenerals/Response.js.map +1 -0
- package/lib/accounting/Settings/UpdateGenerals/Request.d.ts +2 -2
- package/lib/accounting/Settings/accounting.settings.types.d.ts +1 -1
- package/package.json +1 -1
- package/src/accounting/Settings/GetGenerals/Response.ts +6 -0
- package/src/accounting/Settings/UpdateGenerals/Request.ts +2 -5
- package/src/accounting/Settings/accounting.settings.types.ts +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/accounting/Settings/GetGenerals/Response.ts"],"names":[],"mappings":""}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export type AccountingSettingsUpdateGeneralsRequest =
|
|
1
|
+
import { AccountingSettingsGetGeneralsResponse } from '../GetGenerals/Response';
|
|
2
|
+
export type AccountingSettingsUpdateGeneralsRequest = AccountingSettingsGetGeneralsResponse;
|
|
@@ -4,7 +4,7 @@ export type AccountingSettings = {
|
|
|
4
4
|
balanceGeneral: JSON;
|
|
5
5
|
estadoResultados: JSON;
|
|
6
6
|
periodStart: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
7
|
-
|
|
7
|
+
periodEnd: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
8
8
|
legal: string;
|
|
9
9
|
accountant: string;
|
|
10
10
|
auditor: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AccountingSettingsGetGeneralsResponse } from '../GetGenerals/Response'
|
|
2
2
|
|
|
3
|
-
export type AccountingSettingsUpdateGeneralsRequest =
|
|
4
|
-
AccountingSettings,
|
|
5
|
-
'periodStart' | 'peridoEnd' | 'legal' | 'accountant' | 'auditor'
|
|
6
|
-
>
|
|
3
|
+
export type AccountingSettingsUpdateGeneralsRequest = AccountingSettingsGetGeneralsResponse
|
|
@@ -5,7 +5,7 @@ export type AccountingSettings = {
|
|
|
5
5
|
balanceGeneral: JSON
|
|
6
6
|
estadoResultados: JSON
|
|
7
7
|
periodStart: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12
|
|
8
|
-
|
|
8
|
+
periodEnd: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12
|
|
9
9
|
legal: string
|
|
10
10
|
accountant: string
|
|
11
11
|
auditor: string
|