@sofit/view-locale 1.68.0 → 1.68.1

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.
@@ -1,6 +1,6 @@
1
- <testsuites name="Sofit view locale tests" tests="8" failures="0" time="2.531">
2
- <testsuite name="Vehicle locale test" errors="0" failures="0" skipped="0" timestamp="2019-11-08T19:56:09" time="1.813" tests="4">
3
- <testcase classname="Vehicle locale test Should get translations with reach" name="Vehicle locale test Should get translations with reach" time="0.003">
1
+ <testsuites name="Sofit view locale tests" tests="8" failures="0" time="8.126">
2
+ <testsuite name="Vehicle locale test" errors="0" failures="0" skipped="0" timestamp="2019-11-11T17:19:46" time="7.154" tests="4">
3
+ <testcase classname="Vehicle locale test Should get translations with reach" name="Vehicle locale test Should get translations with reach" time="0.005">
4
4
  </testcase>
5
5
  <testcase classname="Vehicle locale test Should replace correctly with reach" name="Vehicle locale test Should replace correctly with reach" time="0">
6
6
  </testcase>
@@ -9,12 +9,12 @@
9
9
  <testcase classname="Vehicle locale test Should replace correctly with raw" name="Vehicle locale test Should replace correctly with raw" time="0.001">
10
10
  </testcase>
11
11
  </testsuite>
12
- <testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2019-11-08T19:56:09" time="1.773" tests="4">
12
+ <testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2019-11-11T17:19:46" time="7.167" tests="4">
13
13
  <testcase classname="Joi tests should return default message" name="Joi tests should return default message" time="0.004">
14
14
  </testcase>
15
- <testcase classname="Joi tests should return non label message" name="Joi tests should return non label message" time="0">
15
+ <testcase classname="Joi tests should return non label message" name="Joi tests should return non label message" time="0.001">
16
16
  </testcase>
17
- <testcase classname="Joi tests should return translated label message" name="Joi tests should return translated label message" time="0.004">
17
+ <testcase classname="Joi tests should return translated label message" name="Joi tests should return translated label message" time="0.001">
18
18
  </testcase>
19
19
  <testcase classname="Joi tests should return translated label index" name="Joi tests should return translated label index" time="0">
20
20
  </testcase>
@@ -65,6 +65,7 @@ import * as transaction from './modules/transaction';
65
65
  import * as trip from './modules/trip';
66
66
  import * as vehicle from './modules/vehicle';
67
67
  import * as vehicle_axes from './modules/vehicle_axes';
68
+ import * as vehicle_booking from './modules/vehicle_booking';
68
69
  import * as vehicle_brand from './modules/vehicle_brand';
69
70
  import * as vehicle_change_history from './modules/vehicle_change_history';
70
71
  import * as vehicle_deactivation_cause from './modules/vehicle_deactivation_cause';
@@ -83,4 +84,4 @@ import * as warehouse from './modules/warehouse';
83
84
  import * as warehouse_item from './modules/warehouse_item';
84
85
  export { joi } from './common/joi';
85
86
  export { databaseErrors } from './common/database-errors';
86
- 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, leasing_measurement, 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_event, vehicle_event_type, vehicle_fuel, vehicle_layout, vehicle_leasing, vehicle_maintenance_plan, vehicle_maintenance_plan_service, vehicle_model, vehicle_model_version, vehicle_tag, warehouse, warehouse_item, city, state };
87
+ 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, leasing_measurement, 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_booking, vehicle_brand, vehicle_change_history, vehicle_deactivation_cause, vehicle_due, vehicle_event, vehicle_event_type, vehicle_fuel, vehicle_layout, vehicle_leasing, vehicle_maintenance_plan, vehicle_maintenance_plan_service, vehicle_model, vehicle_model_version, vehicle_tag, warehouse, warehouse_item, city, state };
@@ -141,6 +141,8 @@ const vehicle = __importStar(require("./modules/vehicle"));
141
141
  exports.vehicle = vehicle;
142
142
  const vehicle_axes = __importStar(require("./modules/vehicle_axes"));
143
143
  exports.vehicle_axes = vehicle_axes;
144
+ const vehicle_booking = __importStar(require("./modules/vehicle_booking"));
145
+ exports.vehicle_booking = vehicle_booking;
144
146
  const vehicle_brand = __importStar(require("./modules/vehicle_brand"));
145
147
  exports.vehicle_brand = vehicle_brand;
146
148
  const vehicle_change_history = __importStar(require("./modules/vehicle_change_history"));
@@ -65,6 +65,7 @@ import * as transaction from './modules/transaction';
65
65
  import * as trip from './modules/trip';
66
66
  import * as vehicle from './modules/vehicle';
67
67
  import * as vehicle_axes from './modules/vehicle_axes';
68
+ import * as vehicle_booking from './modules/vehicle_booking';
68
69
  import * as vehicle_brand from './modules/vehicle_brand';
69
70
  import * as vehicle_change_history from './modules/vehicle_change_history';
70
71
  import * as vehicle_deactivation_cause from './modules/vehicle_deactivation_cause';
@@ -151,6 +152,7 @@ export {
151
152
  trip,
152
153
  vehicle,
153
154
  vehicle_axes,
155
+ vehicle_booking,
154
156
  vehicle_brand,
155
157
  vehicle_change_history,
156
158
  vehicle_deactivation_cause,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sofit/view-locale",
3
- "version": "1.68.0",
3
+ "version": "1.68.1",
4
4
  "description": "Traduções do Sofit View",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",