@startinblox/components-ds4go 4.1.5 → 4.1.7

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/README.md CHANGED
@@ -52,7 +52,7 @@ config.json, client:
52
52
  ```json
53
53
  ...
54
54
  "css": [
55
- "https://ds4go.tems-components.startinblox.com/components-tems.css",
55
+ "https://ds4go.tems-components.startinblox.com/solid-tems-ui.css",
56
56
  "https://ds4go-components.startinblox.com/components-ds4go.css"
57
57
  ],
58
58
  ...
@@ -77,121 +77,201 @@ config.json, npm:
77
77
  ]
78
78
  ```
79
79
 
80
- ## Fact Bundling
80
+ ## DSP Connector
81
81
 
82
82
  config.json, components:
83
83
 
84
84
  ```json
85
- [
86
- ...,
87
85
  {
88
- "type": "fact-bundle",
86
+ "type": "dsp-connector",
87
+ "parameters": {
88
+ "participant-connector-uri": "...",
89
+ "participant-id": "...",
90
+ "participant-api-key": "...",
91
+ "providers": [
92
+ {
93
+ "name": "...",
94
+ "address": "...",
95
+ "color": "unused, legacy",
96
+ "participantId": "..."
97
+ }
98
+ ]
99
+ },
100
+ "route": "dsp-connector",
101
+ "integration": [
102
+ "routing"
103
+ ]
104
+ }
105
+ ```
106
+
107
+ ## DSIF Explorer
108
+
109
+ config.json, components:
110
+
111
+ ```json
112
+ {
113
+ "type": "dsif-explorer-poc",
89
114
  "parameters": {
90
115
  "menu": {
91
- "name": "Fact Bundling",
92
- "category": "Services",
93
- "icon": "mingcute-bookmark-line",
94
- "featureflags": [],
95
- "alternate": [
96
- "fact-bundle-creation"
97
- ]
116
+ "name": "DSIF Explorer",
117
+ "category": "none",
118
+ "icon": "mage-globe-fill"
119
+ },
120
+ "dataSrc": "https://poc.root-authority.dsif.eu/sectors",
121
+ "sectorId": "*",
122
+ "catalogId": "*"
123
+ },
124
+ "defaultRoute": true,
125
+ "route": "dsif-explorer",
126
+ "integration": [
127
+ "menu",
128
+ "routing"
129
+ ]
130
+ }
131
+ ```
132
+
133
+ ### Fetch all catalogs
134
+
135
+ The DSIF Explorer component supports fetching all catalogs by setting `sectorId` and `catalogId` to `"*"`.
136
+
137
+ ## Data Space Catalog
138
+
139
+ config.json, components:
140
+
141
+ ```json
142
+ {
143
+ "type": "dsp-catalog",
144
+ "parameters": {
145
+ "header": "Data space catalog",
146
+ "menu": {
147
+ "name": "Data space catalog",
148
+ "category": "none",
149
+ "icon": "mage-globe-fill"
98
150
  },
99
- "header": "Fact Bundling",
100
- "disableFiltering": true,
101
- "defaultDataSrc": "server://factbundles/",
102
151
  "bind-resources": ""
103
152
  },
104
- "route": "fact-bundles",
153
+ "route": "dataspace-catalog",
105
154
  "routeAttributes": {
106
- "rdf-type": "ds4go:FactBundle",
107
155
  "use-id": ""
108
156
  },
109
157
  "integration": [
110
158
  "menu",
111
159
  "routing"
112
160
  ]
113
- },
161
+ }
162
+ ```
163
+
164
+ ## Fact List
165
+
166
+ config.json, components:
167
+
168
+ ```json
114
169
  {
115
- "type": "fact-bundle-creation",
170
+ "type": "fact-list",
116
171
  "parameters": {
117
- "header": "Create a new Fact Bundle",
118
- "dataSrc": "server://factbundles/",
119
- "factsSrc": "server://facts/"
172
+ "menu": {
173
+ "name": "Fact Checks",
174
+ "category": "Services",
175
+ "icon": "mingcute-bookmark-line",
176
+ "featureflags": []
177
+ },
178
+ "header": "Fact Checks",
179
+ "bind-resources": "",
180
+ "customers-src": "server://customers/"
181
+ },
182
+ "route": "facts",
183
+ "routeAttributes": {
184
+ "rdf-type": "ds4go:Fact",
185
+ "use-id": ""
120
186
  },
121
- "route": "fact-bundle-creation",
122
187
  "integration": [
188
+ "menu",
123
189
  "routing"
124
190
  ]
125
- },
126
- ...
127
- ]
191
+ }
128
192
  ```
129
193
 
130
- ## DSIF Explorer
194
+ ## Fact Bundling
131
195
 
132
196
  config.json, components:
133
197
 
134
198
  ```json
135
199
  {
136
- "type": "dsif-explorer-poc",
200
+ "type": "fact-bundle",
137
201
  "parameters": {
138
202
  "menu": {
139
- "name": "DSIF Explorer",
140
- "category": "none",
141
- "icon": "mage-globe-fill"
203
+ "name": "Fact Bundling",
204
+ "category": "Services",
205
+ "icon": "mingcute-bookmark-line",
206
+ "featureflags": [],
207
+ "alternate": [
208
+ "fact-bundle-creation"
209
+ ]
142
210
  },
143
- "dataSrc": "https://poc.root-authority.dsif.eu/sectors"
211
+ "header": "Fact Bundling",
212
+ "disableFiltering": true,
213
+ "defaultDataSrc": "server://factbundles/",
214
+ "bind-resources": ""
215
+ },
216
+ "route": "fact-bundles",
217
+ "routeAttributes": {
218
+ "rdf-type": "ds4go:FactBundle",
219
+ "use-id": ""
144
220
  },
145
- "route": "dsif-explorer",
146
221
  "integration": [
147
222
  "menu",
148
223
  "routing"
149
224
  ]
150
- },
225
+ }
151
226
  ```
152
227
 
153
- ### Fetch all catalogs
228
+ ### Create Fact Bundle
154
229
 
155
230
  config.json, components:
156
231
 
157
232
  ```json
158
233
  {
159
- "type": "dsif-explorer-poc",
234
+ "type": "fact-bundle-creation",
160
235
  "parameters": {
161
- "menu": {
162
- "name": "DSIF Explorer",
163
- "category": "none",
164
- "icon": "mage-globe-fill"
165
- },
166
- "dataSrc": "https://poc.root-authority.dsif.eu/sectors",
167
- "sectorId": "*",
168
- "catalogId": "*"
236
+ "header": "Create a new Fact Bundle",
237
+ "dataSrc": "server://factbundles/",
238
+ "factsSrc": "server://facts/"
169
239
  },
170
- "route": "dsif-explorer",
240
+ "route": "fact-bundle-creation",
171
241
  "integration": [
172
- "menu",
173
242
  "routing"
174
243
  ]
175
- },
244
+ }
176
245
  ```
177
246
 
178
- ## DSP Connector
247
+ ## Customer List
179
248
 
180
249
  config.json, components:
181
250
 
182
251
  ```json
183
252
  {
184
- "type": "dsp-connector",
253
+ "type": "customer-list",
185
254
  "parameters": {
186
- "participant-connector-uri": "...",
187
- "participant-id": "...",
188
- "participant-api-key": "...",
189
- "providers": [
190
- ]
255
+ "menu": {
256
+ "name": "Customers",
257
+ "category": "Management",
258
+ "icon": "mdi-handshake-outline",
259
+ "featureflags": []
260
+ },
261
+ "header": "Customers",
262
+ "defaultDataSrc": "server://customers/",
263
+ "bind-resources": ""
191
264
  },
192
- "route": "dsp-connector",
193
- "integration": ["routing"]
194
- },
265
+ "route": "customers",
266
+ "routeAttributes": {
267
+ "rdf-type": "ds4go:Customer",
268
+ "use-id": ""
269
+ },
270
+ "integration": [
271
+ "menu",
272
+ "routing"
273
+ ]
274
+ }
195
275
  ```
196
276
 
197
277
  ## License