-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomponent.json
More file actions
125 lines (125 loc) · 4.19 KB
/
component.json
File metadata and controls
125 lines (125 loc) · 4.19 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"title": "Sync by AVA",
"description": "Sync extension to connect with Sync Mongo Storage Engine",
"docsUrl": "https://github.com/thatapp/Sync",
"buildType": "docker",
"credentials": {
"fields": {
"apiKey": {
"label": "APIKey: ",
"viewClass": "PasswordFieldView",
"required": true,
"prompt": "Api key is gotten from the your MongoDB dashboard."
},
"apiVersion": {
"label": "API Version",
"viewClass": "TextFieldView",
"required": false,
"placeholder": "beta",
"help": {
"description": "Provide the API version, \"beta\" by default"
}
},
"appId": {
"label": "Data API App ID",
"viewClass": "TextFieldView",
"required": false,
"placeholder": "data-maqtf",
"help": {
"description": "Your Data API App ID, which you can find in the URL Endpoint section of the MongoDB UI, \"data-maqtf\" by default"
}
},
"clusterName": {
"label": "Cluster Name",
"viewClass": "TextFieldView",
"required": false,
"placeholder": "MigrateCluster0",
"help": {
"description": "The name of a cluster with the Data API enabled, \"MigrateCluster0\" by default"
}
}
}
},
"actions": {
"upsert": {
"main": "./lib/actions/upsert.js",
"title": "Upsert using Data API",
"description": "Upsert data using Data API",
"metadata": {
"in": "./lib/schemas/upsert.in.json"
}
},
"aggregate": {
"main": "./lib/actions/aggregate.js",
"title": "Aggregation from Sync using Data API",
"description": "Aggregation from Sync using Data API",
"metadata": {
"in": "./lib/schemas/aggregation.in.json"
}
},
"findOneDocument": {
"main": "./lib/actions/singleDocument.js",
"title": "Find a Single Document from Sync using Data API",
"description": "Find a Single Document from Sync using Data API",
"metadata": {
"in": "./lib/schemas/singleDocument.in.json"
}
},
"findMultipleDocument": {
"main": "./lib/actions/multipleDocument.js",
"title": "Find multiple Document from Sync using Data API",
"description": "Find multiple Document from Sync using Data API",
"metadata": {
"in": "./lib/schemas/multipleDocument.in.json"
}
},
"insertSingleDocument": {
"main": "./lib/actions/insertSingleDocument.js",
"title": "Insert a Document from Sync using Data API",
"description": "Insert a Document from Sync using Data API",
"metadata": {
"in": "./lib/schemas/insertSingleDocument.in.json"
}
},
"insertMultipleDocument": {
"main": "./lib/actions/insertMultipleDocument.js",
"title": "Insert multiple Document from Sync using Data API",
"description": "Insert multiple Document from Sync using Data API",
"metadata": {
"in": "./lib/schemas/insertMultipleDocument.in.json"
}
},
"updateSingleDocument": {
"main": "./lib/actions/updateSingleDocument.js",
"title": "Update single Document from Sync using Data API",
"description": "Update single Document from Sync using Data API",
"metadata": {
"in": "./lib/schemas/updateSingleDocument.in.json"
}
},
"replaceDocument": {
"main": "./lib/actions/replace.js",
"title": "Replace a Document from Sync using Data API",
"description": "Replace a Document from Sync using Data API",
"metadata": {
"in": "./lib/schemas/replace.in.json"
}
},
"deleteOneDocument": {
"main": "./lib/actions/deleteOneDocument.js",
"title": "Delete One Document from Sync using Data API",
"description": "Delete One Document from Sync using Data API",
"metadata": {
"in": "./lib/schemas/deleteOneDocument.in.json"
}
},
"deletemultipleDocument": {
"main": "./lib/actions/deletemultipleDocument.js",
"title": "Delete multiple Document from Sync using Data API",
"description": "Delete multiple Document from Sync using Data API",
"metadata": {
"in": "./lib/schemas/deletemultipleDocument.in.json"
}
}
}
}