arky-sdk 0.4.48 → 0.4.49

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.cjs CHANGED
@@ -1378,7 +1378,6 @@ function createEventsApi(apiConfig) {
1378
1378
  return apiConfig.httpClient.get(`/v1/events`, {
1379
1379
  ...options,
1380
1380
  params: {
1381
- businessId: apiConfig.businessId,
1382
1381
  entity: params.entity,
1383
1382
  limit: params.limit,
1384
1383
  cursor: params.cursor
@@ -1389,7 +1388,7 @@ function createEventsApi(apiConfig) {
1389
1388
  return apiConfig.httpClient.put(
1390
1389
  `/v1/events/${params.eventId}`,
1391
1390
  {
1392
- businessId: apiConfig.businessId,
1391
+ eventId: params.eventId,
1393
1392
  event: params.event
1394
1393
  },
1395
1394
  options