naystack 1.1.4 → 1.1.5
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.
package/dist/socials/index.d.mts
CHANGED
|
@@ -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:
|
|
97
|
+
callback: (type: string, value: Record<string, any>) => Promise<void>;
|
|
98
98
|
}) => {
|
|
99
99
|
GET: (req: NextRequest) => next_server.NextResponse<unknown> | undefined;
|
|
100
100
|
POST: (req: NextRequest) => Promise<Response>;
|
package/dist/socials/index.d.ts
CHANGED
|
@@ -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:
|
|
97
|
+
callback: (type: string, value: Record<string, any>) => Promise<void>;
|
|
98
98
|
}) => {
|
|
99
99
|
GET: (req: NextRequest) => next_server.NextResponse<unknown> | undefined;
|
|
100
100
|
POST: (req: NextRequest) => Promise<Response>;
|