@integry/sdk 3.5.9 → 3.6.0

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.
@@ -150,6 +150,9 @@ type FlowCardProps = {
150
150
  }) => void;
151
151
  dFlag?: string;
152
152
  };
153
+ interface NestedObject {
154
+ [key: string]: string | number | NestedObject;
155
+ }
153
156
  interface UserConfig {
154
157
  availableFlowsLabel?: string;
155
158
  myFlowsLabel?: string;
@@ -162,6 +165,7 @@ interface UserConfig {
162
165
  isReadOnly?: boolean;
163
166
  marketplaceModalTitle?: string;
164
167
  buttonLabelToSaveIntegration?: string;
168
+ objects?: NestedObject;
165
169
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
166
170
  [other: string]: any;
167
171
  }