@open-tender/types 0.2.80 → 0.2.81
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
1
|
import { TimezonePython } from '../datetimes';
|
|
2
|
-
import { OrderType, ServiceType } from '../global';
|
|
2
|
+
import { LatLng, OrderType, ServiceType } from '../global';
|
|
3
3
|
import { CustomerCreate, LoyaltyType, NotificationChannel } from './customer';
|
|
4
4
|
import { RevenueCenterStatus } from './revenueCenter';
|
|
5
5
|
export interface ConfigApp {
|
|
@@ -386,10 +386,6 @@ export interface ConfigDisplaySetting {
|
|
|
386
386
|
storePhone: boolean;
|
|
387
387
|
tags: boolean;
|
|
388
388
|
}
|
|
389
|
-
export interface GoogleMapsCenter {
|
|
390
|
-
lat: number;
|
|
391
|
-
lng: number;
|
|
392
|
-
}
|
|
393
389
|
export interface GoogleMapsAnchor {
|
|
394
390
|
x: number;
|
|
395
391
|
y: number;
|
|
@@ -418,7 +414,7 @@ export interface GoogleMapsStyles {
|
|
|
418
414
|
export interface GoogleMaps {
|
|
419
415
|
apiKey: string;
|
|
420
416
|
apiKeyApp: string;
|
|
421
|
-
defaultCenter:
|
|
417
|
+
defaultCenter: LatLng;
|
|
422
418
|
icons: GoogleMapsIcons;
|
|
423
419
|
styles: GoogleMapsStyles;
|
|
424
420
|
zoom: number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TimezonePython } from '../datetimes';
|
|
2
|
-
import { OrderType, ServiceType } from '../global';
|
|
2
|
+
import { LatLng, OrderType, ServiceType } from '../global';
|
|
3
3
|
import { CustomerCreate, LoyaltyType, NotificationChannel } from './customer';
|
|
4
4
|
import { RevenueCenterStatus } from './revenueCenter';
|
|
5
5
|
export interface ConfigApp {
|
|
@@ -386,10 +386,6 @@ export interface ConfigDisplaySetting {
|
|
|
386
386
|
storePhone: boolean;
|
|
387
387
|
tags: boolean;
|
|
388
388
|
}
|
|
389
|
-
export interface GoogleMapsCenter {
|
|
390
|
-
lat: number;
|
|
391
|
-
lng: number;
|
|
392
|
-
}
|
|
393
389
|
export interface GoogleMapsAnchor {
|
|
394
390
|
x: number;
|
|
395
391
|
y: number;
|
|
@@ -418,7 +414,7 @@ export interface GoogleMapsStyles {
|
|
|
418
414
|
export interface GoogleMaps {
|
|
419
415
|
apiKey: string;
|
|
420
416
|
apiKeyApp: string;
|
|
421
|
-
defaultCenter:
|
|
417
|
+
defaultCenter: LatLng;
|
|
422
418
|
icons: GoogleMapsIcons;
|
|
423
419
|
styles: GoogleMapsStyles;
|
|
424
420
|
zoom: number;
|
package/package.json
CHANGED