@base44-preview/cli 0.0.40-pr.367.6330a3f → 0.0.40-pr.367.e453daf
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/dist/cli/index.js +10 -2
- package/dist/cli/index.js.map +3 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -240398,7 +240398,15 @@ var ListAvailableIntegrationsResponseSchema = exports_external.object({
|
|
|
240398
240398
|
integrationType: i.integration_type,
|
|
240399
240399
|
displayName: i.display_name,
|
|
240400
240400
|
description: i.description,
|
|
240401
|
-
connectionConfigFields: i.connection_config_fields
|
|
240401
|
+
connectionConfigFields: i.connection_config_fields.map((f) => ({
|
|
240402
|
+
name: f.name,
|
|
240403
|
+
displayName: f.display_name,
|
|
240404
|
+
description: f.description,
|
|
240405
|
+
placeholder: f.placeholder,
|
|
240406
|
+
required: f.required,
|
|
240407
|
+
validationPattern: f.validation_pattern,
|
|
240408
|
+
validationError: f.validation_error
|
|
240409
|
+
}))
|
|
240402
240410
|
}))
|
|
240403
240411
|
}));
|
|
240404
240412
|
|
|
@@ -257903,4 +257911,4 @@ export {
|
|
|
257903
257911
|
CLIExitError
|
|
257904
257912
|
};
|
|
257905
257913
|
|
|
257906
|
-
//# debugId=
|
|
257914
|
+
//# debugId=F1C9893FF46F878D64756E2164756E21
|