@verdocs/js-sdk 4.2.82 → 4.2.83

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.mjs CHANGED
@@ -2265,7 +2265,7 @@ const updateOrganizationThumbnail = (endpoint, organizationId, file, onUploadPro
2265
2265
  * ```
2266
2266
  */
2267
2267
  const getWebhooks = (endpoint) => endpoint.api //
2268
- .get(`/v2/webhooks/organization`)
2268
+ .get(`/v2/webhooks`)
2269
2269
  .then((r) => r.data);
2270
2270
  /**
2271
2271
  * Update the registered Webhook configuration for the caller's organization. Note that
@@ -2279,7 +2279,7 @@ const getWebhooks = (endpoint) => endpoint.api //
2279
2279
  * ```
2280
2280
  */
2281
2281
  const setWebhooks = (endpoint, params) => endpoint.api //
2282
- .patch(`/v2/webhooks/organization`, params)
2282
+ .patch(`/v2/webhooks`, params)
2283
2283
  .then((r) => r.data);
2284
2284
 
2285
2285
  /**