@timardex/cluemart-shared 1.3.44 → 1.3.46

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.
@@ -536,12 +536,14 @@ declare const useSelectPackage: () => {
536
536
  loading: boolean;
537
537
  selectPackage: (options?: _apollo_client.MutationFunctionOptions<{
538
538
  selectPackage: {
539
+ checkoutUrl?: string;
539
540
  userId: string;
540
541
  message: string;
541
542
  licences: UserLicenceType[];
542
543
  };
543
544
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
544
545
  selectPackage: {
546
+ checkoutUrl?: string;
545
547
  userId: string;
546
548
  message: string;
547
549
  licences: UserLicenceType[];
@@ -536,12 +536,14 @@ declare const useSelectPackage: () => {
536
536
  loading: boolean;
537
537
  selectPackage: (options?: _apollo_client.MutationFunctionOptions<{
538
538
  selectPackage: {
539
+ checkoutUrl?: string;
539
540
  userId: string;
540
541
  message: string;
541
542
  licences: UserLicenceType[];
542
543
  };
543
544
  }, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
544
545
  selectPackage: {
546
+ checkoutUrl?: string;
545
547
  userId: string;
546
548
  message: string;
547
549
  licences: UserLicenceType[];
@@ -2294,13 +2294,18 @@ var REMOVE_USER_FAVOURITE_RESOURCE_MUTATION = gql23`
2294
2294
  `;
2295
2295
  var SELECT_PACKAGE_MUTATION = gql23`
2296
2296
  mutation selectPackage(
2297
- $selectedLicence: LicencesEnumType!
2297
+ $billingPeriod: BillingPeriodEnumType
2298
2298
  $removedLicence: LicencesEnumType
2299
+ $selectedLicence: LicencesEnumType!
2300
+ $useStripe: Boolean
2299
2301
  ) {
2300
2302
  selectPackage(
2301
- selectedLicence: $selectedLicence
2303
+ billingPeriod: $billingPeriod
2302
2304
  removedLicence: $removedLicence
2305
+ selectedLicence: $selectedLicence
2306
+ useStripe: $useStripe
2303
2307
  ) {
2308
+ checkoutUrl
2304
2309
  licences {
2305
2310
  ...LicenceFields
2306
2311
  }