@ludo.ninja/api 2.9.2 → 2.9.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.
Files changed (35) hide show
  1. package/build/config/index.js +2 -3
  2. package/build/cookies/index.d.ts +1 -1
  3. package/build/graphql_tools/__generated__/adminHost/schema.d.ts +36 -36
  4. package/build/graphql_tools/__generated__/adminHost/schema.js +67 -69
  5. package/build/graphql_tools/__generated__/assetsHost/schema.d.ts +2 -2
  6. package/build/graphql_tools/__generated__/assetsHost/schema.js +3 -3
  7. package/build/graphql_tools/__generated__/authHost/schema.d.ts +2 -2
  8. package/build/graphql_tools/__generated__/authHost/schema.js +3 -3
  9. package/build/graphql_tools/__generated__/collectionsHost/schema.d.ts +2 -2
  10. package/build/graphql_tools/__generated__/collectionsHost/schema.js +3 -3
  11. package/build/graphql_tools/__generated__/experiencesHost/schema.d.ts +9 -9
  12. package/build/graphql_tools/__generated__/experiencesHost/schema.js +10 -10
  13. package/build/graphql_tools/__generated__/extensionHost/schema.d.ts +28 -28
  14. package/build/graphql_tools/__generated__/extensionHost/schema.js +18 -18
  15. package/build/graphql_tools/__generated__/formsHost/schema.js +8 -8
  16. package/build/graphql_tools/__generated__/galleriesHost/schema.d.ts +46 -46
  17. package/build/graphql_tools/__generated__/galleriesHost/schema.js +21 -21
  18. package/build/graphql_tools/__generated__/identityHost/schema.d.ts +54 -54
  19. package/build/graphql_tools/__generated__/identityHost/schema.js +33 -34
  20. package/build/graphql_tools/__generated__/mediasHost/schema.d.ts +5 -5
  21. package/build/graphql_tools/__generated__/mediasHost/schema.js +5 -5
  22. package/build/graphql_tools/__generated__/mintInfoHost/schema.js +3 -3
  23. package/build/graphql_tools/__generated__/notificationsHost/schema.d.ts +4 -4
  24. package/build/graphql_tools/__generated__/notificationsHost/schema.js +3 -3
  25. package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +7 -7
  26. package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +11 -11
  27. package/build/graphql_tools/__generated__/preferencesHost/schema.d.ts +2 -2
  28. package/build/graphql_tools/__generated__/preferencesHost/schema.js +23 -23
  29. package/build/graphql_tools/__generated__/searchHost/schema.d.ts +48 -48
  30. package/build/graphql_tools/__generated__/searchHost/schema.js +33 -33
  31. package/build/graphql_tools/__generated__/tapHost/schema.d.ts +6 -6
  32. package/build/graphql_tools/__generated__/tapHost/schema.js +12 -12
  33. package/build/index.d.ts +588 -1249
  34. package/package.json +1 -1
  35. package/tsconfig.tsbuildinfo +1 -1
@@ -3,7 +3,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.createErrorAuthInterceptor = exports.initializeApollo = void 0;
6
+ exports.initializeApollo = initializeApollo;
7
+ exports.createErrorAuthInterceptor = createErrorAuthInterceptor;
7
8
  const client_1 = require("@apollo/client");
8
9
  const error_1 = require("@apollo/client/link/error");
9
10
  const context_1 = require("@apollo/client/link/context");
@@ -148,7 +149,6 @@ function initializeApollo(initialState = null, domain) {
148
149
  apolloClient = _apolloClient;
149
150
  return _apolloClient;
150
151
  }
151
- exports.initializeApollo = initializeApollo;
152
152
  function createErrorAuthInterceptor(client, onErrorAuth) {
153
153
  const errorLinkFirst = (0, error_1.onError)(({ graphQLErrors, networkError, operation, forward }) => {
154
154
  const { authToken } = (0, cookies_1.getCookies)();
@@ -169,5 +169,4 @@ function createErrorAuthInterceptor(client, onErrorAuth) {
169
169
  client.setLink(combinedLink);
170
170
  return client;
171
171
  }
172
- exports.createErrorAuthInterceptor = createErrorAuthInterceptor;
173
172
  ;
@@ -2,7 +2,7 @@ import * as express from "express";
2
2
  import * as next from 'next';
3
3
  declare const assignCookies: (userId: string, wallets: Array<string>, authToken: string, refreshToken: string, newUser: string, inviteCode: string, role: string, domain?: string) => void;
4
4
  declare const refreshCookies: (authToken: string, refreshToken: string, domain?: string) => void;
5
- declare const getCookies: (ctx?: Pick<next.NextPageContext, 'req'> | {
5
+ declare const getCookies: (ctx?: Pick<next.NextPageContext, "req"> | {
6
6
  req: next.NextApiRequest;
7
7
  } | {
8
8
  req: express.Request;
@@ -1889,7 +1889,7 @@ export type ITriggerOpportunityNotificationMutationFn = Apollo.MutationFunction<
1889
1889
  * });
1890
1890
  */
1891
1891
  export declare function useTriggerOpportunityNotificationMutation(baseOptions?: Apollo.MutationHookOptions<ITriggerOpportunityNotificationMutation, ITriggerOpportunityNotificationMutationVariables>): Apollo.MutationTuple<ITriggerOpportunityNotificationMutation, Exact<{
1892
- opportunityId: string;
1892
+ opportunityId: Scalars["ID"];
1893
1893
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1894
1894
  export type TriggerOpportunityNotificationMutationHookResult = ReturnType<typeof useTriggerOpportunityNotificationMutation>;
1895
1895
  export type TriggerOpportunityNotificationMutationResult = Apollo.MutationResult<ITriggerOpportunityNotificationMutation>;
@@ -1915,8 +1915,8 @@ export type IUpdateInviteCodeUsagesLimitMutationFn = Apollo.MutationFunction<IUp
1915
1915
  * });
1916
1916
  */
1917
1917
  export declare function useUpdateInviteCodeUsagesLimitMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateInviteCodeUsagesLimitMutation, IUpdateInviteCodeUsagesLimitMutationVariables>): Apollo.MutationTuple<IUpdateInviteCodeUsagesLimitMutation, Exact<{
1918
- code: string;
1919
- usagesLimit: number;
1918
+ code: Scalars["String"];
1919
+ usagesLimit: Scalars["Int"];
1920
1920
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1921
1921
  export type UpdateInviteCodeUsagesLimitMutationHookResult = ReturnType<typeof useUpdateInviteCodeUsagesLimitMutation>;
1922
1922
  export type UpdateInviteCodeUsagesLimitMutationResult = Apollo.MutationResult<IUpdateInviteCodeUsagesLimitMutation>;
@@ -1942,8 +1942,8 @@ export type IUpdateOpportunityPushStatusMutationFn = Apollo.MutationFunction<IUp
1942
1942
  * });
1943
1943
  */
1944
1944
  export declare function useUpdateOpportunityPushStatusMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateOpportunityPushStatusMutation, IUpdateOpportunityPushStatusMutationVariables>): Apollo.MutationTuple<IUpdateOpportunityPushStatusMutation, Exact<{
1945
- opportunityId: string;
1946
- isActive: boolean;
1945
+ opportunityId: Scalars["ID"];
1946
+ isActive: Scalars["Boolean"];
1947
1947
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1948
1948
  export type UpdateOpportunityPushStatusMutationHookResult = ReturnType<typeof useUpdateOpportunityPushStatusMutation>;
1949
1949
  export type UpdateOpportunityPushStatusMutationResult = Apollo.MutationResult<IUpdateOpportunityPushStatusMutation>;
@@ -1969,7 +1969,7 @@ export type IUpdateReferralTypeMutationFn = Apollo.MutationFunction<IUpdateRefer
1969
1969
  * });
1970
1970
  */
1971
1971
  export declare function useUpdateReferralTypeMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateReferralTypeMutation, IUpdateReferralTypeMutationVariables>): Apollo.MutationTuple<IUpdateReferralTypeMutation, Exact<{
1972
- id: string;
1972
+ id: Scalars["ID"];
1973
1973
  input: IReferralTypeInput;
1974
1974
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1975
1975
  export type UpdateReferralTypeMutationHookResult = ReturnType<typeof useUpdateReferralTypeMutation>;
@@ -1996,8 +1996,8 @@ export type IUpdateReferralTypeArchivedStatusMutationFn = Apollo.MutationFunctio
1996
1996
  * });
1997
1997
  */
1998
1998
  export declare function useUpdateReferralTypeArchivedStatusMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateReferralTypeArchivedStatusMutation, IUpdateReferralTypeArchivedStatusMutationVariables>): Apollo.MutationTuple<IUpdateReferralTypeArchivedStatusMutation, Exact<{
1999
- id: string;
2000
- isArchived: boolean;
1999
+ id: Scalars["ID"];
2000
+ isArchived: Scalars["Boolean"];
2001
2001
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2002
2002
  export type UpdateReferralTypeArchivedStatusMutationHookResult = ReturnType<typeof useUpdateReferralTypeArchivedStatusMutation>;
2003
2003
  export type UpdateReferralTypeArchivedStatusMutationResult = Apollo.MutationResult<IUpdateReferralTypeArchivedStatusMutation>;
@@ -2023,7 +2023,7 @@ export type IUpdateTierMutationFn = Apollo.MutationFunction<IUpdateTierMutation,
2023
2023
  * });
2024
2024
  */
2025
2025
  export declare function useUpdateTierMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateTierMutation, IUpdateTierMutationVariables>): Apollo.MutationTuple<IUpdateTierMutation, Exact<{
2026
- id: string;
2026
+ id: Scalars["ID"];
2027
2027
  input: ITierInput;
2028
2028
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2029
2029
  export type UpdateTierMutationHookResult = ReturnType<typeof useUpdateTierMutation>;
@@ -2050,8 +2050,8 @@ export type IUpdateTierArchivedStatusMutationFn = Apollo.MutationFunction<IUpdat
2050
2050
  * });
2051
2051
  */
2052
2052
  export declare function useUpdateTierArchivedStatusMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateTierArchivedStatusMutation, IUpdateTierArchivedStatusMutationVariables>): Apollo.MutationTuple<IUpdateTierArchivedStatusMutation, Exact<{
2053
- id: string;
2054
- isArchived: boolean;
2053
+ id: Scalars["ID"];
2054
+ isArchived: Scalars["Boolean"];
2055
2055
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2056
2056
  export type UpdateTierArchivedStatusMutationHookResult = ReturnType<typeof useUpdateTierArchivedStatusMutation>;
2057
2057
  export type UpdateTierArchivedStatusMutationResult = Apollo.MutationResult<IUpdateTierArchivedStatusMutation>;
@@ -2077,8 +2077,8 @@ export type IChangeXpPointsMutationFn = Apollo.MutationFunction<IChangeXpPointsM
2077
2077
  * });
2078
2078
  */
2079
2079
  export declare function useChangeXpPointsMutation(baseOptions?: Apollo.MutationHookOptions<IChangeXpPointsMutation, IChangeXpPointsMutationVariables>): Apollo.MutationTuple<IChangeXpPointsMutation, Exact<{
2080
- userId: string;
2081
- pointsDiff: number;
2080
+ userId: Scalars["ID"];
2081
+ pointsDiff: Scalars["Int"];
2082
2082
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2083
2083
  export type ChangeXpPointsMutationHookResult = ReturnType<typeof useChangeXpPointsMutation>;
2084
2084
  export type ChangeXpPointsMutationResult = Apollo.MutationResult<IChangeXpPointsMutation>;
@@ -2104,8 +2104,8 @@ export type ICreateCategoryMutationFn = Apollo.MutationFunction<ICreateCategoryM
2104
2104
  * });
2105
2105
  */
2106
2106
  export declare function useCreateCategoryMutation(baseOptions?: Apollo.MutationHookOptions<ICreateCategoryMutation, ICreateCategoryMutationVariables>): Apollo.MutationTuple<ICreateCategoryMutation, Exact<{
2107
- name: string;
2108
- matchingWords: string[];
2107
+ name: Scalars["String"];
2108
+ matchingWords: Array<Scalars["String"]>;
2109
2109
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2110
2110
  export type CreateCategoryMutationHookResult = ReturnType<typeof useCreateCategoryMutation>;
2111
2111
  export type CreateCategoryMutationResult = Apollo.MutationResult<ICreateCategoryMutation>;
@@ -2132,7 +2132,7 @@ export type ICreateBrandMutationFn = Apollo.MutationFunction<ICreateBrandMutatio
2132
2132
  */
2133
2133
  export declare function useCreateBrandMutation(baseOptions?: Apollo.MutationHookOptions<ICreateBrandMutation, ICreateBrandMutationVariables>): Apollo.MutationTuple<ICreateBrandMutation, Exact<{
2134
2134
  brand: IBrandInput;
2135
- file?: any;
2135
+ file?: Maybe<Scalars["Upload"]>;
2136
2136
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2137
2137
  export type CreateBrandMutationHookResult = ReturnType<typeof useCreateBrandMutation>;
2138
2138
  export type CreateBrandMutationResult = Apollo.MutationResult<ICreateBrandMutation>;
@@ -2158,7 +2158,7 @@ export type ICreateAdminOpportunityMutationFn = Apollo.MutationFunction<ICreateA
2158
2158
  * });
2159
2159
  */
2160
2160
  export declare function useCreateAdminOpportunityMutation(baseOptions?: Apollo.MutationHookOptions<ICreateAdminOpportunityMutation, ICreateAdminOpportunityMutationVariables>): Apollo.MutationTuple<ICreateAdminOpportunityMutation, Exact<{
2161
- file?: any;
2161
+ file?: Maybe<Scalars["Upload"]>;
2162
2162
  input: IAdminOpportunityInput;
2163
2163
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2164
2164
  export type CreateAdminOpportunityMutationHookResult = ReturnType<typeof useCreateAdminOpportunityMutation>;
@@ -2186,9 +2186,9 @@ export type IAddInviteCodesMutationFn = Apollo.MutationFunction<IAddInviteCodesM
2186
2186
  * });
2187
2187
  */
2188
2188
  export declare function useAddInviteCodesMutation(baseOptions?: Apollo.MutationHookOptions<IAddInviteCodesMutation, IAddInviteCodesMutationVariables>): Apollo.MutationTuple<IAddInviteCodesMutation, Exact<{
2189
- userId: string;
2190
- codesNum: number;
2191
- reftypeId?: Maybe<string> | undefined;
2189
+ userId: Scalars["String"];
2190
+ codesNum: Scalars["Int"];
2191
+ reftypeId?: Maybe<Scalars["String"]>;
2192
2192
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2193
2193
  export type AddInviteCodesMutationHookResult = ReturnType<typeof useAddInviteCodesMutation>;
2194
2194
  export type AddInviteCodesMutationResult = Apollo.MutationResult<IAddInviteCodesMutation>;
@@ -2213,7 +2213,7 @@ export type IRemoveInviteCodeMutationFn = Apollo.MutationFunction<IRemoveInviteC
2213
2213
  * });
2214
2214
  */
2215
2215
  export declare function useRemoveInviteCodeMutation(baseOptions?: Apollo.MutationHookOptions<IRemoveInviteCodeMutation, IRemoveInviteCodeMutationVariables>): Apollo.MutationTuple<IRemoveInviteCodeMutation, Exact<{
2216
- inviteCode: string;
2216
+ inviteCode: Scalars["String"];
2217
2217
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2218
2218
  export type RemoveInviteCodeMutationHookResult = ReturnType<typeof useRemoveInviteCodeMutation>;
2219
2219
  export type RemoveInviteCodeMutationResult = Apollo.MutationResult<IRemoveInviteCodeMutation>;
@@ -2240,9 +2240,9 @@ export type IUpdateBrandMutationFn = Apollo.MutationFunction<IUpdateBrandMutatio
2240
2240
  * });
2241
2241
  */
2242
2242
  export declare function useUpdateBrandMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateBrandMutation, IUpdateBrandMutationVariables>): Apollo.MutationTuple<IUpdateBrandMutation, Exact<{
2243
- id: string;
2243
+ id: Scalars["ID"];
2244
2244
  input: IBrandInput;
2245
- file?: any;
2245
+ file?: Maybe<Scalars["Upload"]>;
2246
2246
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2247
2247
  export type UpdateBrandMutationHookResult = ReturnType<typeof useUpdateBrandMutation>;
2248
2248
  export type UpdateBrandMutationResult = Apollo.MutationResult<IUpdateBrandMutation>;
@@ -2268,8 +2268,8 @@ export type IUpdateBrandArchivedStatusMutationFn = Apollo.MutationFunction<IUpda
2268
2268
  * });
2269
2269
  */
2270
2270
  export declare function useUpdateBrandArchivedStatusMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateBrandArchivedStatusMutation, IUpdateBrandArchivedStatusMutationVariables>): Apollo.MutationTuple<IUpdateBrandArchivedStatusMutation, Exact<{
2271
- id: string;
2272
- isArchived: boolean;
2271
+ id: Scalars["ID"];
2272
+ isArchived: Scalars["Boolean"];
2273
2273
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2274
2274
  export type UpdateBrandArchivedStatusMutationHookResult = ReturnType<typeof useUpdateBrandArchivedStatusMutation>;
2275
2275
  export type UpdateBrandArchivedStatusMutationResult = Apollo.MutationResult<IUpdateBrandArchivedStatusMutation>;
@@ -2295,7 +2295,7 @@ export type IUpdateCategoryMutationFn = Apollo.MutationFunction<IUpdateCategoryM
2295
2295
  * });
2296
2296
  */
2297
2297
  export declare function useUpdateCategoryMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateCategoryMutation, IUpdateCategoryMutationVariables>): Apollo.MutationTuple<IUpdateCategoryMutation, Exact<{
2298
- id: string;
2298
+ id: Scalars["ID"];
2299
2299
  input: ICategoryInput;
2300
2300
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2301
2301
  export type UpdateCategoryMutationHookResult = ReturnType<typeof useUpdateCategoryMutation>;
@@ -2322,8 +2322,8 @@ export type IUpdateCategoryArchivedStatusMutationFn = Apollo.MutationFunction<IU
2322
2322
  * });
2323
2323
  */
2324
2324
  export declare function useUpdateCategoryArchivedStatusMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateCategoryArchivedStatusMutation, IUpdateCategoryArchivedStatusMutationVariables>): Apollo.MutationTuple<IUpdateCategoryArchivedStatusMutation, Exact<{
2325
- id: string;
2326
- isArchived: boolean;
2325
+ id: Scalars["ID"];
2326
+ isArchived: Scalars["Boolean"];
2327
2327
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2328
2328
  export type UpdateCategoryArchivedStatusMutationHookResult = ReturnType<typeof useUpdateCategoryArchivedStatusMutation>;
2329
2329
  export type UpdateCategoryArchivedStatusMutationResult = Apollo.MutationResult<IUpdateCategoryArchivedStatusMutation>;
@@ -2350,9 +2350,9 @@ export type IUpdateOpportunityMutationFn = Apollo.MutationFunction<IUpdateOpport
2350
2350
  * });
2351
2351
  */
2352
2352
  export declare function useUpdateOpportunityMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateOpportunityMutation, IUpdateOpportunityMutationVariables>): Apollo.MutationTuple<IUpdateOpportunityMutation, Exact<{
2353
- id: string;
2353
+ id: Scalars["ID"];
2354
2354
  input: IAdminOpportunityInput;
2355
- file?: any;
2355
+ file?: Maybe<Scalars["Upload"]>;
2356
2356
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2357
2357
  export type UpdateOpportunityMutationHookResult = ReturnType<typeof useUpdateOpportunityMutation>;
2358
2358
  export type UpdateOpportunityMutationResult = Apollo.MutationResult<IUpdateOpportunityMutation>;
@@ -2378,8 +2378,8 @@ export type IUpdateOpportunityArchivedStatusMutationFn = Apollo.MutationFunction
2378
2378
  * });
2379
2379
  */
2380
2380
  export declare function useUpdateOpportunityArchivedStatusMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateOpportunityArchivedStatusMutation, IUpdateOpportunityArchivedStatusMutationVariables>): Apollo.MutationTuple<IUpdateOpportunityArchivedStatusMutation, Exact<{
2381
- id: string;
2382
- isArchived: boolean;
2381
+ id: Scalars["ID"];
2382
+ isArchived: Scalars["Boolean"];
2383
2383
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2384
2384
  export type UpdateOpportunityArchivedStatusMutationHookResult = ReturnType<typeof useUpdateOpportunityArchivedStatusMutation>;
2385
2385
  export type UpdateOpportunityArchivedStatusMutationResult = Apollo.MutationResult<IUpdateOpportunityArchivedStatusMutation>;
@@ -2405,8 +2405,8 @@ export type IUpdateProfileStatusMutationFn = Apollo.MutationFunction<IUpdateProf
2405
2405
  * });
2406
2406
  */
2407
2407
  export declare function useUpdateProfileStatusMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateProfileStatusMutation, IUpdateProfileStatusMutationVariables>): Apollo.MutationTuple<IUpdateProfileStatusMutation, Exact<{
2408
- userId: string;
2409
- isActive: boolean;
2408
+ userId: Scalars["ID"];
2409
+ isActive: Scalars["Boolean"];
2410
2410
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
2411
2411
  export type UpdateProfileStatusMutationHookResult = ReturnType<typeof useUpdateProfileStatusMutation>;
2412
2412
  export type UpdateProfileStatusMutationResult = Apollo.MutationResult<IUpdateProfileStatusMutation>;
@@ -2429,10 +2429,10 @@ export declare const CheckInviteCodeDocument: Apollo.DocumentNode;
2429
2429
  * });
2430
2430
  */
2431
2431
  export declare function useCheckInviteCodeQuery(baseOptions: Apollo.QueryHookOptions<ICheckInviteCodeQuery, ICheckInviteCodeQueryVariables>): Apollo.QueryResult<ICheckInviteCodeQuery, Exact<{
2432
- code: string;
2432
+ code: Scalars["String"];
2433
2433
  }>>;
2434
2434
  export declare function useCheckInviteCodeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ICheckInviteCodeQuery, ICheckInviteCodeQueryVariables>): Apollo.LazyQueryResultTuple<ICheckInviteCodeQuery, Exact<{
2435
- code: string;
2435
+ code: Scalars["String"];
2436
2436
  }>>;
2437
2437
  export type CheckInviteCodeQueryHookResult = ReturnType<typeof useCheckInviteCodeQuery>;
2438
2438
  export type CheckInviteCodeLazyQueryHookResult = ReturnType<typeof useCheckInviteCodeLazyQuery>;