@spaceandtimelabs/makeinfinite-ui 0.59.2 → 0.60.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.
package/dist/index.d.ts CHANGED
@@ -148,6 +148,15 @@ export declare const APIHandler: (baseUrl: string) => {
148
148
  deleteProject: (projectName: string) => Promise<Response>;
149
149
  requestErrorCorrection: (projectName: string, componentId: string, errorMessage: string) => Promise<Response>;
150
150
  addImage: (formData: FormData) => Promise<Response>;
151
+ editElement: (params: {
152
+ projectName: string;
153
+ componentId: string;
154
+ elementXPath: string;
155
+ styleRequest?: object | null;
156
+ textRequest?: string | null;
157
+ backgroundImageRequest?: string | null;
158
+ domTreeRepr: string;
159
+ }) => Promise<Response>;
151
160
  initializeProject: (projectName: string) => Promise<Response>;
152
161
  };
153
162