@overmap-ai/core 1.0.63-form-submission-fix.2 → 1.0.63-form-submission-fix.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.
|
@@ -5523,6 +5523,7 @@ var __publicField = (obj, key, value) => {
|
|
|
5523
5523
|
const attachmentPayload = {
|
|
5524
5524
|
offline_id: offlineFormRevisionAttachment.offline_id,
|
|
5525
5525
|
name: file.name,
|
|
5526
|
+
field_identifier: fieldIdentifier,
|
|
5526
5527
|
sha1
|
|
5527
5528
|
};
|
|
5528
5529
|
attachmentPayloads.push(attachmentPayload);
|
|
@@ -5878,7 +5879,8 @@ var __publicField = (obj, key, value) => {
|
|
|
5878
5879
|
const attachmentPayload = {
|
|
5879
5880
|
offline_id: offlineFormSubmissionAttachment.offline_id,
|
|
5880
5881
|
name: file.name,
|
|
5881
|
-
sha1
|
|
5882
|
+
sha1,
|
|
5883
|
+
field_identifier: fieldIdentifier
|
|
5882
5884
|
};
|
|
5883
5885
|
attachmentPayloads.push(attachmentPayload);
|
|
5884
5886
|
}
|