naystack 1.1.6 → 1.1.7

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.
@@ -99,7 +99,7 @@ declare const sendInstagramMessage: (token: string, to: string, text: string) =>
99
99
 
100
100
  declare const setupInstagramWebhook: (options: {
101
101
  secret: string;
102
- callback: (type: string, value: Record<string, any>) => Promise<void>;
102
+ callback: (type: string, value: any) => Promise<void>;
103
103
  }) => {
104
104
  GET: (req: NextRequest) => next_server.NextResponse<unknown> | undefined;
105
105
  POST: (req: NextRequest) => Promise<Response>;
@@ -99,7 +99,7 @@ declare const sendInstagramMessage: (token: string, to: string, text: string) =>
99
99
 
100
100
  declare const setupInstagramWebhook: (options: {
101
101
  secret: string;
102
- callback: (type: string, value: Record<string, any>) => Promise<void>;
102
+ callback: (type: string, value: any) => Promise<void>;
103
103
  }) => {
104
104
  GET: (req: NextRequest) => next_server.NextResponse<unknown> | undefined;
105
105
  POST: (req: NextRequest) => Promise<Response>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "naystack",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
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",