@spaceandtimelabs/makeinfinite-ui 0.31.0 → 0.33.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
@@ -13,7 +13,8 @@ export declare const getRedoTargetCommitForFile: (projectName: string, filePath:
13
13
 
14
14
  export declare const getTags: (projectName: string, projectUrl: string) => Promise<{
15
15
  tag: string;
16
- timestamp: number;
16
+ targetCommitTimestamp: number;
17
+ targetCommit: string;
17
18
  ref: string;
18
19
  }[]>;
19
20
 
@@ -104,6 +105,12 @@ export declare const syncAndRetry: (projectName: string, projectRepository: stri
104
105
 
105
106
  export declare const useAPI: () => APIContextType;
106
107
 
108
+ export declare const useAppMetadata: (projectName: string, deps?: any[]) => any;
109
+
110
+ export declare const useAppSettings: (projectName: string, deps?: any[]) => any;
111
+
112
+ export declare const useAppVersions: (projectName: string, projectURL: string, deps?: any[]) => any;
113
+
107
114
  export declare const useB64UrlForProjectImage: (projectName: string, imageFilename: string) => string;
108
115
 
109
116
  export declare const useProject: () => any;