@ludo.ninja/api 2.8.51 → 2.8.53
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/build/graphql_tools/__generated__/adminHost/schema.d.ts +285 -2
- package/build/graphql_tools/__generated__/adminHost/schema.js +103 -2
- package/build/graphql_tools/__generated__/formsHost/schema.d.ts +6 -0
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +38 -0
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +64 -1
- package/build/graphql_tools/__generated__/searchHost/schema.d.ts +22 -0
- package/build/index.d.ts +49 -0
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/adminHost/schema.ts +346 -2
- package/src/graphql_tools/__generated__/formsHost/schema.ts +6 -0
- package/src/graphql_tools/__generated__/opportunitiesHost/schema.ts +80 -0
- package/src/graphql_tools/__generated__/searchHost/schema.ts +30 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -197,6 +197,7 @@ export type IQuery = {
|
|
|
197
197
|
fetchOpportunitiesV2?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
198
198
|
fetchOpportunitiesForProfile: Array<Maybe<IOpportunityV2>>;
|
|
199
199
|
fetchOpportunity: IOpportunityV2;
|
|
200
|
+
fetchOpportunitiesByIds: Array<IOpportunityV2>;
|
|
200
201
|
};
|
|
201
202
|
/** scalar Upload */
|
|
202
203
|
export type IQueryFetchBrandArgs = {
|
|
@@ -214,6 +215,10 @@ export type IQueryFetchOpportunitiesArgs = {
|
|
|
214
215
|
export type IQueryFetchOpportunityArgs = {
|
|
215
216
|
opportunityId: Scalars['ID'];
|
|
216
217
|
};
|
|
218
|
+
/** scalar Upload */
|
|
219
|
+
export type IQueryFetchOpportunitiesByIdsArgs = {
|
|
220
|
+
opportunityIds: Array<Scalars['ID']>;
|
|
221
|
+
};
|
|
217
222
|
export type ResolverTypeWrapper<T> = Promise<T> | T;
|
|
218
223
|
export type ResolverWithResolve<TResult, TParent, TContext, TArgs> = {
|
|
219
224
|
resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
|
|
@@ -393,6 +398,7 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
393
398
|
fetchOpportunitiesV2?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType>;
|
|
394
399
|
fetchOpportunitiesForProfile?: Resolver<Array<Maybe<IResolversTypes['OpportunityV2']>>, ParentType, ContextType>;
|
|
395
400
|
fetchOpportunity?: Resolver<IResolversTypes['OpportunityV2'], ParentType, ContextType, RequireFields<IQueryFetchOpportunityArgs, 'opportunityId'>>;
|
|
401
|
+
fetchOpportunitiesByIds?: Resolver<Array<IResolversTypes['OpportunityV2']>, ParentType, ContextType, RequireFields<IQueryFetchOpportunitiesByIdsArgs, 'opportunityIds'>>;
|
|
396
402
|
};
|
|
397
403
|
export type IResolvers<ContextType = any> = {
|
|
398
404
|
Brand?: IBrandResolvers<ContextType>;
|
|
@@ -423,6 +429,12 @@ export type IOpenOpportunityMutationVariables = Exact<{
|
|
|
423
429
|
opportunityId: Scalars['ID'];
|
|
424
430
|
}>;
|
|
425
431
|
export type IOpenOpportunityMutation = Pick<IMutation, 'openOpportunity'>;
|
|
432
|
+
export type IFetchOpportunitiesByIdsQueryVariables = Exact<{
|
|
433
|
+
opportunityIds: Array<Scalars['ID']>;
|
|
434
|
+
}>;
|
|
435
|
+
export type IFetchOpportunitiesByIdsQuery = {
|
|
436
|
+
fetchOpportunitiesByIds: Array<Pick<IOpportunityV2, 'opportunityId' | 'brandId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'description' | 'brandName' | 'brandDescription' | 'brandMedia' | 'brandUrl' | 'brandIndustry' | 'categoryName' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'minXpLevel' | 'maxXpLevel' | 'minRank' | 'maxRank' | 'media' | 'reportLink' | 'clicks' | 'views' | 'blockchain' | 'collection' | 'createdAt' | 'minWalletValue' | 'maxWalletValue' | 'shareLink' | 'liked'>>;
|
|
437
|
+
};
|
|
426
438
|
export type IFetchOpportunitiesForProfileQueryVariables = Exact<{
|
|
427
439
|
[key: string]: never;
|
|
428
440
|
}>;
|
|
@@ -538,6 +550,32 @@ export declare function useOpenOpportunityMutation(baseOptions?: Apollo.Mutation
|
|
|
538
550
|
export type OpenOpportunityMutationHookResult = ReturnType<typeof useOpenOpportunityMutation>;
|
|
539
551
|
export type OpenOpportunityMutationResult = Apollo.MutationResult<IOpenOpportunityMutation>;
|
|
540
552
|
export type OpenOpportunityMutationOptions = Apollo.BaseMutationOptions<IOpenOpportunityMutation, IOpenOpportunityMutationVariables>;
|
|
553
|
+
export declare const FetchOpportunitiesByIdsDocument: Apollo.DocumentNode;
|
|
554
|
+
/**
|
|
555
|
+
* __useFetchOpportunitiesByIdsQuery__
|
|
556
|
+
*
|
|
557
|
+
* To run a query within a React component, call `useFetchOpportunitiesByIdsQuery` and pass it any options that fit your needs.
|
|
558
|
+
* When your component renders, `useFetchOpportunitiesByIdsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
559
|
+
* you can use to render your UI.
|
|
560
|
+
*
|
|
561
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
562
|
+
*
|
|
563
|
+
* @example
|
|
564
|
+
* const { data, loading, error } = useFetchOpportunitiesByIdsQuery({
|
|
565
|
+
* variables: {
|
|
566
|
+
* opportunityIds: // value for 'opportunityIds'
|
|
567
|
+
* },
|
|
568
|
+
* });
|
|
569
|
+
*/
|
|
570
|
+
export declare function useFetchOpportunitiesByIdsQuery(baseOptions: Apollo.QueryHookOptions<IFetchOpportunitiesByIdsQuery, IFetchOpportunitiesByIdsQueryVariables>): Apollo.QueryResult<IFetchOpportunitiesByIdsQuery, Exact<{
|
|
571
|
+
opportunityIds: string[];
|
|
572
|
+
}>>;
|
|
573
|
+
export declare function useFetchOpportunitiesByIdsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchOpportunitiesByIdsQuery, IFetchOpportunitiesByIdsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchOpportunitiesByIdsQuery, Exact<{
|
|
574
|
+
opportunityIds: string[];
|
|
575
|
+
}>>;
|
|
576
|
+
export type FetchOpportunitiesByIdsQueryHookResult = ReturnType<typeof useFetchOpportunitiesByIdsQuery>;
|
|
577
|
+
export type FetchOpportunitiesByIdsLazyQueryHookResult = ReturnType<typeof useFetchOpportunitiesByIdsLazyQuery>;
|
|
578
|
+
export type FetchOpportunitiesByIdsQueryResult = Apollo.QueryResult<IFetchOpportunitiesByIdsQuery, IFetchOpportunitiesByIdsQueryVariables>;
|
|
541
579
|
export declare const FetchOpportunitiesForProfileDocument: Apollo.DocumentNode;
|
|
542
580
|
/**
|
|
543
581
|
* __useFetchOpportunitiesForProfileQuery__
|
|
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.useFetchOpportunitiesLazyQuery = exports.useFetchOpportunitiesQuery = exports.FetchOpportunitiesDocument = exports.useFetchOpportunitiesForProfileLazyQuery = exports.useFetchOpportunitiesForProfileQuery = exports.FetchOpportunitiesForProfileDocument = exports.useOpenOpportunityMutation = exports.OpenOpportunityDocument = exports.useCreateOpportunityMutation = exports.CreateOpportunityDocument = exports.useLikeOpportunityMutation = exports.LikeOpportunityDocument = exports.useDislikeOpportunityMutation = exports.DislikeOpportunityDocument = void 0;
|
|
26
|
+
exports.useFetchOpportunitiesLazyQuery = exports.useFetchOpportunitiesQuery = exports.FetchOpportunitiesDocument = exports.useFetchOpportunitiesForProfileLazyQuery = exports.useFetchOpportunitiesForProfileQuery = exports.FetchOpportunitiesForProfileDocument = exports.useFetchOpportunitiesByIdsLazyQuery = exports.useFetchOpportunitiesByIdsQuery = exports.FetchOpportunitiesByIdsDocument = exports.useOpenOpportunityMutation = exports.OpenOpportunityDocument = exports.useCreateOpportunityMutation = exports.CreateOpportunityDocument = exports.useLikeOpportunityMutation = exports.LikeOpportunityDocument = exports.useDislikeOpportunityMutation = exports.DislikeOpportunityDocument = void 0;
|
|
27
27
|
const client_1 = require("@apollo/client");
|
|
28
28
|
const Apollo = __importStar(require("@apollo/client"));
|
|
29
29
|
exports.DislikeOpportunityDocument = (0, client_1.gql) `
|
|
@@ -130,6 +130,69 @@ function useOpenOpportunityMutation(baseOptions) {
|
|
|
130
130
|
return Apollo.useMutation(exports.OpenOpportunityDocument, baseOptions);
|
|
131
131
|
}
|
|
132
132
|
exports.useOpenOpportunityMutation = useOpenOpportunityMutation;
|
|
133
|
+
exports.FetchOpportunitiesByIdsDocument = (0, client_1.gql) `
|
|
134
|
+
query FetchOpportunitiesByIds($opportunityIds: [ID!]!) {
|
|
135
|
+
fetchOpportunitiesByIds(opportunityIds: $opportunityIds) {
|
|
136
|
+
opportunityId
|
|
137
|
+
brandId
|
|
138
|
+
categoryId
|
|
139
|
+
opportunityStatus
|
|
140
|
+
opportunityType
|
|
141
|
+
notificationType
|
|
142
|
+
name
|
|
143
|
+
description
|
|
144
|
+
brandName
|
|
145
|
+
brandDescription
|
|
146
|
+
brandMedia
|
|
147
|
+
brandUrl
|
|
148
|
+
brandIndustry
|
|
149
|
+
categoryName
|
|
150
|
+
ludoUrl
|
|
151
|
+
projectUrl
|
|
152
|
+
activeFrom
|
|
153
|
+
activeUntil
|
|
154
|
+
minXpLevel
|
|
155
|
+
maxXpLevel
|
|
156
|
+
minRank
|
|
157
|
+
maxRank
|
|
158
|
+
media
|
|
159
|
+
reportLink
|
|
160
|
+
clicks
|
|
161
|
+
views
|
|
162
|
+
blockchain
|
|
163
|
+
collection
|
|
164
|
+
createdAt
|
|
165
|
+
minWalletValue
|
|
166
|
+
maxWalletValue
|
|
167
|
+
shareLink
|
|
168
|
+
liked
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
`;
|
|
172
|
+
/**
|
|
173
|
+
* __useFetchOpportunitiesByIdsQuery__
|
|
174
|
+
*
|
|
175
|
+
* To run a query within a React component, call `useFetchOpportunitiesByIdsQuery` and pass it any options that fit your needs.
|
|
176
|
+
* When your component renders, `useFetchOpportunitiesByIdsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
177
|
+
* you can use to render your UI.
|
|
178
|
+
*
|
|
179
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
180
|
+
*
|
|
181
|
+
* @example
|
|
182
|
+
* const { data, loading, error } = useFetchOpportunitiesByIdsQuery({
|
|
183
|
+
* variables: {
|
|
184
|
+
* opportunityIds: // value for 'opportunityIds'
|
|
185
|
+
* },
|
|
186
|
+
* });
|
|
187
|
+
*/
|
|
188
|
+
function useFetchOpportunitiesByIdsQuery(baseOptions) {
|
|
189
|
+
return Apollo.useQuery(exports.FetchOpportunitiesByIdsDocument, baseOptions);
|
|
190
|
+
}
|
|
191
|
+
exports.useFetchOpportunitiesByIdsQuery = useFetchOpportunitiesByIdsQuery;
|
|
192
|
+
function useFetchOpportunitiesByIdsLazyQuery(baseOptions) {
|
|
193
|
+
return Apollo.useLazyQuery(exports.FetchOpportunitiesByIdsDocument, baseOptions);
|
|
194
|
+
}
|
|
195
|
+
exports.useFetchOpportunitiesByIdsLazyQuery = useFetchOpportunitiesByIdsLazyQuery;
|
|
133
196
|
exports.FetchOpportunitiesForProfileDocument = (0, client_1.gql) `
|
|
134
197
|
query FetchOpportunitiesForProfile {
|
|
135
198
|
fetchOpportunitiesForProfile {
|
|
@@ -56,6 +56,7 @@ export type IAsset = {
|
|
|
56
56
|
rankRaw?: Maybe<Scalars['Float']>;
|
|
57
57
|
rankMax?: Maybe<Scalars['Float']>;
|
|
58
58
|
rankUpdatedAt?: Maybe<Scalars['Float']>;
|
|
59
|
+
rankVersion?: Maybe<Scalars['String']>;
|
|
59
60
|
collectionId?: Maybe<Scalars['String']>;
|
|
60
61
|
collectionTitle?: Maybe<Scalars['String']>;
|
|
61
62
|
collectionOriginalUrls?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -190,8 +191,24 @@ export type IMedia = {
|
|
|
190
191
|
};
|
|
191
192
|
export type IMutation = {
|
|
192
193
|
setDummy: Scalars['String'];
|
|
194
|
+
likeAsset: Scalars['Boolean'];
|
|
195
|
+
dislikeAsset: Scalars['Boolean'];
|
|
196
|
+
likeCollection: Scalars['Boolean'];
|
|
197
|
+
dislikeCollection: Scalars['Boolean'];
|
|
193
198
|
clearCaches: Scalars['Boolean'];
|
|
194
199
|
};
|
|
200
|
+
export type IMutationLikeAssetArgs = {
|
|
201
|
+
assetId: Scalars['String'];
|
|
202
|
+
};
|
|
203
|
+
export type IMutationDislikeAssetArgs = {
|
|
204
|
+
assetId: Scalars['String'];
|
|
205
|
+
};
|
|
206
|
+
export type IMutationLikeCollectionArgs = {
|
|
207
|
+
collectionId: Scalars['String'];
|
|
208
|
+
};
|
|
209
|
+
export type IMutationDislikeCollectionArgs = {
|
|
210
|
+
collectionId: Scalars['String'];
|
|
211
|
+
};
|
|
195
212
|
export type IPage = {
|
|
196
213
|
token?: Maybe<Scalars['String']>;
|
|
197
214
|
num?: Maybe<Scalars['Int']>;
|
|
@@ -440,6 +457,7 @@ export type IAssetResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
440
457
|
rankRaw?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
441
458
|
rankMax?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
442
459
|
rankUpdatedAt?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
460
|
+
rankVersion?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
443
461
|
collectionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
444
462
|
collectionTitle?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
445
463
|
collectionOriginalUrls?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
@@ -574,6 +592,10 @@ export type IMediaResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
574
592
|
};
|
|
575
593
|
export type IMutationResolvers<ContextType = any, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
|
|
576
594
|
setDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
595
|
+
likeAsset?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationLikeAssetArgs, 'assetId'>>;
|
|
596
|
+
dislikeAsset?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDislikeAssetArgs, 'assetId'>>;
|
|
597
|
+
likeCollection?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationLikeCollectionArgs, 'collectionId'>>;
|
|
598
|
+
dislikeCollection?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationDislikeCollectionArgs, 'collectionId'>>;
|
|
577
599
|
clearCaches?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
|
578
600
|
};
|
|
579
601
|
export type IPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['Page'] = IResolversParentTypes['Page']> = {
|
package/build/index.d.ts
CHANGED
|
@@ -423,6 +423,16 @@ declare const schema: {
|
|
|
423
423
|
}>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>> | undefined): import("@apollo/client").MutationTuple<opportunitiesSchema.IOpenOpportunityMutation, opportunitiesSchema.Exact<{
|
|
424
424
|
opportunityId: string;
|
|
425
425
|
}>, import("@apollo/client").DefaultContext, import("@apollo/client").ApolloCache<any>>;
|
|
426
|
+
useFetchOpportunitiesByIdsQuery(baseOptions: import("@apollo/client").QueryHookOptions<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.Exact<{
|
|
427
|
+
opportunityIds: string[];
|
|
428
|
+
}>>): import("@apollo/client").QueryResult<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.Exact<{
|
|
429
|
+
opportunityIds: string[];
|
|
430
|
+
}>>;
|
|
431
|
+
useFetchOpportunitiesByIdsLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.Exact<{
|
|
432
|
+
opportunityIds: string[];
|
|
433
|
+
}>> | undefined): import("@apollo/client").LazyQueryResultTuple<opportunitiesSchema.IFetchOpportunitiesByIdsQuery, opportunitiesSchema.Exact<{
|
|
434
|
+
opportunityIds: string[];
|
|
435
|
+
}>>;
|
|
426
436
|
useFetchOpportunitiesForProfileQuery(baseOptions?: import("@apollo/client").QueryHookOptions<opportunitiesSchema.IFetchOpportunitiesForProfileQuery, opportunitiesSchema.Exact<{
|
|
427
437
|
[key: string]: never;
|
|
428
438
|
}>> | undefined): import("@apollo/client").QueryResult<opportunitiesSchema.IFetchOpportunitiesForProfileQuery, opportunitiesSchema.Exact<{
|
|
@@ -447,6 +457,7 @@ declare const schema: {
|
|
|
447
457
|
LikeOpportunityDocument: import("graphql").DocumentNode;
|
|
448
458
|
CreateOpportunityDocument: import("graphql").DocumentNode;
|
|
449
459
|
OpenOpportunityDocument: import("graphql").DocumentNode;
|
|
460
|
+
FetchOpportunitiesByIdsDocument: import("graphql").DocumentNode;
|
|
450
461
|
FetchOpportunitiesForProfileDocument: import("graphql").DocumentNode;
|
|
451
462
|
FetchOpportunitiesDocument: import("graphql").DocumentNode;
|
|
452
463
|
useDeleteGalleryBannerMutation(baseOptions?: import("@apollo/client").MutationHookOptions<mediasSchema.IDeleteGalleryBannerMutation, mediasSchema.Exact<{
|
|
@@ -1159,6 +1170,42 @@ declare const schema: {
|
|
|
1159
1170
|
sort: adminSchema.IContentReportSortInput;
|
|
1160
1171
|
page: adminSchema.IAdminPageInput;
|
|
1161
1172
|
}>>;
|
|
1173
|
+
useFetchFormOpportunityPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
|
|
1174
|
+
filter: adminSchema.IFormOpportunityFilterInput;
|
|
1175
|
+
sort: adminSchema.IFormOpportunitySortInput;
|
|
1176
|
+
page: adminSchema.IAdminPageInput;
|
|
1177
|
+
}>>): import("@apollo/client").QueryResult<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
|
|
1178
|
+
filter: adminSchema.IFormOpportunityFilterInput;
|
|
1179
|
+
sort: adminSchema.IFormOpportunitySortInput;
|
|
1180
|
+
page: adminSchema.IAdminPageInput;
|
|
1181
|
+
}>>;
|
|
1182
|
+
useFetchFormOpportunityPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
|
|
1183
|
+
filter: adminSchema.IFormOpportunityFilterInput;
|
|
1184
|
+
sort: adminSchema.IFormOpportunitySortInput;
|
|
1185
|
+
page: adminSchema.IAdminPageInput;
|
|
1186
|
+
}>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchFormOpportunityPageQuery, adminSchema.Exact<{
|
|
1187
|
+
filter: adminSchema.IFormOpportunityFilterInput;
|
|
1188
|
+
sort: adminSchema.IFormOpportunitySortInput;
|
|
1189
|
+
page: adminSchema.IAdminPageInput;
|
|
1190
|
+
}>>;
|
|
1191
|
+
useFetchInvestorInquiryPageQuery(baseOptions: import("@apollo/client").QueryHookOptions<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
|
|
1192
|
+
filter: adminSchema.IInvestorInquiryFilterInput;
|
|
1193
|
+
sort: adminSchema.IInvestorInquirySortInput;
|
|
1194
|
+
page: adminSchema.IAdminPageInput;
|
|
1195
|
+
}>>): import("@apollo/client").QueryResult<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
|
|
1196
|
+
filter: adminSchema.IInvestorInquiryFilterInput;
|
|
1197
|
+
sort: adminSchema.IInvestorInquirySortInput;
|
|
1198
|
+
page: adminSchema.IAdminPageInput;
|
|
1199
|
+
}>>;
|
|
1200
|
+
useFetchInvestorInquiryPageLazyQuery(baseOptions?: import("@apollo/client").LazyQueryHookOptions<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
|
|
1201
|
+
filter: adminSchema.IInvestorInquiryFilterInput;
|
|
1202
|
+
sort: adminSchema.IInvestorInquirySortInput;
|
|
1203
|
+
page: adminSchema.IAdminPageInput;
|
|
1204
|
+
}>> | undefined): import("@apollo/client").LazyQueryResultTuple<adminSchema.IFetchInvestorInquiryPageQuery, adminSchema.Exact<{
|
|
1205
|
+
filter: adminSchema.IInvestorInquiryFilterInput;
|
|
1206
|
+
sort: adminSchema.IInvestorInquirySortInput;
|
|
1207
|
+
page: adminSchema.IAdminPageInput;
|
|
1208
|
+
}>>;
|
|
1162
1209
|
useFetchAdminBrandsQuery(baseOptions?: import("@apollo/client").QueryHookOptions<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
|
|
1163
1210
|
[key: string]: never;
|
|
1164
1211
|
}>> | undefined): import("@apollo/client").QueryResult<adminSchema.IFetchAdminBrandsQuery, adminSchema.Exact<{
|
|
@@ -1327,6 +1374,8 @@ declare const schema: {
|
|
|
1327
1374
|
UpdateProfileStatusDocument: import("graphql").DocumentNode;
|
|
1328
1375
|
FetchContactSupportPageDocument: import("graphql").DocumentNode;
|
|
1329
1376
|
FetchContentReportPageDocument: import("graphql").DocumentNode;
|
|
1377
|
+
FetchFormOpportunityPageDocument: import("graphql").DocumentNode;
|
|
1378
|
+
FetchInvestorInquiryPageDocument: import("graphql").DocumentNode;
|
|
1330
1379
|
FetchAdminBrandsDocument: import("graphql").DocumentNode;
|
|
1331
1380
|
FetchAdminBrandsPageDocument: import("graphql").DocumentNode;
|
|
1332
1381
|
FetchAdminCategoriesDocument: import("graphql").DocumentNode;
|