@live-change/user-service 0.9.201 → 0.9.204
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.
- package/contactOrUserProperty.js +1 -1
- package/package.json +4 -4
- package/sessionOrUserProperty.js +1 -1
- package/userProperty.js +1 -1
package/contactOrUserProperty.js
CHANGED
|
@@ -15,7 +15,7 @@ definition.processor(function(service, app) {
|
|
|
15
15
|
const model = service.models[modelName]
|
|
16
16
|
|
|
17
17
|
if(model.contactOrUserProperty) {
|
|
18
|
-
console.log("MODEL " + modelName + " IS SESSION OR USER PROPERTY, CONFIG:", model.userProperty)
|
|
18
|
+
//console.log("MODEL " + modelName + " IS SESSION OR USER PROPERTY, CONFIG:", model.userProperty)
|
|
19
19
|
if (model.properties.contactOrUser) throw new Error('owner property already exists!!!')
|
|
20
20
|
|
|
21
21
|
const originalModelProperties = { ...model.properties }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/user-service",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.204",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
},
|
|
23
23
|
"type": "module",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@live-change/framework": "^0.9.
|
|
26
|
-
"@live-change/relations-plugin": "^0.9.
|
|
25
|
+
"@live-change/framework": "^0.9.204",
|
|
26
|
+
"@live-change/relations-plugin": "^0.9.204",
|
|
27
27
|
"pluralize": "^8.0.0"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "6ac17ccf3c184ca4d7ef920f63827dbfd8749f96"
|
|
30
30
|
}
|
package/sessionOrUserProperty.js
CHANGED
|
@@ -15,7 +15,7 @@ definition.processor(function(service, app) {
|
|
|
15
15
|
const model = service.models[modelName]
|
|
16
16
|
|
|
17
17
|
if(model.sessionOrUserProperty) {
|
|
18
|
-
console.log("MODEL " + modelName + " IS SESSION OR USER PROPERTY, CONFIG:", model.sessionOrUserProperty)
|
|
18
|
+
//console.log("MODEL " + modelName + " IS SESSION OR USER PROPERTY, CONFIG:", model.sessionOrUserProperty)
|
|
19
19
|
if (model.properties.sessionOrUser) throw new Error('sessionOrUser property already exists!!!')
|
|
20
20
|
|
|
21
21
|
const originalModelProperties = { ...model.properties }
|
package/userProperty.js
CHANGED
|
@@ -11,7 +11,7 @@ definition.processor(function(service, app) {
|
|
|
11
11
|
const model = service.models[modelName]
|
|
12
12
|
|
|
13
13
|
if(model.userProperty) {
|
|
14
|
-
console.log("MODEL " + modelName + " IS USER PROPERTY, CONFIG:", model.userProperty)
|
|
14
|
+
//console.log("MODEL " + modelName + " IS USER PROPERTY, CONFIG:", model.userProperty)
|
|
15
15
|
if (model.properties.user) throw new Error('user property already exists!!!')
|
|
16
16
|
|
|
17
17
|
const originalModelProperties = { ...model.properties }
|