scheduler-node-models 1.1.10 → 1.1.11

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/users/web.d.ts +9 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scheduler-node-models",
3
- "version": "1.1.10",
3
+ "version": "1.1.11",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "files": [
package/users/web.d.ts CHANGED
@@ -20,3 +20,12 @@ export interface AddUserRequest {
20
20
  application: string;
21
21
  permissions?: string[];
22
22
  }
23
+ /**
24
+ * This interface will be used to update a user with a call from the client to the
25
+ * api server. All fields would be required.
26
+ */
27
+ export interface UpdateUserRequest {
28
+ id: string;
29
+ field: string;
30
+ value: string;
31
+ }