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