anymal-protocol 1.0.90 → 1.0.92

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
@@ -19,6 +19,11 @@ declare function useUpdateUserPid(): (dbAuthToken: string, docID: string, pid: s
19
19
  declare function useUpdateUserAsVerified(): (recaptchaToken: string | null, docID: string, dbAuthToken: string, endpoint: string) => Promise<{
20
20
  success: boolean;
21
21
  message: string;
22
+ dbCid: any;
23
+ } | {
24
+ success: boolean;
25
+ message: string;
26
+ dbCid?: undefined;
22
27
  } | undefined>;
23
28
 
24
29
  declare function useUpdateUserName(): (dbAuthToken: string, docID: string, name: string, endpoint: string) => Promise<{
@@ -302,6 +307,7 @@ declare const convertToMultipleActionDefinitions: (frs: ActionDefinition[]) => A
302
307
  * Base fields sent with every action
303
308
  */
304
309
  interface BaseActionPayload {
310
+ campaignId?: string;
305
311
  actionId: string;
306
312
  timestamp: string;
307
313
  nonce: string;
package/dist/index.d.ts CHANGED
@@ -19,6 +19,11 @@ declare function useUpdateUserPid(): (dbAuthToken: string, docID: string, pid: s
19
19
  declare function useUpdateUserAsVerified(): (recaptchaToken: string | null, docID: string, dbAuthToken: string, endpoint: string) => Promise<{
20
20
  success: boolean;
21
21
  message: string;
22
+ dbCid: any;
23
+ } | {
24
+ success: boolean;
25
+ message: string;
26
+ dbCid?: undefined;
22
27
  } | undefined>;
23
28
 
24
29
  declare function useUpdateUserName(): (dbAuthToken: string, docID: string, name: string, endpoint: string) => Promise<{
@@ -302,6 +307,7 @@ declare const convertToMultipleActionDefinitions: (frs: ActionDefinition[]) => A
302
307
  * Base fields sent with every action
303
308
  */
304
309
  interface BaseActionPayload {
310
+ campaignId?: string;
305
311
  actionId: string;
306
312
  timestamp: string;
307
313
  nonce: string;