@autofleet/node-common 1.2.3 → 1.2.6

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/settings/map.js +21 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autofleet/node-common",
3
- "version": "1.2.3",
3
+ "version": "1.2.6",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "coverage": "jest --coverage --forceExit --runInBand",
package/settings/map.js CHANGED
@@ -374,4 +374,25 @@ module.exports = {
374
374
  defaultValue: 500,
375
375
  context: 'matching',
376
376
  },
377
+ LOGIN_VERIFICATION_SMS_TEXT: {
378
+ name: 'Verification SMS text',
379
+ description: 'Verification text for driver app login',
380
+ type: 'string',
381
+ defaultValue: 'Your Autofleet code is',
382
+ context: 'driver app',
383
+ },
384
+ VEHICLE_LOCK_TIME_FOR_OFFER: {
385
+ name: 'Offer lock time',
386
+ description: 'Time in seconds to lock vehicle for offer',
387
+ type: 'number',
388
+ defaultValue: 180,
389
+ context: 'ride',
390
+ },
391
+ CURRENCY: {
392
+ name: 'Currency of ride price and fees',
393
+ description: 'Currency to calculate the ride price and fees, should be in 3 letter symbol',
394
+ type: 'string',
395
+ defaultValue: 'GBP',
396
+ context: 'ride',
397
+ },
377
398
  };