@poolzfinance/api4 1.9.12 → 1.9.13
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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.module.js +1 -1
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/types/graphql/gql.d.ts +4 -4
- package/dist/types/graphql/graphql.d.ts +6 -3
- package/package.json +1 -1
|
@@ -115,6 +115,7 @@ export type BoostProxy = {
|
|
|
115
115
|
__typename?: 'BoostProxy';
|
|
116
116
|
CampaignCode: Scalars['String']['output'];
|
|
117
117
|
CampaignName: Scalars['String']['output'];
|
|
118
|
+
DataKey: Scalars['String']['output'];
|
|
118
119
|
TotalEntries: Scalars['Int']['output'];
|
|
119
120
|
TotalUsers: Scalars['Int']['output'];
|
|
120
121
|
Users: Array<BoostProxyUser>;
|
|
@@ -126,11 +127,11 @@ export type BoostProxyUser = {
|
|
|
126
127
|
};
|
|
127
128
|
export type DataOnAuth = {
|
|
128
129
|
auth_date: Scalars['Int']['input'];
|
|
129
|
-
first_name
|
|
130
|
+
first_name?: InputMaybe<Scalars['String']['input']>;
|
|
130
131
|
hash: Scalars['String']['input'];
|
|
131
132
|
id: Scalars['Int']['input'];
|
|
132
|
-
last_name
|
|
133
|
-
photo_url
|
|
133
|
+
last_name?: InputMaybe<Scalars['String']['input']>;
|
|
134
|
+
photo_url?: InputMaybe<Scalars['String']['input']>;
|
|
134
135
|
username: Scalars['String']['input'];
|
|
135
136
|
};
|
|
136
137
|
export type GenerateTokenFromSignature = {
|
|
@@ -525,6 +526,7 @@ export type BoostProxyDataQuery = {
|
|
|
525
526
|
boostProxy: Array<{
|
|
526
527
|
__typename?: 'BoostProxy';
|
|
527
528
|
TotalUsers: number;
|
|
529
|
+
DataKey: string;
|
|
528
530
|
CampaignName: string;
|
|
529
531
|
TotalEntries: number;
|
|
530
532
|
CampaignCode: string;
|
|
@@ -541,6 +543,7 @@ export type BoostProxyUsersQuery = {
|
|
|
541
543
|
CampaignName: string;
|
|
542
544
|
TotalEntries: number;
|
|
543
545
|
CampaignCode: string;
|
|
546
|
+
DataKey: string;
|
|
544
547
|
Users: Array<{
|
|
545
548
|
__typename?: 'BoostProxyUser';
|
|
546
549
|
Address: string;
|