@spaceandtimelabs/makeinfinite-ui 0.66.1 → 0.68.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
@@ -132,7 +132,7 @@ export declare const APIHandler: (baseUrl: string) => {
132
132
  tagCommit: (projectName: string, commitHash: string, tagName: string) => Promise<Response>;
133
133
  getComponentLibrary: () => Promise<Response>;
134
134
  addProjectComponent: (projectName: string, componentNamespace: string, componentName: string, layoutMetadata: any) => Promise<Response>;
135
- addProjectChart: (projectName: string, visualId: string, layoutMetadata: object) => Promise<Response>;
135
+ addProjectChart: (projectName: string, visualId: string, layoutMetadata: object, echartsConfig?: object) => Promise<Response>;
136
136
  updateProjectComponentLayoutMetadata: (projectName: string, componentId: string, layoutMetadata: any) => Promise<Response>;
137
137
  updateProjectComponentSourceCode: (projectName: string, componentId: string, sourceCode: string) => Promise<Response>;
138
138
  updateApplicationMetadata: (projectName: string, applicationName: string, applicationDescription: string, applicationCategory: string) => Promise<Response>;
@@ -164,6 +164,7 @@ export declare const APIHandler: (baseUrl: string) => {
164
164
  getCreatorPointsTop: (n?: number) => Promise<Response>;
165
165
  getProjectViewsHistory: (projectName: string, start?: Date, end?: Date, granularity?: "minute" | "hour" | "day" | "month" | "year", limit?: number) => Promise<Response>;
166
166
  getProjectViewsTop: (n?: number) => Promise<Response>;
167
+ preflightCheck: (projectName?: string) => Promise<Response>;
167
168
  };
168
169
 
169
170
  export declare const APIProxyHandler: (baseUrl: string, projectHmac?: string) => {