rozod 2.1.0 → 2.1.1

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.
Files changed (2) hide show
  1. package/lib/index.d.ts +1 -1
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
- type RequestMethod = 'get' | 'post' | 'put' | 'delete';
2
+ type RequestMethod = 'get' | 'post' | 'put' | 'delete' | 'patch';
3
3
  type RequestFormat = 'json' | 'text';
4
4
  type SerializationMethod = Record<string, {
5
5
  style?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rozod",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Wrapper for Roblox API using Zod and custom API Client using fetch",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",