@shipengine/js-api 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/client.d.ts CHANGED
@@ -20,6 +20,7 @@ import { ShipmentsAPI } from "./shipments";
20
20
  import { ShippingRulesAPI } from "./shipping-rules";
21
21
  import { ThemesAPI } from "./themes";
22
22
  import { WarehousesAPI } from "./warehouses";
23
+ import { WebhooksAPI } from "./webhooks";
23
24
  /**
24
25
  * # ShipEngine API Client Headers
25
26
  */
@@ -188,6 +189,13 @@ export declare class ShipEngineAPI {
188
189
  * @see {@link ShippingRulesAPI | The Shipping Rules API module}
189
190
  */
190
191
  get shippingRules(): ShippingRulesAPI;
192
+ /**
193
+ * The `webhooks` method provides access to the Webhooks endpoints in ShipEngine
194
+ * API.
195
+ *
196
+ * @see {@link WebhooksAPI | The Webhooks API module}
197
+ */
198
+ get webhooks(): WebhooksAPI;
191
199
  /**
192
200
  * The `sellers` method provides access to the Sellers endpoints in ShipEngine
193
201
  * API.
package/index.d.ts CHANGED
@@ -24,6 +24,7 @@ export * from "./shipping-rules";
24
24
  export * from "./utilities";
25
25
  export * from "./themes";
26
26
  export * from "./warehouses";
27
+ export * from "./webhooks";
27
28
  export * from "./weight";
28
29
  export * from "./zones";
29
30
  export * from "./sellers";