deploy: ebd4cc0010
This commit is contained in:
93
node_modules/@algolia/client-personalization/dist/client-personalization.d.ts
generated
vendored
93
node_modules/@algolia/client-personalization/dist/client-personalization.d.ts
generated
vendored
@@ -1,93 +0,0 @@
|
||||
import { ClientTransporterOptions } from '@algolia/client-common';
|
||||
import { CreateClient } from '@algolia/client-common';
|
||||
import { RequestOptions } from '@algolia/transporter';
|
||||
import { Transporter } from '@algolia/transporter';
|
||||
|
||||
export declare const createPersonalizationClient: CreateClient<PersonalizationClient, PersonalizationClientOptions & ClientTransporterOptions>;
|
||||
|
||||
export declare const getPersonalizationStrategy: (base: PersonalizationClient) => (requestOptions?: RequestOptions | undefined) => Readonly<Promise<GetPersonalizationStrategyResponse>>;
|
||||
|
||||
export declare type GetPersonalizationStrategyResponse = {
|
||||
/**
|
||||
* Events scoring
|
||||
*/
|
||||
eventsScoring: Array<{
|
||||
eventName: string;
|
||||
eventType: string;
|
||||
score: number;
|
||||
}>;
|
||||
/**
|
||||
* Facets scoring
|
||||
*/
|
||||
facetsScoring: Array<{
|
||||
facetName: string;
|
||||
score: number;
|
||||
}>;
|
||||
/**
|
||||
* Personalization impact
|
||||
*/
|
||||
personalizationImpact: number;
|
||||
};
|
||||
|
||||
export declare type PersonalizationClient = {
|
||||
/**
|
||||
* The application id.
|
||||
*/
|
||||
readonly appId: string;
|
||||
/**
|
||||
* The underlying transporter.
|
||||
*/
|
||||
readonly transporter: Transporter;
|
||||
};
|
||||
|
||||
export declare type PersonalizationClientOptions = {
|
||||
/**
|
||||
* The application id.
|
||||
*/
|
||||
readonly appId: string;
|
||||
/**
|
||||
* The api key.
|
||||
*/
|
||||
readonly apiKey: string;
|
||||
/**
|
||||
* The prefered region.
|
||||
*/
|
||||
readonly region?: string;
|
||||
};
|
||||
|
||||
export declare type PersonalizationStrategy = {
|
||||
/**
|
||||
* Events scoring
|
||||
*/
|
||||
readonly eventsScoring: ReadonlyArray<{
|
||||
readonly eventName: string;
|
||||
readonly eventType: string;
|
||||
readonly score: number;
|
||||
}>;
|
||||
/**
|
||||
* Facets scoring
|
||||
*/
|
||||
readonly facetsScoring: ReadonlyArray<{
|
||||
readonly facetName: string;
|
||||
readonly score: number;
|
||||
}>;
|
||||
/**
|
||||
* Personalization impact
|
||||
*/
|
||||
readonly personalizationImpact: number;
|
||||
};
|
||||
|
||||
export declare const setPersonalizationStrategy: (base: PersonalizationClient) => (personalizationStrategy: PersonalizationStrategy, requestOptions?: RequestOptions | undefined) => Readonly<Promise<SetPersonalizationStrategyResponse>>;
|
||||
|
||||
export declare type SetPersonalizationStrategyResponse = {
|
||||
/**
|
||||
* The status code.
|
||||
*/
|
||||
status?: number;
|
||||
/**
|
||||
* The message.
|
||||
*/
|
||||
message: string;
|
||||
};
|
||||
|
||||
export { }
|
||||
Reference in New Issue
Block a user