odp-sdk
Version:
Ocean Data Platform JavaScript SDK
40 lines • 2.26 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const DataMeshApiClient_1 = __importDefault(require("./DataMeshApiClient"));
class Catalog {
constructor(options) {
this.searchCatalog = (searchString) => __awaiter(this, void 0, void 0, function* () {
return this._dataMeshApiClient.searchCatalog(searchString);
});
this.autocompleteCatalog = (searchString) => __awaiter(this, void 0, void 0, function* () {
return this._dataMeshApiClient.autocompleteCatalog(searchString);
});
this.autocompleteDataLayers = (keyword) => __awaiter(this, void 0, void 0, function* () {
return this._dataMeshApiClient.autocompleteDataLayers(keyword);
});
this.getDataLayerById = (id) => __awaiter(this, void 0, void 0, function* () {
return this._dataMeshApiClient.getLayerById(id);
});
this.getDataProductByUuid = (dataProductUuid) => __awaiter(this, void 0, void 0, function* () {
return this._dataMeshApiClient.getDataProductByUuid(dataProductUuid);
});
this.getAllDataProducts = () => __awaiter(this, void 0, void 0, function* () {
return this._dataMeshApiClient.getAllDataProducts();
});
this._dataMeshApiClient = DataMeshApiClient_1.default.getDataMeshApiClient(options);
}
}
exports.default = Catalog;
//# sourceMappingURL=Catalog.js.map