@pipedream/connect-react 1.0.0-preview.9 → 1.0.1
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 +5 -0
- package/dist/connect-react.es.js +13978 -11459
- package/dist/connect-react.umd.d.ts +40 -21
- package/dist/connect-react.umd.js +18 -16
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -149,6 +149,11 @@ type ComponentFormProps = {
|
|
|
149
149
|
onUpdateConfiguredProps: (v: Record<string, any>) => void;
|
|
150
150
|
/** Hide optional props section */
|
|
151
151
|
hideOptionalProps: boolean;
|
|
152
|
+
/** SDK response payload. Used in conjunction with enableDebugging to
|
|
153
|
+
* show errors in the form. */
|
|
154
|
+
sdkResponse: unknown[] | unknown | undefined;
|
|
155
|
+
/** Whether to show show errors in the form. Requires sdkErrors to be set. */
|
|
156
|
+
enableDebugging?: boolean;
|
|
152
157
|
};
|
|
153
158
|
```
|
|
154
159
|
|