@resolveio/server-lib 3.1.0 → 3.1.2-newrole

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.
@@ -29,9 +29,6 @@ var schema = {
29
29
  method: {
30
30
  type: String
31
31
  },
32
- data: {
33
- type: String
34
- },
35
32
  date: {
36
33
  type: Date
37
34
  }
@@ -34,13 +34,6 @@ var schema = {
34
34
  method: {
35
35
  type: String
36
36
  },
37
- method_data: {
38
- type: Array
39
- },
40
- 'method_data.$': {
41
- type: Object,
42
- blackbox: true
43
- },
44
37
  id_ws: {
45
38
  type: String
46
39
  },
@@ -56,6 +49,9 @@ var schema = {
56
49
  response: {
57
50
  type: Object,
58
51
  blackbox: true
52
+ },
53
+ date: {
54
+ type: Date
59
55
  }
60
56
  };
61
57
  var DefaultSchema = new mongoose_1.Schema(schema, {
@@ -21,13 +21,6 @@ var schema = {
21
21
  type: Date,
22
22
  optional: true
23
23
  },
24
- readonly: {
25
- type: Boolean,
26
- optional: true
27
- },
28
- active: {
29
- type: Boolean
30
- },
31
24
  attempts: {
32
25
  type: Number,
33
26
  optional: true
@@ -64,60 +57,78 @@ var schema = {
64
57
  type: String
65
58
  },
66
59
  roles: {
60
+ type: Object
61
+ },
62
+ 'roles.super_admin': {
63
+ type: Boolean
64
+ },
65
+ 'roles.approvals': {
67
66
  type: Array
68
67
  },
69
- 'roles.$': {
68
+ 'roles.approvals.$': {
69
+ type: Object
70
+ },
71
+ 'roles.approvals.$.name': {
70
72
  type: String
71
73
  },
72
- phonenumber: {
73
- type: String,
74
- optional: true
74
+ 'roles.approvals.$.type': {
75
+ type: String
75
76
  },
76
- other: {
77
- type: Object,
78
- blackbox: true,
79
- optional: true
77
+ 'roles.approvals.$.accounting_code': {
78
+ type: String
80
79
  },
81
- assets: {
82
- type: Array,
83
- optional: true
80
+ 'roles.groups': {
81
+ type: Array
84
82
  },
85
- 'assets.$': {
83
+ 'roles.groups.$': {
86
84
  type: Object
87
85
  },
88
- 'assets.$.type': {
86
+ 'roles.groups.$.name': {
89
87
  type: String
90
88
  },
91
- 'assets.$.id_asset': {
92
- type: String
89
+ 'roles.groups.$.views': {
90
+ type: Array
93
91
  },
94
- 'assets.$.asset_number': {
92
+ 'roles.groups.$.views.$': {
95
93
  type: String
96
94
  },
97
- 'assets.$.ownership': {
98
- type: String
95
+ 'roles.groups.$.yard': {
96
+ type: String,
97
+ optional: true
99
98
  },
100
- 'assets.$.ownership_driver': {
99
+ 'roles.notifications': {
100
+ type: Array
101
+ },
102
+ 'roles.notifications.$': {
101
103
  type: String
102
104
  },
103
- 'assets.$.date_start': {
104
- type: Date
105
+ 'roles.miscs': {
106
+ type: Array
105
107
  },
106
- 'assets.$.date_end': {
107
- type: Date,
108
- optional: true
108
+ 'roles.miscs.$': {
109
+ type: String
109
110
  },
110
- id_function: {
111
+ active: Boolean,
112
+ id_customer: {
111
113
  type: String,
112
114
  optional: true
113
115
  },
114
116
  customer: {
115
117
  type: String,
116
- optional: true,
118
+ optional: true
117
119
  },
118
- id_customer: {
120
+ customer_type: {
121
+ type: String,
122
+ optional: true
123
+ },
124
+ phonenumber: {
119
125
  type: String,
126
+ optional: true
127
+ },
128
+ other: {
129
+ type: Object,
120
130
  optional: true,
131
+ blackbox: true
121
132
  }
122
133
  };
123
134
  var DefaultSchema = new mongoose_1.Schema(schema, {
package/fixtures/init.js CHANGED
@@ -37,8 +37,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
37
37
  Object.defineProperty(exports, "__esModule", { value: true });
38
38
  var app_version_collection_1 = require("../collections/app-version.collection");
39
39
  var logged_in_users_collection_1 = require("../collections/logged-in-users.collection");
40
- var active_subscription_collection_1 = require("../collections/active-subscription.collection");
41
40
  var mongoose_1 = require("mongoose");
41
+ var active_subscription_collection_1 = require("../collections/active-subscription.collection");
42
42
  function loadServerInit() {
43
43
  return __awaiter(this, void 0, void 0, function () {
44
44
  var appVersion;
@@ -83,7 +83,7 @@ var QueueMethodManager = /** @class */ (function () {
83
83
  message_id: sendItem.messageId,
84
84
  response: sendItem.response,
85
85
  method: sendItem.method,
86
- messageDate: sendItem.messageDate
86
+ date: sendItem.date
87
87
  });
88
88
  }
89
89
  else {
@@ -135,7 +135,7 @@ var QueueMethodManager = /** @class */ (function () {
135
135
  method_data: data,
136
136
  id_user: id_user,
137
137
  user: user,
138
- messageDate: messageDate
138
+ date: messageDate
139
139
  });
140
140
  };
141
141
  QueueMethodManager.prototype.runMethodQueue = function (count) {
@@ -208,10 +208,9 @@ var QueueMethodManager = /** @class */ (function () {
208
208
  id_user: update.id_user,
209
209
  user: update.user,
210
210
  messageId: update.messageId,
211
- method_data: update.method_data,
212
211
  response: response,
213
212
  method: update.method,
214
- messageDate: update.messageDate
213
+ date: update.date
215
214
  });
216
215
  };
217
216
  QueueMethodManager.prototype.runMethodResponse = function () {
@@ -3,6 +3,5 @@ export interface MethodCallModel extends CollectionDocument {
3
3
  id_user: string;
4
4
  message_id: string;
5
5
  method: string;
6
- data: string;
7
6
  date: Date;
8
7
  }
@@ -4,4 +4,5 @@ export interface MethodResponseModel extends CollectionDocument {
4
4
  message_id: string;
5
5
  method: string;
6
6
  response: any;
7
+ date: Date;
7
8
  }
@@ -6,5 +6,5 @@ export interface QueueMethodModel extends CollectionDocument {
6
6
  messageId: number;
7
7
  id_user: string;
8
8
  user: string;
9
- messageDate: Date;
9
+ date: Date;
10
10
  }
@@ -1,10 +1,10 @@
1
1
  import { CollectionDocument } from './collection-document.model';
2
2
  export interface QueueResponseModel extends CollectionDocument {
3
3
  method: string;
4
- method_data: any[];
5
4
  id_ws: string;
6
5
  messageId: number;
7
6
  id_user: string;
8
7
  user: string;
9
8
  response: any;
9
+ date: Date;
10
10
  }
@@ -1,14 +1,31 @@
1
1
  import { CollectionDocument } from './collection-document.model';
2
2
  export interface UserModel extends CollectionDocument {
3
- attempts: number;
4
- last: Date;
5
- services?: any;
6
3
  fullname: string;
4
+ roles: UserRoleModel;
7
5
  username?: string;
8
6
  email?: string;
9
- roles?: string[];
10
7
  active?: boolean;
11
- readonly?: boolean;
8
+ services?: any;
9
+ id_customer?: string;
10
+ customer?: string;
11
+ customer_type?: string;
12
12
  phonenumber?: string;
13
13
  other?: object;
14
14
  }
15
+ export interface UserRoleModel {
16
+ super_admin: boolean;
17
+ approvals: UserRoleApprovalModel[];
18
+ groups: UserRoleGroupModel[];
19
+ notifications: string[];
20
+ miscs: string[];
21
+ }
22
+ export interface UserRoleApprovalModel {
23
+ accounting_code: string;
24
+ type: string;
25
+ name: string;
26
+ }
27
+ export interface UserRoleGroupModel {
28
+ name: string;
29
+ views: string[];
30
+ yard?: string;
31
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/server-lib",
3
- "version": "3.1.0",
3
+ "version": "3.1.2-newrole",
4
4
  "description": "",
5
5
  "main": "index.ts",
6
6
  "scripts": {