@finspringinnovations/fixeddepositsdk 1.0.0 → 1.0.1

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.
@@ -28,6 +28,7 @@ export interface AppData {
28
28
  eventNotifyUrl?: string;
29
29
  kycRelation?: string;
30
30
  kycRelationName?: string;
31
+ startFDAlertMessage?: string;
31
32
  poweredByLogo?: string;
32
33
  }
33
34
  export interface CustomColors {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finspringinnovations/fixeddepositsdk",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "FD SDK for React Native applications",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -34,6 +34,8 @@ export interface AppData {
34
34
  eventNotifyUrl?: string;
35
35
  kycRelation?: string;
36
36
  kycRelationName?: string;
37
+ // Optional custom alert text shown when PAN is required on Start FD
38
+ startFDAlertMessage?: string;
37
39
  // Optional powered-by logo URI/base64 for FDList header branding
38
40
  poweredByLogo?: string;
39
41
  }