@ludo.ninja/api 3.0.88 → 3.0.89

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ludo.ninja/api",
3
- "version": "3.0.88",
3
+ "version": "3.0.89",
4
4
  "main": "./build/index.js",
5
5
  "scripts": {
6
6
  "test": "jest",
@@ -243,6 +243,7 @@ export type IMedia = {
243
243
 
244
244
  export type IMintingData = {
245
245
  id: Scalars['ID'];
246
+ blockchain: Scalars['String'];
246
247
  tokenId: Scalars['String'];
247
248
  address: Scalars['String'];
248
249
  nftIndexInCollection: Scalars['Int'];
@@ -253,6 +254,8 @@ export type IMintingData = {
253
254
  ownersAddresses: Array<Scalars['String']>;
254
255
  originalUrls: Array<Scalars['String']>;
255
256
  medias?: Maybe<Array<Maybe<IMedia>>>;
257
+ txHash?: Maybe<Scalars['String']>;
258
+ explorer?: Maybe<Scalars['String']>;
256
259
  };
257
260
 
258
261
  export type IMutation = {
@@ -1028,6 +1031,7 @@ export type IMediaResolvers<ContextType = any, ParentType extends IResolversPare
1028
1031
 
1029
1032
  export type IMintingDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['MintingData'] = IResolversParentTypes['MintingData']> = {
1030
1033
  id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
1034
+ blockchain?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
1031
1035
  tokenId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
1032
1036
  address?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
1033
1037
  nftIndexInCollection?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
@@ -1038,6 +1042,8 @@ export type IMintingDataResolvers<ContextType = any, ParentType extends IResolve
1038
1042
  ownersAddresses?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
1039
1043
  originalUrls?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
1040
1044
  medias?: Resolver<Maybe<Array<Maybe<IResolversTypes['Media']>>>, ParentType, ContextType>;
1045
+ txHash?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1046
+ explorer?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
1041
1047
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
1042
1048
  };
1043
1049