@dartcom/ui-kit 10.1.2 → 10.1.3

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
@@ -16829,6 +16829,10 @@ class ApiService {
16829
16829
  const response = await this.client.put(url, body, config);
16830
16830
  return response.data;
16831
16831
  }
16832
+ async patch({ url, body, config, }) {
16833
+ const response = await this.client.patch(url, body, config);
16834
+ return response.data;
16835
+ }
16832
16836
  async delete({ url, config, }) {
16833
16837
  const response = await this.client.delete(url, config);
16834
16838
  return response.data;