alliance-shared-types 1.0.13 → 1.0.15

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.
@@ -123,6 +123,8 @@ export interface CorporateEmployee {
123
123
  nationality?: string;
124
124
  panNumber?: string;
125
125
  managerEmployeeId?: string;
126
+ roleId?: string;
127
+ roleName?: string;
126
128
  status: EmployeeStatus;
127
129
  createdAt: string | Date;
128
130
  updatedAt: string | Date;
@@ -162,6 +164,7 @@ export interface CorporateEmployeeUpdate {
162
164
  nationality?: string;
163
165
  panNumber?: string;
164
166
  managerEmployeeId?: string;
167
+ roleId?: string;
165
168
  status?: EmployeeStatus;
166
169
  }
167
170
  export interface TravelPolicy {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alliance-shared-types",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "description": "Shared TypeScript types for Alliance B2B Travel Portal",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",