mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-03-13 05:15:30 +00:00
26 lines
873 B
TypeScript
26 lines
873 B
TypeScript
import { Offer } from "../../Contracts/DataModels";
|
|
import { logConsoleProgress } from "../../Utils/NotificationConsoleUtils";
|
|
import { client } from "../CosmosClient";
|
|
import { handleError } from "../ErrorHandlingUtils";
|
|
|
|
export const readOffers = async (): Promise<Offer[]> => {
|
|
const clearMessage = logConsoleProgress(`Querying offers`);
|
|
|
|
try {
|
|
const response = await client()
|
|
.offers.readAll()
|
|
.fetchAll();
|
|
return response?.resources;
|
|
} catch (error) {
|
|
// This should be removed when we can correctly identify if an account is serverless when connected using connection string too.
|
|
if (error.message.includes("Reading or replacing offers is not supported for serverless accounts")) {
|
|
return [];
|
|
}
|
|
|
|
handleError(error, `Error while querying offers`, "ReadOffers");
|
|
throw error;
|
|
} finally {
|
|
clearMessage();
|
|
}
|
|
};
|