@open-tender/types 0.0.38 → 0.0.40

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
  export interface Address {
2
- city: string;
2
+ city?: string;
3
3
  company?: string;
4
4
  contact?: string;
5
5
  created_at?: string;
@@ -1,5 +1,5 @@
1
1
  import { ISOStringOffset } from '../../datetimes';
2
- export declare type NotificationChannel = 'EMAIL' | 'SMS' | 'PUSH';
2
+ export declare type NotificationChannel = 'EMAIL' | 'SMS' | 'PUSH' | 'ALL';
3
3
  export declare type NotificationArea = 'ORDER' | 'RATING' | 'MARKETING';
4
4
  export interface CustomerNotificationPref {
5
5
  craeted_at: ISOStringOffset;
@@ -32,3 +32,4 @@ export * from './creditCards';
32
32
  export * from './announcements';
33
33
  export * from './deals';
34
34
  export * from './allergens';
35
+ export * from './config';
@@ -35,3 +35,4 @@ tslib_1.__exportStar(require("./creditCards"), exports);
35
35
  tslib_1.__exportStar(require("./announcements"), exports);
36
36
  tslib_1.__exportStar(require("./deals"), exports);
37
37
  tslib_1.__exportStar(require("./allergens"), exports);
38
+ tslib_1.__exportStar(require("./config"), exports);
@@ -10,7 +10,7 @@ export declare type FullOrderType = OrderType | 'MAIN_MENU' | 'ECOMMERCE';
10
10
  export declare type OrderTypeMap = {
11
11
  [Property in OrderType]: string;
12
12
  };
13
- export declare type ServiceType = 'WALKIN' | 'PICKUP' | 'DELIVERY' | 'PORTAL';
13
+ export declare type ServiceType = 'WALKIN' | 'PICKUP' | 'DELIVERY' | 'PORTAL' | 'OUTPOST';
14
14
  export declare type ServiceTypeMap = {
15
15
  [Property in ServiceType]: string;
16
16
  };