kcommons 18.12.12 → 18.12.14
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.
|
@@ -127,7 +127,7 @@ export interface IISTD {
|
|
|
127
127
|
grns: INestedGRN[] | null;
|
|
128
128
|
mrns: INestedMRN[] | null;
|
|
129
129
|
inventory_logs: INestedInventoryLog[] | null;
|
|
130
|
-
metafields: IISTDMetafields
|
|
130
|
+
metafields: IISTDMetafields | null;
|
|
131
131
|
}
|
|
132
132
|
export interface INestedISTD extends Omit<IISTD, "items" | "company" | "created_by" | "last_updated_by" | "source_contact_person" | "dest_contact_person" | "sent_for_source_approval_by" | "sent_for_dest_approval_by" | "source_store_location" | "dest_store_location" | "terminated_by" | "sent_to_dest_store_by" | "sent_for_processing_by" | "source_approval_chain" | "dest_approval_chain" | "grns" | "mrns" | "inventory_logs" | "metafields"> {
|
|
133
133
|
}
|
|
@@ -62,7 +62,7 @@ export declare enum COMPANY_CUSTOMER_STATUS {
|
|
|
62
62
|
APPROVED = "APPROVED",
|
|
63
63
|
CANCELLED = "CANCELLED"
|
|
64
64
|
}
|
|
65
|
-
export interface
|
|
65
|
+
export interface ICompanyCustomersFilters {
|
|
66
66
|
name?: string;
|
|
67
67
|
ids?: string[];
|
|
68
68
|
parent_company_customer_category_id?: string;
|
|
@@ -71,7 +71,11 @@ export interface ICompanyCustomerFilters {
|
|
|
71
71
|
include?: COMPANY_CUSTOMER_INCLUDE[];
|
|
72
72
|
metafields_include?: COMPANY_CUSTOMER_METAFIELDS_INCLUDE[];
|
|
73
73
|
}
|
|
74
|
-
export interface
|
|
74
|
+
export interface ICompanyCustomerFilters {
|
|
75
|
+
include?: COMPANY_CUSTOMER_INCLUDE[];
|
|
76
|
+
metafields_include?: COMPANY_CUSTOMER_METAFIELDS_INCLUDE[];
|
|
77
|
+
}
|
|
78
|
+
export interface ICompanyCustomersFiltersWithPagination extends IPaginationFilters, ICompanyCustomersFilters {
|
|
75
79
|
}
|
|
76
80
|
export declare enum COMPANY_CUSTOMER_LIST_TYPE {
|
|
77
81
|
ALL = "ALL",
|