2025-08-04 18:41:00 -04:00

249 lines
9.1 KiB
JavaScript

var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
// builds/browser.ts
var browser_exports = {};
__export(browser_exports, {
algoliasearch: () => algoliasearch,
apiClientVersion: () => apiClientVersion
});
import { abtestingV3Client } from "@algolia/abtesting";
import { abtestingClient } from "@algolia/client-abtesting";
import { analyticsClient } from "@algolia/client-analytics";
import { insightsClient } from "@algolia/client-insights";
import { personalizationClient } from "@algolia/client-personalization";
import { querySuggestionsClient } from "@algolia/client-query-suggestions";
import { searchClient } from "@algolia/client-search";
import { ingestionClient } from "@algolia/ingestion";
import { monitoringClient } from "@algolia/monitoring";
import { recommendClient } from "@algolia/recommend";
// builds/models.ts
var models_exports = {};
__export(models_exports, {
apiClientVersion: () => apiClientVersion
});
__reExport(models_exports, abtesting_star);
__reExport(models_exports, client_abtesting_star);
__reExport(models_exports, client_analytics_star);
__reExport(models_exports, client_insights_star);
__reExport(models_exports, client_personalization_star);
__reExport(models_exports, client_query_suggestions_star);
__reExport(models_exports, client_search_star);
__reExport(models_exports, ingestion_star);
__reExport(models_exports, monitoring_star);
__reExport(models_exports, recommend_star);
import { apiClientVersion } from "@algolia/client-search";
import * as abtesting_star from "@algolia/abtesting";
import * as client_abtesting_star from "@algolia/client-abtesting";
import * as client_analytics_star from "@algolia/client-analytics";
import * as client_insights_star from "@algolia/client-insights";
import * as client_personalization_star from "@algolia/client-personalization";
import * as client_query_suggestions_star from "@algolia/client-query-suggestions";
import * as client_search_star from "@algolia/client-search";
import * as ingestion_star from "@algolia/ingestion";
import * as monitoring_star from "@algolia/monitoring";
import * as recommend_star from "@algolia/recommend";
// builds/browser.ts
__reExport(browser_exports, models_exports);
function algoliasearch(appId, apiKey, options) {
if (!appId || typeof appId !== "string") {
throw new Error("`appId` is missing.");
}
if (!apiKey || typeof apiKey !== "string") {
throw new Error("`apiKey` is missing.");
}
const client = searchClient(appId, apiKey, options);
let ingestionTransporter;
if (options?.transformation) {
if (!options.transformation.region) {
throw new Error("`region` must be provided when leveraging the transformation pipeline");
}
ingestionTransporter = ingestionClient(appId, apiKey, options.transformation.region, options);
}
return {
...client,
async saveObjectsWithTransformation({ indexName, objects, waitForTasks }, requestOptions) {
if (!ingestionTransporter) {
throw new Error("`transformation.region` must be provided at client instantiation before calling this method.");
}
if (!options?.transformation?.region) {
throw new Error("`region` must be provided when leveraging the transformation pipeline");
}
return ingestionTransporter.chunkedPush(
{ indexName, objects, action: "addObject", waitForTasks },
requestOptions
);
},
async partialUpdateObjectsWithTransformation({ indexName, objects, createIfNotExists, waitForTasks }, requestOptions) {
if (!ingestionTransporter) {
throw new Error("`transformation.region` must be provided at client instantiation before calling this method.");
}
if (!options?.transformation?.region) {
throw new Error("`region` must be provided when leveraging the transformation pipeline");
}
return ingestionTransporter.chunkedPush(
{
indexName,
objects,
action: createIfNotExists ? "partialUpdateObject" : "partialUpdateObjectNoCreate",
waitForTasks
},
requestOptions
);
},
async replaceAllObjectsWithTransformation({ indexName, objects, batchSize, scopes }, requestOptions) {
if (!ingestionTransporter) {
throw new Error("`transformation.region` must be provided at client instantiation before calling this method.");
}
if (!options?.transformation?.region) {
throw new Error("`region` must be provided when leveraging the transformation pipeline");
}
const randomSuffix = Math.floor(Math.random() * 1e6) + 1e5;
const tmpIndexName = `${indexName}_tmp_${randomSuffix}`;
if (scopes === void 0) {
scopes = ["settings", "rules", "synonyms"];
}
try {
let copyOperationResponse = await this.operationIndex(
{
indexName,
operationIndexParams: {
operation: "copy",
destination: tmpIndexName,
scope: scopes
}
},
requestOptions
);
const watchResponses = await ingestionTransporter.chunkedPush(
{ indexName: tmpIndexName, objects, waitForTasks: true, batchSize, referenceIndexName: indexName },
requestOptions
);
await this.waitForTask({
indexName: tmpIndexName,
taskID: copyOperationResponse.taskID
});
copyOperationResponse = await this.operationIndex(
{
indexName,
operationIndexParams: {
operation: "copy",
destination: tmpIndexName,
scope: scopes
}
},
requestOptions
);
await this.waitForTask({
indexName: tmpIndexName,
taskID: copyOperationResponse.taskID
});
const moveOperationResponse = await this.operationIndex(
{
indexName: tmpIndexName,
operationIndexParams: { operation: "move", destination: indexName }
},
requestOptions
);
await this.waitForTask({
indexName: tmpIndexName,
taskID: moveOperationResponse.taskID
});
return { copyOperationResponse, watchResponses, moveOperationResponse };
} catch (error) {
await this.deleteIndex({ indexName: tmpIndexName });
throw error;
}
},
/**
* Get the value of the `algoliaAgent`, used by our libraries internally and telemetry system.
*/
get _ua() {
return client.transporter.algoliaAgent.value;
},
initAbtesting: (initOptions) => {
return abtestingClient(
initOptions.appId || appId,
initOptions.apiKey || apiKey,
initOptions.region,
initOptions.options
);
},
initAbtestingV3: (initOptions) => {
return abtestingV3Client(
initOptions.appId || appId,
initOptions.apiKey || apiKey,
initOptions.region,
initOptions.options
);
},
initAnalytics: (initOptions) => {
return analyticsClient(
initOptions.appId || appId,
initOptions.apiKey || apiKey,
initOptions.region,
initOptions.options
);
},
initIngestion: (initOptions) => {
return ingestionClient(
initOptions.appId || appId,
initOptions.apiKey || apiKey,
initOptions.region,
initOptions.options
);
},
initInsights: (initOptions) => {
return insightsClient(
initOptions.appId || appId,
initOptions.apiKey || apiKey,
initOptions.region,
initOptions.options
);
},
initMonitoring: (initOptions = {}) => {
return monitoringClient(initOptions.appId || appId, initOptions.apiKey || apiKey, initOptions.options);
},
initPersonalization: (initOptions) => {
return personalizationClient(
initOptions.appId || appId,
initOptions.apiKey || apiKey,
initOptions.region,
initOptions.options
);
},
initQuerySuggestions: (initOptions) => {
return querySuggestionsClient(
initOptions.appId || appId,
initOptions.apiKey || apiKey,
initOptions.region,
initOptions.options
);
},
initRecommend: (initOptions = {}) => {
return recommendClient(initOptions.appId || appId, initOptions.apiKey || apiKey, initOptions.options);
}
};
}
export {
algoliasearch,
apiClientVersion
};
//# sourceMappingURL=browser.js.map