@stock-in-the-channel/sinch-vue-components 0.0.345 → 0.0.347
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.
|
@@ -504,6 +504,7 @@ export declare class ProductDistributorResult implements IProductDistributorResu
|
|
|
504
504
|
clientHasPriceAccount?: boolean;
|
|
505
505
|
clientPrice?: number | undefined;
|
|
506
506
|
clientPriceCulture?: string | undefined;
|
|
507
|
+
clientPriceCurrency?: string | undefined;
|
|
507
508
|
datafeedOwnerClientID?: number | undefined;
|
|
508
509
|
distributorId?: number;
|
|
509
510
|
distributorLogoImageUrl?: string | undefined;
|
|
@@ -771,10 +771,15 @@ export type CreateBasketInputItemInput = {
|
|
|
771
771
|
basketId?: InputMaybe<Scalars['Int']['input']>;
|
|
772
772
|
billingPeriodDuration?: InputMaybe<Scalars['Int']['input']>;
|
|
773
773
|
billingPeriodType?: InputMaybe<BillingPeriodType>;
|
|
774
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
775
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
774
776
|
/** Manufacturer Product Number */
|
|
775
777
|
mpn: Scalars['String']['input'];
|
|
778
|
+
name: Scalars['String']['input'];
|
|
779
|
+
price?: InputMaybe<Scalars['Decimal']['input']>;
|
|
776
780
|
quantity: Scalars['Int']['input'];
|
|
777
781
|
sinchDistributorId: Scalars['Int']['input'];
|
|
782
|
+
sinchDistributorProductId?: InputMaybe<Scalars['Int']['input']>;
|
|
778
783
|
subscriptionPeriodDuration?: InputMaybe<Scalars['Int']['input']>;
|
|
779
784
|
subscriptionPeriodType?: InputMaybe<SubscriptionPeriodType>;
|
|
780
785
|
vendor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -894,10 +899,15 @@ export type CustomerAddItemToBasketInput = {
|
|
|
894
899
|
basketId?: InputMaybe<Scalars['Int']['input']>;
|
|
895
900
|
billingPeriodDuration?: InputMaybe<Scalars['Int']['input']>;
|
|
896
901
|
billingPeriodType?: InputMaybe<BillingPeriodType>;
|
|
902
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
903
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
897
904
|
/** Manufacturer Product Number */
|
|
898
905
|
mpn: Scalars['String']['input'];
|
|
906
|
+
name: Scalars['String']['input'];
|
|
907
|
+
price?: InputMaybe<Scalars['Decimal']['input']>;
|
|
899
908
|
quantity: Scalars['Int']['input'];
|
|
900
909
|
sinchDistributorId: Scalars['Int']['input'];
|
|
910
|
+
sinchDistributorProductId?: InputMaybe<Scalars['Int']['input']>;
|
|
901
911
|
subscriptionPeriodDuration?: InputMaybe<Scalars['Int']['input']>;
|
|
902
912
|
subscriptionPeriodType?: InputMaybe<SubscriptionPeriodType>;
|
|
903
913
|
vendor: Scalars['String']['input'];
|
|
@@ -2835,7 +2845,6 @@ export type UpdateMicrosoftScheduledNextTermInstructionsInput = {
|
|
|
2835
2845
|
providerCustomerId: Scalars['String']['input'];
|
|
2836
2846
|
providerSubscriptionId: Scalars['String']['input'];
|
|
2837
2847
|
scheduledNextTermInstructions: ScheduledNextTermInstructionInput;
|
|
2838
|
-
shouldDeleteSchedule: Scalars['Boolean']['input'];
|
|
2839
2848
|
};
|
|
2840
2849
|
export type UpdateMicrosoftScheduledNextTermInstructionsPayload = {
|
|
2841
2850
|
__typename?: 'UpdateMicrosoftScheduledNextTermInstructionsPayload';
|
|
@@ -24,7 +24,9 @@ export type DistributorProduct = {
|
|
|
24
24
|
stockUpdate?: number;
|
|
25
25
|
distributorId?: number;
|
|
26
26
|
margin?: number;
|
|
27
|
+
clientPrice?: number;
|
|
27
28
|
clientPriceCulture?: string;
|
|
29
|
+
clientPriceCurrency?: string;
|
|
28
30
|
variants: ProductVariantResult[];
|
|
29
31
|
};
|
|
30
32
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|