@stock-in-the-channel/sinch-vue-components 0.0.347 → 0.0.349

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.
@@ -778,6 +778,7 @@ export type CreateBasketInputItemInput = {
778
778
  name: Scalars['String']['input'];
779
779
  price?: InputMaybe<Scalars['Decimal']['input']>;
780
780
  quantity: Scalars['Int']['input'];
781
+ rrp?: InputMaybe<Scalars['Decimal']['input']>;
781
782
  sinchDistributorId: Scalars['Int']['input'];
782
783
  sinchDistributorProductId?: InputMaybe<Scalars['Int']['input']>;
783
784
  subscriptionPeriodDuration?: InputMaybe<Scalars['Int']['input']>;
@@ -906,6 +907,7 @@ export type CustomerAddItemToBasketInput = {
906
907
  name: Scalars['String']['input'];
907
908
  price?: InputMaybe<Scalars['Decimal']['input']>;
908
909
  quantity: Scalars['Int']['input'];
910
+ rrp?: InputMaybe<Scalars['Decimal']['input']>;
909
911
  sinchDistributorId: Scalars['Int']['input'];
910
912
  sinchDistributorProductId?: InputMaybe<Scalars['Int']['input']>;
911
913
  subscriptionPeriodDuration?: InputMaybe<Scalars['Int']['input']>;
@@ -2714,6 +2716,7 @@ export type SubscriptionOrderStatusHistoriesModel = {
2714
2716
  cspSubscriptionId: Scalars['Int']['output'];
2715
2717
  cspSubscriptionOrderId: Scalars['Int']['output'];
2716
2718
  date: Scalars['DateTime']['output'];
2719
+ idpUserName: Scalars['String']['output'];
2717
2720
  message?: Maybe<Scalars['String']['output']>;
2718
2721
  providerOrderId?: Maybe<Scalars['String']['output']>;
2719
2722
  status: OrderPayloadStatus;
@@ -2732,6 +2735,7 @@ export type SubscriptionOrderStatusHistoriesModelFilterInput = {
2732
2735
  cspSubscriptionId?: InputMaybe<IntOperationFilterInput>;
2733
2736
  cspSubscriptionOrderId?: InputMaybe<IntOperationFilterInput>;
2734
2737
  date?: InputMaybe<DateTimeOperationFilterInput>;
2738
+ idpUserName?: InputMaybe<StringOperationFilterInput>;
2735
2739
  message?: InputMaybe<StringOperationFilterInput>;
2736
2740
  or?: InputMaybe<Array<SubscriptionOrderStatusHistoriesModelFilterInput>>;
2737
2741
  providerOrderId?: InputMaybe<StringOperationFilterInput>;
@@ -2741,6 +2745,7 @@ export type SubscriptionOrderStatusHistoriesModelSortInput = {
2741
2745
  cspSubscriptionId?: InputMaybe<SortEnumType>;
2742
2746
  cspSubscriptionOrderId?: InputMaybe<SortEnumType>;
2743
2747
  date?: InputMaybe<SortEnumType>;
2748
+ idpUserName?: InputMaybe<SortEnumType>;
2744
2749
  message?: InputMaybe<SortEnumType>;
2745
2750
  providerOrderId?: InputMaybe<SortEnumType>;
2746
2751
  status?: InputMaybe<SortEnumType>;
@@ -1,12 +1,18 @@
1
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
2
  cspSubscriptionId: number;
3
3
  title: string;
4
4
  rowsPerPageOptions: number[];
5
- }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
+ }>, {
6
+ rowsPerPageOptions: () => number[];
7
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
6
8
  cspSubscriptionId: number;
7
9
  title: string;
8
10
  rowsPerPageOptions: number[];
9
- }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
11
+ }>, {
12
+ rowsPerPageOptions: () => number[];
13
+ }>>> & Readonly<{}>, {
14
+ rowsPerPageOptions: number[];
15
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
10
16
  export default _default;
11
17
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
12
18
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -17,3 +23,11 @@ type __VLS_TypePropsToRuntimeProps<T> = {
17
23
  required: true;
18
24
  };
19
25
  };
26
+ type __VLS_WithDefaults<P, D> = {
27
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
28
+ default: D[K];
29
+ }> : P[K];
30
+ };
31
+ type __VLS_Prettify<T> = {
32
+ [K in keyof T]: T[K];
33
+ } & {};
@@ -61,6 +61,7 @@ declare const _default: {
61
61
  BillingPeriod: string;
62
62
  VariantSKU: string;
63
63
  Variant: string;
64
+ NoLicensesToReduceMessage: string;
64
65
  };
65
66
  ptBR: {
66
67
  Search: string;
@@ -61,6 +61,7 @@ declare const _default: {
61
61
  BillingPeriod: string;
62
62
  VariantSKU: string;
63
63
  Variant: string;
64
+ NoLicensesToReduceMessage: string;
64
65
  };
65
66
  'pt-BR': {
66
67
  Search: 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.347",
3
+ "version": "0.0.349",
4
4
  "files": [
5
5
  "dist"
6
6
  ],