@makeswift/runtime 0.28.1-canary.2 → 0.28.2-canary.0
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/cjs/api-handler/handlers/manifest.js +1 -1
- package/dist/cjs/api-handler/handlers/webhook/types.js +2 -1
- package/dist/cjs/api-handler/handlers/webhook/types.js.map +1 -1
- package/dist/cjs/client/index.js +3 -3
- package/dist/esm/api-handler/handlers/manifest.js +1 -1
- package/dist/esm/api-handler/handlers/webhook/types.js +2 -1
- package/dist/esm/api-handler/handlers/webhook/types.js.map +1 -1
- package/dist/esm/client/index.js +3 -3
- package/dist/types/api-handler/handlers/webhook/types.d.ts +10 -0
- package/dist/types/api-handler/handlers/webhook/types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -28,7 +28,7 @@ async function manifestHandler(req, { apiKey, manifest }) {
|
|
|
28
28
|
return import_request_response.ApiResponse.json({ message: "Unauthorized" }, { status: 401 });
|
|
29
29
|
}
|
|
30
30
|
return import_request_response.ApiResponse.json({
|
|
31
|
-
version: "0.28.
|
|
31
|
+
version: "0.28.2-canary.0",
|
|
32
32
|
interactionMode: true,
|
|
33
33
|
clientSideNavigation: false,
|
|
34
34
|
elementFromPoint: false,
|
|
@@ -39,7 +39,8 @@ const sitePublishedWebhookPayloadSchema = import_zod.z.object({
|
|
|
39
39
|
// catch(undefined) ensures a server-side schema change never breaks the
|
|
40
40
|
// webhook handler — if parsing fails, unstable_diff degrades to undefined
|
|
41
41
|
// and the consumer falls back to full revalidation.
|
|
42
|
-
unstable_diff: import_diff_projection.diffProjectionSchema.nullable().optional().catch(void 0)
|
|
42
|
+
unstable_diff: import_diff_projection.diffProjectionSchema.nullable().optional().catch(void 0),
|
|
43
|
+
unstable_defaultLocale: import_zod.z.string().nullable().optional().catch(void 0)
|
|
43
44
|
})
|
|
44
45
|
});
|
|
45
46
|
const webhookPayloadSchema = sitePublishedWebhookPayloadSchema;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../src/api-handler/handlers/webhook/types.ts"],"sourcesContent":["import { z } from 'zod'\n\nimport { type ErrorResponseBody } from '../../request-response'\nimport { diffProjectionSchema } from './diff-projection'\n\nexport const WebhookEventType = {\n SITE_PUBLISHED: 'site.published',\n} as const\n\nexport const sitePublishedWebhookPayloadSchema = z.object({\n type: z.literal(WebhookEventType.SITE_PUBLISHED),\n data: z.object({\n siteId: z.string().uuid(),\n publish: z.object({\n from: z.string().uuid().nullable(),\n to: z.string().uuid(),\n }),\n at: z.number(),\n // catch(undefined) ensures a server-side schema change never breaks the\n // webhook handler — if parsing fails, unstable_diff degrades to undefined\n // and the consumer falls back to full revalidation.\n unstable_diff: diffProjectionSchema.nullable().optional().catch(undefined),\n }),\n})\n\nexport type SitePublishedWebhookPayload = z.infer<typeof sitePublishedWebhookPayloadSchema>\n\nexport type SitePublishedWebhookPayloadData = z.infer<\n typeof sitePublishedWebhookPayloadSchema\n>['data']\n\nconst webhookPayloadSchema = sitePublishedWebhookPayloadSchema\n\nexport type WebhookPayloadSchema = z.infer<typeof webhookPayloadSchema>\n\ntype WebhookSuccessBody = { success: true }\n\nexport type WebhookResponseBody = WebhookSuccessBody | ErrorResponseBody\n\nexport type WebhookHandlerResult = {\n body: WebhookResponseBody\n status: 200\n}\n\nexport type OnPublish = (payload: SitePublishedWebhookPayloadData) => void | Promise<void>\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAAkB;AAGlB,6BAAqC;AAE9B,MAAM,mBAAmB;AAAA,EAC9B,gBAAgB;AAClB;AAEO,MAAM,oCAAoC,aAAE,OAAO;AAAA,EACxD,MAAM,aAAE,QAAQ,iBAAiB,cAAc;AAAA,EAC/C,MAAM,aAAE,OAAO;AAAA,IACb,QAAQ,aAAE,OAAO,EAAE,KAAK;AAAA,IACxB,SAAS,aAAE,OAAO;AAAA,MAChB,MAAM,aAAE,OAAO,EAAE,KAAK,EAAE,SAAS;AAAA,MACjC,IAAI,aAAE,OAAO,EAAE,KAAK;AAAA,IACtB,CAAC;AAAA,IACD,IAAI,aAAE,OAAO;AAAA;AAAA;AAAA;AAAA,IAIb,eAAe,4CAAqB,SAAS,EAAE,SAAS,EAAE,MAAM,MAAS;AAAA,
|
|
1
|
+
{"version":3,"sources":["../../../../../src/api-handler/handlers/webhook/types.ts"],"sourcesContent":["import { z } from 'zod'\n\nimport { type ErrorResponseBody } from '../../request-response'\nimport { diffProjectionSchema } from './diff-projection'\n\nexport const WebhookEventType = {\n SITE_PUBLISHED: 'site.published',\n} as const\n\nexport const sitePublishedWebhookPayloadSchema = z.object({\n type: z.literal(WebhookEventType.SITE_PUBLISHED),\n data: z.object({\n siteId: z.string().uuid(),\n publish: z.object({\n from: z.string().uuid().nullable(),\n to: z.string().uuid(),\n }),\n at: z.number(),\n // catch(undefined) ensures a server-side schema change never breaks the\n // webhook handler — if parsing fails, unstable_diff degrades to undefined\n // and the consumer falls back to full revalidation.\n unstable_diff: diffProjectionSchema.nullable().optional().catch(undefined),\n unstable_defaultLocale: z.string().nullable().optional().catch(undefined),\n }),\n})\n\nexport type SitePublishedWebhookPayload = z.infer<typeof sitePublishedWebhookPayloadSchema>\n\nexport type SitePublishedWebhookPayloadData = z.infer<\n typeof sitePublishedWebhookPayloadSchema\n>['data']\n\nconst webhookPayloadSchema = sitePublishedWebhookPayloadSchema\n\nexport type WebhookPayloadSchema = z.infer<typeof webhookPayloadSchema>\n\ntype WebhookSuccessBody = { success: true }\n\nexport type WebhookResponseBody = WebhookSuccessBody | ErrorResponseBody\n\nexport type WebhookHandlerResult = {\n body: WebhookResponseBody\n status: 200\n}\n\nexport type OnPublish = (payload: SitePublishedWebhookPayloadData) => void | Promise<void>\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAAkB;AAGlB,6BAAqC;AAE9B,MAAM,mBAAmB;AAAA,EAC9B,gBAAgB;AAClB;AAEO,MAAM,oCAAoC,aAAE,OAAO;AAAA,EACxD,MAAM,aAAE,QAAQ,iBAAiB,cAAc;AAAA,EAC/C,MAAM,aAAE,OAAO;AAAA,IACb,QAAQ,aAAE,OAAO,EAAE,KAAK;AAAA,IACxB,SAAS,aAAE,OAAO;AAAA,MAChB,MAAM,aAAE,OAAO,EAAE,KAAK,EAAE,SAAS;AAAA,MACjC,IAAI,aAAE,OAAO,EAAE,KAAK;AAAA,IACtB,CAAC;AAAA,IACD,IAAI,aAAE,OAAO;AAAA;AAAA;AAAA;AAAA,IAIb,eAAe,4CAAqB,SAAS,EAAE,SAAS,EAAE,MAAM,MAAS;AAAA,IACzE,wBAAwB,aAAE,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,MAAS;AAAA,EAC1E,CAAC;AACH,CAAC;AAQD,MAAM,uBAAuB;","names":[]}
|
package/dist/cjs/client/index.js
CHANGED
|
@@ -211,7 +211,7 @@ Received "${apiKey}" instead.`
|
|
|
211
211
|
}
|
|
212
212
|
this.apiKey = apiKey;
|
|
213
213
|
this.graphqlClient = new import_client.GraphQLClient(new URL("graphql", runtime.apiOrigin).href, {
|
|
214
|
-
"makeswift-runtime-version": "0.28.
|
|
214
|
+
"makeswift-runtime-version": "0.28.2-canary.0"
|
|
215
215
|
});
|
|
216
216
|
this.runtime = runtime;
|
|
217
217
|
}
|
|
@@ -223,7 +223,7 @@ Received "${apiKey}" instead.`
|
|
|
223
223
|
const requestHeaders = new Headers({
|
|
224
224
|
"x-api-key": this.apiKey,
|
|
225
225
|
"makeswift-site-api-key": this.apiKey,
|
|
226
|
-
"makeswift-runtime-version": "0.28.
|
|
226
|
+
"makeswift-runtime-version": "0.28.2-canary.0"
|
|
227
227
|
});
|
|
228
228
|
if (siteVersion?.token) {
|
|
229
229
|
requestUrl.searchParams.set("version", siteVersion.version);
|
|
@@ -681,7 +681,7 @@ Received "${apiKey}" instead.`
|
|
|
681
681
|
headers: {
|
|
682
682
|
"x-api-key": this.apiKey,
|
|
683
683
|
"makeswift-site-api-key": this.apiKey,
|
|
684
|
-
"makeswift-runtime-version": "0.28.
|
|
684
|
+
"makeswift-runtime-version": "0.28.2-canary.0",
|
|
685
685
|
"content-type": "application/json"
|
|
686
686
|
},
|
|
687
687
|
body: JSON.stringify({ token }),
|
|
@@ -8,7 +8,7 @@ async function manifestHandler(req, { apiKey, manifest }) {
|
|
|
8
8
|
return ApiResponse.json({ message: "Unauthorized" }, { status: 401 });
|
|
9
9
|
}
|
|
10
10
|
return ApiResponse.json({
|
|
11
|
-
version: "0.28.
|
|
11
|
+
version: "0.28.2-canary.0",
|
|
12
12
|
interactionMode: true,
|
|
13
13
|
clientSideNavigation: false,
|
|
14
14
|
elementFromPoint: false,
|
|
@@ -15,7 +15,8 @@ const sitePublishedWebhookPayloadSchema = z.object({
|
|
|
15
15
|
// catch(undefined) ensures a server-side schema change never breaks the
|
|
16
16
|
// webhook handler — if parsing fails, unstable_diff degrades to undefined
|
|
17
17
|
// and the consumer falls back to full revalidation.
|
|
18
|
-
unstable_diff: diffProjectionSchema.nullable().optional().catch(void 0)
|
|
18
|
+
unstable_diff: diffProjectionSchema.nullable().optional().catch(void 0),
|
|
19
|
+
unstable_defaultLocale: z.string().nullable().optional().catch(void 0)
|
|
19
20
|
})
|
|
20
21
|
});
|
|
21
22
|
const webhookPayloadSchema = sitePublishedWebhookPayloadSchema;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../src/api-handler/handlers/webhook/types.ts"],"sourcesContent":["import { z } from 'zod'\n\nimport { type ErrorResponseBody } from '../../request-response'\nimport { diffProjectionSchema } from './diff-projection'\n\nexport const WebhookEventType = {\n SITE_PUBLISHED: 'site.published',\n} as const\n\nexport const sitePublishedWebhookPayloadSchema = z.object({\n type: z.literal(WebhookEventType.SITE_PUBLISHED),\n data: z.object({\n siteId: z.string().uuid(),\n publish: z.object({\n from: z.string().uuid().nullable(),\n to: z.string().uuid(),\n }),\n at: z.number(),\n // catch(undefined) ensures a server-side schema change never breaks the\n // webhook handler — if parsing fails, unstable_diff degrades to undefined\n // and the consumer falls back to full revalidation.\n unstable_diff: diffProjectionSchema.nullable().optional().catch(undefined),\n }),\n})\n\nexport type SitePublishedWebhookPayload = z.infer<typeof sitePublishedWebhookPayloadSchema>\n\nexport type SitePublishedWebhookPayloadData = z.infer<\n typeof sitePublishedWebhookPayloadSchema\n>['data']\n\nconst webhookPayloadSchema = sitePublishedWebhookPayloadSchema\n\nexport type WebhookPayloadSchema = z.infer<typeof webhookPayloadSchema>\n\ntype WebhookSuccessBody = { success: true }\n\nexport type WebhookResponseBody = WebhookSuccessBody | ErrorResponseBody\n\nexport type WebhookHandlerResult = {\n body: WebhookResponseBody\n status: 200\n}\n\nexport type OnPublish = (payload: SitePublishedWebhookPayloadData) => void | Promise<void>\n"],"mappings":"AAAA,SAAS,SAAS;AAGlB,SAAS,4BAA4B;AAE9B,MAAM,mBAAmB;AAAA,EAC9B,gBAAgB;AAClB;AAEO,MAAM,oCAAoC,EAAE,OAAO;AAAA,EACxD,MAAM,EAAE,QAAQ,iBAAiB,cAAc;AAAA,EAC/C,MAAM,EAAE,OAAO;AAAA,IACb,QAAQ,EAAE,OAAO,EAAE,KAAK;AAAA,IACxB,SAAS,EAAE,OAAO;AAAA,MAChB,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,SAAS;AAAA,MACjC,IAAI,EAAE,OAAO,EAAE,KAAK;AAAA,IACtB,CAAC;AAAA,IACD,IAAI,EAAE,OAAO;AAAA;AAAA;AAAA;AAAA,IAIb,eAAe,qBAAqB,SAAS,EAAE,SAAS,EAAE,MAAM,MAAS;AAAA,
|
|
1
|
+
{"version":3,"sources":["../../../../../src/api-handler/handlers/webhook/types.ts"],"sourcesContent":["import { z } from 'zod'\n\nimport { type ErrorResponseBody } from '../../request-response'\nimport { diffProjectionSchema } from './diff-projection'\n\nexport const WebhookEventType = {\n SITE_PUBLISHED: 'site.published',\n} as const\n\nexport const sitePublishedWebhookPayloadSchema = z.object({\n type: z.literal(WebhookEventType.SITE_PUBLISHED),\n data: z.object({\n siteId: z.string().uuid(),\n publish: z.object({\n from: z.string().uuid().nullable(),\n to: z.string().uuid(),\n }),\n at: z.number(),\n // catch(undefined) ensures a server-side schema change never breaks the\n // webhook handler — if parsing fails, unstable_diff degrades to undefined\n // and the consumer falls back to full revalidation.\n unstable_diff: diffProjectionSchema.nullable().optional().catch(undefined),\n unstable_defaultLocale: z.string().nullable().optional().catch(undefined),\n }),\n})\n\nexport type SitePublishedWebhookPayload = z.infer<typeof sitePublishedWebhookPayloadSchema>\n\nexport type SitePublishedWebhookPayloadData = z.infer<\n typeof sitePublishedWebhookPayloadSchema\n>['data']\n\nconst webhookPayloadSchema = sitePublishedWebhookPayloadSchema\n\nexport type WebhookPayloadSchema = z.infer<typeof webhookPayloadSchema>\n\ntype WebhookSuccessBody = { success: true }\n\nexport type WebhookResponseBody = WebhookSuccessBody | ErrorResponseBody\n\nexport type WebhookHandlerResult = {\n body: WebhookResponseBody\n status: 200\n}\n\nexport type OnPublish = (payload: SitePublishedWebhookPayloadData) => void | Promise<void>\n"],"mappings":"AAAA,SAAS,SAAS;AAGlB,SAAS,4BAA4B;AAE9B,MAAM,mBAAmB;AAAA,EAC9B,gBAAgB;AAClB;AAEO,MAAM,oCAAoC,EAAE,OAAO;AAAA,EACxD,MAAM,EAAE,QAAQ,iBAAiB,cAAc;AAAA,EAC/C,MAAM,EAAE,OAAO;AAAA,IACb,QAAQ,EAAE,OAAO,EAAE,KAAK;AAAA,IACxB,SAAS,EAAE,OAAO;AAAA,MAChB,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,SAAS;AAAA,MACjC,IAAI,EAAE,OAAO,EAAE,KAAK;AAAA,IACtB,CAAC;AAAA,IACD,IAAI,EAAE,OAAO;AAAA;AAAA;AAAA;AAAA,IAIb,eAAe,qBAAqB,SAAS,EAAE,SAAS,EAAE,MAAM,MAAS;AAAA,IACzE,wBAAwB,EAAE,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,MAAS;AAAA,EAC1E,CAAC;AACH,CAAC;AAQD,MAAM,uBAAuB;","names":[]}
|
package/dist/esm/client/index.js
CHANGED
|
@@ -195,7 +195,7 @@ Received "${apiKey}" instead.`
|
|
|
195
195
|
}
|
|
196
196
|
this.apiKey = apiKey;
|
|
197
197
|
this.graphqlClient = new GraphQLClient(new URL("graphql", runtime.apiOrigin).href, {
|
|
198
|
-
"makeswift-runtime-version": "0.28.
|
|
198
|
+
"makeswift-runtime-version": "0.28.2-canary.0"
|
|
199
199
|
});
|
|
200
200
|
this.runtime = runtime;
|
|
201
201
|
}
|
|
@@ -207,7 +207,7 @@ Received "${apiKey}" instead.`
|
|
|
207
207
|
const requestHeaders = new Headers({
|
|
208
208
|
"x-api-key": this.apiKey,
|
|
209
209
|
"makeswift-site-api-key": this.apiKey,
|
|
210
|
-
"makeswift-runtime-version": "0.28.
|
|
210
|
+
"makeswift-runtime-version": "0.28.2-canary.0"
|
|
211
211
|
});
|
|
212
212
|
if (siteVersion?.token) {
|
|
213
213
|
requestUrl.searchParams.set("version", siteVersion.version);
|
|
@@ -665,7 +665,7 @@ Received "${apiKey}" instead.`
|
|
|
665
665
|
headers: {
|
|
666
666
|
"x-api-key": this.apiKey,
|
|
667
667
|
"makeswift-site-api-key": this.apiKey,
|
|
668
|
-
"makeswift-runtime-version": "0.28.
|
|
668
|
+
"makeswift-runtime-version": "0.28.2-canary.0",
|
|
669
669
|
"content-type": "application/json"
|
|
670
670
|
},
|
|
671
671
|
body: JSON.stringify({ token }),
|
|
@@ -217,6 +217,7 @@ export declare const sitePublishedWebhookPayloadSchema: z.ZodObject<{
|
|
|
217
217
|
changeType: "deleted" | "created" | "updated";
|
|
218
218
|
}>, "many">;
|
|
219
219
|
}, z.ZodTypeAny, "passthrough">>>>>;
|
|
220
|
+
unstable_defaultLocale: z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
220
221
|
}, "strip", z.ZodTypeAny, {
|
|
221
222
|
at: number;
|
|
222
223
|
siteId: string;
|
|
@@ -291,6 +292,7 @@ export declare const sitePublishedWebhookPayloadSchema: z.ZodObject<{
|
|
|
291
292
|
changeType: "deleted" | "created" | "updated";
|
|
292
293
|
}>, "many">;
|
|
293
294
|
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
295
|
+
unstable_defaultLocale?: string | null | undefined;
|
|
294
296
|
}, {
|
|
295
297
|
at: number;
|
|
296
298
|
siteId: string;
|
|
@@ -299,6 +301,7 @@ export declare const sitePublishedWebhookPayloadSchema: z.ZodObject<{
|
|
|
299
301
|
from: string | null;
|
|
300
302
|
};
|
|
301
303
|
unstable_diff?: unknown;
|
|
304
|
+
unstable_defaultLocale?: unknown;
|
|
302
305
|
}>;
|
|
303
306
|
}, "strip", z.ZodTypeAny, {
|
|
304
307
|
type: "site.published";
|
|
@@ -376,6 +379,7 @@ export declare const sitePublishedWebhookPayloadSchema: z.ZodObject<{
|
|
|
376
379
|
changeType: "deleted" | "created" | "updated";
|
|
377
380
|
}>, "many">;
|
|
378
381
|
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
382
|
+
unstable_defaultLocale?: string | null | undefined;
|
|
379
383
|
};
|
|
380
384
|
}, {
|
|
381
385
|
type: "site.published";
|
|
@@ -387,6 +391,7 @@ export declare const sitePublishedWebhookPayloadSchema: z.ZodObject<{
|
|
|
387
391
|
from: string | null;
|
|
388
392
|
};
|
|
389
393
|
unstable_diff?: unknown;
|
|
394
|
+
unstable_defaultLocale?: unknown;
|
|
390
395
|
};
|
|
391
396
|
}>;
|
|
392
397
|
export type SitePublishedWebhookPayload = z.infer<typeof sitePublishedWebhookPayloadSchema>;
|
|
@@ -605,6 +610,7 @@ declare const webhookPayloadSchema: z.ZodObject<{
|
|
|
605
610
|
changeType: "deleted" | "created" | "updated";
|
|
606
611
|
}>, "many">;
|
|
607
612
|
}, z.ZodTypeAny, "passthrough">>>>>;
|
|
613
|
+
unstable_defaultLocale: z.ZodCatch<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
608
614
|
}, "strip", z.ZodTypeAny, {
|
|
609
615
|
at: number;
|
|
610
616
|
siteId: string;
|
|
@@ -679,6 +685,7 @@ declare const webhookPayloadSchema: z.ZodObject<{
|
|
|
679
685
|
changeType: "deleted" | "created" | "updated";
|
|
680
686
|
}>, "many">;
|
|
681
687
|
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
688
|
+
unstable_defaultLocale?: string | null | undefined;
|
|
682
689
|
}, {
|
|
683
690
|
at: number;
|
|
684
691
|
siteId: string;
|
|
@@ -687,6 +694,7 @@ declare const webhookPayloadSchema: z.ZodObject<{
|
|
|
687
694
|
from: string | null;
|
|
688
695
|
};
|
|
689
696
|
unstable_diff?: unknown;
|
|
697
|
+
unstable_defaultLocale?: unknown;
|
|
690
698
|
}>;
|
|
691
699
|
}, "strip", z.ZodTypeAny, {
|
|
692
700
|
type: "site.published";
|
|
@@ -764,6 +772,7 @@ declare const webhookPayloadSchema: z.ZodObject<{
|
|
|
764
772
|
changeType: "deleted" | "created" | "updated";
|
|
765
773
|
}>, "many">;
|
|
766
774
|
}, z.ZodTypeAny, "passthrough"> | null | undefined;
|
|
775
|
+
unstable_defaultLocale?: string | null | undefined;
|
|
767
776
|
};
|
|
768
777
|
}, {
|
|
769
778
|
type: "site.published";
|
|
@@ -775,6 +784,7 @@ declare const webhookPayloadSchema: z.ZodObject<{
|
|
|
775
784
|
from: string | null;
|
|
776
785
|
};
|
|
777
786
|
unstable_diff?: unknown;
|
|
787
|
+
unstable_defaultLocale?: unknown;
|
|
778
788
|
};
|
|
779
789
|
}>;
|
|
780
790
|
export type WebhookPayloadSchema = z.infer<typeof webhookPayloadSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/api-handler/handlers/webhook/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAG/D,eAAO,MAAM,gBAAgB;;CAEnB,CAAA;AAEV,eAAO,MAAM,iCAAiC
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/api-handler/handlers/webhook/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAG/D,eAAO,MAAM,gBAAgB;;CAEnB,CAAA;AAEV,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAe5C,CAAA;AAEF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAA;AAE3F,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CACnD,OAAO,iCAAiC,CACzC,CAAC,MAAM,CAAC,CAAA;AAET,QAAA,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAoC,CAAA;AAE9D,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA;AAEvE,KAAK,kBAAkB,GAAG;IAAE,OAAO,EAAE,IAAI,CAAA;CAAE,CAAA;AAE3C,MAAM,MAAM,mBAAmB,GAAG,kBAAkB,GAAG,iBAAiB,CAAA;AAExE,MAAM,MAAM,oBAAoB,GAAG;IACjC,IAAI,EAAE,mBAAmB,CAAA;IACzB,MAAM,EAAE,GAAG,CAAA;CACZ,CAAA;AAED,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,EAAE,+BAA+B,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA"}
|