@finsys/core 1.5.1 → 1.6.0
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 +10 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -1
- package/dist/index.d.ts +11 -1
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -42,6 +42,7 @@ __export(index_exports, {
|
|
|
42
42
|
FormFieldValidator: () => FormFieldValidator,
|
|
43
43
|
FormSpec: () => FormSpec,
|
|
44
44
|
IhsValueFormat: () => IhsValueFormat,
|
|
45
|
+
Role: () => Role,
|
|
45
46
|
applyDynamicTitles: () => applyDynamicTitles,
|
|
46
47
|
buildFileFieldTables: () => buildFileFieldTables,
|
|
47
48
|
evaluateExpression: () => evaluateExpression,
|
|
@@ -9608,6 +9609,14 @@ function groupDetailsByCategory(details) {
|
|
|
9608
9609
|
}))
|
|
9609
9610
|
}));
|
|
9610
9611
|
}
|
|
9612
|
+
|
|
9613
|
+
// src/roles.ts
|
|
9614
|
+
var Role = /* @__PURE__ */ ((Role2) => {
|
|
9615
|
+
Role2["ADMIN"] = "Admin";
|
|
9616
|
+
Role2["BORROWER_AGENT"] = "Borrower Agent";
|
|
9617
|
+
Role2["LENDER_AGENT"] = "Lender Agent";
|
|
9618
|
+
return Role2;
|
|
9619
|
+
})(Role || {});
|
|
9611
9620
|
// Annotate the CommonJS export names for ESM import in node:
|
|
9612
9621
|
0 && (module.exports = {
|
|
9613
9622
|
BASE_FIELD_SPECS,
|
|
@@ -9622,6 +9631,7 @@ function groupDetailsByCategory(details) {
|
|
|
9622
9631
|
FormFieldValidator,
|
|
9623
9632
|
FormSpec,
|
|
9624
9633
|
IhsValueFormat,
|
|
9634
|
+
Role,
|
|
9625
9635
|
applyDynamicTitles,
|
|
9626
9636
|
buildFileFieldTables,
|
|
9627
9637
|
evaluateExpression,
|