arky-sdk 0.7.11 → 0.7.13

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.js CHANGED
@@ -1665,7 +1665,7 @@ var createFormApi = (apiConfig) => {
1665
1665
  const targetBusinessId = params.businessId || apiConfig.businessId;
1666
1666
  return apiConfig.httpClient.post(
1667
1667
  `/v1/businesses/${targetBusinessId}/forms/${params.formId}/submissions`,
1668
- { formId: params.formId, businessId: targetBusinessId, blocks: params.blocks },
1668
+ { formId: params.formId, businessId: targetBusinessId, fields: params.fields },
1669
1669
  options
1670
1670
  );
1671
1671
  },