kcommons 18.3.1 → 18.3.3
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.
|
@@ -40,6 +40,7 @@ export declare enum QUOTE_META_INCLUDES {
|
|
|
40
40
|
referenced_vendor_items = "referenced_vendor_items",
|
|
41
41
|
custom_uoms = "custom_uoms",
|
|
42
42
|
rfq_items = "rfq_items",
|
|
43
|
+
primary_quote_items = "primary_quote_items",
|
|
43
44
|
/** @description Not intended for use in WebApp */
|
|
44
45
|
combined_data_for_quote_items = "combined_data_for_quote_items"
|
|
45
46
|
}
|
|
@@ -68,6 +69,7 @@ export interface IQuoteMetaFields {
|
|
|
68
69
|
referenced_vendor_items: INestedVendorItem[] | null;
|
|
69
70
|
custom_uoms: INestedCustomUOM[] | null;
|
|
70
71
|
rfq_items: IRFQItemDataForQuote[] | null;
|
|
72
|
+
primary_quote_items: INestedQuoteItems[] | null;
|
|
71
73
|
/** @description Not intended for use in WebApp */
|
|
72
74
|
combined_data_for_quote_items: null;
|
|
73
75
|
}
|
|
@@ -28,6 +28,7 @@ var QUOTE_META_INCLUDES;
|
|
|
28
28
|
QUOTE_META_INCLUDES["referenced_vendor_items"] = "referenced_vendor_items";
|
|
29
29
|
QUOTE_META_INCLUDES["custom_uoms"] = "custom_uoms";
|
|
30
30
|
QUOTE_META_INCLUDES["rfq_items"] = "rfq_items";
|
|
31
|
+
QUOTE_META_INCLUDES["primary_quote_items"] = "primary_quote_items";
|
|
31
32
|
/** @description Not intended for use in WebApp */
|
|
32
33
|
QUOTE_META_INCLUDES["combined_data_for_quote_items"] = "combined_data_for_quote_items";
|
|
33
34
|
})(QUOTE_META_INCLUDES || (exports.QUOTE_META_INCLUDES = QUOTE_META_INCLUDES = {}));
|
|
@@ -117,8 +117,6 @@ export interface IVendorOrganizationInputs extends Omit<INestedVendor, "id" | "c
|
|
|
117
117
|
export interface IVendorAdminUserInputs extends Pick<INestedVendorUser, "email" | "contact" | "designation" | "firstname" | "lastname" | "middlename"> {
|
|
118
118
|
}
|
|
119
119
|
export interface IVendorInputs extends IVendorOrganizationInputs, IVendorAdminUserInputs {
|
|
120
|
-
msme_enterprise_type: string | null;
|
|
121
|
-
msme_major_activity: string | null;
|
|
122
120
|
}
|
|
123
121
|
export interface ISVFTokenVerificationResponse {
|
|
124
122
|
vendorFormData: IVendorInputs;
|
|
@@ -172,6 +170,7 @@ export declare enum VENDOR_LINKABLE_FIELDS_FOR_EXTRA_FORMS {
|
|
|
172
170
|
bank_account_number = "bank_account_number",
|
|
173
171
|
udyam_aadhar = "udyam_aadhar",
|
|
174
172
|
cin = "cin",
|
|
173
|
+
fssai_no = "fssai_no",
|
|
175
174
|
has_provided_consent = "has_provided_consent"
|
|
176
175
|
}
|
|
177
176
|
export interface IVENDOR_AUTH_TOKEN_PAYLOAD {
|
|
@@ -58,6 +58,7 @@ var VENDOR_LINKABLE_FIELDS_FOR_EXTRA_FORMS;
|
|
|
58
58
|
VENDOR_LINKABLE_FIELDS_FOR_EXTRA_FORMS["bank_account_number"] = "bank_account_number";
|
|
59
59
|
VENDOR_LINKABLE_FIELDS_FOR_EXTRA_FORMS["udyam_aadhar"] = "udyam_aadhar";
|
|
60
60
|
VENDOR_LINKABLE_FIELDS_FOR_EXTRA_FORMS["cin"] = "cin";
|
|
61
|
+
VENDOR_LINKABLE_FIELDS_FOR_EXTRA_FORMS["fssai_no"] = "fssai_no";
|
|
61
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",
|