ProForms ACF Integration

I’m trying to replace an ACF Form with a ProForms version, however, the current form has 2 repeater input fields that are populated by a javascript that adds rows to each of the repeaters, so by the time the user is able to enter data, there are already some fields completed.

I do this with;

async function addFacesCoords(sortedImageDetails) {
    const repeater = acf.getField("field_6792093f9786e");
    /*debugger;*/
    for (const [index, details] of sortedImageDetails.entries()) {
      try {
        // Add row and wait for both addition and initialization
        new Promise((resolve) => {
          const $row = repeater.add({});..........```

Is there any way to achieve this in ProForms?
Many thanks