@vertikalx/vtx-backend-client 3.5.5-dev-ven.5 → 3.5.5-dev-ven.6
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/package.json +1 -1
- package/dist/src/client/schema.d.ts +2 -0
- package/dist/src/client/types.d.ts +2 -0
- package/dist/src/client/types.js +6 -0
- package/dist/src/client/types.js.map +1 -1
- package/dist/src/generated/graphql.d.ts +4 -0
- package/dist/src/generated/graphql.js +4 -2
- package/dist/src/generated/graphql.js.map +1 -1
- package/package.json +1 -1
|
@@ -2529,6 +2529,7 @@ export type MutationCreateClubDonationCheckoutArgs = {
|
|
|
2529
2529
|
donorEmail?: InputMaybe<Scalars['String']['input']>;
|
|
2530
2530
|
donorName?: InputMaybe<Scalars['String']['input']>;
|
|
2531
2531
|
fundingCampaignId?: InputMaybe<Scalars['String']['input']>;
|
|
2532
|
+
hosted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2532
2533
|
};
|
|
2533
2534
|
export type MutationCreateClubStripeAccountArgs = {
|
|
2534
2535
|
clubId: Scalars['String']['input'];
|
|
@@ -2600,6 +2601,7 @@ export type MutationCreateTeamDonationCheckoutArgs = {
|
|
|
2600
2601
|
donorEmail?: InputMaybe<Scalars['String']['input']>;
|
|
2601
2602
|
donorName?: InputMaybe<Scalars['String']['input']>;
|
|
2602
2603
|
fundingCampaignId?: InputMaybe<Scalars['String']['input']>;
|
|
2604
|
+
hosted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2603
2605
|
teamId: Scalars['String']['input'];
|
|
2604
2606
|
};
|
|
2605
2607
|
export type MutationCreateTeamStripeAccountArgs = {
|
|
@@ -18548,6 +18550,7 @@ export type CreateTeamDonationCheckoutMutationVariables = Exact<{
|
|
|
18548
18550
|
donorEmail?: InputMaybe<Scalars['String']['input']>;
|
|
18549
18551
|
donorName?: InputMaybe<Scalars['String']['input']>;
|
|
18550
18552
|
fundingCampaignId?: InputMaybe<Scalars['String']['input']>;
|
|
18553
|
+
hosted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18551
18554
|
}>;
|
|
18552
18555
|
export type CreateTeamDonationCheckoutMutation = {
|
|
18553
18556
|
createTeamDonationCheckout: string;
|
|
@@ -19053,6 +19056,7 @@ export type CreateClubDonationCheckoutMutationVariables = Exact<{
|
|
|
19053
19056
|
donorEmail?: InputMaybe<Scalars['String']['input']>;
|
|
19054
19057
|
donorName?: InputMaybe<Scalars['String']['input']>;
|
|
19055
19058
|
fundingCampaignId?: InputMaybe<Scalars['String']['input']>;
|
|
19059
|
+
hosted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19056
19060
|
}>;
|
|
19057
19061
|
export type CreateClubDonationCheckoutMutation = {
|
|
19058
19062
|
createClubDonationCheckout: string;
|
|
@@ -7481,7 +7481,7 @@ exports.CreateTeamStripeAccountDocument = (0, graphql_tag_1.default) `
|
|
|
7481
7481
|
}
|
|
7482
7482
|
`;
|
|
7483
7483
|
exports.CreateTeamDonationCheckoutDocument = (0, graphql_tag_1.default) `
|
|
7484
|
-
mutation CreateTeamDonationCheckout($teamId: String!, $amount: Float!, $currency: String! = "usd", $donorEmail: String, $donorName: String, $fundingCampaignId: String) {
|
|
7484
|
+
mutation CreateTeamDonationCheckout($teamId: String!, $amount: Float!, $currency: String! = "usd", $donorEmail: String, $donorName: String, $fundingCampaignId: String, $hosted: Boolean) {
|
|
7485
7485
|
createTeamDonationCheckout(
|
|
7486
7486
|
teamId: $teamId
|
|
7487
7487
|
amount: $amount
|
|
@@ -7489,6 +7489,7 @@ exports.CreateTeamDonationCheckoutDocument = (0, graphql_tag_1.default) `
|
|
|
7489
7489
|
donorEmail: $donorEmail
|
|
7490
7490
|
donorName: $donorName
|
|
7491
7491
|
fundingCampaignId: $fundingCampaignId
|
|
7492
|
+
hosted: $hosted
|
|
7492
7493
|
)
|
|
7493
7494
|
}
|
|
7494
7495
|
`;
|
|
@@ -7584,7 +7585,7 @@ exports.CreateClubStripeAccountDocument = (0, graphql_tag_1.default) `
|
|
|
7584
7585
|
}
|
|
7585
7586
|
`;
|
|
7586
7587
|
exports.CreateClubDonationCheckoutDocument = (0, graphql_tag_1.default) `
|
|
7587
|
-
mutation CreateClubDonationCheckout($clubId: String!, $amount: Float!, $currency: String! = "usd", $donorEmail: String, $donorName: String, $fundingCampaignId: String) {
|
|
7588
|
+
mutation CreateClubDonationCheckout($clubId: String!, $amount: Float!, $currency: String! = "usd", $donorEmail: String, $donorName: String, $fundingCampaignId: String, $hosted: Boolean) {
|
|
7588
7589
|
createClubDonationCheckout(
|
|
7589
7590
|
clubId: $clubId
|
|
7590
7591
|
amount: $amount
|
|
@@ -7592,6 +7593,7 @@ exports.CreateClubDonationCheckoutDocument = (0, graphql_tag_1.default) `
|
|
|
7592
7593
|
donorEmail: $donorEmail
|
|
7593
7594
|
donorName: $donorName
|
|
7594
7595
|
fundingCampaignId: $fundingCampaignId
|
|
7596
|
+
hosted: $hosted
|
|
7595
7597
|
)
|
|
7596
7598
|
}
|
|
7597
7599
|
`;
|