@finsys/core 1.3.3 → 1.4.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/data/form-field-base-specs.json +180 -3
- package/dist/index.cjs +179 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +179 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1264,6 +1264,14 @@ var form_field_base_specs_default = {
|
|
|
1264
1264
|
{
|
|
1265
1265
|
id: "13",
|
|
1266
1266
|
name: "Document Upload"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
id: "14",
|
|
1270
|
+
name: "SSM Company Profile Data"
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
id: "15",
|
|
1274
|
+
name: "NRIC Data"
|
|
1267
1275
|
}
|
|
1268
1276
|
],
|
|
1269
1277
|
fields: [
|
|
@@ -1326,7 +1334,7 @@ var form_field_base_specs_default = {
|
|
|
1326
1334
|
title: "ID Number",
|
|
1327
1335
|
placeholder: "E.g. 700513065143",
|
|
1328
1336
|
isRequired: true,
|
|
1329
|
-
displayName: "IC Number",
|
|
1337
|
+
displayName: "IC Number (Manual Entry)",
|
|
1330
1338
|
maxLength: 25,
|
|
1331
1339
|
inputType: "text",
|
|
1332
1340
|
validators: [
|
|
@@ -7329,6 +7337,12 @@ var form_field_base_specs_default = {
|
|
|
7329
7337
|
max: 2100,
|
|
7330
7338
|
category: "12"
|
|
7331
7339
|
},
|
|
7340
|
+
{
|
|
7341
|
+
name: "makeOfVehicle",
|
|
7342
|
+
displayName: "Make of Vehicle",
|
|
7343
|
+
type: "text",
|
|
7344
|
+
category: "12"
|
|
7345
|
+
},
|
|
7332
7346
|
{
|
|
7333
7347
|
name: "permanentaddressLine1",
|
|
7334
7348
|
displayName: "Permanent Address Line 1",
|
|
@@ -8378,7 +8392,11 @@ var form_field_base_specs_default = {
|
|
|
8378
8392
|
displayName: "Form 9 / Section 17 / Form D",
|
|
8379
8393
|
type: "file",
|
|
8380
8394
|
enableIf: "{formOfDisclosure} contains 'consented'",
|
|
8381
|
-
ihs_column_names: [
|
|
8395
|
+
ihs_column_names: [
|
|
8396
|
+
"incorporatedDate",
|
|
8397
|
+
"companyName",
|
|
8398
|
+
"companyRegNo"
|
|
8399
|
+
],
|
|
8382
8400
|
category: "13"
|
|
8383
8401
|
},
|
|
8384
8402
|
{
|
|
@@ -8601,6 +8619,165 @@ var form_field_base_specs_default = {
|
|
|
8601
8619
|
"payslipOtherDeductionT6"
|
|
8602
8620
|
],
|
|
8603
8621
|
category: "13"
|
|
8622
|
+
},
|
|
8623
|
+
{
|
|
8624
|
+
name: "ic",
|
|
8625
|
+
displayName: "Identity Card (NRIC)",
|
|
8626
|
+
type: "file",
|
|
8627
|
+
ihs_column_names: [
|
|
8628
|
+
"icName",
|
|
8629
|
+
"icNumber",
|
|
8630
|
+
"icAddress",
|
|
8631
|
+
"icGender",
|
|
8632
|
+
"icReligion",
|
|
8633
|
+
"icDateOfBirth",
|
|
8634
|
+
"icPlaceOfBirth",
|
|
8635
|
+
"icNationality",
|
|
8636
|
+
"icRace"
|
|
8637
|
+
],
|
|
8638
|
+
category: "13"
|
|
8639
|
+
},
|
|
8640
|
+
{
|
|
8641
|
+
name: "ssmCompanyName",
|
|
8642
|
+
displayName: "Company Name (SSM Profile)",
|
|
8643
|
+
type: "text",
|
|
8644
|
+
category: "14"
|
|
8645
|
+
},
|
|
8646
|
+
{
|
|
8647
|
+
name: "ssmCompanyRegNo",
|
|
8648
|
+
displayName: "Company Registration No (SSM Profile)",
|
|
8649
|
+
type: "text",
|
|
8650
|
+
category: "14"
|
|
8651
|
+
},
|
|
8652
|
+
{
|
|
8653
|
+
name: "ssmIncorporatedDate",
|
|
8654
|
+
displayName: "Incorporated Date (SSM Profile)",
|
|
8655
|
+
type: "text",
|
|
8656
|
+
inputType: "date",
|
|
8657
|
+
category: "14"
|
|
8658
|
+
},
|
|
8659
|
+
{
|
|
8660
|
+
name: "businessCommencementDate",
|
|
8661
|
+
displayName: "Business Commencement Date",
|
|
8662
|
+
type: "text",
|
|
8663
|
+
inputType: "date",
|
|
8664
|
+
category: "14"
|
|
8665
|
+
},
|
|
8666
|
+
{
|
|
8667
|
+
name: "businessNature",
|
|
8668
|
+
displayName: "Business Nature",
|
|
8669
|
+
type: "text",
|
|
8670
|
+
category: "14"
|
|
8671
|
+
},
|
|
8672
|
+
{
|
|
8673
|
+
name: "companyStatus",
|
|
8674
|
+
displayName: "Company Status (SSM)",
|
|
8675
|
+
type: "text",
|
|
8676
|
+
category: "14"
|
|
8677
|
+
},
|
|
8678
|
+
{
|
|
8679
|
+
name: "shareholders",
|
|
8680
|
+
displayName: "Shareholders",
|
|
8681
|
+
type: "text",
|
|
8682
|
+
category: "14"
|
|
8683
|
+
},
|
|
8684
|
+
{
|
|
8685
|
+
name: "directors",
|
|
8686
|
+
displayName: "Directors",
|
|
8687
|
+
type: "text",
|
|
8688
|
+
category: "14"
|
|
8689
|
+
},
|
|
8690
|
+
{
|
|
8691
|
+
name: "previousDirectors",
|
|
8692
|
+
displayName: "Previous Directors",
|
|
8693
|
+
type: "text",
|
|
8694
|
+
category: "14"
|
|
8695
|
+
},
|
|
8696
|
+
{
|
|
8697
|
+
name: "totalShareIssued",
|
|
8698
|
+
displayName: "Total Shares Issued",
|
|
8699
|
+
type: "text",
|
|
8700
|
+
category: "14"
|
|
8701
|
+
},
|
|
8702
|
+
{
|
|
8703
|
+
name: "companyLastOldName",
|
|
8704
|
+
displayName: "Previous Company Name",
|
|
8705
|
+
type: "text",
|
|
8706
|
+
category: "14"
|
|
8707
|
+
},
|
|
8708
|
+
{
|
|
8709
|
+
name: "companyNameDateOfChange",
|
|
8710
|
+
displayName: "Company Name Change Date",
|
|
8711
|
+
type: "text",
|
|
8712
|
+
inputType: "date",
|
|
8713
|
+
category: "14"
|
|
8714
|
+
},
|
|
8715
|
+
{
|
|
8716
|
+
name: "businessOrigin",
|
|
8717
|
+
displayName: "Business Origin",
|
|
8718
|
+
type: "text",
|
|
8719
|
+
category: "14"
|
|
8720
|
+
},
|
|
8721
|
+
{
|
|
8722
|
+
name: "registeredAddress",
|
|
8723
|
+
displayName: "Registered Address (SSM)",
|
|
8724
|
+
type: "text",
|
|
8725
|
+
category: "14"
|
|
8726
|
+
},
|
|
8727
|
+
{
|
|
8728
|
+
name: "icName",
|
|
8729
|
+
displayName: "Full Name (NRIC)",
|
|
8730
|
+
type: "text",
|
|
8731
|
+
category: "15"
|
|
8732
|
+
},
|
|
8733
|
+
{
|
|
8734
|
+
name: "icNumber",
|
|
8735
|
+
displayName: "IC Number (NRIC Extracted)",
|
|
8736
|
+
type: "text",
|
|
8737
|
+
category: "15"
|
|
8738
|
+
},
|
|
8739
|
+
{
|
|
8740
|
+
name: "icAddress",
|
|
8741
|
+
displayName: "Address (NRIC)",
|
|
8742
|
+
type: "text",
|
|
8743
|
+
category: "15"
|
|
8744
|
+
},
|
|
8745
|
+
{
|
|
8746
|
+
name: "icGender",
|
|
8747
|
+
displayName: "Gender (NRIC)",
|
|
8748
|
+
type: "text",
|
|
8749
|
+
category: "15"
|
|
8750
|
+
},
|
|
8751
|
+
{
|
|
8752
|
+
name: "icReligion",
|
|
8753
|
+
displayName: "Religion (NRIC)",
|
|
8754
|
+
type: "text",
|
|
8755
|
+
category: "15"
|
|
8756
|
+
},
|
|
8757
|
+
{
|
|
8758
|
+
name: "icDateOfBirth",
|
|
8759
|
+
displayName: "Date of Birth (NRIC)",
|
|
8760
|
+
type: "text",
|
|
8761
|
+
inputType: "date",
|
|
8762
|
+
category: "15"
|
|
8763
|
+
},
|
|
8764
|
+
{
|
|
8765
|
+
name: "icPlaceOfBirth",
|
|
8766
|
+
displayName: "Place of Birth (NRIC)",
|
|
8767
|
+
type: "text",
|
|
8768
|
+
category: "15"
|
|
8769
|
+
},
|
|
8770
|
+
{
|
|
8771
|
+
name: "icNationality",
|
|
8772
|
+
displayName: "Nationality (NRIC)",
|
|
8773
|
+
type: "text",
|
|
8774
|
+
category: "15"
|
|
8775
|
+
},
|
|
8776
|
+
{
|
|
8777
|
+
name: "icRace",
|
|
8778
|
+
displayName: "Race (NRIC)",
|
|
8779
|
+
type: "text",
|
|
8780
|
+
category: "15"
|
|
8604
8781
|
}
|
|
8605
8782
|
]
|
|
8606
8783
|
};
|