arky-sdk 0.7.76 → 0.7.78

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
@@ -1803,6 +1803,15 @@ var createActivityAdminApi = (apiConfig) => ({
1803
1803
  `/v1/businesses/${businessId}/activities/types`,
1804
1804
  options
1805
1805
  );
1806
+ },
1807
+ async countryBreakdown(params, options) {
1808
+ const businessId = params?.businessId || apiConfig.businessId;
1809
+ const queryParams = {};
1810
+ if (params?.windowSeconds !== void 0) queryParams.windowSeconds = params.windowSeconds;
1811
+ return apiConfig.httpClient.get(
1812
+ `/v1/businesses/${businessId}/activities/country-breakdown`,
1813
+ { ...options, params: queryParams }
1814
+ );
1806
1815
  }
1807
1816
  });
1808
1817
  var createCustomerApi = (apiConfig) => {