@live-change/access-control-service 0.2.29 → 0.2.30

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/model.js +7 -1
  2. package/package.json +3 -3
package/model.js CHANGED
@@ -72,6 +72,9 @@ const AccessRequest = definition.model({
72
72
  message: {
73
73
  type: String,
74
74
  validation: []
75
+ },
76
+ lastUpdate: {
77
+ type: Date
75
78
  }
76
79
  },
77
80
  indexes: {
@@ -100,7 +103,10 @@ const AccessInvitation = definition.model({
100
103
  visibilityTest || access.clientHasAdminAccess(client, params)
101
104
  },
102
105
  properties: {
103
- ...invitationProperties
106
+ ...invitationProperties,
107
+ lastUpdate: {
108
+ type: Date
109
+ }
104
110
  },
105
111
  indexes: {
106
112
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/access-control-service",
3
- "version": "0.2.29",
3
+ "version": "0.2.30",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -21,7 +21,7 @@
21
21
  "url": "https://www.viamage.com/"
22
22
  },
23
23
  "dependencies": {
24
- "@live-change/framework": "0.6.3"
24
+ "@live-change/framework": "0.6.4"
25
25
  },
26
- "gitHead": "37d229ac05adf5e045ae3dcc826c6945d5dc3670"
26
+ "gitHead": "0a3acfcbb3a720c3e2f20bb3c9dc80a0a1aaceaa"
27
27
  }