@stock-in-the-channel/sinch-vue-components 0.0.359 → 0.0.361

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.
@@ -1306,6 +1306,7 @@ export type GetOrderDetails = {
1306
1306
  sinchAccountId: Scalars['String']['output'];
1307
1307
  status: OrderPayloadStatus;
1308
1308
  statusHistory: Array<OrderPayloadStatusHistory>;
1309
+ totalMsrp: Scalars['Decimal']['output'];
1309
1310
  totalPrice: Scalars['Decimal']['output'];
1310
1311
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
1311
1312
  };
@@ -1795,6 +1796,7 @@ export type OrderItemPayload = {
1795
1796
  billingPeriodDuration?: Maybe<Scalars['Decimal']['output']>;
1796
1797
  billingPeriodType: Scalars['String']['output'];
1797
1798
  isMainSubscription: Scalars['Boolean']['output'];
1799
+ msrp?: Maybe<Scalars['Decimal']['output']>;
1798
1800
  orderId: Scalars['Int']['output'];
1799
1801
  orderItemId: Scalars['Int']['output'];
1800
1802
  parentOrderItem?: Maybe<OrderItemPayload>;
@@ -2393,6 +2395,7 @@ export type SearchOrdersPayload = {
2393
2395
  sinchAccountId: Scalars['String']['output'];
2394
2396
  status: OrderPayloadStatus;
2395
2397
  statusHistory: Array<OrderPayloadStatusHistory>;
2398
+ totalMsrp: Scalars['Decimal']['output'];
2396
2399
  totalPrice: Scalars['Decimal']['output'];
2397
2400
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
2398
2401
  };
@@ -2412,6 +2415,7 @@ export type SearchOrdersPayloadFilterInput = {
2412
2415
  sinchAccountId?: InputMaybe<StringOperationFilterInput>;
2413
2416
  status?: InputMaybe<OrderPayloadStatusOperationFilterInput>;
2414
2417
  statusHistory?: InputMaybe<ListFilterInputTypeOfOrderPayloadStatusHistoryFilterInput>;
2418
+ totalMsrp?: InputMaybe<DecimalOperationFilterInput>;
2415
2419
  totalPrice?: InputMaybe<DecimalOperationFilterInput>;
2416
2420
  updatedAt?: InputMaybe<DateTimeOperationFilterInput>;
2417
2421
  };
@@ -2428,6 +2432,7 @@ export type SearchOrdersPayloadSortInput = {
2428
2432
  salesOrderParameters?: InputMaybe<SortEnumType>;
2429
2433
  sinchAccountId?: InputMaybe<SortEnumType>;
2430
2434
  status?: InputMaybe<SortEnumType>;
2435
+ totalMsrp?: InputMaybe<SortEnumType>;
2431
2436
  totalPrice?: InputMaybe<SortEnumType>;
2432
2437
  updatedAt?: InputMaybe<SortEnumType>;
2433
2438
  };
@@ -11,4 +11,8 @@ export type BasketItemPayloadLocal = BasketItemPayload & {
11
11
  totalPrice?: number;
12
12
  profit?: number;
13
13
  margin?: number;
14
+ subscriptionPeriodDuration?: number;
15
+ subscriptionPeriodType: string;
16
+ billingPeriodDuration?: number;
17
+ billingPeriodType: string;
14
18
  };
@@ -1,10 +1,12 @@
1
1
  import { GetOrderDetailsLocal } from './OrderTypes';
2
+ import { ExibitionModeEnum } from '@/types/ExibitionModeEnum';
2
3
  declare function refreshData(): void;
3
4
  declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
4
5
  order?: GetOrderDetailsLocal | undefined;
5
6
  rowsPerPageOptions: number[];
6
7
  showItemsExpanded: boolean;
7
8
  isDataLoading: boolean;
9
+ exibitionMode: ExibitionModeEnum;
8
10
  }>>, {
9
11
  refreshData: typeof refreshData;
10
12
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
@@ -12,6 +14,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
12
14
  rowsPerPageOptions: number[];
13
15
  showItemsExpanded: boolean;
14
16
  isDataLoading: boolean;
17
+ exibitionMode: ExibitionModeEnum;
15
18
  }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
16
19
  export default _default;
17
20
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -38,6 +38,9 @@ export type SubscriptionLineLocal = {
38
38
  name: string;
39
39
  price?: number;
40
40
  quantity: number;
41
+ changeQuantity: number;
42
+ changeQuantityTmp: number;
43
+ newQuantity: number;
41
44
  sku: string;
42
45
  subscriptionId: number;
43
46
  vendor?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stock-in-the-channel/sinch-vue-components",
3
- "version": "0.0.359",
3
+ "version": "0.0.361",
4
4
  "files": [
5
5
  "dist"
6
6
  ],