@stock-in-the-channel/sinch-vue-components 0.0.339 → 0.0.340

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.
@@ -154,11 +154,22 @@ export type AddItemToBasketPayload = {
154
154
  createBasketPayload?: Maybe<CreateBasketPayload>;
155
155
  errors?: Maybe<Array<AddItemToBasketError>>;
156
156
  };
157
+ export declare enum AllowedCustomTermEndDateType {
158
+ CalendarMonthAligned = "CALENDAR_MONTH_ALIGNED",
159
+ SubscriptionAligned = "SUBSCRIPTION_ALIGNED",
160
+ Unknown = "UNKNOWN"
161
+ }
157
162
  export declare enum ApplyPolicy {
158
163
  AfterResolver = "AFTER_RESOLVER",
159
164
  BeforeResolver = "BEFORE_RESOLVER",
160
165
  Validation = "VALIDATION"
161
166
  }
167
+ export type AvailableTerm = {
168
+ __typename?: 'AvailableTerm';
169
+ billingCycles: Array<Scalars['String']['output']>;
170
+ duration: Scalars['String']['output'];
171
+ durationLabel: Scalars['String']['output'];
172
+ };
162
173
  export type BasketItemPayload = {
163
174
  __typename?: 'BasketItemPayload';
164
175
  basketId: Scalars['Int']['output'];
@@ -254,6 +265,7 @@ export type CspGraphQlMutations = {
254
265
  customerPlaceSalesOrder: CustomerPlaceSalesOrderPayload;
255
266
  customerRemoveItemFromBasket: CustomerRemoveItemFromBasketPayload;
256
267
  deleteIntegration: DeleteIntegrationPayload;
268
+ deleteMicrosoftScheduledNextTermInstructions: DeleteMicrosoftScheduledNextTermInstructionsPayload;
257
269
  patchIngramSubscripton: PatchIngramSubscriptonPayload;
258
270
  /**
259
271
  * Gets the created order Id and tries to place the order to the provider
@@ -280,6 +292,7 @@ export type CspGraphQlMutations = {
280
292
  setCustomerPropertiesOnProvider: SetCustomerPropertiesOnProviderPayload;
281
293
  switchAcronisCustomerToProductionMode: SwitchAcronisCustomerToProductionModePayload;
282
294
  updateIngramCustomer: UpdateIngramCustomerPayload;
295
+ updateMicrosoftScheduledNextTermInstructions: UpdateMicrosoftScheduledNextTermInstructionsPayload;
283
296
  updateSubscription: UpdateSubscriptionPayload;
284
297
  updateWestcoastCustomer: UpdateWestcoastCustomerPayload;
285
298
  };
@@ -328,6 +341,9 @@ export type CspGraphQlMutationsCustomerRemoveItemFromBasketArgs = {
328
341
  export type CspGraphQlMutationsDeleteIntegrationArgs = {
329
342
  input: DeleteIntegrationInput;
330
343
  };
344
+ export type CspGraphQlMutationsDeleteMicrosoftScheduledNextTermInstructionsArgs = {
345
+ input: DeleteMicrosoftScheduledNextTermInstructionsInput;
346
+ };
331
347
  export type CspGraphQlMutationsPatchIngramSubscriptonArgs = {
332
348
  input: PatchIngramSubscriptonInput;
333
349
  };
@@ -370,6 +386,9 @@ export type CspGraphQlMutationsSwitchAcronisCustomerToProductionModeArgs = {
370
386
  export type CspGraphQlMutationsUpdateIngramCustomerArgs = {
371
387
  input: UpdateIngramCustomerInput;
372
388
  };
389
+ export type CspGraphQlMutationsUpdateMicrosoftScheduledNextTermInstructionsArgs = {
390
+ input: UpdateMicrosoftScheduledNextTermInstructionsInput;
391
+ };
373
392
  export type CspGraphQlMutationsUpdateSubscriptionArgs = {
374
393
  input: UpdateSubscriptionInput;
375
394
  };
@@ -393,6 +412,7 @@ export type CspGraphQlQueries = {
393
412
  customerCurrentBasket?: Maybe<CreateBasketPayload>;
394
413
  customerOfferings: GetCustomerOfferingsPayload;
395
414
  customerSubscriptions?: Maybe<CustomerSubscriptionsCollectionSegment>;
415
+ customerTermEndDates?: Maybe<GetCustomerTermEndDatesPayload>;
396
416
  customers?: Maybe<CustomersCollectionSegment>;
397
417
  enabledDistributorIds: Array<Scalars['Int']['output']>;
398
418
  enabledDistributorIdsForCustomer: Array<Scalars['Int']['output']>;
@@ -405,6 +425,7 @@ export type CspGraphQlQueries = {
405
425
  orderDetailsFromProvider: Order;
406
426
  orderSummaryFromProvider?: Maybe<SearchResponseIntOfOrderSummary>;
407
427
  productDetails: Array<GetProductDetailsPayload>;
428
+ purchaseTermsAvailability: Array<GetPurchaseTermsAvailabilityPayload>;
408
429
  resellerBaskets?: Maybe<ResellerBasketsCollectionSegment>;
409
430
  resellerExternalClients: Array<GetResellerExternalClientsPayload>;
410
431
  resellerOfferings: GetResellerOfferingsPayload;
@@ -417,6 +438,7 @@ export type CspGraphQlQueries = {
417
438
  subscriptionDetailsFromProvider?: Maybe<Subscription>;
418
439
  subscriptionOrderDetails?: Maybe<SubscriptionOrderDetailsCollectionSegment>;
419
440
  subscriptionOrderStatusHistoriesModel?: Maybe<SubscriptionOrderStatusHistoriesModelCollectionSegment>;
441
+ subscriptionTransitionEligibilities: GetSubscriptionTransitionEligibilitiesPayload;
420
442
  subscriptions?: Maybe<SubscriptionsCollectionSegment>;
421
443
  subscriptionsIndexPage: SubscriptionsIndexPagePayload;
422
444
  techDataCreateCustomerConfig: TechDataCreateCustomerConfigPayload;
@@ -458,6 +480,9 @@ export type CspGraphQlQueriesCustomerSubscriptionsArgs = {
458
480
  take?: InputMaybe<Scalars['Int']['input']>;
459
481
  where?: InputMaybe<SubscriptionGqlModelFilterInput>;
460
482
  };
483
+ export type CspGraphQlQueriesCustomerTermEndDatesArgs = {
484
+ input: GetCustomerTermEndDatesInput;
485
+ };
461
486
  export type CspGraphQlQueriesCustomersArgs = {
462
487
  input: GetCustomersInput;
463
488
  order?: InputMaybe<Array<GetCustomersPayloadSortInput>>;
@@ -501,6 +526,9 @@ export type CspGraphQlQueriesOrderSummaryFromProviderArgs = {
501
526
  export type CspGraphQlQueriesProductDetailsArgs = {
502
527
  input: GetProductDetailsInput;
503
528
  };
529
+ export type CspGraphQlQueriesPurchaseTermsAvailabilityArgs = {
530
+ input: GetPurchaseTermsAvailabilityInput;
531
+ };
504
532
  export type CspGraphQlQueriesResellerBasketsArgs = {
505
533
  order?: InputMaybe<Array<GetResellerBasketsPayloadSortInput>>;
506
534
  skip?: InputMaybe<Scalars['Int']['input']>;
@@ -549,6 +577,9 @@ export type CspGraphQlQueriesSubscriptionOrderStatusHistoriesModelArgs = {
549
577
  take?: InputMaybe<Scalars['Int']['input']>;
550
578
  where?: InputMaybe<SubscriptionOrderStatusHistoriesModelFilterInput>;
551
579
  };
580
+ export type CspGraphQlQueriesSubscriptionTransitionEligibilitiesArgs = {
581
+ input: GetSubscriptionTransitionEligibilitiesInput;
582
+ };
552
583
  export type CspGraphQlQueriesSubscriptionsArgs = {
553
584
  order?: InputMaybe<Array<SubscriptionGqlModelSortInput>>;
554
585
  skip?: InputMaybe<Scalars['Int']['input']>;
@@ -712,6 +743,12 @@ export type ConvertBasketToQuotePayload = {
712
743
  boolean?: Maybe<Scalars['Boolean']['output']>;
713
744
  errors?: Maybe<Array<ConvertBasketToQuoteError>>;
714
745
  };
746
+ export type CotermSubscriptionDetails = {
747
+ __typename?: 'CotermSubscriptionDetails';
748
+ providerSubuscriptionId: Scalars['String']['output'];
749
+ term: Scalars['String']['output'];
750
+ title: Scalars['String']['output'];
751
+ };
715
752
  export type CreateAcronisCustomerError = CreateCustomerValidation | UserNotLoggedIn;
716
753
  export type CreateAcronisCustomerInput = {
717
754
  adminContact: AcronisContactInput;
@@ -926,6 +963,12 @@ export type CustomerSubscriptionsCollectionSegment = {
926
963
  pageInfo: CollectionSegmentInfo;
927
964
  totalCount: Scalars['Int']['output'];
928
965
  };
966
+ export type CustomerTermEndDate = {
967
+ __typename?: 'CustomerTermEndDate';
968
+ allowedCustomTermEndDate: Scalars['DateTime']['output'];
969
+ allowedCustomTermEndDateType: AllowedCustomTermEndDateType;
970
+ cotermSubscriptions: Array<Maybe<CotermSubscriptionDetails>>;
971
+ };
929
972
  /** A segment of a collection. */
930
973
  export type CustomersCollectionSegment = {
931
974
  __typename?: 'CustomersCollectionSegment';
@@ -973,6 +1016,15 @@ export type DeleteIntegrationPayload = {
973
1016
  errors?: Maybe<Array<DeleteIntegrationError>>;
974
1017
  success?: Maybe<Scalars['Boolean']['output']>;
975
1018
  };
1019
+ export type DeleteMicrosoftScheduledNextTermInstructionsInput = {
1020
+ externalSystemClientId: Scalars['Int']['input'];
1021
+ providerCustomerId: Scalars['String']['input'];
1022
+ providerSubscriptionId: Scalars['String']['input'];
1023
+ };
1024
+ export type DeleteMicrosoftScheduledNextTermInstructionsPayload = {
1025
+ __typename?: 'DeleteMicrosoftScheduledNextTermInstructionsPayload';
1026
+ boolean?: Maybe<Scalars['Boolean']['output']>;
1027
+ };
976
1028
  export type Discount = {
977
1029
  __typename?: 'Discount';
978
1030
  amount: Scalars['Decimal']['output'];
@@ -1014,6 +1066,17 @@ export type EditIngramCustomerPayload = {
1014
1066
  providerCustomerId: Scalars['String']['output'];
1015
1067
  taxRegId?: Maybe<Scalars['String']['output']>;
1016
1068
  };
1069
+ export type Eligibility = {
1070
+ __typename?: 'Eligibility';
1071
+ errors: Array<EligibilityError>;
1072
+ isEligible: Scalars['Boolean']['output'];
1073
+ transitionType: Scalars['String']['output'];
1074
+ };
1075
+ export type EligibilityError = {
1076
+ __typename?: 'EligibilityError';
1077
+ description: Scalars['String']['output'];
1078
+ error: Scalars['Int']['output'];
1079
+ };
1017
1080
  export type Error = {
1018
1081
  message: Scalars['String']['output'];
1019
1082
  };
@@ -1102,6 +1165,16 @@ export type GetCustomerOfferingsPayload = {
1102
1165
  __typename?: 'GetCustomerOfferingsPayload';
1103
1166
  applications: Array<AcronisApplication>;
1104
1167
  };
1168
+ export type GetCustomerTermEndDatesInput = {
1169
+ externalSystemClientId: Scalars['Int']['input'];
1170
+ providerCustomerId: Scalars['String']['input'];
1171
+ termDuration: Scalars['String']['input'];
1172
+ termStartDate: Scalars['DateTime']['input'];
1173
+ };
1174
+ export type GetCustomerTermEndDatesPayload = {
1175
+ __typename?: 'GetCustomerTermEndDatesPayload';
1176
+ termDates: Array<CustomerTermEndDate>;
1177
+ };
1105
1178
  export type GetCustomersContactPayload = {
1106
1179
  __typename?: 'GetCustomersContactPayload';
1107
1180
  email?: Maybe<Scalars['String']['output']>;
@@ -1254,6 +1327,22 @@ export type GetProductDetailsPayload = {
1254
1327
  subscriptionPeriodType: SubscriptionPeriodType;
1255
1328
  vendor: Scalars['String']['output'];
1256
1329
  };
1330
+ export type GetPurchaseAvailabilitiesRequestInput = {
1331
+ availabilityId: Scalars['String']['input'];
1332
+ productId: Scalars['String']['input'];
1333
+ shouldReturnEquivalentAvailability: Scalars['Boolean']['input'];
1334
+ skuId: Scalars['String']['input'];
1335
+ };
1336
+ export type GetPurchaseTermsAvailabilityInput = {
1337
+ externalSystemClientId: Scalars['Int']['input'];
1338
+ products: Array<GetPurchaseAvailabilitiesRequestInput>;
1339
+ providerCustomerId: Scalars['String']['input'];
1340
+ };
1341
+ export type GetPurchaseTermsAvailabilityPayload = {
1342
+ __typename?: 'GetPurchaseTermsAvailabilityPayload';
1343
+ availableTerms: Array<AvailableTerm>;
1344
+ catalogItemId: Scalars['String']['output'];
1345
+ };
1257
1346
  export type GetResellerBasketsPayload = {
1258
1347
  __typename?: 'GetResellerBasketsPayload';
1259
1348
  basketId: Scalars['Int']['output'];
@@ -1338,6 +1427,23 @@ export type GetResellerOfferingsPayloadOfferingItem = {
1338
1427
  storageId?: Maybe<Scalars['UUID']['output']>;
1339
1428
  usageName: Scalars['String']['output'];
1340
1429
  };
1430
+ export type GetSubscriptionTransitionEligibilitiesEligibleItems = {
1431
+ __typename?: 'GetSubscriptionTransitionEligibilitiesEligibleItems';
1432
+ catalogItemId: Scalars['String']['output'];
1433
+ eligibilities: Array<Eligibility>;
1434
+ quantity: Scalars['Int']['output'];
1435
+ title: Scalars['String']['output'];
1436
+ };
1437
+ export type GetSubscriptionTransitionEligibilitiesInput = {
1438
+ eligibilityType: TransitionEligibilityType;
1439
+ externalSystemClientId: Scalars['Int']['input'];
1440
+ providerCustomerId: Scalars['String']['input'];
1441
+ providerSubscriptionId: Scalars['String']['input'];
1442
+ };
1443
+ export type GetSubscriptionTransitionEligibilitiesPayload = {
1444
+ __typename?: 'GetSubscriptionTransitionEligibilitiesPayload';
1445
+ eligibleItems: Array<GetSubscriptionTransitionEligibilitiesEligibleItems>;
1446
+ };
1341
1447
  export type GetTechDataExternalSystemClientPayload = {
1342
1448
  __typename?: 'GetTechDataExternalSystemClientPayload';
1343
1449
  credentialsClientId: Scalars['String']['output'];
@@ -1502,6 +1608,7 @@ export type Mutation = {
1502
1608
  customerPlaceSalesOrder: CustomerPlaceSalesOrderPayload;
1503
1609
  customerRemoveItemFromBasket: CustomerRemoveItemFromBasketPayload;
1504
1610
  deleteIntegration: DeleteIntegrationPayload;
1611
+ deleteMicrosoftScheduledNextTermInstructions: DeleteMicrosoftScheduledNextTermInstructionsPayload;
1505
1612
  patchIngramSubscripton: PatchIngramSubscriptonPayload;
1506
1613
  /**
1507
1614
  * Gets the created order Id and tries to place the order to the provider
@@ -1528,6 +1635,7 @@ export type Mutation = {
1528
1635
  setCustomerPropertiesOnProvider: SetCustomerPropertiesOnProviderPayload;
1529
1636
  switchAcronisCustomerToProductionMode: SwitchAcronisCustomerToProductionModePayload;
1530
1637
  updateIngramCustomer: UpdateIngramCustomerPayload;
1638
+ updateMicrosoftScheduledNextTermInstructions: UpdateMicrosoftScheduledNextTermInstructionsPayload;
1531
1639
  updateSubscription: UpdateSubscriptionPayload;
1532
1640
  updateWestcoastCustomer: UpdateWestcoastCustomerPayload;
1533
1641
  };
@@ -1576,6 +1684,9 @@ export type MutationCustomerRemoveItemFromBasketArgs = {
1576
1684
  export type MutationDeleteIntegrationArgs = {
1577
1685
  input: DeleteIntegrationInput;
1578
1686
  };
1687
+ export type MutationDeleteMicrosoftScheduledNextTermInstructionsArgs = {
1688
+ input: DeleteMicrosoftScheduledNextTermInstructionsInput;
1689
+ };
1579
1690
  export type MutationPatchIngramSubscriptonArgs = {
1580
1691
  input: PatchIngramSubscriptonInput;
1581
1692
  };
@@ -1618,6 +1729,9 @@ export type MutationSwitchAcronisCustomerToProductionModeArgs = {
1618
1729
  export type MutationUpdateIngramCustomerArgs = {
1619
1730
  input: UpdateIngramCustomerInput;
1620
1731
  };
1732
+ export type MutationUpdateMicrosoftScheduledNextTermInstructionsArgs = {
1733
+ input: UpdateMicrosoftScheduledNextTermInstructionsInput;
1734
+ };
1621
1735
  export type MutationUpdateSubscriptionArgs = {
1622
1736
  input: UpdateSubscriptionInput;
1623
1737
  };
@@ -1823,6 +1937,14 @@ export type PlaceSalesOrderPayload = {
1823
1937
  errors?: Maybe<Array<PlaceSalesOrderError>>;
1824
1938
  salesOrderId?: Maybe<Scalars['String']['output']>;
1825
1939
  };
1940
+ export type ProductInput = {
1941
+ availabilityId: Scalars['String']['input'];
1942
+ billingCycle: Scalars['String']['input'];
1943
+ productId: Scalars['String']['input'];
1944
+ promotionId?: InputMaybe<Scalars['String']['input']>;
1945
+ skuId: Scalars['String']['input'];
1946
+ termDuration: Scalars['String']['input'];
1947
+ };
1826
1948
  export type ProductNotFound = Error & {
1827
1949
  __typename?: 'ProductNotFound';
1828
1950
  message: Scalars['String']['output'];
@@ -1870,6 +1992,7 @@ export type Query = {
1870
1992
  customerCurrentBasket?: Maybe<CreateBasketPayload>;
1871
1993
  customerOfferings: GetCustomerOfferingsPayload;
1872
1994
  customerSubscriptions?: Maybe<CustomerSubscriptionsCollectionSegment>;
1995
+ customerTermEndDates?: Maybe<GetCustomerTermEndDatesPayload>;
1873
1996
  customers?: Maybe<CustomersCollectionSegment>;
1874
1997
  enabledDistributorIds: Array<Scalars['Int']['output']>;
1875
1998
  enabledDistributorIdsForCustomer: Array<Scalars['Int']['output']>;
@@ -1882,6 +2005,7 @@ export type Query = {
1882
2005
  orderDetailsFromProvider: Order;
1883
2006
  orderSummaryFromProvider?: Maybe<SearchResponseIntOfOrderSummary>;
1884
2007
  productDetails: Array<GetProductDetailsPayload>;
2008
+ purchaseTermsAvailability: Array<GetPurchaseTermsAvailabilityPayload>;
1885
2009
  resellerBaskets?: Maybe<ResellerBasketsCollectionSegment>;
1886
2010
  resellerExternalClients: Array<GetResellerExternalClientsPayload>;
1887
2011
  resellerOfferings: GetResellerOfferingsPayload;
@@ -1894,6 +2018,7 @@ export type Query = {
1894
2018
  subscriptionDetailsFromProvider?: Maybe<Subscription>;
1895
2019
  subscriptionOrderDetails?: Maybe<SubscriptionOrderDetailsCollectionSegment>;
1896
2020
  subscriptionOrderStatusHistoriesModel?: Maybe<SubscriptionOrderStatusHistoriesModelCollectionSegment>;
2021
+ subscriptionTransitionEligibilities: GetSubscriptionTransitionEligibilitiesPayload;
1897
2022
  subscriptions?: Maybe<SubscriptionsCollectionSegment>;
1898
2023
  subscriptionsIndexPage: SubscriptionsIndexPagePayload;
1899
2024
  techDataCreateCustomerConfig: TechDataCreateCustomerConfigPayload;
@@ -1935,6 +2060,9 @@ export type QueryCustomerSubscriptionsArgs = {
1935
2060
  take?: InputMaybe<Scalars['Int']['input']>;
1936
2061
  where?: InputMaybe<SubscriptionGqlModelFilterInput>;
1937
2062
  };
2063
+ export type QueryCustomerTermEndDatesArgs = {
2064
+ input: GetCustomerTermEndDatesInput;
2065
+ };
1938
2066
  export type QueryCustomersArgs = {
1939
2067
  input: GetCustomersInput;
1940
2068
  order?: InputMaybe<Array<GetCustomersPayloadSortInput>>;
@@ -1978,6 +2106,9 @@ export type QueryOrderSummaryFromProviderArgs = {
1978
2106
  export type QueryProductDetailsArgs = {
1979
2107
  input: GetProductDetailsInput;
1980
2108
  };
2109
+ export type QueryPurchaseTermsAvailabilityArgs = {
2110
+ input: GetPurchaseTermsAvailabilityInput;
2111
+ };
1981
2112
  export type QueryResellerBasketsArgs = {
1982
2113
  order?: InputMaybe<Array<GetResellerBasketsPayloadSortInput>>;
1983
2114
  skip?: InputMaybe<Scalars['Int']['input']>;
@@ -2026,6 +2157,9 @@ export type QuerySubscriptionOrderStatusHistoriesModelArgs = {
2026
2157
  take?: InputMaybe<Scalars['Int']['input']>;
2027
2158
  where?: InputMaybe<SubscriptionOrderStatusHistoriesModelFilterInput>;
2028
2159
  };
2160
+ export type QuerySubscriptionTransitionEligibilitiesArgs = {
2161
+ input: GetSubscriptionTransitionEligibilitiesInput;
2162
+ };
2029
2163
  export type QuerySubscriptionsArgs = {
2030
2164
  order?: InputMaybe<Array<SubscriptionGqlModelSortInput>>;
2031
2165
  skip?: InputMaybe<Scalars['Int']['input']>;
@@ -2231,6 +2365,11 @@ export type SaveWestcoastIntegrationPayload = {
2231
2365
  syncronisationCreated?: Maybe<Scalars['Boolean']['output']>;
2232
2366
  validationErrors?: Maybe<Array<FormValidationErrors>>;
2233
2367
  };
2368
+ export type ScheduledNextTermInstructionInput = {
2369
+ customTermEndDate: Scalars['String']['input'];
2370
+ product: ProductInput;
2371
+ quantity: Scalars['Int']['input'];
2372
+ };
2234
2373
  /** A segment of a collection. */
2235
2374
  export type SearchCustomersCollectionSegment = {
2236
2375
  __typename?: 'SearchCustomersCollectionSegment';
@@ -2674,6 +2813,9 @@ export type ThemeSettings = {
2674
2813
  themeColors?: Maybe<Scalars['String']['output']>;
2675
2814
  themeName: Scalars['String']['output'];
2676
2815
  };
2816
+ export declare enum TransitionEligibilityType {
2817
+ Scheduled = "SCHEDULED"
2818
+ }
2677
2819
  export type UnauthorizedAccessError = Error & {
2678
2820
  __typename?: 'UnauthorizedAccessError';
2679
2821
  message: Scalars['String']['output'];
@@ -2687,6 +2829,18 @@ export type UpdateIngramCustomerPayload = {
2687
2829
  boolean?: Maybe<Scalars['Boolean']['output']>;
2688
2830
  errors?: Maybe<Array<UpdateIngramCustomerError>>;
2689
2831
  };
2832
+ export type UpdateMicrosoftScheduledNextTermInstructionsInput = {
2833
+ externalSystemClientId: Scalars['Int']['input'];
2834
+ isAutoRenewEnabled: Scalars['Boolean']['input'];
2835
+ providerCustomerId: Scalars['String']['input'];
2836
+ providerSubscriptionId: Scalars['String']['input'];
2837
+ scheduledNextTermInstructions: ScheduledNextTermInstructionInput;
2838
+ shouldDeleteSchedule: Scalars['Boolean']['input'];
2839
+ };
2840
+ export type UpdateMicrosoftScheduledNextTermInstructionsPayload = {
2841
+ __typename?: 'UpdateMicrosoftScheduledNextTermInstructionsPayload';
2842
+ boolean?: Maybe<Scalars['Boolean']['output']>;
2843
+ };
2690
2844
  export type UpdateSubscriptionInput = {
2691
2845
  cspSubscriptionId: Scalars['Int']['input'];
2692
2846
  externalSystemType: ExternalSystemType;
@@ -0,0 +1,83 @@
1
+ import { SubscriptionModelGraphQlLocal } from './SubscriptionDetailsTypes';
2
+ export interface MicrosoftSubscriptionModelV1 {
3
+ actionTaken: boolean;
4
+ actions: any;
5
+ attentionNeeded: boolean;
6
+ attentionReason: any;
7
+ attributes: Attributes;
8
+ autoRenewEnabled: boolean;
9
+ billingCycle: number;
10
+ billingType: number;
11
+ commitmentEndDate: string;
12
+ contractType: string;
13
+ creationDate: string;
14
+ effectiveStartDate: string;
15
+ entitlementId: any;
16
+ friendlyName: string;
17
+ hasPurchasableAddons: boolean;
18
+ id: string;
19
+ isMicrosoftProduct: boolean;
20
+ isTrial: boolean;
21
+ lineItems: any;
22
+ migratedFromSubscriptionId: any;
23
+ offerId: string;
24
+ offerName: string;
25
+ orderId: string;
26
+ parentSubscriptionId: any;
27
+ partnerId: string;
28
+ productOrderId: any;
29
+ productType: ProductType;
30
+ promotionId: any;
31
+ publisherName: string;
32
+ quantity: number;
33
+ refundOptions: any;
34
+ renewalTermDuration: string;
35
+ scheduledNextTermInstructions: ScheduledNextTermInstructions;
36
+ status: number;
37
+ suspensionReasons: any;
38
+ termDuration: string;
39
+ unitType: string;
40
+ refundableQuantity: RefundableQuantity;
41
+ }
42
+ export interface Attributes {
43
+ etag: any;
44
+ objectType: string;
45
+ }
46
+ export interface ProductType {
47
+ displayName: string;
48
+ id: string;
49
+ subType: any;
50
+ }
51
+ export interface ScheduledNextTermInstructions {
52
+ customTermEndDate: string;
53
+ product: Product;
54
+ quantity: number;
55
+ }
56
+ export interface Product {
57
+ availabilityId: string;
58
+ billingCycle: string;
59
+ productId: string;
60
+ skuId: string;
61
+ termDuration: string;
62
+ }
63
+ export interface RefundableQuantity {
64
+ details: any[];
65
+ totalQuantity: number;
66
+ }
67
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
68
+ subscriptionDetails: SubscriptionModelGraphQlLocal;
69
+ subscriptionProviderData: string | undefined;
70
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
71
+ subscriptionDetails: SubscriptionModelGraphQlLocal;
72
+ subscriptionProviderData: string | undefined;
73
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
74
+ export default _default;
75
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
76
+ type __VLS_TypePropsToRuntimeProps<T> = {
77
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
78
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
79
+ } : {
80
+ type: import('vue').PropType<T[K]>;
81
+ required: true;
82
+ };
83
+ };
@@ -55,6 +55,7 @@ declare const _default: {
55
55
  LicensesAvailableForReductionMessage: string;
56
56
  TotalQuantity: string;
57
57
  CancellationWindows: string;
58
+ MicrosoftDialogChangesMessage: string;
58
59
  };
59
60
  ptBR: {
60
61
  Search: string;
@@ -55,6 +55,7 @@ declare const _default: {
55
55
  LicensesAvailableForReductionMessage: string;
56
56
  TotalQuantity: string;
57
57
  CancellationWindows: string;
58
+ MicrosoftDialogChangesMessage: string;
58
59
  };
59
60
  'pt-BR': {
60
61
  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.339",
3
+ "version": "0.0.340",
4
4
  "files": [
5
5
  "dist"
6
6
  ],