@timardex/cluemart-shared 1.3.44 → 1.3.45
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.
- package/dist/graphql/index.cjs +7 -2
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +2 -0
- package/dist/graphql/index.d.ts +2 -0
- package/dist/graphql/index.mjs +7 -2
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/index.cjs +7 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +7 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/graphql/index.d.mts
CHANGED
|
@@ -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[];
|
package/dist/graphql/index.d.ts
CHANGED
|
@@ -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[];
|
package/dist/graphql/index.mjs
CHANGED
|
@@ -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
|
-
$
|
|
2297
|
+
$billingPeriod: BillingPeriodEnumType
|
|
2298
2298
|
$removedLicence: LicencesEnumType
|
|
2299
|
+
$selectedLicence: LicencesEnumType!
|
|
2300
|
+
$useStripe: Boolean
|
|
2299
2301
|
) {
|
|
2300
2302
|
selectPackage(
|
|
2301
|
-
|
|
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
|
}
|