@trusted-solutions/sdit.models 0.62.0-alpha.6 → 0.62.0-alpha.7
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,7 +1,7 @@
|
|
|
1
1
|
import { Address, DayOfWeekTimePeriod, GalleryConfig, Operator, PointProvider } from '../models/store';
|
|
2
2
|
import { CustomerPointDetail, MultiLanguageText, OrderDiscount } from '../models';
|
|
3
3
|
import { PaymentServiceProvider, ServeType } from '../enums';
|
|
4
|
-
import { SOPublicMenu, SOPublicCategory, SOPublicProduct,
|
|
4
|
+
import { SOPublicMenu, SOPublicCategory, SOPublicProduct, SOPublicProductAttribute, SOPublicProductAttributeCategory, SOPaymentMethod, SOValidateCart, SOOrderState, SOOrder, SOEater, SOPublicDiscountRule, SOMemberCoupon } from '../models/online-ordering';
|
|
5
5
|
import { RoundingMode } from '../enums/rounding-mode.enum';
|
|
6
6
|
import { MultipleItems } from './response';
|
|
7
7
|
/**
|
|
@@ -235,7 +235,7 @@ export interface SOGetPopularProductsRequest {
|
|
|
235
235
|
when?: number;
|
|
236
236
|
serveType?: ServeType;
|
|
237
237
|
}
|
|
238
|
-
export interface SOGetPopularProductsResponse extends MultipleItems<
|
|
238
|
+
export interface SOGetPopularProductsResponse extends MultipleItems<SOPublicProduct> {
|
|
239
239
|
}
|
|
240
240
|
export interface SOGetBestPairingsRequest {
|
|
241
241
|
storeId: string;
|
|
@@ -243,7 +243,7 @@ export interface SOGetBestPairingsRequest {
|
|
|
243
243
|
when?: number;
|
|
244
244
|
serveType?: ServeType;
|
|
245
245
|
}
|
|
246
|
-
export interface SOGetBestPairingsResponse extends MultipleItems<
|
|
246
|
+
export interface SOGetBestPairingsResponse extends MultipleItems<SOPublicProduct> {
|
|
247
247
|
}
|
|
248
248
|
export interface SOGetMyMemberCouponsRequest {
|
|
249
249
|
storeId: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trusted-solutions/sdit.models",
|
|
3
|
-
"version": "0.62.0-alpha.
|
|
3
|
+
"version": "0.62.0-alpha.7",
|
|
4
4
|
"description": "TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|