@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.d.cts
CHANGED
|
@@ -432,4 +432,14 @@ declare function buildFileFieldTables(ihsData: Record<string, unknown>): Record<
|
|
|
432
432
|
declare function processIhsDetails(ihsData: Record<string, unknown>): IhsFieldDetail[];
|
|
433
433
|
declare function groupDetailsByCategory(details: IhsFieldDetail[]): IhsDetailCategory[];
|
|
434
434
|
|
|
435
|
-
|
|
435
|
+
/**
|
|
436
|
+
* Program access roles — shared across finsys-api and finhub-adonisjs.
|
|
437
|
+
* Values must match the database enum column in the `programaccess` table.
|
|
438
|
+
*/
|
|
439
|
+
declare enum Role {
|
|
440
|
+
ADMIN = "Admin",
|
|
441
|
+
BORROWER_AGENT = "Borrower Agent",
|
|
442
|
+
LENDER_AGENT = "Lender Agent"
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
export { BASE_FIELD_SPECS, BasicFormField, type Category, type Choice, DEFAULT_VALIDATOR_DEFINITIONS, type DropdownOption, type EditorValidator, FIELD_TYPE_DEFINITIONS, type FieldData, type FieldGroup, type FieldReference, FieldType, type FileFieldTableData, type FileFieldTableItem, FileFieldTableType, FileFormField, FormField, FormFieldCategory, type FormFieldInputType, type FormFieldType, type FormFieldTypeDefinitions, FormFieldValidator, FormSpec, type FormValidatorDefinitions, type IhsDetailCategory, type IhsFieldDetail, IhsValueFormat, type PageConfig, type RHFSchemaOutput, type RHFStep, type ResolvedField, Role, type SurveyElementJSON, type SurveyJSON, type SurveyPageJSON, type UnifiedFormConfig, type Validator, applyDynamicTitles, buildFileFieldTables, evaluateExpression, extractTimePeriods, generateRHFSchema, generateSurveyJson, getBaseCategories, getBaseFieldNames, getBaseFieldSpecMap, getBaseFieldSpecs, getCategoryName, getDisplayName, getDisplayNames, getPastMonthLabel, getPastYearLabel, getStepDefaultValues, getStepSchema, groupColumnsByTimePeriod, groupDetailsByCategory, groupFieldsByCategory, groupFieldsByPattern, processIhsDetails, resolvePageFields, validateFormConfig, validateFormSpec, validatePagesConfig };
|
package/dist/index.d.ts
CHANGED
|
@@ -432,4 +432,14 @@ declare function buildFileFieldTables(ihsData: Record<string, unknown>): Record<
|
|
|
432
432
|
declare function processIhsDetails(ihsData: Record<string, unknown>): IhsFieldDetail[];
|
|
433
433
|
declare function groupDetailsByCategory(details: IhsFieldDetail[]): IhsDetailCategory[];
|
|
434
434
|
|
|
435
|
-
|
|
435
|
+
/**
|
|
436
|
+
* Program access roles — shared across finsys-api and finhub-adonisjs.
|
|
437
|
+
* Values must match the database enum column in the `programaccess` table.
|
|
438
|
+
*/
|
|
439
|
+
declare enum Role {
|
|
440
|
+
ADMIN = "Admin",
|
|
441
|
+
BORROWER_AGENT = "Borrower Agent",
|
|
442
|
+
LENDER_AGENT = "Lender Agent"
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
export { BASE_FIELD_SPECS, BasicFormField, type Category, type Choice, DEFAULT_VALIDATOR_DEFINITIONS, type DropdownOption, type EditorValidator, FIELD_TYPE_DEFINITIONS, type FieldData, type FieldGroup, type FieldReference, FieldType, type FileFieldTableData, type FileFieldTableItem, FileFieldTableType, FileFormField, FormField, FormFieldCategory, type FormFieldInputType, type FormFieldType, type FormFieldTypeDefinitions, FormFieldValidator, FormSpec, type FormValidatorDefinitions, type IhsDetailCategory, type IhsFieldDetail, IhsValueFormat, type PageConfig, type RHFSchemaOutput, type RHFStep, type ResolvedField, Role, type SurveyElementJSON, type SurveyJSON, type SurveyPageJSON, type UnifiedFormConfig, type Validator, applyDynamicTitles, buildFileFieldTables, evaluateExpression, extractTimePeriods, generateRHFSchema, generateSurveyJson, getBaseCategories, getBaseFieldNames, getBaseFieldSpecMap, getBaseFieldSpecs, getCategoryName, getDisplayName, getDisplayNames, getPastMonthLabel, getPastYearLabel, getStepDefaultValues, getStepSchema, groupColumnsByTimePeriod, groupDetailsByCategory, groupFieldsByCategory, groupFieldsByPattern, processIhsDetails, resolvePageFields, validateFormConfig, validateFormSpec, validatePagesConfig };
|
package/dist/index.js
CHANGED
|
@@ -9535,6 +9535,14 @@ function groupDetailsByCategory(details) {
|
|
|
9535
9535
|
}))
|
|
9536
9536
|
}));
|
|
9537
9537
|
}
|
|
9538
|
+
|
|
9539
|
+
// src/roles.ts
|
|
9540
|
+
var Role = /* @__PURE__ */ ((Role2) => {
|
|
9541
|
+
Role2["ADMIN"] = "Admin";
|
|
9542
|
+
Role2["BORROWER_AGENT"] = "Borrower Agent";
|
|
9543
|
+
Role2["LENDER_AGENT"] = "Lender Agent";
|
|
9544
|
+
return Role2;
|
|
9545
|
+
})(Role || {});
|
|
9538
9546
|
export {
|
|
9539
9547
|
BASE_FIELD_SPECS,
|
|
9540
9548
|
BasicFormField,
|
|
@@ -9548,6 +9556,7 @@ export {
|
|
|
9548
9556
|
FormFieldValidator,
|
|
9549
9557
|
FormSpec,
|
|
9550
9558
|
IhsValueFormat,
|
|
9559
|
+
Role,
|
|
9551
9560
|
applyDynamicTitles,
|
|
9552
9561
|
buildFileFieldTables,
|
|
9553
9562
|
evaluateExpression,
|