@feedmepos/mf-financing 0.0.35-dev → 0.0.37-dev
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/{Application-CMYj8JZg.js → Application-DgsKcVbg.js} +434 -426
- package/dist/{Submission-BCn__i1G.js → Submission-DEMyz5Ym.js} +2311 -2273
- package/dist/api/financing/index.d.ts +4 -1
- package/dist/app.d.ts +4 -0
- package/dist/app.js +6 -2
- package/dist/package.json +1 -1
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -23,7 +23,9 @@ export type GetEligibilityResponse = {
|
|
|
23
23
|
id: string;
|
|
24
24
|
active: boolean;
|
|
25
25
|
};
|
|
26
|
-
softspace:
|
|
26
|
+
softspace: {
|
|
27
|
+
active: boolean;
|
|
28
|
+
};
|
|
27
29
|
};
|
|
28
30
|
};
|
|
29
31
|
export declare function GetEligibility(restaurantId: string): ApiContract;
|
|
@@ -39,6 +41,7 @@ export type CreatePortalFinancingRequest = {
|
|
|
39
41
|
taxIdentificationNo: string;
|
|
40
42
|
ownerName: string;
|
|
41
43
|
ownerPhoneNumber: string;
|
|
44
|
+
ownerId: string;
|
|
42
45
|
businessRegistration: string;
|
|
43
46
|
bankStatements: string[];
|
|
44
47
|
signature: string;
|
package/dist/app.d.ts
CHANGED
|
@@ -94,6 +94,7 @@ export declare const i18nMessages: {
|
|
|
94
94
|
ownerNamePlaceholder: string;
|
|
95
95
|
ownerPhoneNumber: string;
|
|
96
96
|
ownerPhoneNumberPlaceholder: string;
|
|
97
|
+
ownerId: string;
|
|
97
98
|
businessRegistration: string;
|
|
98
99
|
bankStatement: string;
|
|
99
100
|
signature: string;
|
|
@@ -103,6 +104,7 @@ export declare const i18nMessages: {
|
|
|
103
104
|
success: string;
|
|
104
105
|
errors: {
|
|
105
106
|
required: string;
|
|
107
|
+
ownerIdRequired: string;
|
|
106
108
|
businessRegistrationRequired: string;
|
|
107
109
|
bankStatementRequired: string;
|
|
108
110
|
signatureRequired: string;
|
|
@@ -244,6 +246,7 @@ export declare const i18nMessages: {
|
|
|
244
246
|
ownerNamePlaceholder: string;
|
|
245
247
|
ownerPhoneNumber: string;
|
|
246
248
|
ownerPhoneNumberPlaceholder: string;
|
|
249
|
+
ownerId: string;
|
|
247
250
|
businessRegistration: string;
|
|
248
251
|
bankStatement: string;
|
|
249
252
|
signature: string;
|
|
@@ -253,6 +256,7 @@ export declare const i18nMessages: {
|
|
|
253
256
|
success: string;
|
|
254
257
|
errors: {
|
|
255
258
|
required: string;
|
|
259
|
+
ownerIdRequired: string;
|
|
256
260
|
businessRegistrationRequired: string;
|
|
257
261
|
bankStatementRequired: string;
|
|
258
262
|
signatureRequired: string;
|
package/dist/app.js
CHANGED
|
@@ -93,6 +93,7 @@ const Ln = {
|
|
|
93
93
|
ownerNamePlaceholder: "Enter owner's full name",
|
|
94
94
|
ownerPhoneNumber: "Owner Phone Number",
|
|
95
95
|
ownerPhoneNumberPlaceholder: "Enter phone number (e.g. +60123456789)",
|
|
96
|
+
ownerId: "Owner ID",
|
|
96
97
|
businessRegistration: "Business Registration",
|
|
97
98
|
bankStatement: "Bank Statement",
|
|
98
99
|
signature: "Signature",
|
|
@@ -102,6 +103,7 @@ const Ln = {
|
|
|
102
103
|
success: "Application submitted successfully",
|
|
103
104
|
errors: {
|
|
104
105
|
required: "This field is required",
|
|
106
|
+
ownerIdRequired: "Please upload your owner ID",
|
|
105
107
|
businessRegistrationRequired: "Please upload your business registration document",
|
|
106
108
|
bankStatementRequired: "Please upload at least one bank statement",
|
|
107
109
|
signatureRequired: "Please provide your signature",
|
|
@@ -242,6 +244,7 @@ const Ln = {
|
|
|
242
244
|
ownerNamePlaceholder: "输入所有者全名",
|
|
243
245
|
ownerPhoneNumber: "所有者电话号码",
|
|
244
246
|
ownerPhoneNumberPlaceholder: "输入电话号码(例如:+60123456789)",
|
|
247
|
+
ownerId: "所有者身份证",
|
|
245
248
|
businessRegistration: "商业注册文件",
|
|
246
249
|
bankStatement: "银行对账单",
|
|
247
250
|
signature: "签名",
|
|
@@ -251,6 +254,7 @@ const Ln = {
|
|
|
251
254
|
success: "申请提交成功",
|
|
252
255
|
errors: {
|
|
253
256
|
required: "此字段为必填项",
|
|
257
|
+
ownerIdRequired: "请上传所有者身份证",
|
|
254
258
|
businessRegistrationRequired: "请上传您的商业注册文件",
|
|
255
259
|
bankStatementRequired: "请上传至少一份银行对账单",
|
|
256
260
|
signatureRequired: "请提供您的签名",
|
|
@@ -308,7 +312,7 @@ const Ln = {
|
|
|
308
312
|
{
|
|
309
313
|
path: "/application",
|
|
310
314
|
name: "mf-financing-application",
|
|
311
|
-
component: () => import("./Application-
|
|
315
|
+
component: () => import("./Application-DgsKcVbg.js"),
|
|
312
316
|
meta: {
|
|
313
317
|
sidebarDisplay: "i18n:financing.routes.application"
|
|
314
318
|
}
|
|
@@ -316,7 +320,7 @@ const Ln = {
|
|
|
316
320
|
{
|
|
317
321
|
path: "/application/submission",
|
|
318
322
|
name: "mf-financing-application-submission",
|
|
319
|
-
component: () => import("./Submission-
|
|
323
|
+
component: () => import("./Submission-DEMyz5Ym.js")
|
|
320
324
|
}
|
|
321
325
|
];
|
|
322
326
|
In({
|