anymal-protocol 1.0.92 → 1.0.93

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
@@ -307,6 +307,7 @@ declare const convertToMultipleActionDefinitions: (frs: ActionDefinition[]) => A
307
307
  * Base fields sent with every action
308
308
  */
309
309
  interface BaseActionPayload {
310
+ multiplier?: number;
310
311
  campaignId?: string;
311
312
  actionId: string;
312
313
  timestamp: string;
package/dist/index.d.ts CHANGED
@@ -307,6 +307,7 @@ declare const convertToMultipleActionDefinitions: (frs: ActionDefinition[]) => A
307
307
  * Base fields sent with every action
308
308
  */
309
309
  interface BaseActionPayload {
310
+ multiplier?: number;
310
311
  campaignId?: string;
311
312
  actionId: string;
312
313
  timestamp: string;
package/dist/index.js CHANGED
@@ -2475,6 +2475,7 @@ function useSubmitContractAction() {
2475
2475
  let sourceTypePayload = {};
2476
2476
  const basisType = {
2477
2477
  campaignId: payload.campaignId,
2478
+ multiplier: payload.multiplier,
2478
2479
  actionId: payload.actionId,
2479
2480
  timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2480
2481
  nonce: crypto.randomUUID(),
package/dist/index.mjs CHANGED
@@ -2332,6 +2332,7 @@ function useSubmitContractAction() {
2332
2332
  let sourceTypePayload = {};
2333
2333
  const basisType = {
2334
2334
  campaignId: payload.campaignId,
2335
+ multiplier: payload.multiplier,
2335
2336
  actionId: payload.actionId,
2336
2337
  timestamp: (/* @__PURE__ */ new Date()).toISOString(),
2337
2338
  nonce: crypto.randomUUID(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anymal-protocol",
3
- "version": "1.0.92",
3
+ "version": "1.0.93",
4
4
  "description": "A React/TypeScript-based utility library for reusable functions and hooks inside of the Anymal Ecosystem.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {