@sofit/view-locale 1.32.3 → 1.33.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.
@@ -1,5 +1,5 @@
1
- <testsuites name="Sofit view locale tests" tests="8" failures="0" time="2.317">
2
- <testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2019-04-10T18:00:10" time="1.575" tests="4">
1
+ <testsuites name="Sofit view locale tests" tests="8" failures="0" time="2.37">
2
+ <testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2019-05-01T13:51:07" time="1.516" tests="4">
3
3
  <testcase classname="Joi tests should return default message" name="Joi tests should return default message" time="0.003">
4
4
  </testcase>
5
5
  <testcase classname="Joi tests should return non label message" name="Joi tests should return non label message" time="0">
@@ -9,10 +9,10 @@
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-04-10T18:00:10" time="1.555" tests="4">
13
- <testcase classname="Vehicle locale test Should get translations with reach" name="Vehicle locale test Should get translations with reach" time="0.007">
12
+ <testsuite name="Vehicle locale test" errors="0" failures="0" skipped="0" timestamp="2019-05-01T13:51:07" time="1.601" 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
- <testcase classname="Vehicle locale test Should replace correctly with reach" name="Vehicle locale test Should replace correctly with reach" time="0.001">
15
+ <testcase classname="Vehicle locale test Should replace correctly with reach" name="Vehicle locale test Should replace correctly with reach" time="0">
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.001">
18
18
  </testcase>
@@ -1,5 +1,6 @@
1
1
  import * as auth from './common/auth';
2
2
  import * as benchmarking from './common/benchmarking';
3
+ import * as pipefy from './integrations/pipefy';
3
4
  import * as cash_basis from './modules/cash_basis';
4
5
  import * as checklist_group from './modules/checklist_group';
5
6
  import * as checklist_group_item from './modules/checklist_group_item';
@@ -47,4 +48,4 @@ import * as warehouse from './modules/warehouse';
47
48
  import * as warehouse_item from './modules/warehouse_item';
48
49
  export { joi } from './common/joi';
49
50
  export { databaseErrors } from './common/database-errors';
50
- export { auth, benchmarking, checklist_group, checklist_group_item, checklist_group_option, checklist_model, 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 };
51
+ export { auth, benchmarking, checklist_group, checklist_group_item, checklist_group_option, checklist_model, 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, pipefy, 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,6 +11,8 @@ 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 pipefy = __importStar(require("./integrations/pipefy"));
15
+ exports.pipefy = pipefy;
14
16
  const cash_basis = __importStar(require("./modules/cash_basis"));
15
17
  exports.cash_basis = cash_basis;
16
18
  const checklist_group = __importStar(require("./modules/checklist_group"));
@@ -0,0 +1,10 @@
1
+ export declare const messages: {
2
+ insert_error: {
3
+ ptBR: string;
4
+ es: string;
5
+ };
6
+ delete_error: {
7
+ ptBR: string;
8
+ es: string;
9
+ };
10
+ };
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.messages = {
4
+ insert_error: {
5
+ ptBR: 'Houve um erro ao inserir registro no pipefy!',
6
+ es: '¡Error al insertar registro en pipefy!'
7
+ },
8
+ delete_error: {
9
+ ptBR: 'Houve um erro ao deletar registro no pipefy!',
10
+ es: '¡Error al borrar registro en pipefy!'
11
+ }
12
+ };
@@ -1,5 +1,6 @@
1
1
  import * as auth from './common/auth';
2
2
  import * as benchmarking from './common/benchmarking';
3
+ import * as pipefy from './integrations/pipefy';
3
4
  import * as cash_basis from './modules/cash_basis';
4
5
  import * as checklist_group from './modules/checklist_group';
5
6
  import * as checklist_group_item from './modules/checklist_group_item';
@@ -74,6 +75,7 @@ export {
74
75
  maintenance_plan_service,
75
76
  measurement_unit,
76
77
  parameter,
78
+ pipefy,
77
79
  qualification_severity,
78
80
  release_notification,
79
81
  route,
@@ -0,0 +1,10 @@
1
+ export const messages = {
2
+ insert_error: {
3
+ ptBR: 'Houve um erro ao inserir registro no pipefy!',
4
+ es: '¡Error al insertar registro en pipefy!'
5
+ },
6
+ delete_error: {
7
+ ptBR: 'Houve um erro ao deletar registro no pipefy!',
8
+ es: '¡Error al borrar registro en pipefy!'
9
+ }
10
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sofit/view-locale",
3
- "version": "1.32.3",
3
+ "version": "1.33.0",
4
4
  "description": "Traduções do Sofit View",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",