@sofit/view-locale 1.52.0 → 1.54.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 +6 -6
- package/dist/translations/index.d.ts +2 -1
- package/dist/translations/index.js +2 -0
- package/dist/translations/modules/cost_sharing_entity.d.ts +4 -0
- package/dist/translations/modules/cost_sharing_entity.js +6 -0
- package/lib/translations/index.ts +2 -0
- package/lib/translations/modules/cost_sharing_entity.ts +4 -0
- package/package.json +1 -1
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
<testsuites name="Sofit view locale tests" tests="8" failures="0" time="
|
|
2
|
-
<testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2019-07-
|
|
3
|
-
<testcase classname="Joi tests should return default message" name="Joi tests should return default message" time="0.
|
|
1
|
+
<testsuites name="Sofit view locale tests" tests="8" failures="0" time="2.644">
|
|
2
|
+
<testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2019-07-22T19:58:47" time="1.89" tests="4">
|
|
3
|
+
<testcase classname="Joi tests should return default message" name="Joi tests should return default message" time="0.005">
|
|
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">
|
|
6
6
|
</testcase>
|
|
7
|
-
<testcase classname="Joi tests should return translated label message" name="Joi tests should return translated label message" time="0">
|
|
7
|
+
<testcase classname="Joi tests should return translated label message" name="Joi tests should return translated label message" time="0.001">
|
|
8
8
|
</testcase>
|
|
9
|
-
<testcase classname="Joi tests should return translated label index" name="Joi tests should return translated label index" time="0
|
|
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-07-
|
|
12
|
+
<testsuite name="Vehicle locale test" errors="0" failures="0" skipped="0" timestamp="2019-07-22T19:58:47" time="1.791" tests="4">
|
|
13
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">
|
|
@@ -13,6 +13,7 @@ import * as checklist_reply from './modules/checklist_reply';
|
|
|
13
13
|
import * as company from './modules/company';
|
|
14
14
|
import * as cost_center from './modules/cost_center';
|
|
15
15
|
import * as cost_sharing from './modules/cost_sharing';
|
|
16
|
+
import * as cost_sharing_entity from './modules/cost_sharing_entity';
|
|
16
17
|
import * as customer from './modules/customer';
|
|
17
18
|
import * as driver_control from './modules/driver_control';
|
|
18
19
|
import * as driver_license_point from './modules/driver_license_point';
|
|
@@ -76,4 +77,4 @@ import * as warehouse from './modules/warehouse';
|
|
|
76
77
|
import * as warehouse_item from './modules/warehouse_item';
|
|
77
78
|
export { joi } from './common/joi';
|
|
78
79
|
export { databaseErrors } from './common/database-errors';
|
|
79
|
-
export { auth, benchmarking, general, inout, pipefy, cash_basis, checklist, checklist_group, checklist_group_item, checklist_group_option, checklist_model, checklist_reply, company, cost_center, cost_sharing, customer, driver_control, driver_license_point, employee, employee_hiring_regime, employee_role, expense, fine, fine_qualification_integration_key, fine_qualification, fine_resource, foreseen_maintenance_plan_service_item, foreseen_service_order_item, gas_pump_control, gate, gate_appointment, gate_appointment_diary, item, leasing_contract, maintenance_plan, maintenance_plan_service, measurement_unit, night_transport, parameter, pendency, qualification_severity, release_notification, request_occurrence, route, service_order, solicitation, solicitation_comment, solicitation_history, solicitation_watcher, stock_transfer, stock_transfer_item, stock_entry_item, sub_system, subsidiary, supplier, system, tire_brand, tire_dimension, tire_drawing, transaction, trip, vehicle, vehicle_axes, vehicle_brand, vehicle_change_history, vehicle_deactivation_cause, vehicle_due, vehicle_fuel, vehicle_layout, vehicle_leasing, vehicle_maintenance_plan, vehicle_model, vehicle_model_version, vehicle_tag, warehouse, warehouse_item };
|
|
80
|
+
export { auth, benchmarking, general, inout, pipefy, cash_basis, checklist, checklist_group, checklist_group_item, checklist_group_option, checklist_model, checklist_reply, company, cost_center, cost_sharing, cost_sharing_entity, customer, driver_control, driver_license_point, employee, employee_hiring_regime, employee_role, expense, fine, fine_qualification_integration_key, fine_qualification, fine_resource, foreseen_maintenance_plan_service_item, foreseen_service_order_item, gas_pump_control, gate, gate_appointment, gate_appointment_diary, item, leasing_contract, maintenance_plan, maintenance_plan_service, measurement_unit, night_transport, parameter, pendency, qualification_severity, release_notification, request_occurrence, route, service_order, solicitation, solicitation_comment, solicitation_history, solicitation_watcher, stock_transfer, stock_transfer_item, stock_entry_item, sub_system, subsidiary, supplier, system, tire_brand, tire_dimension, tire_drawing, transaction, trip, vehicle, vehicle_axes, vehicle_brand, vehicle_change_history, vehicle_deactivation_cause, vehicle_due, vehicle_fuel, vehicle_layout, vehicle_leasing, vehicle_maintenance_plan, vehicle_model, vehicle_model_version, vehicle_tag, warehouse, warehouse_item };
|
|
@@ -37,6 +37,8 @@ const cost_center = __importStar(require("./modules/cost_center"));
|
|
|
37
37
|
exports.cost_center = cost_center;
|
|
38
38
|
const cost_sharing = __importStar(require("./modules/cost_sharing"));
|
|
39
39
|
exports.cost_sharing = cost_sharing;
|
|
40
|
+
const cost_sharing_entity = __importStar(require("./modules/cost_sharing_entity"));
|
|
41
|
+
exports.cost_sharing_entity = cost_sharing_entity;
|
|
40
42
|
const customer = __importStar(require("./modules/customer"));
|
|
41
43
|
exports.customer = customer;
|
|
42
44
|
const driver_control = __importStar(require("./modules/driver_control"));
|
|
@@ -13,6 +13,7 @@ import * as checklist_reply from './modules/checklist_reply';
|
|
|
13
13
|
import * as company from './modules/company';
|
|
14
14
|
import * as cost_center from './modules/cost_center';
|
|
15
15
|
import * as cost_sharing from './modules/cost_sharing';
|
|
16
|
+
import * as cost_sharing_entity from './modules/cost_sharing_entity';
|
|
16
17
|
import * as customer from './modules/customer';
|
|
17
18
|
import * as driver_control from './modules/driver_control';
|
|
18
19
|
import * as driver_license_point from './modules/driver_license_point';
|
|
@@ -94,6 +95,7 @@ export {
|
|
|
94
95
|
company,
|
|
95
96
|
cost_center,
|
|
96
97
|
cost_sharing,
|
|
98
|
+
cost_sharing_entity,
|
|
97
99
|
customer,
|
|
98
100
|
driver_control,
|
|
99
101
|
driver_license_point,
|