@blackcode_sa/metaestetics-api 1.7.1 → 1.7.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.
@@ -1425,6 +1425,7 @@ interface LinkedFormInfo {
1425
1425
  title: string;
1426
1426
  isUserForm: boolean;
1427
1427
  isRequired?: boolean;
1428
+ sortingOrder?: number;
1428
1429
  status: FilledDocumentStatus;
1429
1430
  path: string;
1430
1431
  submittedAt?: Timestamp;
@@ -1425,6 +1425,7 @@ interface LinkedFormInfo {
1425
1425
  title: string;
1426
1426
  isUserForm: boolean;
1427
1427
  isRequired?: boolean;
1428
+ sortingOrder?: number;
1428
1429
  status: FilledDocumentStatus;
1429
1430
  path: string;
1430
1431
  submittedAt?: Timestamp;
@@ -4833,6 +4833,7 @@ var DocumentManagerAdminService = class {
4833
4833
  title: template.title,
4834
4834
  isUserForm: filledDocumentData.isUserForm,
4835
4835
  isRequired: filledDocumentData.isRequired,
4836
+ sortingOrder: templateRef.sortingOrder,
4836
4837
  status: filledDocumentData.status,
4837
4838
  path: docRef.path
4838
4839
  };
@@ -4778,6 +4778,7 @@ var DocumentManagerAdminService = class {
4778
4778
  title: template.title,
4779
4779
  isUserForm: filledDocumentData.isUserForm,
4780
4780
  isRequired: filledDocumentData.isRequired,
4781
+ sortingOrder: templateRef.sortingOrder,
4781
4782
  status: filledDocumentData.status,
4782
4783
  path: docRef.path
4783
4784
  };