nextemos 5.8.11 → 5.8.13

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.
@@ -114,7 +114,7 @@ export interface IInvoice {
114
114
  isGiftBoxRequested: boolean;
115
115
  giftBoxNote: string;
116
116
  gainPoint: number;
117
- flags: "None";
117
+ flags: "None" | "ShipmentFee" | "PaymentFee" | "Customization";
118
118
  shipments: {
119
119
  waybillNo: string;
120
120
  trackingUrl: string;
@@ -72,7 +72,7 @@ export interface IProduct {
72
72
  categories?: ICategory[];
73
73
  variations?: number[];
74
74
  channelProperties?: ChannelProperty[];
75
- types?: Type[];
75
+ types?: IProductType[];
76
76
  barcodes?: Barcode[];
77
77
  documents?: IDocument[];
78
78
  vendors?: Vendor[];
@@ -171,19 +171,6 @@ export interface ChannelProperty {
171
171
  isShowedListPage: boolean;
172
172
  isShowedDetailPage: boolean;
173
173
  }
174
- export interface Type {
175
- id: number;
176
- name: string;
177
- key: string;
178
- integrationCode: string;
179
- isShowedOnPage: boolean;
180
- parameterName: string;
181
- routePath: string;
182
- routeTitle: string;
183
- routeDescription: string;
184
- isAggregated: boolean;
185
- extensionData: any;
186
- }
187
174
  export interface Barcode {
188
175
  id: number;
189
176
  barcode: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextemos",
3
- "version": "5.8.11",
3
+ "version": "5.8.13",
4
4
  "description": "For helpers and hooks used in NextJS projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",