@routebot/constants 0.3.32 → 0.3.34
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/constants/plan.constants.js +19 -19
- package/package.json +1 -1
|
@@ -18,7 +18,7 @@ const PLANS_META = {
|
|
|
18
18
|
description: "plan.demo.description",
|
|
19
19
|
features: ["features.routes.limited"],
|
|
20
20
|
priceMonthly: 0,
|
|
21
|
-
maxRoutes:
|
|
21
|
+
maxRoutes: 10,
|
|
22
22
|
dontShow: true,
|
|
23
23
|
},
|
|
24
24
|
|
|
@@ -37,8 +37,8 @@ const PLANS_META = {
|
|
|
37
37
|
name: "Starter",
|
|
38
38
|
description: "plan.starter.description",
|
|
39
39
|
features: ["features.routes.limited"],
|
|
40
|
-
priceMonthly:
|
|
41
|
-
maxRoutes:
|
|
40
|
+
priceMonthly: 120,
|
|
41
|
+
maxRoutes: 40,
|
|
42
42
|
},
|
|
43
43
|
|
|
44
44
|
[PLANS.PRO]: {
|
|
@@ -46,8 +46,8 @@ const PLANS_META = {
|
|
|
46
46
|
name: "Pro",
|
|
47
47
|
description: "plan.pro.description",
|
|
48
48
|
features: ["features.routes.limited"],
|
|
49
|
-
priceMonthly:
|
|
50
|
-
maxRoutes:
|
|
49
|
+
priceMonthly: 500,
|
|
50
|
+
maxRoutes: 200,
|
|
51
51
|
recommended: true,
|
|
52
52
|
},
|
|
53
53
|
|
|
@@ -56,8 +56,8 @@ const PLANS_META = {
|
|
|
56
56
|
name: "Business",
|
|
57
57
|
description: "plan.business.description",
|
|
58
58
|
features: ["features.routes.limited"],
|
|
59
|
-
priceMonthly:
|
|
60
|
-
maxRoutes:
|
|
59
|
+
priceMonthly: 1500,
|
|
60
|
+
maxRoutes: 750,
|
|
61
61
|
},
|
|
62
62
|
|
|
63
63
|
[PLANS.ENTERPRISE]: {
|
|
@@ -65,8 +65,8 @@ const PLANS_META = {
|
|
|
65
65
|
name: "Enterprise",
|
|
66
66
|
description: "plan.enterprise.description",
|
|
67
67
|
features: ["features.routes.limited"],
|
|
68
|
-
priceMonthly:
|
|
69
|
-
maxRoutes:
|
|
68
|
+
priceMonthly: 5000,
|
|
69
|
+
maxRoutes: 5000,
|
|
70
70
|
contactRequired: true,
|
|
71
71
|
dontShow: true,
|
|
72
72
|
},
|
|
@@ -87,10 +87,10 @@ const PLAN_QUOTAS = {
|
|
|
87
87
|
[USAGE_TYPES.MAPS__DIRECTIONS_WITH_WAYPOINTS]: 100,
|
|
88
88
|
},
|
|
89
89
|
[PLANS.FREE]: {
|
|
90
|
-
[USAGE_TYPES.MAPS__ADDRESS_TO_NEAREST_ROAD_LOCATION]:
|
|
91
|
-
[USAGE_TYPES.MAPS__LOCATION_TO_NEAREST_ROAD_ADDRESS]:
|
|
92
|
-
[USAGE_TYPES.MAPS__DIRECTIONS_SINGLE]:
|
|
93
|
-
[USAGE_TYPES.MAPS__DIRECTIONS_WITH_WAYPOINTS]:
|
|
90
|
+
[USAGE_TYPES.MAPS__ADDRESS_TO_NEAREST_ROAD_LOCATION]: 500,
|
|
91
|
+
[USAGE_TYPES.MAPS__LOCATION_TO_NEAREST_ROAD_ADDRESS]: 500,
|
|
92
|
+
[USAGE_TYPES.MAPS__DIRECTIONS_SINGLE]: 500,
|
|
93
|
+
[USAGE_TYPES.MAPS__DIRECTIONS_WITH_WAYPOINTS]: 500,
|
|
94
94
|
},
|
|
95
95
|
[PLANS.STARTER]: {
|
|
96
96
|
[USAGE_TYPES.MAPS__ADDRESS_TO_NEAREST_ROAD_LOCATION]: 5000,
|
|
@@ -99,17 +99,17 @@ const PLAN_QUOTAS = {
|
|
|
99
99
|
[USAGE_TYPES.MAPS__DIRECTIONS_WITH_WAYPOINTS]: 5000,
|
|
100
100
|
},
|
|
101
101
|
[PLANS.PRO]: {
|
|
102
|
-
[USAGE_TYPES.MAPS__ADDRESS_TO_NEAREST_ROAD_LOCATION]: 10000,
|
|
103
|
-
[USAGE_TYPES.MAPS__LOCATION_TO_NEAREST_ROAD_ADDRESS]: 10000,
|
|
104
|
-
[USAGE_TYPES.MAPS__DIRECTIONS_SINGLE]: 10000,
|
|
105
|
-
[USAGE_TYPES.MAPS__DIRECTIONS_WITH_WAYPOINTS]: 10000,
|
|
106
|
-
},
|
|
107
|
-
[PLANS.BUSINESS]: {
|
|
108
102
|
[USAGE_TYPES.MAPS__ADDRESS_TO_NEAREST_ROAD_LOCATION]: 20000,
|
|
109
103
|
[USAGE_TYPES.MAPS__LOCATION_TO_NEAREST_ROAD_ADDRESS]: 20000,
|
|
110
104
|
[USAGE_TYPES.MAPS__DIRECTIONS_SINGLE]: 20000,
|
|
111
105
|
[USAGE_TYPES.MAPS__DIRECTIONS_WITH_WAYPOINTS]: 20000,
|
|
112
106
|
},
|
|
107
|
+
[PLANS.BUSINESS]: {
|
|
108
|
+
[USAGE_TYPES.MAPS__ADDRESS_TO_NEAREST_ROAD_LOCATION]: 60000,
|
|
109
|
+
[USAGE_TYPES.MAPS__LOCATION_TO_NEAREST_ROAD_ADDRESS]: 60000,
|
|
110
|
+
[USAGE_TYPES.MAPS__DIRECTIONS_SINGLE]: 60000,
|
|
111
|
+
[USAGE_TYPES.MAPS__DIRECTIONS_WITH_WAYPOINTS]: 60000,
|
|
112
|
+
},
|
|
113
113
|
[PLANS.ENTERPRISE]: {
|
|
114
114
|
[USAGE_TYPES.MAPS__ADDRESS_TO_NEAREST_ROAD_LOCATION]: 100000,
|
|
115
115
|
[USAGE_TYPES.MAPS__LOCATION_TO_NEAREST_ROAD_ADDRESS]: 100000,
|