@edge-markets/connect-node 1.7.0 → 1.8.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/index.js CHANGED
@@ -30,40 +30,187 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
30
30
  // src/index.ts
31
31
  var index_exports = {};
32
32
  __export(index_exports, {
33
- EDGE_WEBHOOK_EVENT_TYPES: () => import_connect4.EDGE_WEBHOOK_EVENT_TYPES,
34
- EdgeApiError: () => import_connect3.EdgeApiError,
35
- EdgeAuthenticationError: () => import_connect3.EdgeAuthenticationError,
33
+ EDGE_WEBHOOK_EVENT_TYPES: () => import_connect12.EDGE_WEBHOOK_EVENT_TYPES,
34
+ EdgeApiError: () => import_connect11.EdgeApiError,
35
+ EdgeAuthenticationError: () => import_connect11.EdgeAuthenticationError,
36
36
  EdgeConnectServer: () => EdgeConnectServer,
37
- EdgeConsentRequiredError: () => import_connect3.EdgeConsentRequiredError,
38
- EdgeError: () => import_connect3.EdgeError,
39
- EdgeIdentityVerificationError: () => import_connect3.EdgeIdentityVerificationError,
40
- EdgeInsufficientScopeError: () => import_connect3.EdgeInsufficientScopeError,
41
- EdgeNetworkError: () => import_connect3.EdgeNetworkError,
42
- EdgeNotFoundError: () => import_connect3.EdgeNotFoundError,
43
- EdgeTokenExchangeError: () => import_connect3.EdgeTokenExchangeError,
37
+ EdgeConsentRequiredError: () => import_connect11.EdgeConsentRequiredError,
38
+ EdgeError: () => import_connect11.EdgeError,
39
+ EdgeIdentityVerificationError: () => import_connect11.EdgeIdentityVerificationError,
40
+ EdgeInsufficientScopeError: () => import_connect11.EdgeInsufficientScopeError,
41
+ EdgeNetworkError: () => import_connect11.EdgeNetworkError,
42
+ EdgeNotFoundError: () => import_connect11.EdgeNotFoundError,
43
+ EdgeTokenExchangeError: () => import_connect11.EdgeTokenExchangeError,
44
+ EdgeTokenVault: () => EdgeTokenVault,
44
45
  EdgeUserClient: () => EdgeUserClient,
45
- TRANSFER_CATEGORIES: () => import_connect4.TRANSFER_CATEGORIES,
46
- getEnvironmentConfig: () => import_connect4.getEnvironmentConfig,
47
- isApiError: () => import_connect3.isApiError,
48
- isAuthenticationError: () => import_connect3.isAuthenticationError,
49
- isConsentRequiredError: () => import_connect3.isConsentRequiredError,
50
- isEdgeError: () => import_connect3.isEdgeError,
51
- isIdentityVerificationError: () => import_connect3.isIdentityVerificationError,
52
- isNetworkError: () => import_connect3.isNetworkError,
53
- isProductionEnvironment: () => import_connect4.isProductionEnvironment,
46
+ EdgeUserSession: () => EdgeUserSession,
47
+ EdgeValidationError: () => import_connect11.EdgeValidationError,
48
+ EdgeWebhookReconciler: () => EdgeWebhookReconciler,
49
+ TRANSFER_CATEGORIES: () => import_connect12.TRANSFER_CATEGORIES,
50
+ assertSameTransferIntent: () => assertSameTransferIntent,
51
+ assertTransferEventMatchesIntent: () => assertTransferEventMatchesIntent,
52
+ buildVerifyIdentityPayload: () => buildVerifyIdentityPayload,
53
+ createEdgeConnectServerFromEnv: () => createEdgeConnectServerFromEnv,
54
+ createEdgeTokenVault: () => createEdgeTokenVault,
55
+ createEdgeUserSession: () => createEdgeUserSession,
56
+ createTransferIdempotencyKey: () => createTransferIdempotencyKey,
57
+ createWebhookReconciler: () => createWebhookReconciler,
58
+ evaluateIdentityResult: () => evaluateIdentityResult,
59
+ extractWebhookSignatureTimestamp: () => extractWebhookSignatureTimestamp,
60
+ getEnvironmentConfig: () => import_connect12.getEnvironmentConfig,
61
+ isApiError: () => import_connect11.isApiError,
62
+ isAuthenticationError: () => import_connect11.isAuthenticationError,
63
+ isConsentRequiredError: () => import_connect11.isConsentRequiredError,
64
+ isEdgeError: () => import_connect11.isEdgeError,
65
+ isEdgeTokenVaultEnvelope: () => isEdgeTokenVaultEnvelope,
66
+ isEdgeWebhookEvent: () => isEdgeWebhookEvent,
67
+ isIdentityVerificationError: () => import_connect11.isIdentityVerificationError,
68
+ isNetworkError: () => import_connect11.isNetworkError,
69
+ isProductionEnvironment: () => import_connect12.isProductionEnvironment,
70
+ isTransferWebhookEvent: () => isTransferWebhookEvent,
71
+ normalizeMoneyAmount: () => normalizeMoneyAmount,
72
+ parseAndVerifyWebhook: () => parseAndVerifyWebhook,
73
+ startTransferVerification: () => startTransferVerification,
74
+ toEdgeHttpError: () => toEdgeHttpError,
75
+ toEdgeProblemJson: () => toEdgeProblemJson,
76
+ validateEdgeWebhookEvent: () => validateEdgeWebhookEvent,
77
+ validateTransferAmount: () => validateTransferAmount,
54
78
  verifyWebhookSignature: () => verifyWebhookSignature
55
79
  });
56
80
  module.exports = __toCommonJS(index_exports);
57
81
 
58
82
  // src/edge-connect-server.ts
59
- var import_connect2 = require("@edge-markets/connect");
83
+ var import_connect4 = require("@edge-markets/connect");
60
84
 
61
- // src/validators.ts
85
+ // src/transfer-helpers.ts
62
86
  var import_connect = require("@edge-markets/connect");
87
+ var import_node_crypto = __toESM(require("crypto"));
88
+ var DEFAULT_MIN_AMOUNT = "1.00";
89
+ var DEFAULT_MAX_AMOUNT = "10000.00";
90
+ function normalizeMoneyAmount(value) {
91
+ const cents = parseMoneyToCents(value, "amount");
92
+ const dollars = cents / 100n;
93
+ const remainder = cents % 100n;
94
+ return `${dollars.toString()}.${remainder.toString().padStart(2, "0")}`;
95
+ }
96
+ function validateTransferAmount(value, limits = {}) {
97
+ const amount = parseMoneyToCents(value, "amount");
98
+ const min = parseMoneyToCents(limits.min ?? DEFAULT_MIN_AMOUNT, "min");
99
+ const max = parseMoneyToCents(limits.max ?? DEFAULT_MAX_AMOUNT, "max");
100
+ const errors = {};
101
+ if (min <= 0n) errors.min = ["Minimum amount must be greater than 0"];
102
+ if (max < min) errors.max = ["Maximum amount must be greater than or equal to minimum amount"];
103
+ if (amount < min) errors.amount = [`Must be at least ${formatCents(min)}`];
104
+ if (amount > max) errors.amount = [`Must be at most ${formatCents(max)}`];
105
+ if (Object.keys(errors).length > 0) {
106
+ throw new import_connect.EdgeValidationError("Invalid transfer amount", errors);
107
+ }
108
+ return formatCents(amount);
109
+ }
110
+ function createTransferIdempotencyKey(options) {
111
+ const namespace = sanitizeKeyPart(options.namespace || "edge");
112
+ const partnerUserId = requireKeyPart(options.partnerUserId, "partnerUserId");
113
+ const externalId = options.externalId ? sanitizeKeyPart(options.externalId) : void 0;
114
+ const nonce = options.nonce ? sanitizeKeyPart(options.nonce) : void 0;
115
+ const amount = normalizeMoneyAmount(options.amount);
116
+ const digest = import_node_crypto.default.createHash("sha256").update(
117
+ JSON.stringify({
118
+ partnerUserId,
119
+ type: options.type,
120
+ amount,
121
+ category: options.category ?? null,
122
+ externalId: externalId ?? null,
123
+ nonce: nonce ?? null
124
+ })
125
+ ).digest("hex").slice(0, 32);
126
+ return [namespace, options.type, digest].join("_");
127
+ }
128
+ function assertSameTransferIntent(existing, requested) {
129
+ const errors = {};
130
+ if (existing.type !== requested.type) {
131
+ errors.type = [`Expected ${existing.type}, received ${requested.type}`];
132
+ }
133
+ const existingAmount = normalizeMoneyAmount(existing.amount);
134
+ const requestedAmount = normalizeMoneyAmount(requested.amount);
135
+ if (existingAmount !== requestedAmount) {
136
+ errors.amount = [`Expected ${existingAmount}, received ${requestedAmount}`];
137
+ }
138
+ const existingCategory = existing.category ?? void 0;
139
+ const requestedCategory = requested.category ?? void 0;
140
+ if (existingCategory !== requestedCategory) {
141
+ errors.category = [`Expected ${existingCategory || "unset"}, received ${requestedCategory || "unset"}`];
142
+ }
143
+ if (Object.keys(errors).length > 0) {
144
+ throw new import_connect.EdgeValidationError("Transfer intent does not match existing idempotent transfer", errors);
145
+ }
146
+ }
147
+ async function startTransferVerification(client, options) {
148
+ const origin = typeof options.origin === "string" ? options.origin.trim() : "";
149
+ if (!origin) {
150
+ throw new import_connect.EdgeValidationError("Verification origin is required", {
151
+ origin: ["Required"]
152
+ });
153
+ }
154
+ const transfer = await client.initiateTransfer({
155
+ ...options.transfer,
156
+ amount: normalizeMoneyAmount(options.transfer.amount)
157
+ });
158
+ const transferId = transfer.transferId;
159
+ if (!transferId) {
160
+ throw new import_connect.EdgeValidationError("Transfer response missing transferId", {
161
+ transferId: ["Required to create a verification session"]
162
+ });
163
+ }
164
+ const verificationSession = await client.createVerificationSession(transferId, { origin });
165
+ return { transfer, verificationSession };
166
+ }
167
+ function parseMoneyToCents(value, field) {
168
+ let input;
169
+ if (typeof value === "number") {
170
+ if (!Number.isFinite(value)) {
171
+ throw new import_connect.EdgeValidationError("Money amount must be finite", { [field]: ["Must be a finite number"] });
172
+ }
173
+ input = value.toFixed(2);
174
+ } else if (typeof value === "string") {
175
+ input = value.trim();
176
+ } else {
177
+ throw new import_connect.EdgeValidationError("Money amount must be a string or number", { [field]: ["Invalid type"] });
178
+ }
179
+ if (!/^\d+(\.\d{0,2})?$/.test(input)) {
180
+ throw new import_connect.EdgeValidationError("Money amount must be a positive decimal with at most 2 places", {
181
+ [field]: ['Use a decimal string like "25.00"']
182
+ });
183
+ }
184
+ const [dollars, cents = ""] = input.split(".");
185
+ const normalizedDollars = dollars.replace(/^0+(?=\d)/, "") || "0";
186
+ const amount = BigInt(normalizedDollars) * 100n + BigInt(cents.padEnd(2, "0"));
187
+ if (amount <= 0n) {
188
+ throw new import_connect.EdgeValidationError("Money amount must be greater than 0", { [field]: ["Must be greater than 0"] });
189
+ }
190
+ return amount;
191
+ }
192
+ function formatCents(cents) {
193
+ return `${(cents / 100n).toString()}.${(cents % 100n).toString().padStart(2, "0")}`;
194
+ }
195
+ function requireKeyPart(value, field) {
196
+ const sanitized = sanitizeKeyPart(value);
197
+ if (!sanitized) {
198
+ throw new import_connect.EdgeValidationError("Idempotency key input is incomplete", {
199
+ [field]: ["Required"]
200
+ });
201
+ }
202
+ return sanitized;
203
+ }
204
+ function sanitizeKeyPart(value) {
205
+ return value.trim().replace(/[^a-zA-Z0-9_.:-]/g, "_").slice(0, 64);
206
+ }
207
+
208
+ // src/validators.ts
209
+ var import_connect2 = require("@edge-markets/connect");
63
210
  var UUID_V4_REGEX = /^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
64
211
  function validateTransferId(transferId) {
65
212
  if (typeof transferId !== "string" || !UUID_V4_REGEX.test(transferId)) {
66
- throw new import_connect.EdgeValidationError("transferId must be a UUID v4", {
213
+ throw new import_connect2.EdgeValidationError("transferId must be a UUID v4", {
67
214
  transferId: ["Must be a valid UUID v4"]
68
215
  });
69
216
  }
@@ -83,7 +230,7 @@ function validateVerifyIdentityOptions(options) {
83
230
  }
84
231
  if (Object.keys(errors).length > 0) {
85
232
  const firstMessage = Object.values(errors)[0][0];
86
- throw new import_connect.EdgeValidationError(firstMessage, errors);
233
+ throw new import_connect2.EdgeValidationError(firstMessage, errors);
87
234
  }
88
235
  }
89
236
  function validateTransferOptions(options) {
@@ -112,7 +259,7 @@ function validateTransferOptions(options) {
112
259
  errors.category = ["Must be one of: sportsbook, casino, dfs, sweepstakes"];
113
260
  }
114
261
  if (Object.keys(errors).length > 0) {
115
- throw new import_connect.EdgeValidationError("Invalid transfer options", errors);
262
+ throw new import_connect2.EdgeValidationError("Invalid transfer options", errors);
116
263
  }
117
264
  }
118
265
 
@@ -144,6 +291,9 @@ var EdgeUserClient = class {
144
291
  }
145
292
  return this.server._apiRequest("POST", "/transfer", this.accessToken, body);
146
293
  }
294
+ async startTransferVerification(options) {
295
+ return startTransferVerification(this, options);
296
+ }
147
297
  async getTransfer(transferId) {
148
298
  validateTransferId(transferId);
149
299
  return this.server._apiRequest("GET", `/transfer/${encodeURIComponent(transferId)}`, this.accessToken);
@@ -264,16 +414,46 @@ function fromBase64Url(value) {
264
414
  }
265
415
 
266
416
  // src/mtls.ts
417
+ var import_node_fs = __toESM(require("fs"));
267
418
  var import_node_https = __toESM(require("https"));
419
+ var import_node_tls = __toESM(require("tls"));
420
+ var CERT_PATTERN = /-----BEGIN CERTIFICATE-----[\s\S]*?-----END CERTIFICATE-----/g;
421
+ function normalizeCaBundle(ca) {
422
+ if (!ca) return [];
423
+ const values = Array.isArray(ca) ? ca : [ca];
424
+ return values.flatMap((value) => {
425
+ const normalized = value.replace(/\\n/g, "\n").trim();
426
+ if (!normalized) return [];
427
+ const certificates = normalized.match(CERT_PATTERN);
428
+ return certificates ? certificates.map((certificate) => certificate.trim()) : [normalized];
429
+ });
430
+ }
431
+ function getNodeExtraCaCerts() {
432
+ const extraCaPath = process.env.NODE_EXTRA_CA_CERTS?.trim();
433
+ if (!extraCaPath) return [];
434
+ try {
435
+ return normalizeCaBundle(import_node_fs.default.readFileSync(extraCaPath, "utf8"));
436
+ } catch (error) {
437
+ const message = error instanceof Error ? error.message : String(error);
438
+ throw new Error(`EdgeConnectServer: failed to read NODE_EXTRA_CA_CERTS from "${extraCaPath}": ${message}`);
439
+ }
440
+ }
441
+ function buildServerCaBundle(ca) {
442
+ const customCa = normalizeCaBundle(ca);
443
+ if (customCa.length === 0) return void 0;
444
+ return Array.from(/* @__PURE__ */ new Set([...import_node_tls.default.rootCertificates, ...getNodeExtraCaCerts(), ...customCa]));
445
+ }
268
446
  function createHttpsAgent(config) {
447
+ const ca = buildServerCaBundle(config.ca);
269
448
  return new import_node_https.default.Agent({
270
449
  cert: config.cert,
271
450
  key: config.key,
272
451
  rejectUnauthorized: true,
273
- ...config.ca ? { ca: config.ca } : {}
452
+ ...ca ? { ca } : {}
274
453
  });
275
454
  }
276
455
  function createUndiciDispatcher(config) {
456
+ const ca = buildServerCaBundle(config.ca);
277
457
  const moduleName = "undici";
278
458
  const { Agent } = require(moduleName);
279
459
  return new Agent({
@@ -281,7 +461,7 @@ function createUndiciDispatcher(config) {
281
461
  cert: config.cert,
282
462
  key: config.key,
283
463
  rejectUnauthorized: true,
284
- ...config.ca ? { ca: config.ca } : {}
464
+ ...ca ? { ca } : {}
285
465
  }
286
466
  });
287
467
  }
@@ -294,6 +474,112 @@ function validateMtlsConfig(config) {
294
474
  }
295
475
  }
296
476
 
477
+ // src/session.ts
478
+ var import_connect3 = require("@edge-markets/connect");
479
+ var EdgeUserSession = class {
480
+ constructor(options) {
481
+ if (!options.edge?.forUser || !options.edge?.refreshTokens) {
482
+ throw new import_connect3.EdgeValidationError("EdgeUserSession requires an EdgeConnectServer instance", {
483
+ edge: ["Provide edge.forUser and edge.refreshTokens"]
484
+ });
485
+ }
486
+ const subjectId = typeof options.subjectId === "string" ? options.subjectId.trim() : "";
487
+ if (!subjectId) {
488
+ throw new import_connect3.EdgeValidationError("EdgeUserSession subjectId is required", {
489
+ subjectId: ["Required"]
490
+ });
491
+ }
492
+ if (!options.tokenStore?.load || !options.tokenStore?.save) {
493
+ throw new import_connect3.EdgeValidationError("EdgeUserSession tokenStore is required", {
494
+ tokenStore: ["Provide load(subjectId) and save(subjectId, value, context)"]
495
+ });
496
+ }
497
+ if (options.refreshSkewMs !== void 0 && (!Number.isFinite(options.refreshSkewMs) || options.refreshSkewMs < 0)) {
498
+ throw new import_connect3.EdgeValidationError("refreshSkewMs must be a non-negative number", {
499
+ refreshSkewMs: ["Must be greater than or equal to 0"]
500
+ });
501
+ }
502
+ this.edge = options.edge;
503
+ this.subjectId = subjectId;
504
+ this.tokenStore = options.tokenStore;
505
+ this.tokenVault = options.tokenVault;
506
+ this.refreshSkewMs = options.refreshSkewMs ?? 6e4;
507
+ this.now = options.now ?? Date.now;
508
+ this.onRefresh = options.onRefresh;
509
+ }
510
+ async getValidTokens(options = {}) {
511
+ const tokens = await this.loadTokens();
512
+ if (!options.forceRefresh && tokens.expiresAt > this.now() + this.refreshSkewMs) {
513
+ return tokens;
514
+ }
515
+ const refreshed = await this.edge.refreshTokens(tokens.refreshToken);
516
+ await this.saveTokens(refreshed, true);
517
+ await this.onRefresh?.(refreshed);
518
+ return refreshed;
519
+ }
520
+ async getClient(options = {}) {
521
+ const tokens = await this.getValidTokens(options);
522
+ return this.edge.forUser(tokens.accessToken);
523
+ }
524
+ async withClient(callback) {
525
+ const tokens = await this.getValidTokens();
526
+ return callback(this.edge.forUser(tokens.accessToken), tokens);
527
+ }
528
+ async saveTokens(tokens, refreshed = false) {
529
+ validateTokens(tokens);
530
+ const value = this.tokenVault ? this.tokenVault.encryptTokens(tokens) : tokens;
531
+ await this.tokenStore.save(this.subjectId, value, { tokens, refreshed });
532
+ }
533
+ async loadTokens() {
534
+ const value = await this.tokenStore.load(this.subjectId);
535
+ if (!value) {
536
+ throw new import_connect3.EdgeAuthenticationError("No EDGE tokens are stored for this subject", {
537
+ subjectId: this.subjectId
538
+ });
539
+ }
540
+ if (typeof value === "string") {
541
+ if (!this.tokenVault) {
542
+ throw new import_connect3.EdgeAuthenticationError("Encrypted EDGE token envelope loaded but no tokenVault was configured", {
543
+ subjectId: this.subjectId
544
+ });
545
+ }
546
+ const tokens = this.tokenVault.decryptTokens(value);
547
+ validateTokens(tokens);
548
+ return tokens;
549
+ }
550
+ validateTokens(value);
551
+ return value;
552
+ }
553
+ };
554
+ function createEdgeUserSession(options) {
555
+ return new EdgeUserSession(options);
556
+ }
557
+ function validateTokens(tokens) {
558
+ const errors = {};
559
+ if (!tokens || typeof tokens !== "object") {
560
+ errors.tokens = ["Expected token object"];
561
+ } else {
562
+ if (typeof tokens.accessToken !== "string" || !tokens.accessToken.trim()) {
563
+ errors.accessToken = ["Required"];
564
+ }
565
+ if (typeof tokens.refreshToken !== "string" || !tokens.refreshToken.trim()) {
566
+ errors.refreshToken = ["Required"];
567
+ }
568
+ if (typeof tokens.expiresAt !== "number" || !Number.isFinite(tokens.expiresAt) || tokens.expiresAt <= 0) {
569
+ errors.expiresAt = ["Must be a positive Unix timestamp in milliseconds"];
570
+ }
571
+ if (typeof tokens.expiresIn !== "number" || !Number.isFinite(tokens.expiresIn) || tokens.expiresIn <= 0) {
572
+ errors.expiresIn = ["Must be a positive number"];
573
+ }
574
+ if (typeof tokens.scope !== "string") {
575
+ errors.scope = ["Required"];
576
+ }
577
+ }
578
+ if (Object.keys(errors).length > 0) {
579
+ throw new import_connect3.EdgeValidationError("Invalid EDGE token payload", errors);
580
+ }
581
+ }
582
+
297
583
  // src/types.ts
298
584
  var DEFAULT_TIMEOUT = 3e4;
299
585
  var USER_AGENT = "@edge-markets/connect-node/1.0.0";
@@ -304,12 +590,113 @@ var DEFAULT_RETRY_CONFIG = {
304
590
  baseDelayMs: 1e3
305
591
  };
306
592
 
593
+ // src/webhook-reconciler.ts
594
+ var DEFAULT_MAX_PAGES = 10;
595
+ var EdgeWebhookReconciler = class {
596
+ constructor(options) {
597
+ this.running = false;
598
+ if (!options.edge?.syncWebhookEvents) {
599
+ throw new Error("EdgeWebhookReconciler: edge.syncWebhookEvents is required");
600
+ }
601
+ if (!options.cursorStore?.load || !options.cursorStore?.save) {
602
+ throw new Error("EdgeWebhookReconciler: cursorStore.load and cursorStore.save are required");
603
+ }
604
+ if (!options.processEvent) {
605
+ throw new Error("EdgeWebhookReconciler: processEvent is required");
606
+ }
607
+ if (options.maxPages !== void 0 && (!Number.isInteger(options.maxPages) || options.maxPages <= 0)) {
608
+ throw new Error("EdgeWebhookReconciler: maxPages must be a positive integer");
609
+ }
610
+ this.options = options;
611
+ }
612
+ async run() {
613
+ if (this.running) {
614
+ return {
615
+ processed: 0,
616
+ pages: 0,
617
+ hasMore: false,
618
+ skipped: true,
619
+ reason: "already_running"
620
+ };
621
+ }
622
+ this.running = true;
623
+ try {
624
+ return await this.runInternal();
625
+ } finally {
626
+ this.running = false;
627
+ }
628
+ }
629
+ async runInternal() {
630
+ let cursor = normalizeCursor(await this.options.cursorStore.load());
631
+ let processed = 0;
632
+ let pages = 0;
633
+ let hasMore = false;
634
+ const maxPages = this.options.maxPages ?? DEFAULT_MAX_PAGES;
635
+ while (pages < maxPages) {
636
+ const result = await this.options.edge.syncWebhookEvents({
637
+ ...cursor ? { afterEventId: cursor } : {},
638
+ ...this.options.limit !== void 0 ? { limit: this.options.limit } : {}
639
+ });
640
+ pages++;
641
+ hasMore = result.hasMore;
642
+ if (result.events.length === 0) {
643
+ return {
644
+ processed,
645
+ pages,
646
+ ...cursor ? { cursor } : {},
647
+ hasMore,
648
+ skipped: false,
649
+ ...hasMore ? { reason: "empty_page_with_has_more" } : {}
650
+ };
651
+ }
652
+ for (const event of result.events) {
653
+ await this.options.processEvent(event);
654
+ cursor = event.id;
655
+ await this.options.cursorStore.save(cursor);
656
+ processed++;
657
+ }
658
+ if (!result.hasMore) {
659
+ return {
660
+ processed,
661
+ pages,
662
+ ...cursor ? { cursor } : {},
663
+ hasMore: false,
664
+ skipped: false
665
+ };
666
+ }
667
+ }
668
+ return {
669
+ processed,
670
+ pages,
671
+ ...cursor ? { cursor } : {},
672
+ hasMore,
673
+ skipped: false,
674
+ ...hasMore ? { reason: "max_pages_reached" } : {}
675
+ };
676
+ }
677
+ };
678
+ function createWebhookReconciler(options) {
679
+ return new EdgeWebhookReconciler(options);
680
+ }
681
+ function normalizeCursor(cursor) {
682
+ if (typeof cursor !== "string") return void 0;
683
+ const trimmed = cursor.trim();
684
+ return trimmed || void 0;
685
+ }
686
+
307
687
  // src/edge-connect-server.ts
308
688
  var instances = /* @__PURE__ */ new Map();
309
689
  function getInstanceKey(config) {
310
- return `${config.clientId}:${config.environment}`;
690
+ return JSON.stringify([
691
+ config.clientId,
692
+ config.environment,
693
+ config.apiBaseUrl || "",
694
+ config.oauthBaseUrl || "",
695
+ config.partnerApiBaseUrl || "",
696
+ config.partnerClientId || ""
697
+ ]);
311
698
  }
312
- var MTLS_ENFORCED_HOSTS = /* @__PURE__ */ new Set(["connect-staging.edgeboost.io", "api.edgeboost.com"]);
699
+ var MTLS_ENFORCED_HOSTS = /* @__PURE__ */ new Set(["connect-staging.edgeboost.io", "connect.edgeboost.io"]);
313
700
  function isMtlsEnforcedHost(host) {
314
701
  if (MTLS_ENFORCED_HOSTS.has(host)) {
315
702
  return true;
@@ -331,6 +718,29 @@ function environmentRequiresMtls(environment, apiBaseUrl) {
331
718
  return false;
332
719
  }
333
720
  }
721
+ var CONNECT_API_BASE_PATH = "/connect/v1";
722
+ function stripTrailingSlash(value) {
723
+ let end = value.length;
724
+ while (end > 0 && value.charCodeAt(end - 1) === 47) {
725
+ end--;
726
+ }
727
+ return value.slice(0, end);
728
+ }
729
+ function derivePartnerApiBaseUrl(apiBaseUrl) {
730
+ const url = new URL(apiBaseUrl);
731
+ const normalizedPath = stripTrailingSlash(url.pathname);
732
+ if (normalizedPath.endsWith(CONNECT_API_BASE_PATH)) {
733
+ const prefix = normalizedPath.slice(0, -CONNECT_API_BASE_PATH.length);
734
+ url.pathname = `${prefix}/v1`;
735
+ } else {
736
+ url.pathname = normalizedPath || "/";
737
+ }
738
+ url.search = "";
739
+ url.hash = "";
740
+ return stripTrailingSlash(url.toString());
741
+ }
742
+ var SYNC_WEBHOOK_EVENTS_MIN_LIMIT = 1;
743
+ var SYNC_WEBHOOK_EVENTS_MAX_LIMIT = 100;
334
744
  var EdgeConnectServer = class _EdgeConnectServer {
335
745
  constructor(config) {
336
746
  this.partnerTokenCache = null;
@@ -344,8 +754,9 @@ var EdgeConnectServer = class _EdgeConnectServer {
344
754
  throw new Error("EdgeConnectServer: environment is required");
345
755
  }
346
756
  this.config = config;
347
- const envConfig = (0, import_connect2.getEnvironmentConfig)(config.environment);
757
+ const envConfig = (0, import_connect4.getEnvironmentConfig)(config.environment);
348
758
  this.apiBaseUrl = config.apiBaseUrl || envConfig.apiBaseUrl;
759
+ this.partnerApiBaseUrl = stripTrailingSlash(config.partnerApiBaseUrl || derivePartnerApiBaseUrl(this.apiBaseUrl));
349
760
  this.oauthBaseUrl = config.oauthBaseUrl || envConfig.oauthBaseUrl;
350
761
  this.timeout = config.timeout || DEFAULT_TIMEOUT;
351
762
  this.retryConfig = {
@@ -388,10 +799,13 @@ var EdgeConnectServer = class _EdgeConnectServer {
388
799
  */
389
800
  forUser(accessToken) {
390
801
  if (!accessToken) {
391
- throw new import_connect2.EdgeAuthenticationError("accessToken is required when calling forUser()");
802
+ throw new import_connect4.EdgeAuthenticationError("accessToken is required when calling forUser()");
392
803
  }
393
804
  return new EdgeUserClient(this, accessToken);
394
805
  }
806
+ createUserSession(options) {
807
+ return new EdgeUserSession({ ...options, edge: this });
808
+ }
395
809
  async exchangeCode(code, codeVerifier, redirectUri) {
396
810
  const tokenUrl = `${this.oauthBaseUrl}/token`;
397
811
  const body = {
@@ -422,8 +836,8 @@ var EdgeConnectServer = class _EdgeConnectServer {
422
836
  const data = await response.json();
423
837
  return this.parseTokenResponse(data);
424
838
  } catch (error) {
425
- if (error instanceof import_connect2.EdgeError) throw error;
426
- throw new import_connect2.EdgeNetworkError("Failed to exchange code", error);
839
+ if (error instanceof import_connect4.EdgeError) throw error;
840
+ throw new import_connect4.EdgeNetworkError("Failed to exchange code", error);
427
841
  }
428
842
  }
429
843
  async refreshTokens(refreshToken) {
@@ -449,7 +863,7 @@ var EdgeConnectServer = class _EdgeConnectServer {
449
863
  );
450
864
  if (!response.ok) {
451
865
  const error = await response.json().catch(() => ({}));
452
- throw new import_connect2.EdgeAuthenticationError(
866
+ throw new import_connect4.EdgeAuthenticationError(
453
867
  error.message || error.error_description || "Token refresh failed. User may need to reconnect.",
454
868
  { tokenError: error }
455
869
  );
@@ -457,8 +871,8 @@ var EdgeConnectServer = class _EdgeConnectServer {
457
871
  const data = await response.json();
458
872
  return this.parseTokenResponse(data, refreshToken);
459
873
  } catch (error) {
460
- if (error instanceof import_connect2.EdgeError) throw error;
461
- throw new import_connect2.EdgeNetworkError("Failed to refresh tokens", error);
874
+ if (error instanceof import_connect4.EdgeError) throw error;
875
+ throw new import_connect4.EdgeNetworkError("Failed to refresh tokens", error);
462
876
  }
463
877
  }
464
878
  /** @internal Called by {@link EdgeUserClient} — not part of the public API. */
@@ -500,14 +914,14 @@ var EdgeConnectServer = class _EdgeConnectServer {
500
914
  if (mleEnabled && typeof rawResponseBody?.jwe === "string") {
501
915
  responseBody = decryptMle(rawResponseBody.jwe, mleConfig);
502
916
  } else if (!mleEnabled && typeof rawResponseBody?.jwe === "string") {
503
- throw new import_connect2.EdgeApiError(
917
+ throw new import_connect4.EdgeApiError(
504
918
  "mle_required",
505
919
  "The API responded with message-level encryption. Enable MLE in SDK config.",
506
920
  response.status,
507
921
  rawResponseBody
508
922
  );
509
923
  } else if (mleEnabled && mleConfig?.strictResponseEncryption !== false && response.ok && typeof rawResponseBody?.jwe !== "string") {
510
- throw new import_connect2.EdgeApiError(
924
+ throw new import_connect4.EdgeApiError(
511
925
  "mle_response_missing",
512
926
  "Expected encrypted response payload but received plaintext.",
513
927
  response.status,
@@ -525,8 +939,8 @@ var EdgeConnectServer = class _EdgeConnectServer {
525
939
  }
526
940
  return responseBody;
527
941
  } catch (error) {
528
- if (error instanceof import_connect2.EdgeError) {
529
- if (!(error instanceof import_connect2.EdgeNetworkError) || attempt >= this.retryConfig.maxRetries) {
942
+ if (error instanceof import_connect4.EdgeError) {
943
+ if (!(error instanceof import_connect4.EdgeNetworkError) || attempt >= this.retryConfig.maxRetries) {
530
944
  throw error;
531
945
  }
532
946
  lastError = error;
@@ -534,11 +948,11 @@ var EdgeConnectServer = class _EdgeConnectServer {
534
948
  }
535
949
  lastError = error;
536
950
  if (attempt >= this.retryConfig.maxRetries) {
537
- throw new import_connect2.EdgeNetworkError(`API request failed: ${method} ${path}`, lastError);
951
+ throw new import_connect4.EdgeNetworkError(`API request failed: ${method} ${path}`, lastError);
538
952
  }
539
953
  }
540
954
  }
541
- throw new import_connect2.EdgeNetworkError(
955
+ throw new import_connect4.EdgeNetworkError(
542
956
  `API request failed after ${this.retryConfig.maxRetries} retries: ${method} ${path}`,
543
957
  lastError
544
958
  );
@@ -582,21 +996,41 @@ var EdgeConnectServer = class _EdgeConnectServer {
582
996
  */
583
997
  async syncWebhookEvents(options = {}) {
584
998
  if (!this.config.partnerClientId) {
585
- throw new import_connect2.EdgeAuthenticationError("syncWebhookEvents requires `partnerClientId` in EdgeConnectServer config");
999
+ throw new import_connect4.EdgeAuthenticationError("syncWebhookEvents requires `partnerClientId` in EdgeConnectServer config");
586
1000
  }
587
1001
  if (!this.config.partnerClientSecret) {
588
- throw new import_connect2.EdgeAuthenticationError("syncWebhookEvents requires `partnerClientSecret` in EdgeConnectServer config");
1002
+ throw new import_connect4.EdgeAuthenticationError("syncWebhookEvents requires `partnerClientSecret` in EdgeConnectServer config");
589
1003
  }
590
- const url = this.buildSyncUrl(options);
1004
+ const normalizedOptions = this.normalizeSyncWebhookEventsOptions(options);
1005
+ const url = this.buildSyncUrl(normalizedOptions);
591
1006
  let token = await this.getPartnerToken();
592
- let response = await this.partnerFetch(url, token);
1007
+ let { response, durationMs, attempt } = await this.partnerFetch(url, token);
593
1008
  if (response.status === 401) {
1009
+ await this.drainResponseBody(response);
1010
+ this.config.onResponse?.({
1011
+ status: response.status,
1012
+ body: { error: "unauthorized" },
1013
+ durationMs,
1014
+ method: "GET",
1015
+ url,
1016
+ endpoint: "partner_webhook_sync",
1017
+ attempt
1018
+ });
594
1019
  this.partnerTokenCache = null;
595
1020
  token = await this.getPartnerToken();
596
- response = await this.partnerFetch(url, token);
1021
+ ({ response, durationMs, attempt } = await this.partnerFetch(url, token));
597
1022
  if (response.status === 401) {
598
1023
  const body = await response.json().catch(() => ({}));
599
- throw new import_connect2.EdgeAuthenticationError(
1024
+ this.config.onResponse?.({
1025
+ status: response.status,
1026
+ body: this.redactPartnerSyncResponseBody(body),
1027
+ durationMs,
1028
+ method: "GET",
1029
+ url,
1030
+ endpoint: "partner_webhook_sync",
1031
+ attempt
1032
+ });
1033
+ throw new import_connect4.EdgeAuthenticationError(
600
1034
  body.message || "Partner token rejected after refresh \u2014 check partnerClientId/Secret",
601
1035
  body
602
1036
  );
@@ -604,7 +1038,16 @@ var EdgeConnectServer = class _EdgeConnectServer {
604
1038
  }
605
1039
  if (!response.ok) {
606
1040
  const body = await response.json().catch(() => ({}));
607
- throw new import_connect2.EdgeApiError(
1041
+ this.config.onResponse?.({
1042
+ status: response.status,
1043
+ body: this.redactPartnerSyncResponseBody(body),
1044
+ durationMs,
1045
+ method: "GET",
1046
+ url,
1047
+ endpoint: "partner_webhook_sync",
1048
+ attempt
1049
+ });
1050
+ throw new import_connect4.EdgeApiError(
608
1051
  body.error || "sync_failed",
609
1052
  body.message || `syncWebhookEvents failed with status ${response.status}`,
610
1053
  response.status,
@@ -612,17 +1055,57 @@ var EdgeConnectServer = class _EdgeConnectServer {
612
1055
  );
613
1056
  }
614
1057
  const wire = await response.json().catch(() => ({}));
1058
+ this.config.onResponse?.({
1059
+ status: response.status,
1060
+ body: {
1061
+ eventCount: wire.events?.length ?? 0,
1062
+ hasMore: !!wire.has_more
1063
+ },
1064
+ durationMs,
1065
+ method: "GET",
1066
+ url,
1067
+ endpoint: "partner_webhook_sync",
1068
+ attempt
1069
+ });
615
1070
  const events = (wire.events ?? []).map((entry) => entry.payload).filter((p) => !!p);
616
1071
  return {
617
1072
  events,
618
1073
  hasMore: !!wire.has_more
619
1074
  };
620
1075
  }
1076
+ /**
1077
+ * Creates a cursor-based webhook reconciler bound to this SDK instance.
1078
+ *
1079
+ * Use this from cron jobs to process events returned by
1080
+ * {@link EdgeConnectServer.syncWebhookEvents} without hand-writing
1081
+ * pagination, cursor advancement, or process-level concurrency guards.
1082
+ */
1083
+ createWebhookReconciler(options) {
1084
+ return new EdgeWebhookReconciler({ ...options, edge: this });
1085
+ }
621
1086
  /**
622
1087
  * Builds the sync URL with normalized query parameters.
623
1088
  */
1089
+ normalizeSyncWebhookEventsOptions(options) {
1090
+ const normalized = {};
1091
+ if (typeof options.afterEventId === "string" && options.afterEventId.trim()) {
1092
+ normalized.afterEventId = options.afterEventId.trim();
1093
+ }
1094
+ if (options.limit !== void 0) {
1095
+ if (!Number.isInteger(options.limit) || options.limit < SYNC_WEBHOOK_EVENTS_MIN_LIMIT || options.limit > SYNC_WEBHOOK_EVENTS_MAX_LIMIT) {
1096
+ throw new import_connect4.EdgeApiError(
1097
+ "invalid_sync_options",
1098
+ `syncWebhookEvents limit must be an integer between ${SYNC_WEBHOOK_EVENTS_MIN_LIMIT} and ${SYNC_WEBHOOK_EVENTS_MAX_LIMIT}`,
1099
+ 400,
1100
+ { limit: options.limit }
1101
+ );
1102
+ }
1103
+ normalized.limit = options.limit;
1104
+ }
1105
+ return normalized;
1106
+ }
624
1107
  buildSyncUrl(options) {
625
- const url = new URL(`${this.apiBaseUrl}/partner/webhooks/events/sync`);
1108
+ const url = new URL(`${this.partnerApiBaseUrl}/partner/webhooks/events/sync`);
626
1109
  if (options.afterEventId) {
627
1110
  url.searchParams.set("after_event_id", options.afterEventId);
628
1111
  }
@@ -637,22 +1120,57 @@ var EdgeConnectServer = class _EdgeConnectServer {
637
1120
  * lifecycle (process-wide, client_credentials) than user tokens.
638
1121
  */
639
1122
  async partnerFetch(url, token) {
640
- try {
641
- return await this.fetchWithTimeout(
1123
+ let lastError = null;
1124
+ for (let attempt = 0; attempt <= this.retryConfig.maxRetries; attempt++) {
1125
+ if (attempt > 0) {
1126
+ await this.sleep(this.getRetryDelay(attempt - 1));
1127
+ }
1128
+ const startTime = Date.now();
1129
+ this.config.onRequest?.({
1130
+ method: "GET",
642
1131
  url,
643
- {
644
- method: "GET",
645
- headers: {
646
- Authorization: `Bearer ${token}`,
647
- "Content-Type": "application/json",
648
- "User-Agent": USER_AGENT
649
- }
650
- },
651
- this.dispatcher
652
- );
653
- } catch (error) {
654
- throw new import_connect2.EdgeNetworkError("syncWebhookEvents network failure", error);
1132
+ endpoint: "partner_webhook_sync",
1133
+ attempt
1134
+ });
1135
+ try {
1136
+ const response = await this.fetchWithTimeout(
1137
+ url,
1138
+ {
1139
+ method: "GET",
1140
+ headers: {
1141
+ Authorization: `Bearer ${token}`,
1142
+ "Content-Type": "application/json",
1143
+ "User-Agent": USER_AGENT
1144
+ }
1145
+ },
1146
+ this.dispatcher
1147
+ );
1148
+ const durationMs = Date.now() - startTime;
1149
+ if (response.status !== 401 && this.retryConfig.retryOn.includes(response.status) && attempt < this.retryConfig.maxRetries) {
1150
+ await this.drainResponseBody(response);
1151
+ this.config.onResponse?.({
1152
+ status: response.status,
1153
+ body: { retrying: true },
1154
+ durationMs,
1155
+ method: "GET",
1156
+ url,
1157
+ endpoint: "partner_webhook_sync",
1158
+ attempt
1159
+ });
1160
+ continue;
1161
+ }
1162
+ return { response, durationMs, attempt };
1163
+ } catch (error) {
1164
+ lastError = error;
1165
+ if (attempt >= this.retryConfig.maxRetries) {
1166
+ throw new import_connect4.EdgeNetworkError("syncWebhookEvents network failure", lastError);
1167
+ }
1168
+ }
655
1169
  }
1170
+ throw new import_connect4.EdgeNetworkError(
1171
+ `syncWebhookEvents network failure after ${this.retryConfig.maxRetries} retries`,
1172
+ lastError
1173
+ );
656
1174
  }
657
1175
  /**
658
1176
  * Fetches (or returns the cached) partner token via the
@@ -668,6 +1186,17 @@ var EdgeConnectServer = class _EdgeConnectServer {
668
1186
  }
669
1187
  const tokenUrl = `${this.oauthBaseUrl}/token`;
670
1188
  let response;
1189
+ const startTime = Date.now();
1190
+ this.config.onRequest?.({
1191
+ method: "POST",
1192
+ url: tokenUrl,
1193
+ endpoint: "oauth_token",
1194
+ body: {
1195
+ grant_type: "client_credentials",
1196
+ client_id: this.config.partnerClientId,
1197
+ client_secret: "[REDACTED]"
1198
+ }
1199
+ });
671
1200
  try {
672
1201
  response = await this.fetchWithTimeout(
673
1202
  tokenUrl,
@@ -686,18 +1215,26 @@ var EdgeConnectServer = class _EdgeConnectServer {
686
1215
  this.dispatcher
687
1216
  );
688
1217
  } catch (error) {
689
- throw new import_connect2.EdgeNetworkError("Partner token request network failure", error);
1218
+ throw new import_connect4.EdgeNetworkError("Partner token request network failure", error);
690
1219
  }
1220
+ const durationMs = Date.now() - startTime;
1221
+ const data = await response.json().catch(() => ({}));
1222
+ this.config.onResponse?.({
1223
+ status: response.status,
1224
+ body: this.redactPartnerTokenResponseBody(data),
1225
+ durationMs,
1226
+ method: "POST",
1227
+ url: tokenUrl,
1228
+ endpoint: "oauth_token"
1229
+ });
691
1230
  if (!response.ok) {
692
- const body = await response.json().catch(() => ({}));
693
- throw new import_connect2.EdgeAuthenticationError(
694
- body.message || body.error_description || `Partner token request failed with status ${response.status}`,
695
- body
1231
+ throw new import_connect4.EdgeAuthenticationError(
1232
+ data.message || data.error_description || `Partner token request failed with status ${response.status}`,
1233
+ data
696
1234
  );
697
1235
  }
698
- const data = await response.json().catch(() => ({}));
699
1236
  if (!data.access_token || typeof data.expires_in !== "number") {
700
- throw new import_connect2.EdgeAuthenticationError("Partner token response missing access_token or expires_in");
1237
+ throw new import_connect4.EdgeAuthenticationError("Partner token response missing access_token or expires_in");
701
1238
  }
702
1239
  this.partnerTokenCache = {
703
1240
  token: data.access_token,
@@ -712,6 +1249,26 @@ var EdgeConnectServer = class _EdgeConnectServer {
712
1249
  _resetPartnerTokenCache() {
713
1250
  this.partnerTokenCache = null;
714
1251
  }
1252
+ redactPartnerTokenResponseBody(body) {
1253
+ return {
1254
+ ...body,
1255
+ ...typeof body.access_token === "string" ? { access_token: "[REDACTED]" } : {},
1256
+ ...typeof body.refresh_token === "string" ? { refresh_token: "[REDACTED]" } : {},
1257
+ ...typeof body.id_token === "string" ? { id_token: "[REDACTED]" } : {}
1258
+ };
1259
+ }
1260
+ redactPartnerSyncResponseBody(body) {
1261
+ if (Array.isArray(body.events)) {
1262
+ return {
1263
+ ...body,
1264
+ events: `[REDACTED ${body.events.length} events]`
1265
+ };
1266
+ }
1267
+ return body;
1268
+ }
1269
+ async drainResponseBody(response) {
1270
+ await response.arrayBuffer().catch(() => void 0);
1271
+ }
715
1272
  getRetryDelay(attempt) {
716
1273
  const { backoff, baseDelayMs } = this.retryConfig;
717
1274
  if (backoff === "exponential") {
@@ -752,37 +1309,37 @@ var EdgeConnectServer = class _EdgeConnectServer {
752
1309
  const errorCode = error.error;
753
1310
  const errorMessage = error.message || error.error_description;
754
1311
  if (errorCode === "invalid_grant" || errorMessage?.includes("Invalid or expired")) {
755
- return new import_connect2.EdgeTokenExchangeError("Authorization code is invalid, expired, or already used. Please try again.", {
1312
+ return new import_connect4.EdgeTokenExchangeError("Authorization code is invalid, expired, or already used. Please try again.", {
756
1313
  edgeBoostError: error
757
1314
  });
758
1315
  }
759
1316
  if (errorCode === "invalid_client" || errorMessage?.includes("Invalid client")) {
760
- return new import_connect2.EdgeAuthenticationError("Invalid client credentials. Check your client ID and secret.", {
1317
+ return new import_connect4.EdgeAuthenticationError("Invalid client credentials. Check your client ID and secret.", {
761
1318
  edgeBoostError: error
762
1319
  });
763
1320
  }
764
1321
  if (errorMessage?.includes("code_verifier") || errorMessage?.includes("PKCE")) {
765
- return new import_connect2.EdgeTokenExchangeError("PKCE verification failed. Please try again.", { edgeBoostError: error });
1322
+ return new import_connect4.EdgeTokenExchangeError("PKCE verification failed. Please try again.", { edgeBoostError: error });
766
1323
  }
767
- return new import_connect2.EdgeTokenExchangeError(errorMessage || "Failed to exchange authorization code", {
1324
+ return new import_connect4.EdgeTokenExchangeError(errorMessage || "Failed to exchange authorization code", {
768
1325
  edgeBoostError: error,
769
1326
  statusCode: status
770
1327
  });
771
1328
  }
772
1329
  async handleApiErrorFromBody(error, status, path) {
773
1330
  if (status === 401) {
774
- return new import_connect2.EdgeAuthenticationError(error.message || "Access token is invalid or expired", error);
1331
+ return new import_connect4.EdgeAuthenticationError(error.message || "Access token is invalid or expired", error);
775
1332
  }
776
1333
  if (status === 403) {
777
1334
  if (error.error === "consent_required") {
778
- return new import_connect2.EdgeConsentRequiredError(
1335
+ return new import_connect4.EdgeConsentRequiredError(
779
1336
  this.config.clientId,
780
1337
  error.consentUrl,
781
1338
  error.message
782
1339
  );
783
1340
  }
784
1341
  if (error.error === "insufficient_scope" || error.error === "insufficient_consent") {
785
- return new import_connect2.EdgeInsufficientScopeError(
1342
+ return new import_connect4.EdgeInsufficientScopeError(
786
1343
  error.missing_scopes || error.missingScopes || [],
787
1344
  error.message
788
1345
  );
@@ -804,15 +1361,15 @@ var EdgeConnectServer = class _EdgeConnectServer {
804
1361
  } else if (path.includes("/transfer")) {
805
1362
  resourceType = "Transfer";
806
1363
  }
807
- return new import_connect2.EdgeNotFoundError(resourceType, resourceId);
1364
+ return new import_connect4.EdgeNotFoundError(resourceType, resourceId);
808
1365
  }
809
1366
  if (status === 422 && error.error === "identity_verification_failed") {
810
- return new import_connect2.EdgeIdentityVerificationError(
1367
+ return new import_connect4.EdgeIdentityVerificationError(
811
1368
  error.fieldErrors || {},
812
1369
  error.message
813
1370
  );
814
1371
  }
815
- return new import_connect2.EdgeApiError(
1372
+ return new import_connect4.EdgeApiError(
816
1373
  error.error || "api_error",
817
1374
  error.message || error.error_description || `Request failed with status ${status}`,
818
1375
  status,
@@ -821,8 +1378,509 @@ var EdgeConnectServer = class _EdgeConnectServer {
821
1378
  }
822
1379
  };
823
1380
 
1381
+ // src/env.ts
1382
+ var import_connect5 = require("@edge-markets/connect");
1383
+ var import_node_fs2 = __toESM(require("fs"));
1384
+ var ENVIRONMENT_NAMES = new Set(Object.keys(import_connect5.EDGE_ENVIRONMENTS));
1385
+ function readEnv(env, name) {
1386
+ const value = env[name];
1387
+ if (typeof value !== "string") return void 0;
1388
+ const trimmed = value.trim();
1389
+ return trimmed ? trimmed : void 0;
1390
+ }
1391
+ function readFirstEnv(env, names) {
1392
+ for (const name of names) {
1393
+ const value = readEnv(env, name);
1394
+ if (value) return value;
1395
+ }
1396
+ return void 0;
1397
+ }
1398
+ function normalizePem(value) {
1399
+ return value.replace(/\\n/g, "\n").trim();
1400
+ }
1401
+ function readPemValue(env, valueName, pathName, warnings) {
1402
+ const inlineValue = readEnv(env, valueName);
1403
+ const filePath = readEnv(env, pathName);
1404
+ if (inlineValue && filePath) {
1405
+ warnings.push(`${valueName} and ${pathName} are both set; using ${valueName}`);
1406
+ }
1407
+ if (inlineValue) {
1408
+ return normalizePem(inlineValue);
1409
+ }
1410
+ if (!filePath) {
1411
+ return void 0;
1412
+ }
1413
+ try {
1414
+ return normalizePem(import_node_fs2.default.readFileSync(filePath, "utf8"));
1415
+ } catch (error) {
1416
+ const message = error instanceof Error ? error.message : String(error);
1417
+ throw new import_connect5.EdgeValidationError(`Failed to read ${pathName}`, {
1418
+ [pathName]: [`Unable to read PEM file "${filePath}": ${message}`]
1419
+ });
1420
+ }
1421
+ }
1422
+ function readEnvironment(env) {
1423
+ const value = readEnv(env, "EDGE_ENVIRONMENT") || "staging";
1424
+ if (!ENVIRONMENT_NAMES.has(value)) {
1425
+ throw new import_connect5.EdgeValidationError("Invalid EDGE_ENVIRONMENT", {
1426
+ EDGE_ENVIRONMENT: [`Must be one of: ${Array.from(ENVIRONMENT_NAMES).join(", ")}`]
1427
+ });
1428
+ }
1429
+ return value;
1430
+ }
1431
+ function readTimeout(env, override) {
1432
+ if (override !== void 0) return override;
1433
+ const value = readFirstEnv(env, ["EDGE_TIMEOUT_MS", "EDGE_REQUEST_TIMEOUT_MS"]);
1434
+ if (!value) return void 0;
1435
+ const timeout = Number(value);
1436
+ if (!Number.isInteger(timeout) || timeout <= 0) {
1437
+ throw new import_connect5.EdgeValidationError("Invalid EDGE_TIMEOUT_MS", {
1438
+ EDGE_TIMEOUT_MS: ["Must be a positive integer number of milliseconds"]
1439
+ });
1440
+ }
1441
+ return timeout;
1442
+ }
1443
+ function buildMtlsConfig(env, requireMtls, warnings) {
1444
+ const cert = readPemValue(env, "EDGE_MTLS_CERT", "EDGE_MTLS_CERT_PATH", warnings);
1445
+ const key = readPemValue(env, "EDGE_MTLS_KEY", "EDGE_MTLS_KEY_PATH", warnings);
1446
+ const ca = readPemValue(env, "EDGE_MTLS_CA", "EDGE_MTLS_CA_PATH", warnings);
1447
+ if (!cert && !key && !ca) {
1448
+ if (requireMtls) {
1449
+ throw new import_connect5.EdgeValidationError("mTLS is required but no EDGE_MTLS_CERT or EDGE_MTLS_KEY was provided", {
1450
+ EDGE_MTLS_CERT: ["Required when requireMtls is true"],
1451
+ EDGE_MTLS_KEY: ["Required when requireMtls is true"]
1452
+ });
1453
+ }
1454
+ return void 0;
1455
+ }
1456
+ if (!cert || !key) {
1457
+ throw new import_connect5.EdgeValidationError("Incomplete mTLS configuration", {
1458
+ EDGE_MTLS_CERT: cert ? [] : ["Required when mTLS is configured"],
1459
+ EDGE_MTLS_KEY: key ? [] : ["Required when mTLS is configured"]
1460
+ });
1461
+ }
1462
+ return {
1463
+ enabled: true,
1464
+ cert,
1465
+ key,
1466
+ ...ca ? { ca } : {}
1467
+ };
1468
+ }
1469
+ function inferMtlsRequirement(environment, apiBaseUrl) {
1470
+ if (environment === "staging" || environment === "production") return true;
1471
+ const resolvedApiBaseUrl = apiBaseUrl || (0, import_connect5.getEnvironmentConfig)(environment).apiBaseUrl;
1472
+ try {
1473
+ const host = new URL(resolvedApiBaseUrl).host;
1474
+ return host === "connect-staging.edgeboost.io" || host === "connect.edgeboost.io";
1475
+ } catch {
1476
+ return false;
1477
+ }
1478
+ }
1479
+ function createEdgeConnectServerFromEnv(options = {}) {
1480
+ const env = options.env ?? process.env;
1481
+ const warnings = [];
1482
+ const environment = readEnvironment(env);
1483
+ const apiBaseUrl = readEnv(env, "EDGE_API_BASE_URL");
1484
+ const mtlsRequiredByTarget = inferMtlsRequirement(environment, apiBaseUrl);
1485
+ const requireMtls = options.requireMtls ?? false;
1486
+ const mtls = buildMtlsConfig(env, requireMtls, warnings);
1487
+ const timeout = readTimeout(env, options.timeout);
1488
+ const clientId = readFirstEnv(env, ["EDGE_CLIENT_ID", "EDGE_CONNECT_CLIENT_ID"]) || "";
1489
+ const clientSecret = readFirstEnv(env, ["EDGE_CLIENT_SECRET", "EDGE_CONNECT_CLIENT_SECRET"]) || "";
1490
+ const oauthBaseUrl = readEnv(env, "EDGE_OAUTH_BASE_URL");
1491
+ const partnerApiBaseUrl = readEnv(env, "EDGE_PARTNER_API_BASE_URL");
1492
+ const partnerClientId = readFirstEnv(env, ["EDGE_PARTNER_CLIENT_ID", "EDGE_DASHBOARD_CLIENT_ID"]);
1493
+ const partnerClientSecret = readFirstEnv(env, ["EDGE_PARTNER_CLIENT_SECRET", "EDGE_DASHBOARD_CLIENT_SECRET"]);
1494
+ const validationErrors = {};
1495
+ if (!clientId) validationErrors.EDGE_CLIENT_ID = ["Required"];
1496
+ if (!clientSecret) validationErrors.EDGE_CLIENT_SECRET = ["Required"];
1497
+ if (Object.keys(validationErrors).length > 0) {
1498
+ throw new import_connect5.EdgeValidationError("Missing required EDGE Connect environment variables", validationErrors);
1499
+ }
1500
+ if (mtlsRequiredByTarget && !mtls) {
1501
+ warnings.push(
1502
+ `EDGE_ENVIRONMENT=${environment} uses an mTLS-enforced EDGE Connect target; configure EDGE_MTLS_CERT and EDGE_MTLS_KEY before making API calls.`
1503
+ );
1504
+ }
1505
+ const config = {
1506
+ clientId,
1507
+ clientSecret,
1508
+ environment,
1509
+ ...apiBaseUrl ? { apiBaseUrl } : {},
1510
+ ...oauthBaseUrl ? { oauthBaseUrl } : {},
1511
+ ...partnerApiBaseUrl ? { partnerApiBaseUrl } : {},
1512
+ ...partnerClientId ? { partnerClientId } : {},
1513
+ ...partnerClientSecret ? { partnerClientSecret } : {},
1514
+ ...timeout ? { timeout } : {},
1515
+ ...options.retry ? { retry: options.retry } : {},
1516
+ ...options.onRequest ? { onRequest: options.onRequest } : {},
1517
+ ...options.onResponse ? { onResponse: options.onResponse } : {},
1518
+ ...options.mle ? { mle: options.mle } : {},
1519
+ ...mtls ? { mtls } : {}
1520
+ };
1521
+ const server = new EdgeConnectServer(config);
1522
+ return {
1523
+ server,
1524
+ config,
1525
+ capabilities: {
1526
+ mtlsEnabled: !!config.mtls?.enabled,
1527
+ webhookSyncConfigured: !!config.partnerClientId && !!config.partnerClientSecret,
1528
+ customApiBaseUrl: !!config.apiBaseUrl,
1529
+ customOAuthBaseUrl: !!config.oauthBaseUrl,
1530
+ customPartnerApiBaseUrl: !!config.partnerApiBaseUrl
1531
+ },
1532
+ warnings
1533
+ };
1534
+ }
1535
+
1536
+ // src/error-adapter.ts
1537
+ var import_connect6 = require("@edge-markets/connect");
1538
+ function toEdgeHttpError(error) {
1539
+ const body = toEdgeProblemJson(error);
1540
+ return { status: body.status, body };
1541
+ }
1542
+ function toEdgeProblemJson(error) {
1543
+ if (error instanceof import_connect6.EdgeConsentRequiredError) {
1544
+ return problem(error, "Consent required", error.statusCode ?? 403, {
1545
+ clientId: error.clientId,
1546
+ consentUrl: error.consentUrl
1547
+ });
1548
+ }
1549
+ if (error instanceof import_connect6.EdgeValidationError) {
1550
+ return problem(error, "Validation failed", error.statusCode ?? 400, {
1551
+ validationErrors: error.validationErrors
1552
+ });
1553
+ }
1554
+ if (error instanceof import_connect6.EdgeIdentityVerificationError) {
1555
+ return problem(error, "Identity verification failed", error.statusCode ?? 422, {
1556
+ fieldErrors: error.fieldErrors
1557
+ });
1558
+ }
1559
+ if (error instanceof import_connect6.EdgeNetworkError) {
1560
+ return problem(error, "EDGE network error", error.statusCode ?? 502);
1561
+ }
1562
+ if (error instanceof import_connect6.EdgeError) {
1563
+ return problem(error, edgeTitle(error), error.statusCode ?? 500, error.details);
1564
+ }
1565
+ const message = error instanceof Error ? error.message : "Unexpected error";
1566
+ return {
1567
+ type: "https://developer.edgemarkets.io/errors/internal_error",
1568
+ title: "Internal error",
1569
+ status: 500,
1570
+ detail: message,
1571
+ code: "internal_error"
1572
+ };
1573
+ }
1574
+ function problem(error, title, status, details) {
1575
+ return {
1576
+ type: `https://developer.edgemarkets.io/errors/${error.code}`,
1577
+ title,
1578
+ status,
1579
+ detail: error.message,
1580
+ code: error.code,
1581
+ ...details && Object.keys(details).length > 0 ? { details } : {}
1582
+ };
1583
+ }
1584
+ function edgeTitle(error) {
1585
+ return error.code.split("_").map((part) => part.charAt(0).toUpperCase() + part.slice(1)).join(" ");
1586
+ }
1587
+
1588
+ // src/identity.ts
1589
+ var import_connect7 = require("@edge-markets/connect");
1590
+ var DEFAULT_IDENTITY_POLICY = {
1591
+ minNameScore: 70,
1592
+ minAddressScore: 65,
1593
+ requireZipMatch: true,
1594
+ requireApiVerified: true
1595
+ };
1596
+ function buildVerifyIdentityPayload(profile) {
1597
+ const firstName = firstNonEmpty(profile.firstName, profile.givenName);
1598
+ const lastName = firstNonEmpty(profile.lastName, profile.familyName);
1599
+ const address = profile.address ?? {};
1600
+ const payload = {
1601
+ firstName,
1602
+ lastName,
1603
+ address: {
1604
+ street: firstNonEmpty(address.street, address.line1, address.address1),
1605
+ city: firstNonEmpty(address.city),
1606
+ state: firstNonEmpty(address.state),
1607
+ zip: firstNonEmpty(address.zip, address.postalCode)
1608
+ }
1609
+ };
1610
+ const errors = {};
1611
+ if (!payload.firstName) errors.firstName = ["Required"];
1612
+ if (!payload.lastName) errors.lastName = ["Required"];
1613
+ if (!Object.values(payload.address).some((value) => !!value)) {
1614
+ errors.address = ["At least one address field is required"];
1615
+ }
1616
+ if (Object.keys(errors).length > 0) {
1617
+ throw new import_connect7.EdgeValidationError("Partner identity profile is incomplete", errors);
1618
+ }
1619
+ return payload;
1620
+ }
1621
+ function evaluateIdentityResult(result, policy = {}) {
1622
+ const resolved = { ...DEFAULT_IDENTITY_POLICY, ...policy };
1623
+ validatePolicy(resolved);
1624
+ const reasons = [];
1625
+ const verifiedFlag = result.verified;
1626
+ if (resolved.requireApiVerified && verifiedFlag !== true) {
1627
+ reasons.push("api_not_verified");
1628
+ }
1629
+ const scores = result.scores;
1630
+ if (!scores) {
1631
+ reasons.push("scores_missing");
1632
+ } else {
1633
+ if (typeof scores.name === "number" && scores.name < resolved.minNameScore) {
1634
+ reasons.push("name_score_below_threshold");
1635
+ }
1636
+ if (typeof scores.address === "number" && scores.address < resolved.minAddressScore) {
1637
+ reasons.push("address_score_below_threshold");
1638
+ }
1639
+ if (resolved.requireZipMatch && scores.zipMatch !== true) {
1640
+ reasons.push("zip_mismatch");
1641
+ }
1642
+ }
1643
+ return {
1644
+ verified: reasons.length === 0,
1645
+ reasons,
1646
+ ...scores ? { scores } : {}
1647
+ };
1648
+ }
1649
+ function validatePolicy(policy) {
1650
+ const errors = {};
1651
+ if (!isScore(policy.minNameScore)) errors.minNameScore = ["Must be between 0 and 100"];
1652
+ if (!isScore(policy.minAddressScore)) errors.minAddressScore = ["Must be between 0 and 100"];
1653
+ if (Object.keys(errors).length > 0) {
1654
+ throw new import_connect7.EdgeValidationError("Invalid identity policy", errors);
1655
+ }
1656
+ }
1657
+ function isScore(value) {
1658
+ return Number.isFinite(value) && value >= 0 && value <= 100;
1659
+ }
1660
+ function firstNonEmpty(...values) {
1661
+ for (const value of values) {
1662
+ if (typeof value === "string") {
1663
+ const trimmed = value.trim();
1664
+ if (trimmed) return trimmed;
1665
+ }
1666
+ }
1667
+ return "";
1668
+ }
1669
+
1670
+ // src/token-vault.ts
1671
+ var import_connect8 = require("@edge-markets/connect");
1672
+ var import_node_crypto2 = __toESM(require("crypto"));
1673
+ var TOKEN_VAULT_VERSION = "edge_vault_v1";
1674
+ var IV_BYTES = 12;
1675
+ var TAG_BYTES = 16;
1676
+ var KEY_BYTES = 32;
1677
+ var EdgeTokenVault = class {
1678
+ constructor(options) {
1679
+ this.currentKey = normalizeVaultKey(options.currentKey, "currentKey");
1680
+ this.keysById = /* @__PURE__ */ new Map([[this.currentKey.id, this.currentKey.key]]);
1681
+ for (const [index, key] of (options.previousKeys ?? []).entries()) {
1682
+ const normalized = normalizeVaultKey(key, `previousKeys[${index}]`);
1683
+ if (this.keysById.has(normalized.id)) {
1684
+ throw new import_connect8.EdgeValidationError("Duplicate token vault key ID", {
1685
+ keyId: [`Duplicate key ID "${normalized.id}"`]
1686
+ });
1687
+ }
1688
+ this.keysById.set(normalized.id, normalized.key);
1689
+ }
1690
+ }
1691
+ encryptTokens(tokens) {
1692
+ validateEdgeTokens(tokens);
1693
+ const iv = import_node_crypto2.default.randomBytes(IV_BYTES);
1694
+ const aad = Buffer.from(`${TOKEN_VAULT_VERSION}.${this.currentKey.id}`, "utf8");
1695
+ const cipher = import_node_crypto2.default.createCipheriv("aes-256-gcm", this.currentKey.key, iv);
1696
+ cipher.setAAD(aad);
1697
+ const plaintext = Buffer.from(JSON.stringify(tokens), "utf8");
1698
+ const ciphertext = Buffer.concat([cipher.update(plaintext), cipher.final()]);
1699
+ const tag = cipher.getAuthTag();
1700
+ return [
1701
+ TOKEN_VAULT_VERSION,
1702
+ toBase64Url2(Buffer.from(this.currentKey.id, "utf8")),
1703
+ toBase64Url2(iv),
1704
+ toBase64Url2(tag),
1705
+ toBase64Url2(ciphertext)
1706
+ ].join(".");
1707
+ }
1708
+ decryptTokens(envelope) {
1709
+ const parsed = parseEnvelope(envelope);
1710
+ const key = this.keysById.get(parsed.keyId);
1711
+ if (!key) {
1712
+ throw new import_connect8.EdgeValidationError("Unknown token vault key ID", {
1713
+ keyId: [`No key configured for "${parsed.keyId}"`]
1714
+ });
1715
+ }
1716
+ try {
1717
+ const decipher = import_node_crypto2.default.createDecipheriv("aes-256-gcm", key, parsed.iv);
1718
+ decipher.setAAD(Buffer.from(`${TOKEN_VAULT_VERSION}.${parsed.keyId}`, "utf8"));
1719
+ decipher.setAuthTag(parsed.tag);
1720
+ const plaintext = Buffer.concat([decipher.update(parsed.ciphertext), decipher.final()]).toString("utf8");
1721
+ const tokens = JSON.parse(plaintext);
1722
+ validateEdgeTokens(tokens);
1723
+ return tokens;
1724
+ } catch (error) {
1725
+ if (error instanceof import_connect8.EdgeValidationError) throw error;
1726
+ throw new import_connect8.EdgeValidationError("Failed to decrypt EDGE tokens", {
1727
+ tokenEnvelope: ["Envelope is malformed, corrupted, or encrypted with a different key"]
1728
+ });
1729
+ }
1730
+ }
1731
+ isEncrypted(value) {
1732
+ return typeof value === "string" && value.startsWith(`${TOKEN_VAULT_VERSION}.`);
1733
+ }
1734
+ };
1735
+ function createEdgeTokenVault(options) {
1736
+ return new EdgeTokenVault(options);
1737
+ }
1738
+ function isEdgeTokenVaultEnvelope(value) {
1739
+ return typeof value === "string" && value.startsWith(`${TOKEN_VAULT_VERSION}.`);
1740
+ }
1741
+ function normalizeVaultKey(input, fieldName) {
1742
+ const id = typeof input.id === "string" ? input.id.trim() : "";
1743
+ if (!id) {
1744
+ throw new import_connect8.EdgeValidationError("Token vault key ID is required", {
1745
+ [`${fieldName}.id`]: ["Required"]
1746
+ });
1747
+ }
1748
+ return {
1749
+ id,
1750
+ key: normalizeKeyMaterial(input.key, `${fieldName}.key`)
1751
+ };
1752
+ }
1753
+ function normalizeKeyMaterial(input, fieldName) {
1754
+ const candidates = [];
1755
+ if (Buffer.isBuffer(input)) {
1756
+ candidates.push(input);
1757
+ } else if (input instanceof Uint8Array) {
1758
+ candidates.push(Buffer.from(input));
1759
+ } else if (typeof input === "string") {
1760
+ const value = input.trim();
1761
+ if (value.startsWith("base64:")) {
1762
+ candidates.push(Buffer.from(value.slice("base64:".length), "base64"));
1763
+ } else if (value.startsWith("base64url:")) {
1764
+ candidates.push(fromBase64Url2(value.slice("base64url:".length)));
1765
+ } else if (/^[0-9a-f]{64}$/i.test(value)) {
1766
+ candidates.push(Buffer.from(value, "hex"));
1767
+ } else {
1768
+ candidates.push(Buffer.from(value, "base64"));
1769
+ candidates.push(fromBase64Url2(value));
1770
+ candidates.push(Buffer.from(value, "utf8"));
1771
+ }
1772
+ }
1773
+ const key = candidates.find((candidate) => candidate.length === KEY_BYTES);
1774
+ if (!key) {
1775
+ throw new import_connect8.EdgeValidationError("Token vault key must decode to 32 bytes", {
1776
+ [fieldName]: ["Provide a 32-byte key as base64, base64url, hex, Buffer, or Uint8Array"]
1777
+ });
1778
+ }
1779
+ return key;
1780
+ }
1781
+ function validateEdgeTokens(tokens) {
1782
+ const errors = {};
1783
+ if (!tokens || typeof tokens !== "object") {
1784
+ errors.tokens = ["Expected token object"];
1785
+ } else {
1786
+ if (typeof tokens.accessToken !== "string" || !tokens.accessToken) {
1787
+ errors.accessToken = ["Required"];
1788
+ }
1789
+ if (typeof tokens.refreshToken !== "string" || !tokens.refreshToken) {
1790
+ errors.refreshToken = ["Required"];
1791
+ }
1792
+ if (typeof tokens.expiresIn !== "number" || !Number.isFinite(tokens.expiresIn) || tokens.expiresIn <= 0) {
1793
+ errors.expiresIn = ["Must be a positive number"];
1794
+ }
1795
+ if (typeof tokens.expiresAt !== "number" || !Number.isFinite(tokens.expiresAt) || tokens.expiresAt <= 0) {
1796
+ errors.expiresAt = ["Must be a positive Unix timestamp in milliseconds"];
1797
+ }
1798
+ if (typeof tokens.scope !== "string") {
1799
+ errors.scope = ["Required"];
1800
+ }
1801
+ if (tokens.idToken !== void 0 && typeof tokens.idToken !== "string") {
1802
+ errors.idToken = ["Must be a string when provided"];
1803
+ }
1804
+ }
1805
+ if (Object.keys(errors).length > 0) {
1806
+ throw new import_connect8.EdgeValidationError("Invalid EDGE token payload", errors);
1807
+ }
1808
+ }
1809
+ function parseEnvelope(envelope) {
1810
+ if (typeof envelope !== "string") {
1811
+ throw new import_connect8.EdgeValidationError("Token envelope must be a string", {
1812
+ tokenEnvelope: ["Expected string"]
1813
+ });
1814
+ }
1815
+ const parts = envelope.split(".");
1816
+ if (parts.length !== 5 || parts[0] !== TOKEN_VAULT_VERSION) {
1817
+ throw new import_connect8.EdgeValidationError("Invalid EDGE token vault envelope", {
1818
+ tokenEnvelope: [`Expected ${TOKEN_VAULT_VERSION}.<keyId>.<iv>.<tag>.<ciphertext>`]
1819
+ });
1820
+ }
1821
+ const [, encodedKeyId, encodedIv, encodedTag, encodedCiphertext] = parts;
1822
+ const keyId = fromBase64Url2(encodedKeyId).toString("utf8");
1823
+ const iv = fromBase64Url2(encodedIv);
1824
+ const tag = fromBase64Url2(encodedTag);
1825
+ const ciphertext = fromBase64Url2(encodedCiphertext);
1826
+ const errors = {};
1827
+ if (!keyId) errors.keyId = ["Required"];
1828
+ if (iv.length !== IV_BYTES) errors.iv = [`Must be ${IV_BYTES} bytes`];
1829
+ if (tag.length !== TAG_BYTES) errors.tag = [`Must be ${TAG_BYTES} bytes`];
1830
+ if (ciphertext.length === 0) errors.ciphertext = ["Required"];
1831
+ if (Object.keys(errors).length > 0) {
1832
+ throw new import_connect8.EdgeValidationError("Invalid EDGE token vault envelope", errors);
1833
+ }
1834
+ return { keyId, iv, tag, ciphertext };
1835
+ }
1836
+ function toBase64Url2(value) {
1837
+ return value.toString("base64").replace(/=/g, "").replace(/\+/g, "-").replace(/\//g, "_");
1838
+ }
1839
+ function fromBase64Url2(value) {
1840
+ const normalized = value.replace(/-/g, "+").replace(/_/g, "/");
1841
+ const padding = normalized.length % 4 === 0 ? "" : "=".repeat(4 - normalized.length % 4);
1842
+ return Buffer.from(normalized + padding, "base64");
1843
+ }
1844
+
1845
+ // src/webhook-guards.ts
1846
+ var import_connect9 = require("@edge-markets/connect");
1847
+ function isTransferWebhookEvent(event) {
1848
+ return event.type.startsWith("transfer.");
1849
+ }
1850
+ function assertTransferEventMatchesIntent(event, intent) {
1851
+ if (!isTransferWebhookEvent(event)) {
1852
+ throw new import_connect9.EdgeValidationError("Webhook event is not a transfer event", {
1853
+ type: [`Received ${event.type}`]
1854
+ });
1855
+ }
1856
+ const data = event.data;
1857
+ const errors = {};
1858
+ if (data.transferId !== intent.transferId) {
1859
+ errors.transferId = [`Expected ${intent.transferId}, received ${data.transferId}`];
1860
+ }
1861
+ if (intent.type && data.type !== intent.type) {
1862
+ errors.type = [`Expected ${intent.type}, received ${data.type}`];
1863
+ }
1864
+ if (intent.status && data.status !== intent.status) {
1865
+ errors.status = [`Expected ${intent.status}, received ${data.status}`];
1866
+ }
1867
+ if (intent.amount !== void 0) {
1868
+ const expectedAmount = normalizeMoneyAmount(intent.amount);
1869
+ const receivedAmount = normalizeMoneyAmount(data.amount);
1870
+ if (receivedAmount !== expectedAmount) {
1871
+ errors.amount = [`Expected ${expectedAmount}, received ${receivedAmount}`];
1872
+ }
1873
+ }
1874
+ if (Object.keys(errors).length > 0) {
1875
+ throw new import_connect9.EdgeValidationError("Webhook transfer event does not match expected transfer intent", errors);
1876
+ }
1877
+ }
1878
+
1879
+ // src/webhook-parser.ts
1880
+ var import_connect10 = require("@edge-markets/connect");
1881
+
824
1882
  // src/webhook-signing.ts
825
- var import_node_crypto = __toESM(require("crypto"));
1883
+ var import_node_crypto3 = __toESM(require("crypto"));
826
1884
  function verifyWebhookSignature(header, body, secret, options = {}) {
827
1885
  if (typeof header !== "string" || typeof body !== "string" || typeof secret !== "string") {
828
1886
  return false;
@@ -839,20 +1897,171 @@ function verifyWebhookSignature(header, body, secret, options = {}) {
839
1897
  const now = Math.floor(Date.now() / 1e3);
840
1898
  if (Math.abs(now - timestamp) > toleranceSeconds) return false;
841
1899
  const signedContent = `${timestamp}.${body}`;
842
- const expectedHmac = import_node_crypto.default.createHmac("sha256", secret).update(signedContent).digest("hex");
1900
+ const expectedHmac = import_node_crypto3.default.createHmac("sha256", secret).update(signedContent).digest("hex");
843
1901
  try {
844
1902
  const sigBuf = Buffer.from(signature, "hex");
845
1903
  const expBuf = Buffer.from(expectedHmac, "hex");
846
1904
  if (sigBuf.length !== expBuf.length) return false;
847
- return import_node_crypto.default.timingSafeEqual(sigBuf, expBuf);
1905
+ return import_node_crypto3.default.timingSafeEqual(sigBuf, expBuf);
848
1906
  } catch {
849
1907
  return false;
850
1908
  }
851
1909
  }
852
1910
 
1911
+ // src/webhook-parser.ts
1912
+ var EVENT_TYPES = new Set(import_connect10.EDGE_WEBHOOK_EVENT_TYPES);
1913
+ var TRANSFER_TYPES = /* @__PURE__ */ new Set(["debit", "credit"]);
1914
+ function parseAndVerifyWebhook(options) {
1915
+ const body = normalizeRawBody(options.rawBody);
1916
+ const header = normalizeSignatureHeader(options.signatureHeader);
1917
+ const signatureTimestamp = extractWebhookSignatureTimestamp(header);
1918
+ if (!header || !signatureTimestamp) {
1919
+ throw new import_connect10.EdgeAuthenticationError("Missing or malformed EDGE webhook signature");
1920
+ }
1921
+ if (!verifyWebhookSignature(header, body, options.secret, { toleranceSeconds: options.toleranceSeconds })) {
1922
+ throw new import_connect10.EdgeAuthenticationError("Invalid EDGE webhook signature");
1923
+ }
1924
+ let parsed;
1925
+ try {
1926
+ parsed = JSON.parse(body);
1927
+ } catch {
1928
+ throw new import_connect10.EdgeValidationError("EDGE webhook body must be valid JSON", {
1929
+ rawBody: ["Unable to parse JSON after signature verification"]
1930
+ });
1931
+ }
1932
+ const event = validateEdgeWebhookEvent(parsed);
1933
+ return {
1934
+ event,
1935
+ eventId: event.id,
1936
+ eventType: event.type,
1937
+ signatureTimestamp,
1938
+ receivedAt: options.receivedAt ?? /* @__PURE__ */ new Date()
1939
+ };
1940
+ }
1941
+ function extractWebhookSignatureTimestamp(header) {
1942
+ const normalizedHeader = normalizeSignatureHeader(header);
1943
+ if (!normalizedHeader) return void 0;
1944
+ const part = normalizedHeader.split(",").map((value) => value.trim()).find((value) => value.startsWith("t="));
1945
+ if (!part) return void 0;
1946
+ const timestamp = Number(part.slice(2));
1947
+ if (!Number.isInteger(timestamp) || timestamp <= 0) return void 0;
1948
+ return timestamp;
1949
+ }
1950
+ function isEdgeWebhookEvent(value) {
1951
+ try {
1952
+ validateEdgeWebhookEvent(value);
1953
+ return true;
1954
+ } catch {
1955
+ return false;
1956
+ }
1957
+ }
1958
+ function validateEdgeWebhookEvent(value) {
1959
+ const errors = {};
1960
+ if (!isRecord(value)) {
1961
+ throw new import_connect10.EdgeValidationError("EDGE webhook event must be an object", {
1962
+ event: ["Expected JSON object"]
1963
+ });
1964
+ }
1965
+ const id = value.id;
1966
+ const type = value.type;
1967
+ const createdAt = value.created_at;
1968
+ const data = value.data;
1969
+ if (typeof id !== "string" || !id.trim()) {
1970
+ errors.id = ["Required string"];
1971
+ }
1972
+ if (typeof type !== "string" || !EVENT_TYPES.has(type)) {
1973
+ errors.type = [`Must be one of: ${import_connect10.EDGE_WEBHOOK_EVENT_TYPES.join(", ")}`];
1974
+ }
1975
+ if (typeof createdAt !== "string" || !createdAt.trim() || Number.isNaN(Date.parse(createdAt))) {
1976
+ errors.created_at = ["Required ISO 8601 timestamp string"];
1977
+ }
1978
+ if (!isRecord(data)) {
1979
+ errors.data = ["Required object"];
1980
+ }
1981
+ if (Object.keys(errors).length === 0) {
1982
+ validateKnownEventData(type, data, errors);
1983
+ }
1984
+ if (Object.keys(errors).length > 0) {
1985
+ throw new import_connect10.EdgeValidationError("Invalid EDGE webhook event", errors);
1986
+ }
1987
+ return value;
1988
+ }
1989
+ function validateKnownEventData(type, data, errors) {
1990
+ switch (type) {
1991
+ case "transfer.completed":
1992
+ validateTransferEventData(data, "completed", errors);
1993
+ return;
1994
+ case "transfer.failed":
1995
+ validateTransferEventData(data, "failed", errors);
1996
+ if (data.reason !== void 0 && typeof data.reason !== "string") {
1997
+ errors["data.reason"] = ["Must be a string when provided"];
1998
+ }
1999
+ return;
2000
+ case "transfer.expired":
2001
+ validateTransferEventData(data, "expired", errors);
2002
+ return;
2003
+ case "transfer.processing":
2004
+ validateTransferEventData(data, "processing", errors);
2005
+ return;
2006
+ case "consent.revoked":
2007
+ validateRequiredString(data, "userId", errors);
2008
+ validateRequiredString(data, "clientId", errors);
2009
+ validateRequiredIsoTimestamp(data, "revokedAt", errors);
2010
+ return;
2011
+ default: {
2012
+ const exhaustive = type;
2013
+ throw new import_connect10.EdgeValidationError("Unsupported EDGE webhook event type", {
2014
+ type: [`Unsupported event type: ${exhaustive}`]
2015
+ });
2016
+ }
2017
+ }
2018
+ }
2019
+ function validateTransferEventData(data, status, errors) {
2020
+ validateRequiredString(data, "transferId", errors);
2021
+ if (data.status !== status) {
2022
+ errors["data.status"] = [`Must be "${status}" for this event type`];
2023
+ }
2024
+ if (typeof data.type !== "string" || !TRANSFER_TYPES.has(data.type)) {
2025
+ errors["data.type"] = ['Must be "debit" or "credit"'];
2026
+ }
2027
+ validateRequiredString(data, "amount", errors);
2028
+ }
2029
+ function validateRequiredString(data, field, errors) {
2030
+ if (typeof data[field] !== "string" || !data[field].trim()) {
2031
+ errors[`data.${field}`] = ["Required string"];
2032
+ }
2033
+ }
2034
+ function validateRequiredIsoTimestamp(data, field, errors) {
2035
+ if (typeof data[field] !== "string" || !data[field].trim() || Number.isNaN(Date.parse(data[field]))) {
2036
+ errors[`data.${field}`] = ["Required ISO 8601 timestamp string"];
2037
+ }
2038
+ }
2039
+ function normalizeRawBody(rawBody) {
2040
+ if (typeof rawBody === "string") {
2041
+ return rawBody;
2042
+ }
2043
+ if (Buffer.isBuffer(rawBody) || rawBody instanceof Uint8Array) {
2044
+ return Buffer.from(rawBody).toString("utf8");
2045
+ }
2046
+ throw new import_connect10.EdgeValidationError("EDGE webhook raw body is required", {
2047
+ rawBody: ["Pass the raw UTF-8 request body, not a parsed JSON object"]
2048
+ });
2049
+ }
2050
+ function normalizeSignatureHeader(header) {
2051
+ if (Array.isArray(header)) {
2052
+ return header.map((value) => value.trim()).filter(Boolean).join(",");
2053
+ }
2054
+ if (typeof header !== "string") return void 0;
2055
+ const trimmed = header.trim();
2056
+ return trimmed || void 0;
2057
+ }
2058
+ function isRecord(value) {
2059
+ return !!value && typeof value === "object" && !Array.isArray(value);
2060
+ }
2061
+
853
2062
  // src/index.ts
854
- var import_connect3 = require("@edge-markets/connect");
855
- var import_connect4 = require("@edge-markets/connect");
2063
+ var import_connect11 = require("@edge-markets/connect");
2064
+ var import_connect12 = require("@edge-markets/connect");
856
2065
  // Annotate the CommonJS export names for ESM import in node:
857
2066
  0 && (module.exports = {
858
2067
  EDGE_WEBHOOK_EVENT_TYPES,
@@ -866,15 +2075,39 @@ var import_connect4 = require("@edge-markets/connect");
866
2075
  EdgeNetworkError,
867
2076
  EdgeNotFoundError,
868
2077
  EdgeTokenExchangeError,
2078
+ EdgeTokenVault,
869
2079
  EdgeUserClient,
2080
+ EdgeUserSession,
2081
+ EdgeValidationError,
2082
+ EdgeWebhookReconciler,
870
2083
  TRANSFER_CATEGORIES,
2084
+ assertSameTransferIntent,
2085
+ assertTransferEventMatchesIntent,
2086
+ buildVerifyIdentityPayload,
2087
+ createEdgeConnectServerFromEnv,
2088
+ createEdgeTokenVault,
2089
+ createEdgeUserSession,
2090
+ createTransferIdempotencyKey,
2091
+ createWebhookReconciler,
2092
+ evaluateIdentityResult,
2093
+ extractWebhookSignatureTimestamp,
871
2094
  getEnvironmentConfig,
872
2095
  isApiError,
873
2096
  isAuthenticationError,
874
2097
  isConsentRequiredError,
875
2098
  isEdgeError,
2099
+ isEdgeTokenVaultEnvelope,
2100
+ isEdgeWebhookEvent,
876
2101
  isIdentityVerificationError,
877
2102
  isNetworkError,
878
2103
  isProductionEnvironment,
2104
+ isTransferWebhookEvent,
2105
+ normalizeMoneyAmount,
2106
+ parseAndVerifyWebhook,
2107
+ startTransferVerification,
2108
+ toEdgeHttpError,
2109
+ toEdgeProblemJson,
2110
+ validateEdgeWebhookEvent,
2111
+ validateTransferAmount,
879
2112
  verifyWebhookSignature
880
2113
  });