@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.
- package/dist/index.es.js +6827 -6632
- package/dist/types/api-clients/generated/graphql.d.ts +5 -0
- package/dist/types/components/CloudChannel/Pages/Basket/BasketItemTypes.d.ts +4 -0
- package/dist/types/components/CloudChannel/Pages/Order/OrderItemsTable.vue.d.ts +3 -0
- package/dist/types/components/CloudChannel/Pages/Subscription/SubscriptionDetailsTypes.d.ts +3 -0
- package/package.json +1 -1
|
@@ -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;
|