naystack 1.1.3 → 1.1.4

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.
@@ -94,7 +94,7 @@ declare const getInstagramMessage: <T = InstagramMessage>(token: string, id: str
94
94
 
95
95
  declare const setupInstagramWebhook: (options: {
96
96
  secret: string;
97
- callback: (type: string, value: object) => Promise<void>;
97
+ callback: (type: string, value: unknown) => Promise<void>;
98
98
  }) => {
99
99
  GET: (req: NextRequest) => next_server.NextResponse<unknown> | undefined;
100
100
  POST: (req: NextRequest) => Promise<Response>;
@@ -94,7 +94,7 @@ declare const getInstagramMessage: <T = InstagramMessage>(token: string, id: str
94
94
 
95
95
  declare const setupInstagramWebhook: (options: {
96
96
  secret: string;
97
- callback: (type: string, value: object) => Promise<void>;
97
+ callback: (type: string, value: unknown) => Promise<void>;
98
98
  }) => {
99
99
  GET: (req: NextRequest) => next_server.NextResponse<unknown> | undefined;
100
100
  POST: (req: NextRequest) => Promise<Response>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "naystack",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "A stack built with tight Next + Drizzle + GraphQL",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",