@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.
@@ -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: Scalars['String']['input'];
130
+ first_name?: InputMaybe<Scalars['String']['input']>;
130
131
  hash: Scalars['String']['input'];
131
132
  id: Scalars['Int']['input'];
132
- last_name: Scalars['String']['input'];
133
- photo_url: Scalars['String']['input'];
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poolzfinance/api4",
3
- "version": "1.9.12",
3
+ "version": "1.9.13",
4
4
  "description": "Bridge between front and back",
5
5
  "type": "module",
6
6
  "source": "src/index.ts",