kcommons 9.52.2 → 9.53.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.
@@ -9,6 +9,10 @@ import { INestedUser, IUser } from "./user.typings";
9
9
  import { IEntityApprovalChainEntry, INestedEntityApprovalChainEntry } from "./entityApprovalChainEntry.typings";
10
10
  import { IPaginationFilters } from "./common/paginationFilters.typings";
11
11
  import { IOpenApprovalsBase } from "./common/openApprovals.typings";
12
+ export declare enum INDENT_ON_BEHALF_OF_USER_TYPE {
13
+ ONBOARDED_USER = "ONBOARDED_USER",
14
+ NON_ONBOARDED_USER = "NON_ONBOARDED_USER"
15
+ }
12
16
  export declare enum INDENT_LIST_TYPE {
13
17
  MY_APPROVALS = "MY_APPROVALS",
14
18
  CREATED_BY_ME = "CREATED_BY_ME",
@@ -40,6 +44,9 @@ export interface IIndent {
40
44
  created_by_user_id: string;
41
45
  target_store_location_id: string;
42
46
  sent_to_store_location: boolean;
47
+ on_behalf_of_user_type: string;
48
+ on_behalf_of_onboarded_user_id: string | null;
49
+ on_behalf_of_non_onbaorded_user_id: string | null;
43
50
  place_of_application: string | null;
44
51
  custom_fields: string | null;
45
52
  budget_code_id: string | null;
@@ -1,6 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.INDENT_ITEM_INCLUDE = exports.IndentInclude = exports.INDENT_PRIORITY_TYPES = exports.IndentStatus = exports.INDENT_TABS = exports.INDENT_LIST_TYPE = void 0;
3
+ exports.INDENT_ITEM_INCLUDE = exports.IndentInclude = exports.INDENT_PRIORITY_TYPES = exports.IndentStatus = exports.INDENT_TABS = exports.INDENT_LIST_TYPE = exports.INDENT_ON_BEHALF_OF_USER_TYPE = void 0;
4
+ var INDENT_ON_BEHALF_OF_USER_TYPE;
5
+ (function (INDENT_ON_BEHALF_OF_USER_TYPE) {
6
+ INDENT_ON_BEHALF_OF_USER_TYPE["ONBOARDED_USER"] = "ONBOARDED_USER";
7
+ INDENT_ON_BEHALF_OF_USER_TYPE["NON_ONBOARDED_USER"] = "NON_ONBOARDED_USER";
8
+ })(INDENT_ON_BEHALF_OF_USER_TYPE || (exports.INDENT_ON_BEHALF_OF_USER_TYPE = INDENT_ON_BEHALF_OF_USER_TYPE = {}));
4
9
  var INDENT_LIST_TYPE;
5
10
  (function (INDENT_LIST_TYPE) {
6
11
  INDENT_LIST_TYPE["MY_APPROVALS"] = "MY_APPROVALS";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "9.52.2",
3
+ "version": "9.53.0",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",