@integry/sdk 4.7.49 → 4.7.51

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.
@@ -252,6 +252,14 @@ type ShowFunctionOptions = {
252
252
  autoMapPayload?: boolean;
253
253
  version?: string | null;
254
254
  allow_workspace_connected_accounts?: boolean;
255
+ submitButtonText?: string; // Optional prop to customize the submit button text
256
+ onChangeCallback?: (data: {
257
+ fieldMachineName: string;
258
+ value: any;
259
+ }) => void;
260
+ hideSubmitButton?: boolean; // Optional prop to hide the submit button
261
+ hideFunctionTitle?: boolean; // Optional prop to hide the function title header
262
+ hiddenFields?: string[]; // Field machine names that should be hidden by default
255
263
  };
256
264
  type RenderAppAuthrozationsOptions = {
257
265
  containerId: string;