We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 319e2b5 commit b1b6f3cCopy full SHA for b1b6f3c
2 files changed
packages/sdk/src/checkout/webhooks/outbound.ts
@@ -1,4 +1,4 @@
1
-import { hmacSign } from "../crypto.ts";
+import { hmacSign } from "../lib/crypto.ts";
2
import type { OrderEventData, WebhookEvent } from "../types.ts";
3
4
export type OutboundConfig = {
packages/sdk/test/signature.test.ts
@@ -1,5 +1,8 @@
import { describe, expect, it } from "vitest";
-import { computeSignature, verifySignature } from "../src/checkout/signature";
+import {
+ computeSignature,
+ verifySignature,
5
+} from "../src/checkout/lib/signature";
6
7
describe("Signature Verification", () => {
8
const secret = "test_secret_key_12345";
0 commit comments