@stock-in-the-channel/sinch-vue-components 0.0.294 → 0.0.296

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.
@@ -386,6 +386,7 @@ export type CspGraphQlQueries = {
386
386
  subscriptionsIndexPage: SubscriptionsIndexPagePayload;
387
387
  techDataCreateCustomerConfig: TechDataCreateCustomerConfigPayload;
388
388
  techDataExternalSystemClient: GetTechDataExternalSystemClientPayload;
389
+ topCategories: Array<GetTopCategoriesPayload>;
389
390
  vendorOrderParameters: Array<VendorOrderParameter>;
390
391
  vendorOrderParametersByBasketId: Array<VendorOrderParameter>;
391
392
  westcoastCreateCustomerConfig: WestcoastCreateCustomerConfigPayload;
@@ -447,7 +448,7 @@ export type CspGraphQlQueriesOrderDetailsArgs = {
447
448
  cspOrderId: Scalars['Int']['input'];
448
449
  };
449
450
  export type CspGraphQlQueriesOrderDetailsFromProviderArgs = {
450
- externalSystemType: ExternalSystemType;
451
+ externalSystemClientId: Scalars['Int']['input'];
451
452
  providerOrderId: Scalars['String']['input'];
452
453
  };
453
454
  export type CspGraphQlQueriesOrderSummaryFromProviderArgs = {
@@ -487,9 +488,6 @@ export type CspGraphQlQueriesSearchOrdersArgs = {
487
488
  take?: InputMaybe<Scalars['Int']['input']>;
488
489
  where?: InputMaybe<SearchOrdersPayloadFilterInput>;
489
490
  };
490
- export type CspGraphQlQueriesSiteThemeArgs = {
491
- resellerId: Scalars['Int']['input'];
492
- };
493
491
  export type CspGraphQlQueriesSubscriptionDetailsArgs = {
494
492
  productSku?: InputMaybe<Scalars['String']['input']>;
495
493
  subscriptionId?: InputMaybe<Scalars['String']['input']>;
@@ -552,7 +550,7 @@ export type CspGraphQlQueriesWestcoastGetCustomerArgs = {
552
550
  externalSystemClientId: Scalars['Int']['input'];
553
551
  providerCustomerId: Scalars['Int']['input'];
554
552
  };
555
- export type CancelIngramSubscriptionError = ClientIdNotFound | ErrorCancellingSubscription;
553
+ export type CancelIngramSubscriptionError = CancellingSubscriptionNotAllowed | ClientIdNotFound | GenericErrorCancellingSubscription;
556
554
  export type CancelIngramSubscriptionInput = {
557
555
  externalSystemClientId: Scalars['Int']['input'];
558
556
  providerCustomerId: Scalars['String']['input'];
@@ -563,6 +561,10 @@ export type CancelIngramSubscriptionPayload = {
563
561
  boolean?: Maybe<Scalars['Boolean']['output']>;
564
562
  errors?: Maybe<Array<CancelIngramSubscriptionError>>;
565
563
  };
564
+ export type CancellingSubscriptionNotAllowed = Error & {
565
+ __typename?: 'CancellingSubscriptionNotAllowed';
566
+ message: Scalars['String']['output'];
567
+ };
566
568
  export type ChangeBasketItemQtyError = ProductNotFound;
567
569
  export type ChangeBasketItemQtyInput = {
568
570
  basketId: Scalars['Int']['input'];
@@ -596,6 +598,7 @@ export type ChangeOfferingsPayload = {
596
598
  errors?: Maybe<Array<ChangeOfferingsError>>;
597
599
  };
598
600
  export type CheckForProductVariantsInput = {
601
+ distributorId: Scalars['Int']['input'];
599
602
  manufacturerPartNumber: Scalars['String']['input'];
600
603
  vendor: Scalars['String']['input'];
601
604
  };
@@ -952,10 +955,6 @@ export type EditIngramCustomerPayload = {
952
955
  export type Error = {
953
956
  message: Scalars['String']['output'];
954
957
  };
955
- export type ErrorCancellingSubscription = Error & {
956
- __typename?: 'ErrorCancellingSubscription';
957
- message: Scalars['String']['output'];
958
- };
959
958
  export declare enum ExternalSystemType {
960
959
  Acronis = "ACRONIS",
961
960
  CsvFile = "CSV_FILE",
@@ -977,6 +976,10 @@ export type FormValidationErrors = {
977
976
  errorMessage: Scalars['String']['output'];
978
977
  fieldName: Scalars['String']['output'];
979
978
  };
979
+ export type GenericErrorCancellingSubscription = Error & {
980
+ __typename?: 'GenericErrorCancellingSubscription';
981
+ message: Scalars['String']['output'];
982
+ };
980
983
  export type GetAcronisExternalSystemClientPayload = {
981
984
  __typename?: 'GetAcronisExternalSystemClientPayload';
982
985
  clientId: Scalars['String']['output'];
@@ -1265,6 +1268,14 @@ export type GetTechDataExternalSystemClientPayload = {
1265
1268
  settingsDistributorId: Scalars['Int']['output'];
1266
1269
  settingsPeriod: Scalars['String']['output'];
1267
1270
  };
1271
+ export type GetTopCategoriesPayload = {
1272
+ __typename?: 'GetTopCategoriesPayload';
1273
+ id: Scalars['Int']['output'];
1274
+ imageUrl?: Maybe<Scalars['String']['output']>;
1275
+ level: Scalars['Int']['output'];
1276
+ name: Scalars['String']['output'];
1277
+ parentId?: Maybe<Scalars['Int']['output']>;
1278
+ };
1268
1279
  export type GetWestcoastExternalSystemClientPayload = {
1269
1280
  __typename?: 'GetWestcoastExternalSystemClientPayload';
1270
1281
  credentialsPassword: Scalars['String']['output'];
@@ -1801,6 +1812,7 @@ export type Query = {
1801
1812
  subscriptionsIndexPage: SubscriptionsIndexPagePayload;
1802
1813
  techDataCreateCustomerConfig: TechDataCreateCustomerConfigPayload;
1803
1814
  techDataExternalSystemClient: GetTechDataExternalSystemClientPayload;
1815
+ topCategories: Array<GetTopCategoriesPayload>;
1804
1816
  vendorOrderParameters: Array<VendorOrderParameter>;
1805
1817
  vendorOrderParametersByBasketId: Array<VendorOrderParameter>;
1806
1818
  westcoastCreateCustomerConfig: WestcoastCreateCustomerConfigPayload;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stock-in-the-channel/sinch-vue-components",
3
- "version": "0.0.294",
3
+ "version": "0.0.296",
4
4
  "files": [
5
5
  "dist"
6
6
  ],
File without changes