@rabbitholegg/questdk-plugin-utils
Advanced tools
Comparing version 1.0.0-alpha.20 to 1.0.0-alpha.21
# @rabbitholegg/questdk-plugin-utils | ||
## 1.0.0-alpha.21 | ||
### Patch Changes | ||
- [#370](https://github.com/rabbitholegg/questdk-plugins/pull/370) [`993aa447`](https://github.com/rabbitholegg/questdk-plugins/commit/993aa4473b2b2b4df8e6d19360fbe1a73cd05eee) Thanks [@sammccord](https://github.com/sammccord)! - chore: replace utils build with vite + tsc | ||
## 1.0.0-alpha.20 | ||
@@ -4,0 +10,0 @@ |
@@ -334,9 +334,9 @@ /// <reference types="node" /> | ||
export declare const FollowValidationParamsSchema: z.ZodObject<{ | ||
actor: ZodSchema<`0x${string}`, z.ZodTypeDef, `0x${string}`>; | ||
actor: z.ZodString; | ||
project: z.ZodOptional<ZodSchema<`0x${string}`, z.ZodTypeDef, `0x${string}`>>; | ||
}, "strip", z.ZodTypeAny, { | ||
actor: `0x${string}`; | ||
actor: string; | ||
project?: `0x${string}` | undefined; | ||
}, { | ||
actor: `0x${string}`; | ||
actor: string; | ||
project?: `0x${string}` | undefined; | ||
@@ -1318,9 +1318,9 @@ }>; | ||
data: z.ZodObject<{ | ||
actor: ZodSchema<`0x${string}`, z.ZodTypeDef, `0x${string}`>; | ||
actor: z.ZodString; | ||
project: z.ZodOptional<ZodSchema<`0x${string}`, z.ZodTypeDef, `0x${string}`>>; | ||
}, "strip", z.ZodTypeAny, { | ||
actor: `0x${string}`; | ||
actor: string; | ||
project?: `0x${string}` | undefined; | ||
}, { | ||
actor: `0x${string}`; | ||
actor: string; | ||
project?: `0x${string}` | undefined; | ||
@@ -1331,3 +1331,3 @@ }>; | ||
data: { | ||
actor: `0x${string}`; | ||
actor: string; | ||
project?: `0x${string}` | undefined; | ||
@@ -1338,3 +1338,3 @@ }; | ||
data: { | ||
actor: `0x${string}`; | ||
actor: string; | ||
project?: `0x${string}` | undefined; | ||
@@ -1341,0 +1341,0 @@ }; |
{ | ||
"name": "@rabbitholegg/questdk-plugin-utils", | ||
"version": "1.0.0-alpha.20", | ||
"version": "1.0.0-alpha.21", | ||
"exports": { | ||
@@ -17,12 +17,8 @@ "require": "./dist/cjs/index.js", | ||
"devDependencies": { | ||
"vite": "^5.2.11", | ||
"tsconfig": "0.1.0-alpha.1" | ||
}, | ||
"scripts": { | ||
"build": "pnpm build:types && pnpm build:esm && pnpm postbuild:esm && pnpm build:cjs && pnpm postbuild:cjs && BABEL_ENV=esmBundled pnpm rollup -c", | ||
"build:esm": "BABEL_ENV=esmUnbundled babel src --extensions '.ts' --out-dir 'dist/esm' --source-maps --verbose", | ||
"build:cjs": "BABEL_ENV=cjs babel src --extensions '.ts' --out-dir 'dist/cjs' --source-maps", | ||
"build:types": "tsc --project tsconfig.build.json --module esnext --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap", | ||
"build": "vite build && tsc --project tsconfig.build.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./dist/types", | ||
"bench": "vitest bench", | ||
"postbuild:cjs": "echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json", | ||
"postbuild:esm": "echo '{\"type\":\"module\"}' > dist/esm/package.json", | ||
"bench:ci": "CI=true vitest bench", | ||
@@ -29,0 +25,0 @@ "clean": "rimraf dist", |
@@ -229,3 +229,3 @@ import { | ||
export const FollowValidationParamsSchema = z.object({ | ||
actor: EthAddressSchema, | ||
actor: z.string(), | ||
project: EthAddressSchema.optional(), | ||
@@ -232,0 +232,0 @@ }) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
1119811
2
90
16687