naystack 1.1.10-beta.1 → 1.1.10-beta.2

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.
@@ -227,12 +227,10 @@ var setupThreadsWebhook = (options) => {
227
227
  return {
228
228
  GET: verifyWebhook(options.secret),
229
229
  POST: async (req) => {
230
- console.warn((/* @__PURE__ */ new Date()).getTime());
231
230
  const payload = await req.json();
232
231
  for (const { value, field } of payload.values) {
233
232
  await options.callback(field, value);
234
233
  }
235
- console.warn((/* @__PURE__ */ new Date()).getTime());
236
234
  return new Response("OK");
237
235
  }
238
236
  };
@@ -187,12 +187,10 @@ var setupThreadsWebhook = (options) => {
187
187
  return {
188
188
  GET: verifyWebhook(options.secret),
189
189
  POST: async (req) => {
190
- console.warn((/* @__PURE__ */ new Date()).getTime());
191
190
  const payload = await req.json();
192
191
  for (const { value, field } of payload.values) {
193
192
  await options.callback(field, value);
194
193
  }
195
- console.warn((/* @__PURE__ */ new Date()).getTime());
196
194
  return new Response("OK");
197
195
  }
198
196
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "naystack",
3
- "version": "1.1.10-beta.1",
3
+ "version": "1.1.10-beta.2",
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",