@hello-bill/node 1.0.3 → 1.0.4
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/express/index.d.cts +1 -1
- package/dist/express/index.d.ts +1 -1
- package/dist/express/index.js +29 -3
- package/dist/express/index.js.map +1 -1
- package/dist/express/index.mjs +29 -3
- package/dist/express/index.mjs.map +1 -1
- package/dist/hono/index.d.cts +1 -1
- package/dist/hono/index.d.ts +1 -1
- package/dist/hono/index.js +28 -12
- package/dist/hono/index.js.map +1 -1
- package/dist/hono/index.mjs +28 -12
- package/dist/hono/index.mjs.map +1 -1
- package/dist/{index-EXetQn1f.d.ts → index-C2MzlH64.d.ts} +11 -1
- package/dist/{index-BrfG82zs.d.cts → index-YlknV1_H.d.cts} +11 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +14 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -3
- package/dist/index.mjs.map +1 -1
- package/dist/koa/index.d.cts +1 -1
- package/dist/koa/index.d.ts +1 -1
- package/dist/koa/index.js +28 -11
- package/dist/koa/index.js.map +1 -1
- package/dist/koa/index.mjs +28 -11
- package/dist/koa/index.mjs.map +1 -1
- package/dist/next/index.d.cts +1 -1
- package/dist/next/index.d.ts +1 -1
- package/dist/next/index.js +19 -4
- package/dist/next/index.js.map +1 -1
- package/dist/next/index.mjs +19 -4
- package/dist/next/index.mjs.map +1 -1
- package/dist/webhook/index.d.cts +1 -1
- package/dist/webhook/index.d.ts +1 -1
- package/dist/webhook/index.js +14 -2
- package/dist/webhook/index.js.map +1 -1
- package/dist/webhook/index.mjs +14 -3
- package/dist/webhook/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -200,6 +200,16 @@ interface WebhookHandlerOptions {
|
|
|
200
200
|
*/
|
|
201
201
|
now?: () => number;
|
|
202
202
|
}
|
|
203
|
+
/**
|
|
204
|
+
* Thrown by `assertNever` when an event arrives whose `type` is not in the
|
|
205
|
+
* known union — typically a newer platform event that this SDK version does
|
|
206
|
+
* not yet handle. The `code` discriminator lets partners identify this class
|
|
207
|
+
* of error in log aggregation without an `instanceof` check.
|
|
208
|
+
*/
|
|
209
|
+
declare class UnknownWebhookEventError extends Error {
|
|
210
|
+
readonly code: "webhook.unknown_event_type";
|
|
211
|
+
constructor(eventType: string);
|
|
212
|
+
}
|
|
203
213
|
/**
|
|
204
214
|
* Creates the framework-agnostic webhook receive handler. Returns a function
|
|
205
215
|
* matching the same `HellobillRequest`/`HellobillResponse` shape used by the
|
|
@@ -338,4 +348,4 @@ interface HellobillHandlerSet {
|
|
|
338
348
|
|
|
339
349
|
declare function createHellobillHandler(opts: CreateHellobillHandlerOptions): HellobillHandlerSet;
|
|
340
350
|
|
|
341
|
-
export { type CreateHellobillHandlerOptions as C, type HellobillHandlerSet as H, InMemoryTokenStorage as I, type Logger as L, type TokenStorage as T, type VerifyWebhookOptions as V, type WebhookDedupeStore as W, type HellobillRequest as a, type HellobillResponse as b, InMemoryWebhookDedupeStore as c, TokenManager as d, type TokenManagerOptions as e, type WebhookHandlerContext as f, type WebhookHandlerOptions as g, type WebhookHandlers as h, WebhookVerificationError as i, createHellobillHandler as j, createWebhookHandler as k, verifyWebhookSignature as l, verifyWebhook as v };
|
|
351
|
+
export { type CreateHellobillHandlerOptions as C, type HellobillHandlerSet as H, InMemoryTokenStorage as I, type Logger as L, type TokenStorage as T, UnknownWebhookEventError as U, type VerifyWebhookOptions as V, type WebhookDedupeStore as W, type HellobillRequest as a, type HellobillResponse as b, InMemoryWebhookDedupeStore as c, TokenManager as d, type TokenManagerOptions as e, type WebhookHandlerContext as f, type WebhookHandlerOptions as g, type WebhookHandlers as h, WebhookVerificationError as i, createHellobillHandler as j, createWebhookHandler as k, verifyWebhookSignature as l, verifyWebhook as v };
|
|
@@ -200,6 +200,16 @@ interface WebhookHandlerOptions {
|
|
|
200
200
|
*/
|
|
201
201
|
now?: () => number;
|
|
202
202
|
}
|
|
203
|
+
/**
|
|
204
|
+
* Thrown by `assertNever` when an event arrives whose `type` is not in the
|
|
205
|
+
* known union — typically a newer platform event that this SDK version does
|
|
206
|
+
* not yet handle. The `code` discriminator lets partners identify this class
|
|
207
|
+
* of error in log aggregation without an `instanceof` check.
|
|
208
|
+
*/
|
|
209
|
+
declare class UnknownWebhookEventError extends Error {
|
|
210
|
+
readonly code: "webhook.unknown_event_type";
|
|
211
|
+
constructor(eventType: string);
|
|
212
|
+
}
|
|
203
213
|
/**
|
|
204
214
|
* Creates the framework-agnostic webhook receive handler. Returns a function
|
|
205
215
|
* matching the same `HellobillRequest`/`HellobillResponse` shape used by the
|
|
@@ -338,4 +348,4 @@ interface HellobillHandlerSet {
|
|
|
338
348
|
|
|
339
349
|
declare function createHellobillHandler(opts: CreateHellobillHandlerOptions): HellobillHandlerSet;
|
|
340
350
|
|
|
341
|
-
export { type CreateHellobillHandlerOptions as C, type HellobillHandlerSet as H, InMemoryTokenStorage as I, type Logger as L, type TokenStorage as T, type VerifyWebhookOptions as V, type WebhookDedupeStore as W, type HellobillRequest as a, type HellobillResponse as b, InMemoryWebhookDedupeStore as c, TokenManager as d, type TokenManagerOptions as e, type WebhookHandlerContext as f, type WebhookHandlerOptions as g, type WebhookHandlers as h, WebhookVerificationError as i, createHellobillHandler as j, createWebhookHandler as k, verifyWebhookSignature as l, verifyWebhook as v };
|
|
351
|
+
export { type CreateHellobillHandlerOptions as C, type HellobillHandlerSet as H, InMemoryTokenStorage as I, type Logger as L, type TokenStorage as T, UnknownWebhookEventError as U, type VerifyWebhookOptions as V, type WebhookDedupeStore as W, type HellobillRequest as a, type HellobillResponse as b, InMemoryWebhookDedupeStore as c, TokenManager as d, type TokenManagerOptions as e, type WebhookHandlerContext as f, type WebhookHandlerOptions as g, type WebhookHandlers as h, WebhookVerificationError as i, createHellobillHandler as j, createWebhookHandler as k, verifyWebhookSignature as l, verifyWebhook as v };
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { T as TokenStorage, L as Logger } from './index-
|
|
2
|
-
export { C as CreateHellobillHandlerOptions, H as HellobillHandlerSet, a as HellobillRequest, b as HellobillResponse, I as InMemoryTokenStorage, c as InMemoryWebhookDedupeStore, d as TokenManager, e as TokenManagerOptions, V as VerifyWebhookOptions, W as WebhookDedupeStore, f as WebhookHandlerContext, g as WebhookHandlerOptions, h as WebhookHandlers, i as WebhookVerificationError, j as createHellobillHandler, k as createWebhookHandler, v as verifyWebhook, l as verifyWebhookSignature } from './index-
|
|
1
|
+
import { T as TokenStorage, L as Logger } from './index-YlknV1_H.cjs';
|
|
2
|
+
export { C as CreateHellobillHandlerOptions, H as HellobillHandlerSet, a as HellobillRequest, b as HellobillResponse, I as InMemoryTokenStorage, c as InMemoryWebhookDedupeStore, d as TokenManager, e as TokenManagerOptions, U as UnknownWebhookEventError, V as VerifyWebhookOptions, W as WebhookDedupeStore, f as WebhookHandlerContext, g as WebhookHandlerOptions, h as WebhookHandlers, i as WebhookVerificationError, j as createHellobillHandler, k as createWebhookHandler, v as verifyWebhook, l as verifyWebhookSignature } from './index-YlknV1_H.cjs';
|
|
3
3
|
import { R as RequestId, S as SessionPayload, a as SessionResponse, b as SessionGetResponse, P as ProductsQuery, c as ProductsResponse, d as PropertyDetailResponse, L as LoaListResponse, C as CreateCustomerInput, e as CustomerCreateResponse, f as CustomerId, g as CustomerStatusResponse, B as BankDetailsRequest, h as BankDetailsResponse } from './webhooks-DPpqf7d2.cjs';
|
|
4
4
|
export { A as Address, i as AddressObject, j as AddressesObject, k as ApiVersion, l as AppDeeplinks, m as BankDetailsCollected, n as BankDetailsConsent, o as BankDetailsObject, p as BankDetailsStatus, q as BillType, r as BreakdownCoverProduct, s as BroadbandProduct, t as BuildingStyle, u as BuildingType, v as CacheStatus, w as ClientMode, x as Consent, y as ContextEntry, z as CouncilTaxProduct, D as Customer, E as CustomerType, F as DataCompleteness, G as DiscoveryStatus, H as Email, I as EnergyProduct, J as Environment, K as EpcRating, M as FinalRead, N as FuelType, O as HeatingType, Q as HomeInsuranceProduct, T as IdempotencyKey, U as IsoDate, V as IsoDateTime, W as LoASignature, X as LoaId, Y as LoaRecord, Z as LocationRole, _ as MaskedSortCode, $ as Meters, a0 as MobileProduct, a1 as MoveIn, a2 as MoveObject, a3 as MoveOut, a4 as MoveOutNotificationFailed, a5 as MoveOutNotificationSent, a6 as MoveOutNotifyFlags, a7 as MoveOutReason, a8 as MoveOutStatus, a9 as NearbyPoi, aa as OccupantObject, ab as OccupantType, ac as OnboardingInfo, ad as OverallStatus, ae as Paginated, af as Person, ag as PhoneNumber, ah as Postcode, ai as Product, aj as ProductBase, ak as ProductCategory, al as ProductConfidence, am as ProductId, an as ProductSetup, ao as PropertyDetailObject, ap as PropertyLocation, aq as PropertyObject, ar as PropertyType, as as PropertyTypeCode, at as PropertyTypeSubcode, au as ProvidedFieldPath, av as SESSION_IDEMPOTENCY_TTL_MS, aw as SavingsSummaryResponse, ax as SelectedProduct, ay as SessionAccountCreated, az as SessionAppDeferred, aA as SessionAppInstalled, aB as SessionDetailsConfirmed, aC as SessionEmbedOpened, aD as SessionLoaSigned, aE as SessionProductsSelected, aF as SetupStatus, aG as SetupStatusChanged, aH as SignatureImage, aI as StoredBankDetails, aJ as SubscriptionChanged, aK as SubscriptionStatus, aL as TvLicenceProduct, aM as Url, aN as WaterProduct, aO as WebhookEvent, aP as WebhookEventBase, aQ as WebhookEventId, aR as WebhookEventType } from './webhooks-DPpqf7d2.cjs';
|
|
5
5
|
import { ErrorEnvelope } from './types/index.cjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { T as TokenStorage, L as Logger } from './index-
|
|
2
|
-
export { C as CreateHellobillHandlerOptions, H as HellobillHandlerSet, a as HellobillRequest, b as HellobillResponse, I as InMemoryTokenStorage, c as InMemoryWebhookDedupeStore, d as TokenManager, e as TokenManagerOptions, V as VerifyWebhookOptions, W as WebhookDedupeStore, f as WebhookHandlerContext, g as WebhookHandlerOptions, h as WebhookHandlers, i as WebhookVerificationError, j as createHellobillHandler, k as createWebhookHandler, v as verifyWebhook, l as verifyWebhookSignature } from './index-
|
|
1
|
+
import { T as TokenStorage, L as Logger } from './index-C2MzlH64.js';
|
|
2
|
+
export { C as CreateHellobillHandlerOptions, H as HellobillHandlerSet, a as HellobillRequest, b as HellobillResponse, I as InMemoryTokenStorage, c as InMemoryWebhookDedupeStore, d as TokenManager, e as TokenManagerOptions, U as UnknownWebhookEventError, V as VerifyWebhookOptions, W as WebhookDedupeStore, f as WebhookHandlerContext, g as WebhookHandlerOptions, h as WebhookHandlers, i as WebhookVerificationError, j as createHellobillHandler, k as createWebhookHandler, v as verifyWebhook, l as verifyWebhookSignature } from './index-C2MzlH64.js';
|
|
3
3
|
import { R as RequestId, S as SessionPayload, a as SessionResponse, b as SessionGetResponse, P as ProductsQuery, c as ProductsResponse, d as PropertyDetailResponse, L as LoaListResponse, C as CreateCustomerInput, e as CustomerCreateResponse, f as CustomerId, g as CustomerStatusResponse, B as BankDetailsRequest, h as BankDetailsResponse } from './webhooks-DPpqf7d2.js';
|
|
4
4
|
export { A as Address, i as AddressObject, j as AddressesObject, k as ApiVersion, l as AppDeeplinks, m as BankDetailsCollected, n as BankDetailsConsent, o as BankDetailsObject, p as BankDetailsStatus, q as BillType, r as BreakdownCoverProduct, s as BroadbandProduct, t as BuildingStyle, u as BuildingType, v as CacheStatus, w as ClientMode, x as Consent, y as ContextEntry, z as CouncilTaxProduct, D as Customer, E as CustomerType, F as DataCompleteness, G as DiscoveryStatus, H as Email, I as EnergyProduct, J as Environment, K as EpcRating, M as FinalRead, N as FuelType, O as HeatingType, Q as HomeInsuranceProduct, T as IdempotencyKey, U as IsoDate, V as IsoDateTime, W as LoASignature, X as LoaId, Y as LoaRecord, Z as LocationRole, _ as MaskedSortCode, $ as Meters, a0 as MobileProduct, a1 as MoveIn, a2 as MoveObject, a3 as MoveOut, a4 as MoveOutNotificationFailed, a5 as MoveOutNotificationSent, a6 as MoveOutNotifyFlags, a7 as MoveOutReason, a8 as MoveOutStatus, a9 as NearbyPoi, aa as OccupantObject, ab as OccupantType, ac as OnboardingInfo, ad as OverallStatus, ae as Paginated, af as Person, ag as PhoneNumber, ah as Postcode, ai as Product, aj as ProductBase, ak as ProductCategory, al as ProductConfidence, am as ProductId, an as ProductSetup, ao as PropertyDetailObject, ap as PropertyLocation, aq as PropertyObject, ar as PropertyType, as as PropertyTypeCode, at as PropertyTypeSubcode, au as ProvidedFieldPath, av as SESSION_IDEMPOTENCY_TTL_MS, aw as SavingsSummaryResponse, ax as SelectedProduct, ay as SessionAccountCreated, az as SessionAppDeferred, aA as SessionAppInstalled, aB as SessionDetailsConfirmed, aC as SessionEmbedOpened, aD as SessionLoaSigned, aE as SessionProductsSelected, aF as SetupStatus, aG as SetupStatusChanged, aH as SignatureImage, aI as StoredBankDetails, aJ as SubscriptionChanged, aK as SubscriptionStatus, aL as TvLicenceProduct, aM as Url, aN as WaterProduct, aO as WebhookEvent, aP as WebhookEventBase, aQ as WebhookEventId, aR as WebhookEventType } from './webhooks-DPpqf7d2.js';
|
|
5
5
|
import { ErrorEnvelope } from './types/index.js';
|
package/dist/index.js
CHANGED
|
@@ -432,8 +432,16 @@ var InMemoryWebhookDedupeStore = class {
|
|
|
432
432
|
};
|
|
433
433
|
|
|
434
434
|
// src/webhook/handler.ts
|
|
435
|
+
var UnknownWebhookEventError = class extends Error {
|
|
436
|
+
code = "webhook.unknown_event_type";
|
|
437
|
+
constructor(eventType) {
|
|
438
|
+
super(`Unhandled webhook event type: ${eventType}`);
|
|
439
|
+
this.name = "UnknownWebhookEventError";
|
|
440
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
441
|
+
}
|
|
442
|
+
};
|
|
435
443
|
function assertNever(x) {
|
|
436
|
-
throw new
|
|
444
|
+
throw new UnknownWebhookEventError(x.type ?? JSON.stringify(x));
|
|
437
445
|
}
|
|
438
446
|
var noopLogger = {
|
|
439
447
|
debug: () => {
|
|
@@ -598,7 +606,10 @@ function createWebhookHandler(opts) {
|
|
|
598
606
|
safeLogger.error("hellobill.webhook.handler_error", {
|
|
599
607
|
event_id: event.id,
|
|
600
608
|
event_type: event.type,
|
|
601
|
-
message: err.message
|
|
609
|
+
message: err.message,
|
|
610
|
+
// Include the typed error code when present so partners can identify
|
|
611
|
+
// known error classes (e.g. unknown event type) in log aggregation.
|
|
612
|
+
...err != null && typeof err === "object" && "code" in err ? { code: err.code } : {}
|
|
602
613
|
});
|
|
603
614
|
});
|
|
604
615
|
};
|
|
@@ -1166,6 +1177,7 @@ exports.HellobillApiError = HellobillApiError;
|
|
|
1166
1177
|
exports.InMemoryTokenStorage = InMemoryTokenStorage;
|
|
1167
1178
|
exports.InMemoryWebhookDedupeStore = InMemoryWebhookDedupeStore;
|
|
1168
1179
|
exports.TokenManager = TokenManager;
|
|
1180
|
+
exports.UnknownWebhookEventError = UnknownWebhookEventError;
|
|
1169
1181
|
exports.WebhookVerificationError = WebhookVerificationError;
|
|
1170
1182
|
exports.buildOnboardingInfo = buildOnboardingInfo;
|
|
1171
1183
|
exports.createHellobillHandler = createHellobillHandler;
|