-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponent.json
86 lines (86 loc) · 2.48 KB
/
component.json
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
{
"title": "Cache Component",
"description": "Component to store and retrieve value from key:value storage",
"docsUrl": "",
"actions": {
"StoreKeyValue": {
"main": "./lib/actions/storeObjects.js",
"title": "Upsert Key:Value pair",
"description": "Insert new or update existing Key:Value pair",
"fields": {
},
"metadata": {
"in": "./lib/schemas/store.in.json",
"out": "./lib/schemas/store.out.json"
}
},
"StoreKeyValueBatch": {
"main": "./lib/actions/storeBuckets.js",
"title": "Upsert Key:Value pair Batch",
"description": "Insert new or replace existing Key:Value pair from Batch",
"fields": {
},
"metadata": {
"in": "./lib/schemas/storeBatch.in.json"
}
},
"RetrieveKeyValue": {
"main": "./lib/actions/retrieveObjects.js",
"title": "Lookup Key:Value pair",
"description": "Retrieve existing Key:Value pair by Key",
"fields": {
"deleteRequired": {
"viewClass": "CheckBoxView",
"label": "Remove object after successful reading",
"required": false
}
},
"metadata": {
"in": "./lib/schemas/retrieve.in.json"
}
},
"RetrieveKeyValueBatch": {
"main": "./lib/actions/retrieveBuckets.js",
"title": "Lookup Key:Value pair Batch",
"description": "Retrieve existing Key:Value pair by Key Batch",
"fields": {
"default": {
"viewClass": "TextFieldView",
"label": "Default value if key was not found",
"required": false
}
},
"metadata": {
"in": "./lib/schemas/retrieveBatch.in.json"
}
},
"RemoveKeyValue": {
"main": "./lib/actions/removeObjects.js",
"title": "Delete Key:Value pair",
"description": "Remove existing Key:Value pair by Key",
"fields": {
"allValues": {
"viewClass": "CheckBoxView",
"label": "Delete all values for this key"
}
},
"metadata": {
"in": "./lib/schemas/remove.in.json"
}
},
"RemoveKeyValueBatch": {
"main": "./lib/actions/removeBuckets.js",
"title": "Delete Key:Value pair",
"description": "Remove existing Key:Value pair by Key Batch",
"fields": {
"allValues": {
"viewClass": "CheckBoxView",
"label": "Delete all values for this key"
}
},
"metadata": {
"in": "./lib/schemas/remove.in.json"
}
}
}
}