kcommons 17.5.1 → 17.5.2
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.
|
@@ -51,14 +51,17 @@ export interface IVendor extends IAddress {
|
|
|
51
51
|
is_self_verified: boolean;
|
|
52
52
|
is_invitation_sent: boolean;
|
|
53
53
|
gst_attachment_link: string | null;
|
|
54
|
+
gst_declaration_form_link: string | null;
|
|
54
55
|
pan_attachment_link: string | null;
|
|
55
56
|
cin_attachment_link: string | null;
|
|
56
57
|
udyam_aadhar_attachment_link: string | null;
|
|
58
|
+
udyam_aadhar_declaration_form_link: string | null;
|
|
57
59
|
iso_attachment_link: string | null;
|
|
58
60
|
cancelled_cheque_attachment_link: string | null;
|
|
59
61
|
profile_img: string | null;
|
|
60
62
|
svf_form_status: VENDOR_SVF_FORM_STATUS | null;
|
|
61
63
|
svf_rollback_remark: string | null;
|
|
64
|
+
has_provided_consent: boolean;
|
|
62
65
|
is_enabled: boolean;
|
|
63
66
|
is_deleted: boolean | null;
|
|
64
67
|
deleted_at: string | null;
|
|
@@ -156,7 +159,8 @@ export declare enum VENDOR_LINKABLE_FIELDS_FOR_EXTRA_FORMS {
|
|
|
156
159
|
vendor_business_categories = "vendor_business_categories",
|
|
157
160
|
bank_account_number = "bank_account_number",
|
|
158
161
|
udyam_aadhar = "udyam_aadhar",
|
|
159
|
-
cin = "cin"
|
|
162
|
+
cin = "cin",
|
|
163
|
+
has_provided_consent = "has_provided_consent"
|
|
160
164
|
}
|
|
161
165
|
export interface IVENDOR_AUTH_TOKEN_PAYLOAD {
|
|
162
166
|
vendor_user_id: string;
|
|
@@ -59,6 +59,7 @@ var VENDOR_LINKABLE_FIELDS_FOR_EXTRA_FORMS;
|
|
|
59
59
|
VENDOR_LINKABLE_FIELDS_FOR_EXTRA_FORMS["bank_account_number"] = "bank_account_number";
|
|
60
60
|
VENDOR_LINKABLE_FIELDS_FOR_EXTRA_FORMS["udyam_aadhar"] = "udyam_aadhar";
|
|
61
61
|
VENDOR_LINKABLE_FIELDS_FOR_EXTRA_FORMS["cin"] = "cin";
|
|
62
|
+
VENDOR_LINKABLE_FIELDS_FOR_EXTRA_FORMS["has_provided_consent"] = "has_provided_consent";
|
|
62
63
|
// iso_attachment_link = "iso_attachment_link",
|
|
63
64
|
// firstname = "firstname",
|
|
64
65
|
// middlename = "middlename",
|