@overmap-ai/core 1.0.78-bulk-update.11 → 1.0.78-bulk-update.14
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.
|
@@ -25,5 +25,5 @@ export declare abstract class GeoImageService<TState extends OvermapRootState, T
|
|
|
25
25
|
bulkAdd(payloads: BulkGeoImagePayload[], projectUuid: Project["uuid"]): Promise<OptimisticMultipleModelResult<GeoImage>>;
|
|
26
26
|
update(payload: UUID<Partial<Pick<GeoImagePayload, "title" | "description">>>): OptimisticModelResult<GeoImage>;
|
|
27
27
|
delete(uuid: GeoImage["uuid"]): Promise<void>;
|
|
28
|
-
refreshStore(projectUuid: Project["uuid"], signal?: AbortSignal): Promise<GeoImage[]
|
|
28
|
+
refreshStore(projectUuid: Project["uuid"], signal?: AbortSignal): Promise<GeoImage[]>;
|
|
29
29
|
}
|
|
@@ -106,8 +106,8 @@ export declare const selectAssets: ((state: {
|
|
|
106
106
|
argsMemoize: typeof import('reselect').weakMapMemoize;
|
|
107
107
|
memoize: typeof import('reselect').weakMapMemoize;
|
|
108
108
|
};
|
|
109
|
+
export declare const selectAssetsOfProject: OvermapSelectorWithArgs<AssetType["uuid"], Stored<Asset>[]>;
|
|
109
110
|
export declare const selectAssetsOfAssetType: OvermapSelectorWithArgs<AssetType["uuid"], Stored<Asset>[]>;
|
|
110
111
|
export declare const selectAssetById: OvermapSelectorWithArgs<Asset["uuid"], Stored<Asset> | undefined>;
|
|
111
112
|
export declare const selectAssetsByIds: (uuids: string[]) => (state: any) => Stored<Asset>[];
|
|
112
|
-
export declare const selectNumberOfAssetsOfAssetType: OvermapSelectorWithArgs<AssetType["uuid"], number>;
|
|
113
113
|
export declare const assetReducer: import('redux').Reducer<AssetState>;
|