@boltic/cli 1.0.6-beta.11 → 1.0.6-beta.12
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 +14 -13
- package/commands/integration.js +26 -8
- package/helper/validation.js +260 -24
- package/llm.txt +295 -0
- package/package.json +1 -1
- package/templates/component-schemas.js +929 -0
- package/templates/schemas.js +13 -1
package/templates/schemas.js
CHANGED
|
@@ -98,7 +98,13 @@ const base = (name, create_catalogue) => {
|
|
|
98
98
|
displayType: "select",
|
|
99
99
|
placeholder: "Select a resource",
|
|
100
100
|
description: "Select the resource you want to work with.",
|
|
101
|
-
options: [
|
|
101
|
+
options: [
|
|
102
|
+
{
|
|
103
|
+
label: "Resource 1",
|
|
104
|
+
value: "resource1",
|
|
105
|
+
description: "Description for Resource 1",
|
|
106
|
+
},
|
|
107
|
+
],
|
|
102
108
|
value: "",
|
|
103
109
|
validation: {
|
|
104
110
|
required: true,
|
|
@@ -154,6 +160,8 @@ const webhook = (name) => {
|
|
|
154
160
|
{
|
|
155
161
|
label: "Webhook",
|
|
156
162
|
value: "webhook",
|
|
163
|
+
description:
|
|
164
|
+
"Receive notifications from the service.",
|
|
157
165
|
},
|
|
158
166
|
],
|
|
159
167
|
value: "",
|
|
@@ -181,6 +189,8 @@ const webhook = (name) => {
|
|
|
181
189
|
{
|
|
182
190
|
label: "Data Submission",
|
|
183
191
|
value: "webhook.data_submission",
|
|
192
|
+
description:
|
|
193
|
+
"Receive notifications when data is submitted.",
|
|
184
194
|
},
|
|
185
195
|
],
|
|
186
196
|
value: "",
|
|
@@ -395,10 +405,12 @@ const resource1 = {
|
|
|
395
405
|
{
|
|
396
406
|
label: "Create Account",
|
|
397
407
|
value: "resource1.create",
|
|
408
|
+
description: "Create a new account.",
|
|
398
409
|
},
|
|
399
410
|
{
|
|
400
411
|
label: "Delete Account",
|
|
401
412
|
value: "resource1.delete",
|
|
413
|
+
description: "Delete an existing account.",
|
|
402
414
|
},
|
|
403
415
|
],
|
|
404
416
|
validation: {
|