anymal-protocol 1.0.24 → 1.0.26

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/dist/index.d.mts CHANGED
@@ -42,7 +42,7 @@ declare function useUpdateUserName(): (dbAuthToken: string, docID: string, name:
42
42
  */
43
43
  declare function useFetchNotifications(): (pid: string, dbAuthToken: string, endpoint: string, additionalFilters?: Record<string, any>) => Promise<any>;
44
44
 
45
- declare function useMintAnymalNFT(): (pid: string, nftId: string, dbAuthToken: string, validationContractAddress: string, smartAccount: any, bundlerClient: any) => Promise<{
45
+ declare function useMintAnymalNFT(): (pid: string, nftId: string, anymalTxId: string, dbAuthToken: string, validationContractAddress: string, smartAccount: any, bundlerClient: any) => Promise<{
46
46
  success: boolean;
47
47
  message: string;
48
48
  }>;
@@ -64,7 +64,7 @@ declare function useAddAnymalToDatabase(): (dbAuthToken: string, endpoint: strin
64
64
 
65
65
  declare function useDeleteAnymalFromDatabase(): (dbAuthToken: string, endpoint: string, anymalDocID: string) => Promise<void>;
66
66
 
67
- declare function useSaveAnymalMetadata(): (idToken: string, publicKey: string, nftMetadataInput: AnymalNftMetadataInputData, authServiceBaseUrl: string) => Promise<{
67
+ declare function useSaveAnymalMetadata(): (userPid: string, anymalTxId: string, idToken: string, publicKey: string, nftMetadataInput: AnymalNftMetadataInputData, authServiceBaseUrl: string) => Promise<{
68
68
  success: boolean;
69
69
  message: any;
70
70
  }>;
package/dist/index.d.ts CHANGED
@@ -42,7 +42,7 @@ declare function useUpdateUserName(): (dbAuthToken: string, docID: string, name:
42
42
  */
43
43
  declare function useFetchNotifications(): (pid: string, dbAuthToken: string, endpoint: string, additionalFilters?: Record<string, any>) => Promise<any>;
44
44
 
45
- declare function useMintAnymalNFT(): (pid: string, nftId: string, dbAuthToken: string, validationContractAddress: string, smartAccount: any, bundlerClient: any) => Promise<{
45
+ declare function useMintAnymalNFT(): (pid: string, nftId: string, anymalTxId: string, dbAuthToken: string, validationContractAddress: string, smartAccount: any, bundlerClient: any) => Promise<{
46
46
  success: boolean;
47
47
  message: string;
48
48
  }>;
@@ -64,7 +64,7 @@ declare function useAddAnymalToDatabase(): (dbAuthToken: string, endpoint: strin
64
64
 
65
65
  declare function useDeleteAnymalFromDatabase(): (dbAuthToken: string, endpoint: string, anymalDocID: string) => Promise<void>;
66
66
 
67
- declare function useSaveAnymalMetadata(): (idToken: string, publicKey: string, nftMetadataInput: AnymalNftMetadataInputData, authServiceBaseUrl: string) => Promise<{
67
+ declare function useSaveAnymalMetadata(): (userPid: string, anymalTxId: string, idToken: string, publicKey: string, nftMetadataInput: AnymalNftMetadataInputData, authServiceBaseUrl: string) => Promise<{
68
68
  success: boolean;
69
69
  message: any;
70
70
  }>;