@poolzfinance/api4 1.12.1 → 1.12.3

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.
@@ -102,7 +102,6 @@ export type AdminCreatePoolzBackId = {
102
102
  export type AdminGetAllocation = {
103
103
  __typename?: 'AdminGetAllocation';
104
104
  Amount: Scalars['Float']['output'];
105
- PhaseId: Scalars['String']['output'];
106
105
  UserAddress: Scalars['String']['output'];
107
106
  };
108
107
  export type AdminKycProxy = {
@@ -470,6 +469,7 @@ export type MyAllocation = {
470
469
  __typename?: 'MyAllocation';
471
470
  Amount: Scalars['Float']['output'];
472
471
  EndTime: Scalars['String']['output'];
472
+ PoolzBackId: Scalars['Int']['output'];
473
473
  StartTime: Scalars['String']['output'];
474
474
  };
475
475
  export type MyAssets = {
@@ -551,6 +551,12 @@ export type MySignUpV3 = {
551
551
  ProjectId: Scalars['String']['output'];
552
552
  SignedUp: Scalars['Boolean']['output'];
553
553
  };
554
+ export type MyUpcomingAllocation = {
555
+ __typename?: 'MyUpcomingAllocation';
556
+ Amount: Scalars['Float']['output'];
557
+ PoolzBackId: Scalars['Int']['output'];
558
+ ProjectId: Scalars['String']['output'];
559
+ };
554
560
  export type NonEvmWallet = {
555
561
  __typename?: 'NonEvmWallet';
556
562
  ChainName: Scalars['String']['output'];
@@ -645,6 +651,7 @@ export type Query = {
645
651
  mySignUpV3: Array<MySignUpV3>;
646
652
  /** @deprecated Old system. Please use new endpoints from API4.SignUp. */
647
653
  mySignup: Array<MySignUp>;
654
+ myUpcomingAllocation: Array<MyUpcomingAllocation>;
648
655
  poolxPrice: PoolxPrice;
649
656
  poolxTokenomics: PoolxTokenomics;
650
657
  retrieveSignature: RetrieveSignatureResponse;
@@ -679,6 +686,7 @@ export type QueryAdminAutoSignUpArgs = {
679
686
  note?: InputMaybe<Scalars['String']['input']>;
680
687
  };
681
688
  export type QueryAdminGetAllocationArgs = {
689
+ phaseId: Scalars['String']['input'];
682
690
  projectId: Scalars['String']['input'];
683
691
  };
684
692
  export type QueryAdminKycProxyArgs = {
@@ -766,6 +774,9 @@ export type QueryMySignUpV2Args = {
766
774
  export type QueryMySignUpV3Args = {
767
775
  projectIDs: Array<Scalars['String']['input']>;
768
776
  };
777
+ export type QueryMyUpcomingAllocationArgs = {
778
+ projectIDs: Array<Scalars['String']['input']>;
779
+ };
769
780
  export type QueryRetrieveSignatureArgs = {
770
781
  request: RetrieveSignatureRequest;
771
782
  };
@@ -1094,6 +1105,13 @@ export type AdminListOfCollateralQuery = {
1094
1105
  FinishTime: number;
1095
1106
  }>;
1096
1107
  };
1108
+ export type AdminWriteAllocationMutationVariables = Exact<{
1109
+ input: AdminWriteAllocation;
1110
+ }>;
1111
+ export type AdminWriteAllocationMutation = {
1112
+ __typename?: 'Mutation';
1113
+ adminWriteAllocation: number;
1114
+ };
1097
1115
  export type GetApprovedContractsQueryVariables = Exact<{
1098
1116
  onlyApproved: Scalars['Boolean']['input'];
1099
1117
  }>;
@@ -1383,6 +1401,31 @@ export type LogoutMutation = {
1383
1401
  __typename?: 'Mutation';
1384
1402
  logout: boolean;
1385
1403
  };
1404
+ export type MyAllocationQueryVariables = Exact<{
1405
+ projectId: Scalars['String']['input'];
1406
+ }>;
1407
+ export type MyAllocationQuery = {
1408
+ __typename?: 'Query';
1409
+ myAllocation: {
1410
+ __typename?: 'MyAllocation';
1411
+ Amount: number;
1412
+ StartTime: string;
1413
+ EndTime: string;
1414
+ PoolzBackId: number;
1415
+ };
1416
+ };
1417
+ export type MyUpcomingAllocationQueryVariables = Exact<{
1418
+ projectIDs: Array<Scalars['String']['input']> | Scalars['String']['input'];
1419
+ }>;
1420
+ export type MyUpcomingAllocationQuery = {
1421
+ __typename?: 'Query';
1422
+ myUpcomingAllocation: Array<{
1423
+ __typename?: 'MyUpcomingAllocation';
1424
+ ProjectId: string;
1425
+ PoolzBackId: number;
1426
+ Amount: number;
1427
+ }>;
1428
+ };
1386
1429
  export type SetMyAgreeMutationVariables = Exact<{
1387
1430
  [key: string]: never;
1388
1431
  }>;
@@ -1797,181 +1840,57 @@ export type DataQuery = {
1797
1840
  }>;
1798
1841
  }>;
1799
1842
  };
1800
- export declare const AdminCleanCacheDocument: DocumentNode<AdminCleanCacheMutation, Exact<{
1801
- [key: string]: never;
1802
- }>>;
1803
- export declare const AdminCreatePoolzBackIdDocument: DocumentNode<AdminCreatePoolzBackIdMutation, Exact<{
1804
- projectId: Scalars['String']['input'];
1805
- poolzBackId: Scalars['Int']['input'];
1806
- }>>;
1807
- export declare const AdminListOfCollateralDocument: DocumentNode<AdminListOfCollateralQuery, Exact<{
1808
- chainId: Scalars['Int']['input'];
1809
- collateralAddress: Scalars['String']['input'];
1810
- limit: Scalars['Int']['input'];
1811
- page: Scalars['Int']['input'];
1812
- }>>;
1813
- export declare const GetApprovedContractsDocument: DocumentNode<GetApprovedContractsQuery, Exact<{
1814
- onlyApproved: Scalars['Boolean']['input'];
1815
- }>>;
1816
- export declare const AdminAutoSignUpDocument: DocumentNode<AdminAutoSignUpQuery, Exact<{
1817
- note?: InputMaybe<string> | undefined;
1818
- }>>;
1819
- export declare const AdminAutoSignUpAllDocument: DocumentNode<AdminAutoSignUpAllQuery, Exact<{
1820
- [key: string]: never;
1821
- }>>;
1822
- export declare const AddAutoSignUpDocument: DocumentNode<AddAutoSignUpMutation, Exact<{
1823
- address: Scalars['String']['input'];
1824
- poolzAmount: Scalars['Float']['input'];
1825
- note: Scalars['String']['input'];
1826
- }>>;
1827
- export declare const UpdateAutoSignUpDocument: DocumentNode<UpdateAutoSignUpMutation, Exact<{
1828
- address: Scalars['String']['input'];
1829
- poolzAmount: Scalars['Float']['input'];
1830
- note: Scalars['String']['input'];
1831
- }>>;
1832
- export declare const DeleteAutoSignUpDocument: DocumentNode<DeleteAutoSignUpMutation, Exact<{
1833
- address: Scalars['String']['input'];
1834
- }>>;
1835
- export declare const BoostProxyDataDocument: DocumentNode<BoostProxyDataQuery, Exact<{
1836
- campaignCodes: Array<Scalars['String']['input']> | Scalars['String']['input'];
1837
- }>>;
1838
- export declare const BoostProxyUsersDocument: DocumentNode<BoostProxyUsersQuery, Exact<{
1839
- campaignCodes: Array<Scalars['String']['input']> | Scalars['String']['input'];
1840
- }>>;
1841
- export declare const DaoSenderHistoryDocument: DocumentNode<DaoSenderHistoryQuery, Exact<{
1842
- page: Scalars['Int']['input'];
1843
- }>>;
1844
- export declare const AdminCreateAssetDocument: DocumentNode<AdminCreateAssetMutation, Exact<{
1845
- Request: CreateAssetRequest;
1846
- }>>;
1847
- export declare const MyAssetsDocument: DocumentNode<MyAssetsQuery, Exact<{
1848
- limit: Scalars['Int']['input'];
1849
- page: Scalars['Int']['input'];
1850
- }>>;
1851
- export declare const RetrieveSignatureDocument: DocumentNode<RetrieveSignatureQuery, Exact<{
1852
- request: RetrieveSignatureRequest;
1853
- }>>;
1854
- export declare const GenerateSignatureDocument: DocumentNode<GenerateSignatureMutation, Exact<{
1855
- request: GenerateSignatureRequest;
1856
- }>>;
1857
- export declare const MyQueryDocument: DocumentNode<MyQueryQuery, Exact<{
1858
- [key: string]: never;
1859
- }>>;
1860
- export declare const GenerateTokenFromSignatureDocument: DocumentNode<GenerateTokenFromSignatureMutation, Exact<{
1861
- eip4361message: Scalars['String']['input'];
1862
- signature: Scalars['String']['input'];
1863
- }>>;
1864
- export declare const GenerateMyInvestSignatureDocument: DocumentNode<GenerateMyInvestSignatureQuery, Exact<{
1865
- projectId: Scalars['String']['input'];
1866
- weiAmount: Scalars['String']['input'];
1867
- }>>;
1868
- export declare const InvestedErc20Document: DocumentNode<InvestedErc20Query, Exact<{
1869
- investedErc20Id: Scalars['Int']['input'];
1870
- }>>;
1871
- export declare const GetLeaderboardByAddressDocument: DocumentNode<GetLeaderboardByAddressQuery, Exact<{
1872
- address?: InputMaybe<string> | undefined;
1873
- }>>;
1874
- export declare const GetLeaderboardDocument: DocumentNode<GetLeaderboardQuery, Exact<{
1875
- [key: string]: never;
1876
- }>>;
1877
- export declare const LogoutDocument: DocumentNode<LogoutMutation, Exact<{
1878
- [key: string]: never;
1879
- }>>;
1880
- export declare const SetMyAgreeDocument: DocumentNode<SetMyAgreeMutation, Exact<{
1881
- [key: string]: never;
1882
- }>>;
1883
- export declare const MyDataDocument: DocumentNode<MyDataQuery, Exact<{
1884
- [key: string]: never;
1885
- }>>;
1886
- export declare const AddEvmWalletDocument: DocumentNode<AddEvmWalletMutation, Exact<{
1887
- wallet: Scalars['String']['input'];
1888
- }>>;
1889
- export declare const DeleteEvmWalletDocument: DocumentNode<DeleteEvmWalletMutation, Exact<{
1890
- wallet: Scalars['String']['input'];
1891
- }>>;
1892
- export declare const AddNonEvmWalletDocument: DocumentNode<AddNonEvmWalletMutation, Exact<{
1893
- chainName: Scalars['String']['input'];
1894
- wallet: Scalars['String']['input'];
1895
- }>>;
1896
- export declare const DeleteNonEvmWalletDocument: DocumentNode<DeleteNonEvmWalletMutation, Exact<{
1897
- chainName: Scalars['String']['input'];
1898
- }>>;
1899
- export declare const UpdateNonEvmWalletDocument: DocumentNode<UpdateNonEvmWalletMutation, Exact<{
1900
- chainName: Scalars['String']['input'];
1901
- wallet: Scalars['String']['input'];
1902
- }>>;
1903
- export declare const MyInvestedDocument: DocumentNode<MyInvestedQuery, Exact<{
1904
- [key: string]: never;
1905
- }>>;
1906
- export declare const KycDocument: DocumentNode<KycQuery, Exact<{
1907
- [key: string]: never;
1908
- }>>;
1909
- export declare const MyRoleDocument: DocumentNode<MyRoleQuery, Exact<{
1910
- [key: string]: never;
1911
- }>>;
1912
- export declare const SignUpCheckDocument: DocumentNode<SignUpCheckQuery, Exact<{
1913
- poolIDs: Array<Scalars['Int']['input']> | Scalars['Int']['input'];
1914
- }>>;
1915
- export declare const PoolxPriceDocument: DocumentNode<PoolxPriceQuery, Exact<{
1916
- [key: string]: never;
1917
- }>>;
1918
- export declare const GetPoolxTokenomicsDocument: DocumentNode<GetPoolxTokenomicsQuery, Exact<{
1919
- [key: string]: never;
1920
- }>>;
1921
- export declare const SeasonPassDocument: DocumentNode<SeasonPassQuery, Exact<{
1922
- [key: string]: never;
1923
- }>>;
1924
- export declare const CreateSeasonPassDocument: DocumentNode<CreateSeasonPassMutation, Exact<{
1925
- Owner: Scalars['String']['input'];
1926
- Amount: Scalars['Float']['input'];
1927
- ValidUntil: Scalars['Int']['input'];
1928
- Note: Scalars['String']['input'];
1929
- }>>;
1930
- export declare const UpdateSeasonPassDocument: DocumentNode<UpdateSeasonPassMutation, Exact<{
1931
- Owner: Scalars['String']['input'];
1932
- Amount: Scalars['Float']['input'];
1933
- ValidUntil: Scalars['Int']['input'];
1934
- Note: Scalars['String']['input'];
1935
- }>>;
1936
- export declare const DeleteSeasonPassDocument: DocumentNode<DeleteSeasonPassMutation, Exact<{
1937
- owner: Scalars['String']['input'];
1938
- note: Scalars['String']['input'];
1939
- }>>;
1940
- export declare const MySignUpV2Document: DocumentNode<MySignUpV2Query, Exact<{
1941
- projectIDs: Array<Scalars['Int']['input']> | Scalars['Int']['input'];
1942
- }>>;
1943
- export declare const AdminSignUpV2Document: DocumentNode<AdminSignUpV2Query, Exact<{
1944
- projectId: Scalars['Int']['input'];
1945
- minPoolxAmount: Scalars['Int']['input'];
1946
- }>>;
1947
- export declare const ProjectSignUpV2Document: DocumentNode<ProjectSignUpV2Mutation, Exact<{
1948
- projectId: Scalars['Int']['input'];
1949
- }>>;
1950
- export declare const MySignUpV3Document: DocumentNode<MySignUpV3Query, Exact<{
1951
- projectIDs: Array<Scalars['String']['input']> | Scalars['String']['input'];
1952
- }>>;
1953
- export declare const AdminSignUpV3Document: DocumentNode<AdminSignUpV3Query, Exact<{
1954
- projectId: Scalars['String']['input'];
1955
- minPoolxAmount: Scalars['Int']['input'];
1956
- }>>;
1957
- export declare const ProjectSignUpV3Document: DocumentNode<ProjectSignUpV3Mutation, Exact<{
1958
- projectId: Scalars['String']['input'];
1959
- }>>;
1960
- export declare const SimpleUrlShortenerDocument: DocumentNode<SimpleUrlShortenerQuery, Exact<{
1961
- input: TxHashChainIdInput;
1962
- }>>;
1963
- export declare const StatusDocument: DocumentNode<StatusQuery, Exact<{
1964
- [key: string]: never;
1965
- }>>;
1966
- export declare const TokenInfoDocument: DocumentNode<TokenInfoQuery, Exact<{
1967
- hashKey: Scalars['String']['input'];
1968
- }>>;
1969
- export declare const TokenRefundsNftDocument: DocumentNode<TokenRefundsNftQuery, Exact<{
1970
- chainId: Scalars['Int']['input'];
1971
- poolId: Scalars['Int']['input'];
1972
- }>>;
1973
- export declare const DataDocument: DocumentNode<DataQuery, Exact<{
1974
- chainId?: InputMaybe<number> | undefined;
1975
- tokenAddress?: InputMaybe<string> | undefined;
1976
- fetchBalance?: InputMaybe<boolean> | undefined;
1977
- }>>;
1843
+ export declare const AdminCleanCacheDocument: DocumentNode<AdminCleanCacheMutation, AdminCleanCacheMutationVariables>;
1844
+ export declare const AdminCreatePoolzBackIdDocument: DocumentNode<AdminCreatePoolzBackIdMutation, AdminCreatePoolzBackIdMutationVariables>;
1845
+ export declare const AdminListOfCollateralDocument: DocumentNode<AdminListOfCollateralQuery, AdminListOfCollateralQueryVariables>;
1846
+ export declare const AdminWriteAllocationDocument: DocumentNode<AdminWriteAllocationMutation, AdminWriteAllocationMutationVariables>;
1847
+ export declare const GetApprovedContractsDocument: DocumentNode<GetApprovedContractsQuery, GetApprovedContractsQueryVariables>;
1848
+ export declare const AdminAutoSignUpDocument: DocumentNode<AdminAutoSignUpQuery, AdminAutoSignUpQueryVariables>;
1849
+ export declare const AdminAutoSignUpAllDocument: DocumentNode<AdminAutoSignUpAllQuery, AdminAutoSignUpAllQueryVariables>;
1850
+ export declare const AddAutoSignUpDocument: DocumentNode<AddAutoSignUpMutation, AddAutoSignUpMutationVariables>;
1851
+ export declare const UpdateAutoSignUpDocument: DocumentNode<UpdateAutoSignUpMutation, UpdateAutoSignUpMutationVariables>;
1852
+ export declare const DeleteAutoSignUpDocument: DocumentNode<DeleteAutoSignUpMutation, DeleteAutoSignUpMutationVariables>;
1853
+ export declare const BoostProxyDataDocument: DocumentNode<BoostProxyDataQuery, BoostProxyDataQueryVariables>;
1854
+ export declare const BoostProxyUsersDocument: DocumentNode<BoostProxyUsersQuery, BoostProxyUsersQueryVariables>;
1855
+ export declare const DaoSenderHistoryDocument: DocumentNode<DaoSenderHistoryQuery, DaoSenderHistoryQueryVariables>;
1856
+ export declare const AdminCreateAssetDocument: DocumentNode<AdminCreateAssetMutation, AdminCreateAssetMutationVariables>;
1857
+ export declare const MyAssetsDocument: DocumentNode<MyAssetsQuery, MyAssetsQueryVariables>;
1858
+ export declare const RetrieveSignatureDocument: DocumentNode<RetrieveSignatureQuery, RetrieveSignatureQueryVariables>;
1859
+ export declare const GenerateSignatureDocument: DocumentNode<GenerateSignatureMutation, GenerateSignatureMutationVariables>;
1860
+ export declare const MyQueryDocument: DocumentNode<MyQueryQuery, MyQueryQueryVariables>;
1861
+ export declare const GenerateTokenFromSignatureDocument: DocumentNode<GenerateTokenFromSignatureMutation, GenerateTokenFromSignatureMutationVariables>;
1862
+ export declare const GenerateMyInvestSignatureDocument: DocumentNode<GenerateMyInvestSignatureQuery, GenerateMyInvestSignatureQueryVariables>;
1863
+ export declare const InvestedErc20Document: DocumentNode<InvestedErc20Query, InvestedErc20QueryVariables>;
1864
+ export declare const GetLeaderboardByAddressDocument: DocumentNode<GetLeaderboardByAddressQuery, GetLeaderboardByAddressQueryVariables>;
1865
+ export declare const GetLeaderboardDocument: DocumentNode<GetLeaderboardQuery, GetLeaderboardQueryVariables>;
1866
+ export declare const LogoutDocument: DocumentNode<LogoutMutation, LogoutMutationVariables>;
1867
+ export declare const MyAllocationDocument: DocumentNode<MyAllocationQuery, MyAllocationQueryVariables>;
1868
+ export declare const MyUpcomingAllocationDocument: DocumentNode<MyUpcomingAllocationQuery, MyUpcomingAllocationQueryVariables>;
1869
+ export declare const SetMyAgreeDocument: DocumentNode<SetMyAgreeMutation, SetMyAgreeMutationVariables>;
1870
+ export declare const MyDataDocument: DocumentNode<MyDataQuery, MyDataQueryVariables>;
1871
+ export declare const AddEvmWalletDocument: DocumentNode<AddEvmWalletMutation, AddEvmWalletMutationVariables>;
1872
+ export declare const DeleteEvmWalletDocument: DocumentNode<DeleteEvmWalletMutation, DeleteEvmWalletMutationVariables>;
1873
+ export declare const AddNonEvmWalletDocument: DocumentNode<AddNonEvmWalletMutation, AddNonEvmWalletMutationVariables>;
1874
+ export declare const DeleteNonEvmWalletDocument: DocumentNode<DeleteNonEvmWalletMutation, DeleteNonEvmWalletMutationVariables>;
1875
+ export declare const UpdateNonEvmWalletDocument: DocumentNode<UpdateNonEvmWalletMutation, UpdateNonEvmWalletMutationVariables>;
1876
+ export declare const MyInvestedDocument: DocumentNode<MyInvestedQuery, MyInvestedQueryVariables>;
1877
+ export declare const KycDocument: DocumentNode<KycQuery, KycQueryVariables>;
1878
+ export declare const MyRoleDocument: DocumentNode<MyRoleQuery, MyRoleQueryVariables>;
1879
+ export declare const SignUpCheckDocument: DocumentNode<SignUpCheckQuery, SignUpCheckQueryVariables>;
1880
+ export declare const PoolxPriceDocument: DocumentNode<PoolxPriceQuery, PoolxPriceQueryVariables>;
1881
+ export declare const GetPoolxTokenomicsDocument: DocumentNode<GetPoolxTokenomicsQuery, GetPoolxTokenomicsQueryVariables>;
1882
+ export declare const SeasonPassDocument: DocumentNode<SeasonPassQuery, SeasonPassQueryVariables>;
1883
+ export declare const CreateSeasonPassDocument: DocumentNode<CreateSeasonPassMutation, CreateSeasonPassMutationVariables>;
1884
+ export declare const UpdateSeasonPassDocument: DocumentNode<UpdateSeasonPassMutation, UpdateSeasonPassMutationVariables>;
1885
+ export declare const DeleteSeasonPassDocument: DocumentNode<DeleteSeasonPassMutation, DeleteSeasonPassMutationVariables>;
1886
+ export declare const MySignUpV2Document: DocumentNode<MySignUpV2Query, MySignUpV2QueryVariables>;
1887
+ export declare const AdminSignUpV2Document: DocumentNode<AdminSignUpV2Query, AdminSignUpV2QueryVariables>;
1888
+ export declare const ProjectSignUpV2Document: DocumentNode<ProjectSignUpV2Mutation, ProjectSignUpV2MutationVariables>;
1889
+ export declare const MySignUpV3Document: DocumentNode<MySignUpV3Query, MySignUpV3QueryVariables>;
1890
+ export declare const AdminSignUpV3Document: DocumentNode<AdminSignUpV3Query, AdminSignUpV3QueryVariables>;
1891
+ export declare const ProjectSignUpV3Document: DocumentNode<ProjectSignUpV3Mutation, ProjectSignUpV3MutationVariables>;
1892
+ export declare const SimpleUrlShortenerDocument: DocumentNode<SimpleUrlShortenerQuery, SimpleUrlShortenerQueryVariables>;
1893
+ export declare const StatusDocument: DocumentNode<StatusQuery, StatusQueryVariables>;
1894
+ export declare const TokenInfoDocument: DocumentNode<TokenInfoQuery, TokenInfoQueryVariables>;
1895
+ export declare const TokenRefundsNftDocument: DocumentNode<TokenRefundsNftQuery, TokenRefundsNftQueryVariables>;
1896
+ export declare const DataDocument: DocumentNode<DataQuery, DataQueryVariables>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poolzfinance/api4",
3
- "version": "1.12.1",
3
+ "version": "1.12.3",
4
4
  "description": "Bridge between front and back",
5
5
  "type": "module",
6
6
  "source": "src/index.ts",
@@ -33,8 +33,8 @@
33
33
  "bracketSameLine": true
34
34
  },
35
35
  "devDependencies": {
36
- "@graphql-codegen/cli": "^4.0.1",
37
- "@graphql-codegen/client-preset": "^4.0.1",
36
+ "@graphql-codegen/cli": "^5.0.5",
37
+ "@graphql-codegen/client-preset": "^4.8.0",
38
38
  "@graphql-typed-document-node/core": "^3.2.0",
39
39
  "@types/crypto-js": "^4.2.2",
40
40
  "@types/jest": "^29.5.2",
@@ -45,12 +45,12 @@
45
45
  "rimraf": "^5.0.5",
46
46
  "ts-jest": "^29.1.0",
47
47
  "ts-node": "^10.9.1",
48
- "typescript": "^5.1.3"
48
+ "typescript": "^5.8.3"
49
49
  },
50
50
  "dependencies": {
51
51
  "@apollo/client": "^3.7.16",
52
52
  "crypto-js": "^4.2.0",
53
- "graphql": "^16.7.1",
53
+ "graphql": "^16.11.0",
54
54
  "react": "^18.2.0"
55
55
  },
56
56
  "scripts": {