ordering-ui-admin-external 1.43.55 → 1.43.56
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/_bundles/{ordering-ui-admin.a4c16500259261bd14ca.js → ordering-ui-admin.630caf46d37ee75b00b8.js} +2 -2
- package/_modules/components/Delivery/DriversAdvancedLogs/index.js +101 -0
- package/_modules/components/Delivery/DriversAdvancedLogs/styles.js +66 -0
- package/_modules/components/Delivery/UserDetails/index.js +9 -5
- package/_modules/components/Delivery/UserDetailsMenu/index.js +3 -0
- package/_modules/components/Delivery/index.js +7 -0
- package/_modules/index.js +6 -0
- package/package.json +2 -2
- package/src/components/Delivery/DriversAdvancedLogs/index.js +156 -0
- package/src/components/Delivery/DriversAdvancedLogs/styles.js +186 -0
- package/src/components/Delivery/UserDetails/index.js +7 -0
- package/src/components/Delivery/UserDetailsMenu/index.js +1 -0
- package/src/components/Delivery/index.js +2 -0
- package/src/index.js +2 -0
- /package/_bundles/{ordering-ui-admin.a4c16500259261bd14ca.js.LICENSE.txt → ordering-ui-admin.630caf46d37ee75b00b8.js.LICENSE.txt} +0 -0
|
@@ -21,6 +21,7 @@ export const UserDetailsMenu = (props) => {
|
|
|
21
21
|
{ key: 'saved_places', content: t('SAVED_PLACES', 'Saved places') },
|
|
22
22
|
{ key: 'schedule', content: t('SCHEDULE', 'Schedule') },
|
|
23
23
|
{ key: 'logs', content: t('LOGS', 'Logs') },
|
|
24
|
+
{ key: 'advanced_logs', content: t('ADVANCED_LOGS', 'Advanced logs') },
|
|
24
25
|
{ key: 'push_tokens', content: t('PUSH_TOKENS', 'Push tokens') }
|
|
25
26
|
// { key: 'metafields', content: t('METAFIELDS', 'Metafields') },
|
|
26
27
|
// { key: 'personalization', content: t('PERSONALIZATION', 'Personalization') }
|
|
@@ -17,6 +17,7 @@ import { DriversGroupBusinesses } from './DriversGroupBusinesses'
|
|
|
17
17
|
import { DriversGroupPaymethods } from './DriversGroupPaymethods'
|
|
18
18
|
import { DriversGroupLogistics } from './DriversGroupLogistics'
|
|
19
19
|
import { DriversGroupLogs } from './DriversGroupLogs'
|
|
20
|
+
import { DriversAdvancedLogs } from './DriversAdvancedLogs'
|
|
20
21
|
import { DriversGroupCompanies } from './DriversGroupCompanies'
|
|
21
22
|
import { DriversGroupDrivers } from './DriversGroupDrivers'
|
|
22
23
|
import { DriversGroupOrders } from './DriversGroupOrders'
|
|
@@ -46,6 +47,7 @@ export {
|
|
|
46
47
|
DriversGroupPaymethods,
|
|
47
48
|
DriversGroupLogistics,
|
|
48
49
|
DriversGroupLogs,
|
|
50
|
+
DriversAdvancedLogs,
|
|
49
51
|
DriversGroupCompanies,
|
|
50
52
|
DriversGroupDrivers,
|
|
51
53
|
DriversGroupOrders,
|
package/src/index.js
CHANGED
|
@@ -135,6 +135,7 @@ import {
|
|
|
135
135
|
DriversGroupPaymethods,
|
|
136
136
|
DriversGroupLogistics,
|
|
137
137
|
DriversGroupLogs,
|
|
138
|
+
DriversAdvancedLogs,
|
|
138
139
|
DriversGroupCompanies,
|
|
139
140
|
DriversGroupDrivers,
|
|
140
141
|
DriversGroupOrders,
|
|
@@ -557,6 +558,7 @@ export {
|
|
|
557
558
|
DriversGroupPaymethods,
|
|
558
559
|
DriversGroupLogistics,
|
|
559
560
|
DriversGroupLogs,
|
|
561
|
+
DriversAdvancedLogs,
|
|
560
562
|
DriversGroupCompanies,
|
|
561
563
|
DriversGroupDrivers,
|
|
562
564
|
DriversGroupOrders,
|