kcommons 9.5.2 → 9.6.0
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/constants/companyRoutes.constants.d.ts +8 -1
- package/build/constants/companyRoutes.constants.js +7 -0
- package/build/index.d.ts +1 -0
- package/build/index.js +1 -0
- package/build/typings/company/iad/iad.typings.d.ts +68 -0
- package/build/typings/company/iad/iad.typings.js +25 -0
- package/build/typings/company/istd/istd.typings.d.ts +1 -0
- package/build/typings/item.typings.d.ts +4 -2
- package/build/typings/item.typings.js +1 -0
- package/build/typings/storeLocation.typings.d.ts +5 -2
- package/build/typings/storeLocation.typings.js +1 -0
- package/build/typings/user.typings.d.ts +14 -3
- package/build/typings/user.typings.js +5 -0
- package/package.json +1 -1
|
@@ -91,7 +91,8 @@ export declare enum COMPANY_ROUTE_IDS {
|
|
|
91
91
|
ISTD_REQ_VIEW = "ISTD_REQ_VIEW",
|
|
92
92
|
ISTD_REC_VIEW = "ISTD_REC_VIEW",
|
|
93
93
|
ISTD_EDT = "ISTD_EDT",
|
|
94
|
-
ISTD_ADD = "ISTD_ADD"
|
|
94
|
+
ISTD_ADD = "ISTD_ADD",
|
|
95
|
+
IAD_LST = "IAD_LST"
|
|
95
96
|
}
|
|
96
97
|
export interface ICompanyRouteConfig {
|
|
97
98
|
route: ((args: any) => string) | string;
|
|
@@ -345,6 +346,12 @@ export declare const companyNavConfig: {
|
|
|
345
346
|
id: COMPANY_ROUTE_IDS;
|
|
346
347
|
};
|
|
347
348
|
};
|
|
349
|
+
iad: {
|
|
350
|
+
list: {
|
|
351
|
+
route: string;
|
|
352
|
+
id: COMPANY_ROUTE_IDS;
|
|
353
|
+
};
|
|
354
|
+
};
|
|
348
355
|
materialIssuance: {
|
|
349
356
|
list: {
|
|
350
357
|
route: string;
|
|
@@ -95,6 +95,7 @@ var COMPANY_ROUTE_IDS;
|
|
|
95
95
|
COMPANY_ROUTE_IDS["ISTD_REC_VIEW"] = "ISTD_REC_VIEW";
|
|
96
96
|
COMPANY_ROUTE_IDS["ISTD_EDT"] = "ISTD_EDT";
|
|
97
97
|
COMPANY_ROUTE_IDS["ISTD_ADD"] = "ISTD_ADD";
|
|
98
|
+
COMPANY_ROUTE_IDS["IAD_LST"] = "IAD_LST";
|
|
98
99
|
})(COMPANY_ROUTE_IDS || (exports.COMPANY_ROUTE_IDS = COMPANY_ROUTE_IDS = {}));
|
|
99
100
|
exports.companyNavConfig = {
|
|
100
101
|
root: {
|
|
@@ -348,6 +349,12 @@ exports.companyNavConfig = {
|
|
|
348
349
|
id: COMPANY_ROUTE_IDS.ISTD_REC_VIEW,
|
|
349
350
|
},
|
|
350
351
|
},
|
|
352
|
+
iad: {
|
|
353
|
+
list: {
|
|
354
|
+
route: `/store/iad?route_id=${COMPANY_ROUTE_IDS.IAD_LST}`,
|
|
355
|
+
id: COMPANY_ROUTE_IDS.IAD_LST,
|
|
356
|
+
},
|
|
357
|
+
},
|
|
351
358
|
materialIssuance: {
|
|
352
359
|
list: {
|
|
353
360
|
route: `/store/material-issuance?route_id=${COMPANY_ROUTE_IDS.MI_LST}`,
|
package/build/index.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ export * from "./typings/contactPeople.typings";
|
|
|
47
47
|
export * from "./typings/companyItemVendorVersion.typings";
|
|
48
48
|
export * from "./typings/company/istd/istd.typings";
|
|
49
49
|
export * from "./typings/company/istd/istdItems.typings";
|
|
50
|
+
export * from "./typings/company/iad/iad.typings";
|
|
50
51
|
export * from "./constants/permission.constants";
|
|
51
52
|
export * from "./constants/entityTypes.constants";
|
|
52
53
|
export * from "./constants/statuses.constants";
|
package/build/index.js
CHANGED
|
@@ -64,6 +64,7 @@ __exportStar(require("./typings/contactPeople.typings"), exports);
|
|
|
64
64
|
__exportStar(require("./typings/companyItemVendorVersion.typings"), exports);
|
|
65
65
|
__exportStar(require("./typings/company/istd/istd.typings"), exports);
|
|
66
66
|
__exportStar(require("./typings/company/istd/istdItems.typings"), exports);
|
|
67
|
+
__exportStar(require("./typings/company/iad/iad.typings"), exports);
|
|
67
68
|
// Constants
|
|
68
69
|
__exportStar(require("./constants/permission.constants"), exports);
|
|
69
70
|
__exportStar(require("./constants/entityTypes.constants"), exports);
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { IPaginationFilters } from "../../common/paginationFilters.typings";
|
|
2
|
+
import { INestedCompany } from "../../company.typings";
|
|
3
|
+
import { INestedItem } from "../../item.typings";
|
|
4
|
+
import { INestedStoreLocation } from "../../storeLocation.typings";
|
|
5
|
+
import { INestedUser } from "../../user.typings";
|
|
6
|
+
export declare enum IAD_TYPE {
|
|
7
|
+
STOCK_REDUCTION = "STOCK_REDUCTION",
|
|
8
|
+
STOCK_INTAKE = "STOCK_INTAKE"
|
|
9
|
+
}
|
|
10
|
+
export declare enum IAD_STATUS {
|
|
11
|
+
PENDING_APPROVAL = "PENDING APPROVAL",
|
|
12
|
+
TERMINATED = "TERMINATED",
|
|
13
|
+
CLOSED = "CLOSED"
|
|
14
|
+
}
|
|
15
|
+
export declare enum IAD_INCLUDE {
|
|
16
|
+
company = "company",
|
|
17
|
+
item = "item",
|
|
18
|
+
store_location = "store_location",
|
|
19
|
+
created_by_user = "created_by_user",
|
|
20
|
+
finalised_by_user = "finalised_by_user",
|
|
21
|
+
assigned_approver = "assigned_approver",
|
|
22
|
+
terminated_by = "terminated_by",
|
|
23
|
+
last_updated_by_user = "last_updated_by_user"
|
|
24
|
+
}
|
|
25
|
+
export interface IIAD {
|
|
26
|
+
id: string;
|
|
27
|
+
iad_no: string;
|
|
28
|
+
company_id: string;
|
|
29
|
+
item_id: string;
|
|
30
|
+
iad_type: IAD_TYPE;
|
|
31
|
+
store_location_id: string;
|
|
32
|
+
created_by_user_id: string;
|
|
33
|
+
last_updated_by_id: string;
|
|
34
|
+
finalised_by_id: string | null;
|
|
35
|
+
assigned_approver_id: string | null;
|
|
36
|
+
remark: string;
|
|
37
|
+
rejection_reason: string | null;
|
|
38
|
+
quantity: number;
|
|
39
|
+
attachment_link: string | null;
|
|
40
|
+
is_approved: boolean;
|
|
41
|
+
status: IAD_STATUS;
|
|
42
|
+
terminated_by_id: string | null;
|
|
43
|
+
termination_reason: string | null;
|
|
44
|
+
last_updated_at: string;
|
|
45
|
+
finalised_at: string | null;
|
|
46
|
+
terminated_at: string | null;
|
|
47
|
+
is_deleted: boolean;
|
|
48
|
+
deleted_at: string | null;
|
|
49
|
+
created_at: string;
|
|
50
|
+
updated_at: string;
|
|
51
|
+
company: INestedCompany | null;
|
|
52
|
+
item: INestedItem | null;
|
|
53
|
+
store_location: INestedStoreLocation | null;
|
|
54
|
+
created_by_user: INestedUser | null;
|
|
55
|
+
last_updated_by_user: INestedUser | null;
|
|
56
|
+
assigned_approver: INestedUser | null;
|
|
57
|
+
finalised_by_user: INestedUser | null;
|
|
58
|
+
terminated_by: INestedUser | null;
|
|
59
|
+
}
|
|
60
|
+
export interface INestedIAD extends Omit<IIAD, "company" | "item" | "store_location" | "created_by_user" | "last_updated_by_user" | "assigned_approver" | "finalised_by_user" | "terminated_by"> {
|
|
61
|
+
}
|
|
62
|
+
export interface IIADFilters extends Partial<Pick<IIAD, "store_location_id" | "item_id" | "is_approved" | "status">> {
|
|
63
|
+
name?: string | null;
|
|
64
|
+
user_approvals?: boolean | null;
|
|
65
|
+
include?: IAD_INCLUDE[] | null;
|
|
66
|
+
}
|
|
67
|
+
export interface IIADFiltersWithPagiantion extends IIADFilters, IPaginationFilters {
|
|
68
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IAD_INCLUDE = exports.IAD_STATUS = exports.IAD_TYPE = void 0;
|
|
4
|
+
var IAD_TYPE;
|
|
5
|
+
(function (IAD_TYPE) {
|
|
6
|
+
IAD_TYPE["STOCK_REDUCTION"] = "STOCK_REDUCTION";
|
|
7
|
+
IAD_TYPE["STOCK_INTAKE"] = "STOCK_INTAKE";
|
|
8
|
+
})(IAD_TYPE || (exports.IAD_TYPE = IAD_TYPE = {}));
|
|
9
|
+
var IAD_STATUS;
|
|
10
|
+
(function (IAD_STATUS) {
|
|
11
|
+
IAD_STATUS["PENDING_APPROVAL"] = "PENDING APPROVAL";
|
|
12
|
+
IAD_STATUS["TERMINATED"] = "TERMINATED";
|
|
13
|
+
IAD_STATUS["CLOSED"] = "CLOSED";
|
|
14
|
+
})(IAD_STATUS || (exports.IAD_STATUS = IAD_STATUS = {}));
|
|
15
|
+
var IAD_INCLUDE;
|
|
16
|
+
(function (IAD_INCLUDE) {
|
|
17
|
+
IAD_INCLUDE["company"] = "company";
|
|
18
|
+
IAD_INCLUDE["item"] = "item";
|
|
19
|
+
IAD_INCLUDE["store_location"] = "store_location";
|
|
20
|
+
IAD_INCLUDE["created_by_user"] = "created_by_user";
|
|
21
|
+
IAD_INCLUDE["finalised_by_user"] = "finalised_by_user";
|
|
22
|
+
IAD_INCLUDE["assigned_approver"] = "assigned_approver";
|
|
23
|
+
IAD_INCLUDE["terminated_by"] = "terminated_by";
|
|
24
|
+
IAD_INCLUDE["last_updated_by_user"] = "last_updated_by_user";
|
|
25
|
+
})(IAD_INCLUDE || (exports.IAD_INCLUDE = IAD_INCLUDE = {}));
|
|
@@ -107,6 +107,7 @@ export interface INestedISTD extends Omit<IISTD, "items" | "company" | "created_
|
|
|
107
107
|
export interface IISTDFilter {
|
|
108
108
|
created_by_id?: string | null;
|
|
109
109
|
terminated_by_id?: string | null;
|
|
110
|
+
name?: string | null;
|
|
110
111
|
is_deleted?: boolean | null;
|
|
111
112
|
include?: ISTD_INCLUDE[] | null;
|
|
112
113
|
status_at_source?: ISTD_STATUS_FOR_SOURCE | null;
|
|
@@ -55,7 +55,8 @@ export declare enum ITEM_INCLUDE {
|
|
|
55
55
|
vendor_item_versions = "vendor_item_versions",
|
|
56
56
|
last_updated_by = "last_updated_by",
|
|
57
57
|
approval_chain = "approval_chain",
|
|
58
|
-
used_in_istd_items = "used_in_istd_items"
|
|
58
|
+
used_in_istd_items = "used_in_istd_items",
|
|
59
|
+
used_in_iads = "used_in_iads"
|
|
59
60
|
}
|
|
60
61
|
export interface IItem {
|
|
61
62
|
id: string;
|
|
@@ -127,8 +128,9 @@ export interface IItem {
|
|
|
127
128
|
approval_chain: INestedRootEntityApprovalChainEntry[] | null;
|
|
128
129
|
last_updated_by: INestedUser | null;
|
|
129
130
|
used_in_istd_items: INestedISTDItem[] | null;
|
|
131
|
+
used_in_iads: INestedISTDItem[] | null;
|
|
130
132
|
}
|
|
131
|
-
export interface INestedItem extends Omit<IItem, "inventory_entries" | "approved_by" | "item_category" | "item_subcategory" | "company" | "used_in_indent_items" | "used_in_mi_items" | "used_in_pr_items" | "used_in_quote_items" | "used_in_grn_items" | "used_in_mrn_items" | "used_in_bom_items" | "used_in_comparative_items" | "previous_purchase_vendor" | "least_purchase_vendor" | "dealing_company_vendors" | "used_in_po_asn_item_junction" | "vendor_item_versions" | "used_in_istd_items"> {
|
|
133
|
+
export interface INestedItem extends Omit<IItem, "inventory_entries" | "approved_by" | "item_category" | "item_subcategory" | "company" | "used_in_indent_items" | "used_in_mi_items" | "used_in_pr_items" | "used_in_quote_items" | "used_in_grn_items" | "used_in_mrn_items" | "used_in_bom_items" | "used_in_comparative_items" | "previous_purchase_vendor" | "least_purchase_vendor" | "dealing_company_vendors" | "used_in_po_asn_item_junction" | "vendor_item_versions" | "used_in_istd_items" | "used_in_iads"> {
|
|
132
134
|
}
|
|
133
135
|
export declare const ITEM_CLASSIFICATION: {
|
|
134
136
|
DIRECT: string;
|
|
@@ -32,6 +32,7 @@ var ITEM_INCLUDE;
|
|
|
32
32
|
ITEM_INCLUDE["last_updated_by"] = "last_updated_by";
|
|
33
33
|
ITEM_INCLUDE["approval_chain"] = "approval_chain";
|
|
34
34
|
ITEM_INCLUDE["used_in_istd_items"] = "used_in_istd_items";
|
|
35
|
+
ITEM_INCLUDE["used_in_iads"] = "used_in_iads";
|
|
35
36
|
})(ITEM_INCLUDE || (exports.ITEM_INCLUDE = ITEM_INCLUDE = {}));
|
|
36
37
|
exports.ITEM_CLASSIFICATION = {
|
|
37
38
|
DIRECT: "Direct",
|
|
@@ -18,6 +18,7 @@ import { INestedInventoryItem } from "./storeInventory.typings";
|
|
|
18
18
|
import { INestedUser } from "./user.typings";
|
|
19
19
|
import { IAddress } from "./common/address.typings";
|
|
20
20
|
import { INestedISTD } from "./company/istd/istd.typings";
|
|
21
|
+
import { INestedIAD } from "./company/iad/iad.typings";
|
|
21
22
|
export interface IStoreLocationFilters {
|
|
22
23
|
name?: string;
|
|
23
24
|
company_id?: string;
|
|
@@ -58,8 +59,9 @@ export interface IStoreLocation extends IAddress {
|
|
|
58
59
|
as_shipping_location_for_asns?: null | INestedASN[];
|
|
59
60
|
as_source_store_location_for_istds?: INestedISTD[] | null;
|
|
60
61
|
as_dest_store_location_for_istds?: INestedISTD[] | null;
|
|
62
|
+
iads?: INestedIAD[] | null;
|
|
61
63
|
}
|
|
62
|
-
export interface INestedStoreLocation extends Omit<IStoreLocation, "company" | "store_incharge" | "approval_configs" | "inventory_entries" | "departments" | "roles" | "indents" | "mis" | "mrns" | "as_shipping_location_for_rfqs" | "as_shipping_location_for_quotes" | "target_offices" | "served_by_gates" | "served_by_purchase_locations" | "as_shipping_location_for_pos" | "as_shipping_location_for_grns" | "as_shipping_location_for_asns" | "as_source_store_location_for_istds" | "as_dest_store_location_for_istds"> {
|
|
64
|
+
export interface INestedStoreLocation extends Omit<IStoreLocation, "company" | "store_incharge" | "approval_configs" | "inventory_entries" | "departments" | "roles" | "indents" | "mis" | "mrns" | "as_shipping_location_for_rfqs" | "as_shipping_location_for_quotes" | "target_offices" | "served_by_gates" | "served_by_purchase_locations" | "as_shipping_location_for_pos" | "as_shipping_location_for_grns" | "as_shipping_location_for_asns" | "as_source_store_location_for_istds" | "as_dest_store_location_for_istds" | "iads"> {
|
|
63
65
|
}
|
|
64
66
|
export declare enum StoreLocationInclude {
|
|
65
67
|
company = "company",
|
|
@@ -80,5 +82,6 @@ export declare enum StoreLocationInclude {
|
|
|
80
82
|
as_shipping_location_for_grns = "as_shipping_location_for_grns",
|
|
81
83
|
as_shipping_location_for_asns = "as_shipping_location_for_asns",
|
|
82
84
|
as_source_store_location_for_istds = "as_source_store_location_for_istds",
|
|
83
|
-
as_dest_store_location_for_istds = "as_dest_store_location_for_istds"
|
|
85
|
+
as_dest_store_location_for_istds = "as_dest_store_location_for_istds",
|
|
86
|
+
iads = "iads"
|
|
84
87
|
}
|
|
@@ -22,4 +22,5 @@ var StoreLocationInclude;
|
|
|
22
22
|
StoreLocationInclude["as_shipping_location_for_asns"] = "as_shipping_location_for_asns";
|
|
23
23
|
StoreLocationInclude["as_source_store_location_for_istds"] = "as_source_store_location_for_istds";
|
|
24
24
|
StoreLocationInclude["as_dest_store_location_for_istds"] = "as_dest_store_location_for_istds";
|
|
25
|
+
StoreLocationInclude["iads"] = "iads";
|
|
25
26
|
})(StoreLocationInclude || (exports.StoreLocationInclude = StoreLocationInclude = {}));
|
|
@@ -31,6 +31,7 @@ import { INestedRootEntityApprovalConfig } from "./company/rootEntityApproval/ro
|
|
|
31
31
|
import { INestedRootEntityApprovalChainEntry } from "./company/rootEntityApproval/rootEntityApprovalEntries.typings";
|
|
32
32
|
import { INestedRootEntityApprovalChain } from "./company/rootEntityApproval/rootEntityApprovalChain.typings";
|
|
33
33
|
import { INestedISTD } from "./company/istd/istd.typings";
|
|
34
|
+
import { INestedIAD } from "./company/iad/iad.typings";
|
|
34
35
|
export interface IUser {
|
|
35
36
|
id: string;
|
|
36
37
|
is_enabled?: boolean | null;
|
|
@@ -49,7 +50,7 @@ export interface IUser {
|
|
|
49
50
|
middlename?: string | null;
|
|
50
51
|
created_by_id: string;
|
|
51
52
|
lastname: string;
|
|
52
|
-
jwtVersion:
|
|
53
|
+
jwtVersion: string;
|
|
53
54
|
deleted_at?: string | null;
|
|
54
55
|
created_at?: string | null;
|
|
55
56
|
updated_at?: string | null;
|
|
@@ -121,8 +122,13 @@ export interface IUser {
|
|
|
121
122
|
istds_sent_for_dest_store: INestedISTD[] | null;
|
|
122
123
|
istds_marked_as_processed: INestedISTD[] | null;
|
|
123
124
|
istds_terminated: INestedISTD[] | null;
|
|
125
|
+
created_iads: INestedIAD[] | null;
|
|
126
|
+
user_last_updated_iads: INestedIAD[] | null;
|
|
127
|
+
as_approver_for_iads: INestedIAD[] | null;
|
|
128
|
+
finalised_iads: INestedIAD[] | null;
|
|
129
|
+
iads_terminated_by_user: INestedIAD[] | null;
|
|
124
130
|
}
|
|
125
|
-
export interface INestedUser extends Omit<IUser, "reporting_to" | "active_company" | "active_role" | "subordinates" | "otps" | "as_incharge_in_purchase_locations" | "as_incharge_in_store_locations" | "as_incharge_in_offices" | "as_incharge_in_gates" | "as_contact_person_companies" | "as_contact_person_offices" | "as_contact_person_gates" | "
|
|
131
|
+
export interface INestedUser extends Omit<IUser, "updated_at" | "created_at" | "deleted_at" | "as_item_approver_for_company" | "as_vendor_approver_for_company" | "reporting_to" | "active_company" | "active_role" | "subordinates" | "otps" | "as_incharge_in_purchase_locations" | "as_incharge_in_store_locations" | "as_incharge_in_offices" | "as_incharge_in_gates" | "as_contact_person_companies" | "as_contact_person_offices" | "as_contact_person_gates" | "owned_companies" | "head_for_departments" | "approved_items" | "approval_chains" | "created_indents" | "created_mis" | "created_prs" | "pr_sent_for_approval" | "last_updated_prs" | "created_rfqs" | "entity_approval_chains" | "as_contact_person_for_rfqs" | "as_contact_person_for_quotes" | "rfqs_sent_for_approval" | "rfqs_sent_to_vendors" | "created_rfq_items" | "negotiations" | "created_pos" | "as_contact_person_for_pos" | "pos_sent_for_approval" | "pos_sent_to_vendors" | "as_contact_person_for_asns" | "as_contact_person_for_grns" | "grns_sent_for_approval" | "grns_sent_to_store" | "mrns_sent_for_approval" | "as_contact_person_for_mrns" | "created_boms" | "last_updated_boms" | "created_vendor_groups" | "last_updated_vendor_groups" | "comparatives_sent_for_approval" | "user_notifications" | "approved_company_vendors" | "created_extra_quesstions" | "updated_extra_quesstions" | "answered_questions" | "created_extra_core_question_for_companies" | "updated_extra_core_question_for_companies" | "cancelled_asns" | "created_contact_people" | "updated_contact_people" | "last_updated_company_item_vendor_version" | "last_updated_root_entity_approval_config" | "as_part_of_root_entity_approval_chain_entries" | "as_part_of_root_entity_approval_chain" | "last_updated_root_entity_approval_chain" | "items_last_updated_by_user" | "copmany_vendors_last_updated_by_user" | "created_istds" | "last_updated_istds" | "source_contact_person_for_istd" | "dest_contact_person_for_istd" | "istds_sent_for_source_approval" | "istds_sent_for_dest_approval" | "istds_sent_for_dest_store" | "istds_marked_as_processed" | "istds_terminated" | "created_payment_terms" | "created_iads" | "user_last_updated_iads" | "as_approver_for_iads" | "iads_terminated_by_user" | "finalised_iads" | "assigned_roles"> {
|
|
126
132
|
}
|
|
127
133
|
export declare enum UserInclude {
|
|
128
134
|
as_incharge_in_purchase_locations = "as_incharge_in_purchase_locations",
|
|
@@ -181,7 +187,12 @@ export declare enum UserInclude {
|
|
|
181
187
|
istds_sent_for_dest_approval = "istds_sent_for_dest_approval",
|
|
182
188
|
istds_sent_for_dest_store = "istds_sent_for_dest_store",
|
|
183
189
|
istds_marked_as_processed = "istds_marked_as_processed",
|
|
184
|
-
istds_terminated = "istds_terminated"
|
|
190
|
+
istds_terminated = "istds_terminated",
|
|
191
|
+
created_iads = "created_iads",
|
|
192
|
+
user_last_updated_iads = "user_last_updated_iads",
|
|
193
|
+
as_approver_for_iads = "as_approver_for_iads",
|
|
194
|
+
finalised_iads = "finalised_iads",
|
|
195
|
+
iads_terminated_by_user = "iads_terminated_by_user"
|
|
185
196
|
}
|
|
186
197
|
export interface IUserFilters {
|
|
187
198
|
name?: string;
|
|
@@ -63,4 +63,9 @@ var UserInclude;
|
|
|
63
63
|
UserInclude["istds_sent_for_dest_store"] = "istds_sent_for_dest_store";
|
|
64
64
|
UserInclude["istds_marked_as_processed"] = "istds_marked_as_processed";
|
|
65
65
|
UserInclude["istds_terminated"] = "istds_terminated";
|
|
66
|
+
UserInclude["created_iads"] = "created_iads";
|
|
67
|
+
UserInclude["user_last_updated_iads"] = "user_last_updated_iads";
|
|
68
|
+
UserInclude["as_approver_for_iads"] = "as_approver_for_iads";
|
|
69
|
+
UserInclude["finalised_iads"] = "finalised_iads";
|
|
70
|
+
UserInclude["iads_terminated_by_user"] = "iads_terminated_by_user";
|
|
66
71
|
})(UserInclude || (exports.UserInclude = UserInclude = {}));
|