@sofit/view-locale 1.30.1 → 1.31.0
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/coverage/jest/results.xml +5 -5
- package/dist/translations/index.d.ts +9 -1
- package/dist/translations/index.js +16 -0
- package/dist/translations/modules/cash_basis.d.ts +4 -0
- package/dist/translations/modules/cash_basis.js +6 -0
- package/dist/translations/modules/cost_sharing.d.ts +4 -0
- package/dist/translations/modules/cost_sharing.js +6 -0
- package/dist/translations/modules/foreseen_service_order_item.d.ts +4 -0
- package/dist/translations/modules/foreseen_service_order_item.js +6 -0
- package/dist/translations/modules/gas_pump_control.d.ts +4 -0
- package/dist/translations/modules/gas_pump_control.js +6 -0
- package/dist/translations/modules/parameter.d.ts +4 -0
- package/dist/translations/modules/parameter.js +6 -0
- package/dist/translations/modules/stock_entry_item.d.ts +4 -0
- package/dist/translations/modules/stock_entry_item.js +6 -0
- package/dist/translations/modules/transaction.d.ts +4 -0
- package/dist/translations/modules/transaction.js +6 -0
- package/dist/translations/modules/warehouse_item.d.ts +4 -0
- package/dist/translations/modules/warehouse_item.js +6 -0
- package/lib/translations/index.ts +17 -1
- package/lib/translations/modules/cash_basis.ts +4 -0
- package/lib/translations/modules/cost_sharing.ts +4 -0
- package/lib/translations/modules/foreseen_service_order_item.ts +4 -0
- package/lib/translations/modules/gas_pump_control.ts +4 -0
- package/lib/translations/modules/parameter.ts +4 -0
- package/lib/translations/modules/stock_entry_item.ts +4 -0
- package/lib/translations/modules/transaction.ts +4 -0
- package/lib/translations/modules/warehouse_item.ts +4 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
<testsuites name="Sofit view locale tests" tests="8" failures="0" time="2.
|
|
2
|
-
<testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2019-03-
|
|
1
|
+
<testsuites name="Sofit view locale tests" tests="8" failures="0" time="2.226">
|
|
2
|
+
<testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2019-03-28T22:05:19" time="1.466" tests="4">
|
|
3
3
|
<testcase classname="Joi tests should return default message" name="Joi tests should return default message" time="0.004">
|
|
4
4
|
</testcase>
|
|
5
5
|
<testcase classname="Joi tests should return non label message" name="Joi tests should return non label message" time="0.001">
|
|
@@ -9,14 +9,14 @@
|
|
|
9
9
|
<testcase classname="Joi tests should return translated label index" name="Joi tests should return translated label index" time="0">
|
|
10
10
|
</testcase>
|
|
11
11
|
</testsuite>
|
|
12
|
-
<testsuite name="Vehicle locale test" errors="0" failures="0" skipped="0" timestamp="2019-03-
|
|
13
|
-
<testcase classname="Vehicle locale test Should get translations with reach" name="Vehicle locale test Should get translations with reach" time="0.
|
|
12
|
+
<testsuite name="Vehicle locale test" errors="0" failures="0" skipped="0" timestamp="2019-03-28T22:05:19" time="1.516" tests="4">
|
|
13
|
+
<testcase classname="Vehicle locale test Should get translations with reach" name="Vehicle locale test Should get translations with reach" time="0.004">
|
|
14
14
|
</testcase>
|
|
15
15
|
<testcase classname="Vehicle locale test Should replace correctly with reach" name="Vehicle locale test Should replace correctly with reach" time="0.001">
|
|
16
16
|
</testcase>
|
|
17
17
|
<testcase classname="Vehicle locale test Should get translations with raw" name="Vehicle locale test Should get translations with raw" time="0">
|
|
18
18
|
</testcase>
|
|
19
|
-
<testcase classname="Vehicle locale test Should replace correctly with raw" name="Vehicle locale test Should replace correctly with raw" time="0">
|
|
19
|
+
<testcase classname="Vehicle locale test Should replace correctly with raw" name="Vehicle locale test Should replace correctly with raw" time="0.001">
|
|
20
20
|
</testcase>
|
|
21
21
|
</testsuite>
|
|
22
22
|
</testsuites>
|
|
@@ -1,21 +1,27 @@
|
|
|
1
1
|
import * as auth from './common/auth';
|
|
2
2
|
import * as benchmarking from './common/benchmarking';
|
|
3
|
+
import * as cash_basis from './modules/cash_basis';
|
|
3
4
|
import * as company from './modules/company';
|
|
4
5
|
import * as cost_center from './modules/cost_center';
|
|
6
|
+
import * as cost_sharing from './modules/cost_sharing';
|
|
5
7
|
import * as customer from './modules/customer';
|
|
6
8
|
import * as employee from './modules/employee';
|
|
7
9
|
import * as employee_role from './modules/employee_role';
|
|
8
10
|
import * as fine_qualification from './modules/fine_qualification';
|
|
9
11
|
import * as fine_resource from './modules/fine_resource';
|
|
10
12
|
import * as foreseen_maintenance_plan_service_item from './modules/foreseen_maintenance_plan_service_item';
|
|
13
|
+
import * as foreseen_service_order_item from './modules/foreseen_service_order_item';
|
|
14
|
+
import * as gas_pump_control from './modules/gas_pump_control';
|
|
11
15
|
import * as gate from './modules/gate';
|
|
12
16
|
import * as item from './modules/item';
|
|
13
17
|
import * as maintenance_plan from './modules/maintenance_plan';
|
|
14
18
|
import * as maintenance_plan_service from './modules/maintenance_plan_service';
|
|
15
19
|
import * as measurement_unit from './modules/measurement_unit';
|
|
20
|
+
import * as parameter from './modules/parameter';
|
|
16
21
|
import * as qualification_severity from './modules/qualification_severity';
|
|
17
22
|
import * as release_notification from './modules/release_notification';
|
|
18
23
|
import * as route from './modules/route';
|
|
24
|
+
import * as stock_entry_item from './modules/stock_entry_item';
|
|
19
25
|
import * as sub_system from './modules/sub_system';
|
|
20
26
|
import * as subsidiary from './modules/subsidiary';
|
|
21
27
|
import * as supplier from './modules/supplier';
|
|
@@ -23,6 +29,7 @@ import * as system from './modules/system';
|
|
|
23
29
|
import * as tire_brand from './modules/tire_brand';
|
|
24
30
|
import * as tire_dimension from './modules/tire_dimension';
|
|
25
31
|
import * as tire_drawing from './modules/tire_drawing';
|
|
32
|
+
import * as transaction from './modules/transaction';
|
|
26
33
|
import * as vehicle from './modules/vehicle';
|
|
27
34
|
import * as vehicle_axes from './modules/vehicle_axes';
|
|
28
35
|
import * as vehicle_brand from './modules/vehicle_brand';
|
|
@@ -33,6 +40,7 @@ import * as vehicle_model from './modules/vehicle_model';
|
|
|
33
40
|
import * as vehicle_model_version from './modules/vehicle_model_version';
|
|
34
41
|
import * as vehicle_tag from './modules/vehicle_tag';
|
|
35
42
|
import * as warehouse from './modules/warehouse';
|
|
43
|
+
import * as warehouse_item from './modules/warehouse_item';
|
|
36
44
|
export { joi } from './common/joi';
|
|
37
45
|
export { databaseErrors } from './common/database-errors';
|
|
38
|
-
export { auth, benchmarking, company, cost_center, customer, employee, employee_role, fine_resource, fine_qualification, foreseen_maintenance_plan_service_item, gate, item, maintenance_plan, maintenance_plan_service, measurement_unit, qualification_severity, release_notification, route, sub_system, subsidiary, supplier, system, tire_brand, tire_dimension, tire_drawing, vehicle_brand, vehicle_layout, vehicle_model, vehicle_model_version, vehicle, vehicle_fuel, vehicle_axes, vehicle_due, vehicle_tag, warehouse };
|
|
46
|
+
export { auth, benchmarking, cash_basis, company, cost_center, cost_sharing, customer, employee, employee_role, fine_resource, fine_qualification, foreseen_maintenance_plan_service_item, foreseen_service_order_item, gas_pump_control, gate, item, maintenance_plan, maintenance_plan_service, measurement_unit, parameter, qualification_severity, release_notification, route, stock_entry_item, sub_system, subsidiary, supplier, system, tire_brand, tire_dimension, tire_drawing, transaction, vehicle_brand, vehicle_layout, vehicle_model, vehicle_model_version, vehicle, vehicle_fuel, vehicle_axes, vehicle_due, vehicle_tag, warehouse, warehouse_item };
|
|
@@ -11,10 +11,14 @@ const auth = __importStar(require("./common/auth"));
|
|
|
11
11
|
exports.auth = auth;
|
|
12
12
|
const benchmarking = __importStar(require("./common/benchmarking"));
|
|
13
13
|
exports.benchmarking = benchmarking;
|
|
14
|
+
const cash_basis = __importStar(require("./modules/cash_basis"));
|
|
15
|
+
exports.cash_basis = cash_basis;
|
|
14
16
|
const company = __importStar(require("./modules/company"));
|
|
15
17
|
exports.company = company;
|
|
16
18
|
const cost_center = __importStar(require("./modules/cost_center"));
|
|
17
19
|
exports.cost_center = cost_center;
|
|
20
|
+
const cost_sharing = __importStar(require("./modules/cost_sharing"));
|
|
21
|
+
exports.cost_sharing = cost_sharing;
|
|
18
22
|
const customer = __importStar(require("./modules/customer"));
|
|
19
23
|
exports.customer = customer;
|
|
20
24
|
const employee = __importStar(require("./modules/employee"));
|
|
@@ -27,6 +31,10 @@ const fine_resource = __importStar(require("./modules/fine_resource"));
|
|
|
27
31
|
exports.fine_resource = fine_resource;
|
|
28
32
|
const foreseen_maintenance_plan_service_item = __importStar(require("./modules/foreseen_maintenance_plan_service_item"));
|
|
29
33
|
exports.foreseen_maintenance_plan_service_item = foreseen_maintenance_plan_service_item;
|
|
34
|
+
const foreseen_service_order_item = __importStar(require("./modules/foreseen_service_order_item"));
|
|
35
|
+
exports.foreseen_service_order_item = foreseen_service_order_item;
|
|
36
|
+
const gas_pump_control = __importStar(require("./modules/gas_pump_control"));
|
|
37
|
+
exports.gas_pump_control = gas_pump_control;
|
|
30
38
|
const gate = __importStar(require("./modules/gate"));
|
|
31
39
|
exports.gate = gate;
|
|
32
40
|
const item = __importStar(require("./modules/item"));
|
|
@@ -37,12 +45,16 @@ const maintenance_plan_service = __importStar(require("./modules/maintenance_pla
|
|
|
37
45
|
exports.maintenance_plan_service = maintenance_plan_service;
|
|
38
46
|
const measurement_unit = __importStar(require("./modules/measurement_unit"));
|
|
39
47
|
exports.measurement_unit = measurement_unit;
|
|
48
|
+
const parameter = __importStar(require("./modules/parameter"));
|
|
49
|
+
exports.parameter = parameter;
|
|
40
50
|
const qualification_severity = __importStar(require("./modules/qualification_severity"));
|
|
41
51
|
exports.qualification_severity = qualification_severity;
|
|
42
52
|
const release_notification = __importStar(require("./modules/release_notification"));
|
|
43
53
|
exports.release_notification = release_notification;
|
|
44
54
|
const route = __importStar(require("./modules/route"));
|
|
45
55
|
exports.route = route;
|
|
56
|
+
const stock_entry_item = __importStar(require("./modules/stock_entry_item"));
|
|
57
|
+
exports.stock_entry_item = stock_entry_item;
|
|
46
58
|
const sub_system = __importStar(require("./modules/sub_system"));
|
|
47
59
|
exports.sub_system = sub_system;
|
|
48
60
|
const subsidiary = __importStar(require("./modules/subsidiary"));
|
|
@@ -57,6 +69,8 @@ const tire_dimension = __importStar(require("./modules/tire_dimension"));
|
|
|
57
69
|
exports.tire_dimension = tire_dimension;
|
|
58
70
|
const tire_drawing = __importStar(require("./modules/tire_drawing"));
|
|
59
71
|
exports.tire_drawing = tire_drawing;
|
|
72
|
+
const transaction = __importStar(require("./modules/transaction"));
|
|
73
|
+
exports.transaction = transaction;
|
|
60
74
|
const vehicle = __importStar(require("./modules/vehicle"));
|
|
61
75
|
exports.vehicle = vehicle;
|
|
62
76
|
const vehicle_axes = __importStar(require("./modules/vehicle_axes"));
|
|
@@ -77,6 +91,8 @@ const vehicle_tag = __importStar(require("./modules/vehicle_tag"));
|
|
|
77
91
|
exports.vehicle_tag = vehicle_tag;
|
|
78
92
|
const warehouse = __importStar(require("./modules/warehouse"));
|
|
79
93
|
exports.warehouse = warehouse;
|
|
94
|
+
const warehouse_item = __importStar(require("./modules/warehouse_item"));
|
|
95
|
+
exports.warehouse_item = warehouse_item;
|
|
80
96
|
var joi_1 = require("./common/joi");
|
|
81
97
|
exports.joi = joi_1.joi;
|
|
82
98
|
var database_errors_1 = require("./common/database-errors");
|
|
@@ -1,21 +1,27 @@
|
|
|
1
1
|
import * as auth from './common/auth';
|
|
2
2
|
import * as benchmarking from './common/benchmarking';
|
|
3
|
+
import * as cash_basis from './modules/cash_basis';
|
|
3
4
|
import * as company from './modules/company';
|
|
4
5
|
import * as cost_center from './modules/cost_center';
|
|
6
|
+
import * as cost_sharing from './modules/cost_sharing';
|
|
5
7
|
import * as customer from './modules/customer';
|
|
6
8
|
import * as employee from './modules/employee';
|
|
7
9
|
import * as employee_role from './modules/employee_role';
|
|
8
10
|
import * as fine_qualification from './modules/fine_qualification';
|
|
9
11
|
import * as fine_resource from './modules/fine_resource';
|
|
10
12
|
import * as foreseen_maintenance_plan_service_item from './modules/foreseen_maintenance_plan_service_item';
|
|
13
|
+
import * as foreseen_service_order_item from './modules/foreseen_service_order_item';
|
|
14
|
+
import * as gas_pump_control from './modules/gas_pump_control';
|
|
11
15
|
import * as gate from './modules/gate';
|
|
12
16
|
import * as item from './modules/item';
|
|
13
17
|
import * as maintenance_plan from './modules/maintenance_plan';
|
|
14
18
|
import * as maintenance_plan_service from './modules/maintenance_plan_service';
|
|
15
19
|
import * as measurement_unit from './modules/measurement_unit';
|
|
20
|
+
import * as parameter from './modules/parameter';
|
|
16
21
|
import * as qualification_severity from './modules/qualification_severity';
|
|
17
22
|
import * as release_notification from './modules/release_notification';
|
|
18
23
|
import * as route from './modules/route';
|
|
24
|
+
import * as stock_entry_item from './modules/stock_entry_item';
|
|
19
25
|
import * as sub_system from './modules/sub_system';
|
|
20
26
|
import * as subsidiary from './modules/subsidiary';
|
|
21
27
|
import * as supplier from './modules/supplier';
|
|
@@ -23,6 +29,7 @@ import * as system from './modules/system';
|
|
|
23
29
|
import * as tire_brand from './modules/tire_brand';
|
|
24
30
|
import * as tire_dimension from './modules/tire_dimension';
|
|
25
31
|
import * as tire_drawing from './modules/tire_drawing';
|
|
32
|
+
import * as transaction from './modules/transaction';
|
|
26
33
|
import * as vehicle from './modules/vehicle';
|
|
27
34
|
import * as vehicle_axes from './modules/vehicle_axes';
|
|
28
35
|
import * as vehicle_brand from './modules/vehicle_brand';
|
|
@@ -33,6 +40,7 @@ import * as vehicle_model from './modules/vehicle_model';
|
|
|
33
40
|
import * as vehicle_model_version from './modules/vehicle_model_version';
|
|
34
41
|
import * as vehicle_tag from './modules/vehicle_tag';
|
|
35
42
|
import * as warehouse from './modules/warehouse';
|
|
43
|
+
import * as warehouse_item from './modules/warehouse_item';
|
|
36
44
|
|
|
37
45
|
export { joi } from './common/joi';
|
|
38
46
|
export { databaseErrors } from './common/database-errors';
|
|
@@ -40,22 +48,28 @@ export { databaseErrors } from './common/database-errors';
|
|
|
40
48
|
export {
|
|
41
49
|
auth,
|
|
42
50
|
benchmarking,
|
|
51
|
+
cash_basis,
|
|
43
52
|
company,
|
|
44
53
|
cost_center,
|
|
54
|
+
cost_sharing,
|
|
45
55
|
customer,
|
|
46
56
|
employee,
|
|
47
57
|
employee_role,
|
|
48
58
|
fine_resource,
|
|
49
59
|
fine_qualification,
|
|
50
60
|
foreseen_maintenance_plan_service_item,
|
|
61
|
+
foreseen_service_order_item,
|
|
62
|
+
gas_pump_control,
|
|
51
63
|
gate,
|
|
52
64
|
item,
|
|
53
65
|
maintenance_plan,
|
|
54
66
|
maintenance_plan_service,
|
|
55
67
|
measurement_unit,
|
|
68
|
+
parameter,
|
|
56
69
|
qualification_severity,
|
|
57
70
|
release_notification,
|
|
58
71
|
route,
|
|
72
|
+
stock_entry_item,
|
|
59
73
|
sub_system,
|
|
60
74
|
subsidiary,
|
|
61
75
|
supplier,
|
|
@@ -63,6 +77,7 @@ export {
|
|
|
63
77
|
tire_brand,
|
|
64
78
|
tire_dimension,
|
|
65
79
|
tire_drawing,
|
|
80
|
+
transaction,
|
|
66
81
|
vehicle_brand,
|
|
67
82
|
vehicle_layout,
|
|
68
83
|
vehicle_model,
|
|
@@ -72,5 +87,6 @@ export {
|
|
|
72
87
|
vehicle_axes,
|
|
73
88
|
vehicle_due,
|
|
74
89
|
vehicle_tag,
|
|
75
|
-
warehouse
|
|
90
|
+
warehouse,
|
|
91
|
+
warehouse_item
|
|
76
92
|
};
|