@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/index.d.mts
CHANGED
|
@@ -1588,12 +1588,14 @@ declare const useSelectPackage: () => {
|
|
|
1588
1588
|
loading: boolean;
|
|
1589
1589
|
selectPackage: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1590
1590
|
selectPackage: {
|
|
1591
|
+
checkoutUrl?: string;
|
|
1591
1592
|
userId: string;
|
|
1592
1593
|
message: string;
|
|
1593
1594
|
licences: UserLicenceType[];
|
|
1594
1595
|
};
|
|
1595
1596
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1596
1597
|
selectPackage: {
|
|
1598
|
+
checkoutUrl?: string;
|
|
1597
1599
|
userId: string;
|
|
1598
1600
|
message: string;
|
|
1599
1601
|
licences: UserLicenceType[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1588,12 +1588,14 @@ declare const useSelectPackage: () => {
|
|
|
1588
1588
|
loading: boolean;
|
|
1589
1589
|
selectPackage: (options?: _apollo_client.MutationFunctionOptions<{
|
|
1590
1590
|
selectPackage: {
|
|
1591
|
+
checkoutUrl?: string;
|
|
1591
1592
|
userId: string;
|
|
1592
1593
|
message: string;
|
|
1593
1594
|
licences: UserLicenceType[];
|
|
1594
1595
|
};
|
|
1595
1596
|
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
1596
1597
|
selectPackage: {
|
|
1598
|
+
checkoutUrl?: string;
|
|
1597
1599
|
userId: string;
|
|
1598
1600
|
message: string;
|
|
1599
1601
|
licences: UserLicenceType[];
|
package/dist/index.mjs
CHANGED
|
@@ -4449,13 +4449,18 @@ var REMOVE_USER_FAVOURITE_RESOURCE_MUTATION = gql23`
|
|
|
4449
4449
|
`;
|
|
4450
4450
|
var SELECT_PACKAGE_MUTATION = gql23`
|
|
4451
4451
|
mutation selectPackage(
|
|
4452
|
-
$
|
|
4452
|
+
$billingPeriod: BillingPeriodEnumType
|
|
4453
4453
|
$removedLicence: LicencesEnumType
|
|
4454
|
+
$selectedLicence: LicencesEnumType!
|
|
4455
|
+
$useStripe: Boolean
|
|
4454
4456
|
) {
|
|
4455
4457
|
selectPackage(
|
|
4456
|
-
|
|
4458
|
+
billingPeriod: $billingPeriod
|
|
4457
4459
|
removedLicence: $removedLicence
|
|
4460
|
+
selectedLicence: $selectedLicence
|
|
4461
|
+
useStripe: $useStripe
|
|
4458
4462
|
) {
|
|
4463
|
+
checkoutUrl
|
|
4459
4464
|
licences {
|
|
4460
4465
|
...LicenceFields
|
|
4461
4466
|
}
|