@integry/sdk 4.7.49 → 4.7.50

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,12 @@ 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
255
261
  };
256
262
  type RenderAppAuthrozationsOptions = {
257
263
  containerId: string;