update_dmamanager_3.1.8.js
2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
use DMAMANAGER
db.auth("mongoapp", "mOng0@pp")
db.storyboard_target_type.drop()
db.createCollection("storyboard_target_type")
db.storyboard_target_type.insert(
[
{
"name" : "Extra",
"api" : "listExtraTarget"
},
{
"name" : "Screen",
"api" : "listAppUi"
}
]
)
db.storyboard_extra_target_type.drop()
db.createCollection("storyboard_extra_target_type")
db.storyboard_extra_target_type.insert(
[
{
"uiName" : "self"
},
{
"uiName" : "refresh"
}
]
)
db.screen_input_type.drop()
db.createCollection("screen_input_type")
db.screen_input_type.insert(
[
{
"name" : "Global",
"api" : "listGlobalValue"
},
{
"name" : "Native",
"api" : "listScreenNativeInputType"
}
]
)
db.screen_native_input_type.drop()
db.createCollection("screen_native_input_type")
db.screen_native_input_type.insert(
[
{
"globalName" : "Not required location permission",
"fieldType" : "Location",
"source" : "Native",
"api" : "",
"action" : "",
"dataStructure" : "",
"className" : "LocationBlank",
"dmaParameter" : "_dma_internal_location"
},
{
"globalName" : "Required location permission",
"fieldType" : "Location",
"source" : "Native",
"api" : "",
"action" : "",
"dataStructure" : "",
"className" : "LocationCheck",
"dmaParameter" : "_dma_internal_location"
}
]
)