@d19n/youfibre-odin-sdk 2.0.74 → 2.0.76
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.
|
@@ -22,7 +22,7 @@ export interface UpdateUserMessage extends OdinRecordUpdatedEvent<UpdateUserDto,
|
|
|
22
22
|
* Properties for UpdateUser action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 0
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 22
|
|
26
26
|
*/
|
|
27
27
|
export interface UpdateUserProperties {
|
|
28
28
|
/**
|
|
@@ -172,6 +172,13 @@ export interface UpdateUserProperties {
|
|
|
172
172
|
* @type {TEXT}
|
|
173
173
|
*/
|
|
174
174
|
FullName?: string | null;
|
|
175
|
+
/**
|
|
176
|
+
* SalesTerritoryId
|
|
177
|
+
*
|
|
178
|
+
* Linked SalesTerritory
|
|
179
|
+
* @type {LOOKUP}
|
|
180
|
+
*/
|
|
181
|
+
SalesTerritoryId?: string | null;
|
|
175
182
|
}
|
|
176
183
|
/**
|
|
177
184
|
* UpdateUser
|
|
@@ -98,7 +98,9 @@ export declare enum UserPropertyKeys {
|
|
|
98
98
|
/** the sales region the user works in (IT Security - User) */
|
|
99
99
|
SalesRegion = "SalesRegion",
|
|
100
100
|
/** the id of the user in the organizations_users_table (IT Security - User) */
|
|
101
|
-
UserId = "UserId"
|
|
101
|
+
UserId = "UserId",
|
|
102
|
+
/** Linked SalesTerritory */
|
|
103
|
+
SalesTerritoryId = "SalesTerritoryId"
|
|
102
104
|
}
|
|
103
105
|
/**
|
|
104
106
|
* Properties for User records
|
|
@@ -214,6 +216,11 @@ export interface UserProperties {
|
|
|
214
216
|
* @type {UUID}
|
|
215
217
|
*/
|
|
216
218
|
UserId: string;
|
|
219
|
+
/** Linked SalesTerritory
|
|
220
|
+
*
|
|
221
|
+
* @type {LOOKUP}
|
|
222
|
+
*/
|
|
223
|
+
SalesTerritoryId: string;
|
|
217
224
|
}
|
|
218
225
|
/**
|
|
219
226
|
* User entity from IdentityModule
|
package/dist/entities-v2/User.js
CHANGED
|
@@ -84,6 +84,8 @@ var UserPropertyKeys;
|
|
|
84
84
|
UserPropertyKeys["SalesRegion"] = "SalesRegion";
|
|
85
85
|
/** the id of the user in the organizations_users_table (IT Security - User) */
|
|
86
86
|
UserPropertyKeys["UserId"] = "UserId";
|
|
87
|
+
/** Linked SalesTerritory */
|
|
88
|
+
UserPropertyKeys["SalesTerritoryId"] = "SalesTerritoryId";
|
|
87
89
|
})(UserPropertyKeys = exports.UserPropertyKeys || (exports.UserPropertyKeys = {}));
|
|
88
90
|
/**
|
|
89
91
|
* User entity from IdentityModule
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d19n/youfibre-odin-sdk",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.76",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "@d19n",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"typescript": "4.8.4"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@d19n/odin-sdk-generator": "^3.0.
|
|
14
|
+
"@d19n/odin-sdk-generator": "^3.0.241",
|
|
15
15
|
"@d19n/odin-types": "^3.0.32"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|