@lansweeper/user-model 0.0.1 → 0.0.2
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/dist/model.json +68 -0
- package/package.json +2 -2
package/dist/model.json
CHANGED
|
@@ -2740,5 +2740,73 @@
|
|
|
2740
2740
|
"type": "string"
|
|
2741
2741
|
}
|
|
2742
2742
|
}
|
|
2743
|
+
},
|
|
2744
|
+
{
|
|
2745
|
+
"context": "User",
|
|
2746
|
+
"cloudEntity": "OnpremUser",
|
|
2747
|
+
"onpremTable": "tsysWebUsers",
|
|
2748
|
+
"onpremId": "Username",
|
|
2749
|
+
"cloudId": "fullUsername",
|
|
2750
|
+
"cloudKey": "onpremUserKey",
|
|
2751
|
+
"unions": [
|
|
2752
|
+
{
|
|
2753
|
+
"rootFk": "Username",
|
|
2754
|
+
"rawUnion": "htblusersUsername.email <> '' AND concat(htblusersUsername.userdomain,'\\',htblusersUsername.username)",
|
|
2755
|
+
"onpremTable": "htblusers",
|
|
2756
|
+
"properties": {
|
|
2757
|
+
"email": {
|
|
2758
|
+
"onprem": "email",
|
|
2759
|
+
"type": "string",
|
|
2760
|
+
"required": true
|
|
2761
|
+
},
|
|
2762
|
+
"name": {
|
|
2763
|
+
"onprem": "name",
|
|
2764
|
+
"type": "string"
|
|
2765
|
+
},
|
|
2766
|
+
"username": {
|
|
2767
|
+
"onprem": "username",
|
|
2768
|
+
"type": "string"
|
|
2769
|
+
},
|
|
2770
|
+
"userdomain": {
|
|
2771
|
+
"onprem": "userdomain",
|
|
2772
|
+
"type": "string"
|
|
2773
|
+
},
|
|
2774
|
+
"description": {
|
|
2775
|
+
"onprem": "description",
|
|
2776
|
+
"type": "string"
|
|
2777
|
+
},
|
|
2778
|
+
"address": {
|
|
2779
|
+
"onprem": "address",
|
|
2780
|
+
"type": "string"
|
|
2781
|
+
},
|
|
2782
|
+
"telephone": {
|
|
2783
|
+
"onprem": "telephone",
|
|
2784
|
+
"type": "string"
|
|
2785
|
+
},
|
|
2786
|
+
"mobile": {
|
|
2787
|
+
"onprem": "mobile",
|
|
2788
|
+
"type": "string"
|
|
2789
|
+
},
|
|
2790
|
+
"fax": {
|
|
2791
|
+
"onprem": "fax",
|
|
2792
|
+
"type": "string"
|
|
2793
|
+
},
|
|
2794
|
+
"company": {
|
|
2795
|
+
"onprem": "company",
|
|
2796
|
+
"type": "string"
|
|
2797
|
+
},
|
|
2798
|
+
"department": {
|
|
2799
|
+
"onprem": "department",
|
|
2800
|
+
"type": "string"
|
|
2801
|
+
}
|
|
2802
|
+
}
|
|
2803
|
+
}
|
|
2804
|
+
],
|
|
2805
|
+
"properties": {
|
|
2806
|
+
"fullUsername": {
|
|
2807
|
+
"onprem": "Username",
|
|
2808
|
+
"type": "string"
|
|
2809
|
+
}
|
|
2810
|
+
}
|
|
2743
2811
|
}
|
|
2744
2812
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/user-model",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "User model",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"types": "dist/types",
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"scripts": {
|
|
17
17
|
"build": "tsc"
|
|
18
18
|
},
|
|
19
|
-
"gitHead": "
|
|
19
|
+
"gitHead": "68b312ea8611a49f90ec27f369dfe2a33a5a59ea"
|
|
20
20
|
}
|