@vertikalx/vtx-backend-client 3.0.0-dev.3 → 3.0.0-dev.4
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/package.json +1 -1
- package/src/client/schema.d.ts +10 -9
- package/src/client/types.d.ts +11 -10
- package/src/client/types.js +113 -110
- package/src/client/types.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
package/package.json
CHANGED
package/src/client/schema.d.ts
CHANGED
|
@@ -3131,6 +3131,16 @@ export interface VerifyCodeDto {
|
|
|
3131
3131
|
enteredCodeValue: Scalars['String'];
|
|
3132
3132
|
type?: (Scalars['String'] | null);
|
|
3133
3133
|
}
|
|
3134
|
+
export interface DonationCheckoutDto {
|
|
3135
|
+
fundingCampaignId: Scalars['String'];
|
|
3136
|
+
donationAmount: Scalars['Float'];
|
|
3137
|
+
mode?: Scalars['String'];
|
|
3138
|
+
fromName?: (Scalars['String'] | null);
|
|
3139
|
+
fromEmail?: (Scalars['String'] | null);
|
|
3140
|
+
fromPhone?: (Scalars['String'] | null);
|
|
3141
|
+
message?: (Scalars['String'] | null);
|
|
3142
|
+
clientType?: (Scalars['String'] | null);
|
|
3143
|
+
}
|
|
3134
3144
|
export interface AthleteInvitationDto {
|
|
3135
3145
|
email: Scalars['String'];
|
|
3136
3146
|
name?: (Scalars['String'] | null);
|
|
@@ -3468,15 +3478,6 @@ export interface CreateAthleteMembershipDto {
|
|
|
3468
3478
|
issueDate?: (Scalars['DateTime'] | null);
|
|
3469
3479
|
expirationDate?: (Scalars['DateTime'] | null);
|
|
3470
3480
|
}
|
|
3471
|
-
export interface DonationCheckoutDto {
|
|
3472
|
-
fundingCampaignId: Scalars['String'];
|
|
3473
|
-
donationAmount: Scalars['Float'];
|
|
3474
|
-
mode?: Scalars['String'];
|
|
3475
|
-
fromName?: (Scalars['String'] | null);
|
|
3476
|
-
fromEmail?: (Scalars['String'] | null);
|
|
3477
|
-
fromPhone?: (Scalars['String'] | null);
|
|
3478
|
-
message?: (Scalars['String'] | null);
|
|
3479
|
-
}
|
|
3480
3481
|
export interface StripeQueryDto {
|
|
3481
3482
|
operation: Scalars['String'];
|
|
3482
3483
|
id: Scalars['String'];
|
package/src/client/types.d.ts
CHANGED
|
@@ -1464,6 +1464,17 @@ declare const _default: {
|
|
|
1464
1464
|
type: number[];
|
|
1465
1465
|
__typename: number[];
|
|
1466
1466
|
};
|
|
1467
|
+
DonationCheckoutDto: {
|
|
1468
|
+
fundingCampaignId: number[];
|
|
1469
|
+
donationAmount: number[];
|
|
1470
|
+
mode: number[];
|
|
1471
|
+
fromName: number[];
|
|
1472
|
+
fromEmail: number[];
|
|
1473
|
+
fromPhone: number[];
|
|
1474
|
+
message: number[];
|
|
1475
|
+
clientType: number[];
|
|
1476
|
+
__typename: number[];
|
|
1477
|
+
};
|
|
1467
1478
|
AthleteInvitationDto: {
|
|
1468
1479
|
email: number[];
|
|
1469
1480
|
name: number[];
|
|
@@ -1850,16 +1861,6 @@ declare const _default: {
|
|
|
1850
1861
|
expirationDate: number[];
|
|
1851
1862
|
__typename: number[];
|
|
1852
1863
|
};
|
|
1853
|
-
DonationCheckoutDto: {
|
|
1854
|
-
fundingCampaignId: number[];
|
|
1855
|
-
donationAmount: number[];
|
|
1856
|
-
mode: number[];
|
|
1857
|
-
fromName: number[];
|
|
1858
|
-
fromEmail: number[];
|
|
1859
|
-
fromPhone: number[];
|
|
1860
|
-
message: number[];
|
|
1861
|
-
__typename: number[];
|
|
1862
|
-
};
|
|
1863
1864
|
StripeQueryDto: {
|
|
1864
1865
|
operation: number[];
|
|
1865
1866
|
id: number[];
|