kcommons 5.22.3 → 5.22.5
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/build/index.d.ts +1 -1
- package/build/index.js +1 -1
- package/build/typings/common/address.typings.d.ts +9 -0
- package/build/typings/common/address.typings.js +2 -0
- package/build/typings/company.typings.d.ts +1 -1
- package/build/typings/gate.typings.d.ts +1 -1
- package/build/typings/offices.typings.d.ts +1 -1
- package/build/typings/purchaseLocation.typings.d.ts +1 -1
- package/build/typings/storeLocation.typings.d.ts +1 -1
- package/build/typings/vendor.typings.d.ts +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export * from "./typings/negotiation.typings";
|
|
|
28
28
|
export * from "./typings/asn.typings";
|
|
29
29
|
export * from "./typings/bom.typings";
|
|
30
30
|
export * from "./typings/verification_apis/pincode.typings";
|
|
31
|
-
export * from "./typings/
|
|
31
|
+
export * from "./typings/common/address.typings";
|
|
32
32
|
export * from "./typings/common/paginationFilters.typings";
|
|
33
33
|
export * from "./typings/common/uploadMedia.typings";
|
|
34
34
|
export * from "./typings/common/retrieveMedia.typings";
|
package/build/index.js
CHANGED
|
@@ -45,7 +45,7 @@ __exportStar(require("./typings/negotiation.typings"), exports);
|
|
|
45
45
|
__exportStar(require("./typings/asn.typings"), exports);
|
|
46
46
|
__exportStar(require("./typings/bom.typings"), exports);
|
|
47
47
|
__exportStar(require("./typings/verification_apis/pincode.typings"), exports);
|
|
48
|
-
__exportStar(require("./typings/
|
|
48
|
+
__exportStar(require("./typings/common/address.typings"), exports);
|
|
49
49
|
__exportStar(require("./typings/common/paginationFilters.typings"), exports);
|
|
50
50
|
__exportStar(require("./typings/common/uploadMedia.typings"), exports);
|
|
51
51
|
__exportStar(require("./typings/common/retrieveMedia.typings"), exports);
|
|
@@ -21,7 +21,7 @@ import { INestedRFQ } from "./rfq.typings";
|
|
|
21
21
|
import { INestedPermission, INestedRole } from "./roles.typings";
|
|
22
22
|
import { INestedStoreLocation } from "./storeLocation.typings";
|
|
23
23
|
import { INestedUser } from "./user.typings";
|
|
24
|
-
import { IAddress } from "./
|
|
24
|
+
import { IAddress } from "./common/address.typings";
|
|
25
25
|
import { INestedVendor } from "./vendor.typings";
|
|
26
26
|
import { INestedVendorGroups } from "./vendorGroup.typings";
|
|
27
27
|
export declare enum COMPANY_INCLUDE {
|
|
@@ -4,7 +4,7 @@ import { INestedDepartment } from "./department.typings";
|
|
|
4
4
|
import { INestedRole } from "./roles.typings";
|
|
5
5
|
import { INestedStoreLocation } from "./storeLocation.typings";
|
|
6
6
|
import { INestedUser } from "./user.typings";
|
|
7
|
-
import { IAddress } from "./
|
|
7
|
+
import { IAddress } from "./common/address.typings";
|
|
8
8
|
export declare enum GATE_INCLUDE {
|
|
9
9
|
approval_configs = "approval_configs",
|
|
10
10
|
departments = "departments",
|
|
@@ -6,7 +6,7 @@ import { INestedPurchaseLocation } from "./purchaseLocation.typings";
|
|
|
6
6
|
import { INestedRole } from "./roles.typings";
|
|
7
7
|
import { INestedStoreLocation } from "./storeLocation.typings";
|
|
8
8
|
import { INestedUser } from "./user.typings";
|
|
9
|
-
import { IAddress } from "./
|
|
9
|
+
import { IAddress } from "./common/address.typings";
|
|
10
10
|
export interface IOfficeFilters {
|
|
11
11
|
name?: string;
|
|
12
12
|
company_id?: string;
|
|
@@ -7,7 +7,7 @@ import { INestedPR } from "./pr.typings";
|
|
|
7
7
|
import { INestedRole } from "./roles.typings";
|
|
8
8
|
import { INestedStoreLocation } from "./storeLocation.typings";
|
|
9
9
|
import { INestedUser } from "./user.typings";
|
|
10
|
-
import { IAddress } from "./
|
|
10
|
+
import { IAddress } from "./common/address.typings";
|
|
11
11
|
export declare enum PurchaseLocationInclude {
|
|
12
12
|
company = "company",
|
|
13
13
|
incharge = "incharge",
|
|
@@ -16,7 +16,7 @@ import { INestedRFQ } from "./rfq.typings";
|
|
|
16
16
|
import { INestedRole } from "./roles.typings";
|
|
17
17
|
import { INestedInventoryItem } from "./storeInventory.typings";
|
|
18
18
|
import { INestedUser } from "./user.typings";
|
|
19
|
-
import { IAddress } from "./
|
|
19
|
+
import { IAddress } from "./common/address.typings";
|
|
20
20
|
export interface IStoreLocationFilters {
|
|
21
21
|
name?: string;
|
|
22
22
|
company_id?: string;
|
|
@@ -3,7 +3,7 @@ import { INestedNegotiation } from "./negotiation.typings";
|
|
|
3
3
|
import { INestedNotification } from "./notifications.typings";
|
|
4
4
|
import { INestedQuote } from "./quote.typings";
|
|
5
5
|
import { INestedRFQ } from "./rfq.typings";
|
|
6
|
-
import { IAddress } from "./
|
|
6
|
+
import { IAddress } from "./common/address.typings";
|
|
7
7
|
export interface IVendor extends IAddress {
|
|
8
8
|
id: string;
|
|
9
9
|
gst_no?: string | null;
|