update referralDataSchema

This commit is contained in:
Kirill Litvinov
2024-03-04 14:52:32 +03:00
parent 3c04a0fee6
commit 274807edbd
3 changed files with 5 additions and 5 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@orionprotocol/sdk",
"version": "0.20.60",
"version": "0.20.62",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@orionprotocol/sdk",
"version": "0.20.60",
"version": "0.20.62",
"hasInstallScript": true,
"license": "ISC",
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "@orionprotocol/sdk",
"version": "0.20.61",
"version": "0.20.62",
"description": "Orion Protocol SDK",
"main": "./lib/index.cjs",
"module": "./lib/index.js",

View File

@@ -1,6 +1,6 @@
import { z } from "zod";
import { z } from 'zod';
export const referralDataSchema = z.object({
referer: z.string(),
referer: z.string().nullable(),
isReferral: z.boolean(),
});