kcommons 18.3.0 → 18.3.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.
@@ -65,6 +65,11 @@ export interface IVendor extends IAddress {
65
65
  has_provided_consent: boolean;
66
66
  msme_enterprise_type: string | null;
67
67
  msme_major_activity: string | null;
68
+ fssai_no: string | null;
69
+ fssai_no_valid_from: string | null;
70
+ fssai_no_valid_to: string | null;
71
+ fssai_attachment_link: string | null;
72
+ is_fssai_verified: boolean;
68
73
  is_enabled: boolean;
69
74
  is_deleted: boolean | null;
70
75
  deleted_at: string | null;
@@ -112,8 +117,6 @@ export interface IVendorOrganizationInputs extends Omit<INestedVendor, "id" | "c
112
117
  export interface IVendorAdminUserInputs extends Pick<INestedVendorUser, "email" | "contact" | "designation" | "firstname" | "lastname" | "middlename"> {
113
118
  }
114
119
  export interface IVendorInputs extends IVendorOrganizationInputs, IVendorAdminUserInputs {
115
- msme_enterprise_type: string | null;
116
- msme_major_activity: string | null;
117
120
  }
118
121
  export interface ISVFTokenVerificationResponse {
119
122
  vendorFormData: IVendorInputs;
@@ -167,6 +170,7 @@ export declare enum VENDOR_LINKABLE_FIELDS_FOR_EXTRA_FORMS {
167
170
  bank_account_number = "bank_account_number",
168
171
  udyam_aadhar = "udyam_aadhar",
169
172
  cin = "cin",
173
+ fssai_no = "fssai_no",
170
174
  has_provided_consent = "has_provided_consent"
171
175
  }
172
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "18.3.0",
3
+ "version": "18.3.2",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",