@delopay/sdk 0.66.0 → 0.66.1

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.d.cts CHANGED
@@ -955,6 +955,16 @@ interface ConnectorWebhookEntry {
955
955
  connector_webhook_id: string;
956
956
  /** Absent for registrations stored before environments were tracked (all live). */
957
957
  environment?: WebhookRegistrationEnvironment;
958
+ /** Callback URL the endpoint is registered to. Present when the list is
959
+ * sourced live from the connector (e.g. Stripe); absent for entries
960
+ * reconstructed from stored registration metadata only. */
961
+ webhook_url?: string;
962
+ /** Endpoint status as the connector reports it (e.g. `enabled`/`disabled`). */
963
+ status?: string;
964
+ /** Events the endpoint is subscribed to at the connector. */
965
+ enabled_events?: string[];
966
+ /** Unix timestamp (seconds) the endpoint was created at the connector. */
967
+ created_at?: number;
958
968
  }
959
969
  interface ConnectorWebhookListResponse {
960
970
  connector: string;
package/dist/index.d.ts CHANGED
@@ -955,6 +955,16 @@ interface ConnectorWebhookEntry {
955
955
  connector_webhook_id: string;
956
956
  /** Absent for registrations stored before environments were tracked (all live). */
957
957
  environment?: WebhookRegistrationEnvironment;
958
+ /** Callback URL the endpoint is registered to. Present when the list is
959
+ * sourced live from the connector (e.g. Stripe); absent for entries
960
+ * reconstructed from stored registration metadata only. */
961
+ webhook_url?: string;
962
+ /** Endpoint status as the connector reports it (e.g. `enabled`/`disabled`). */
963
+ status?: string;
964
+ /** Events the endpoint is subscribed to at the connector. */
965
+ enabled_events?: string[];
966
+ /** Unix timestamp (seconds) the endpoint was created at the connector. */
967
+ created_at?: number;
958
968
  }
959
969
  interface ConnectorWebhookListResponse {
960
970
  connector: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delopay/sdk",
3
- "version": "0.66.0",
3
+ "version": "0.66.1",
4
4
  "description": "Official Delopay TypeScript SDK",
5
5
  "type": "module",
6
6
  "sideEffects": false,