Socket
Socket
Sign inDemoInstall

@empathyco/x-adapter

Package Overview
Dependencies
Maintainers
5
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@empathyco/x-adapter - npm Package Compare versions

Comparing version 7.0.0-alpha.28 to 7.0.0-alpha.29

8

package.json
{
"name": "@empathyco/x-adapter",
"version": "7.0.0-alpha.28",
"version": "7.0.0-alpha.29",
"description": "A search client for the Empathy search API ",

@@ -43,7 +43,7 @@ "author": "Empathy Systems Corporation S.L.",

"dependencies": {
"@empathyco/x-deep-merge": "^1.3.0-alpha.13",
"@empathyco/x-deep-merge": "^1.3.0-alpha.14",
"@empathyco/x-get-safe-property-chain": "^1.3.0-alpha.3",
"@empathyco/x-logger": "^1.1.0",
"@empathyco/x-storage-service": "^2.0.0-alpha.2",
"@empathyco/x-types": "^10.0.0-alpha.21",
"@empathyco/x-types": "^10.0.0-alpha.22",
"inversify": "~5.0.1",

@@ -66,3 +66,3 @@ "reflect-metadata": "~0.1.13",

},
"gitHead": "83f5a452e4e0ee4744c87696b36ffc91e709fe34"
"gitHead": "e15e3879b1d1ef2a104427f66b3df2647a06860d"
}

@@ -376,4 +376,3 @@ ## API Report File for "@empathyco/x-adapter"

export class EmpathyBannerMapper implements ResponseMapper<EmpathyBanner, Banner> {
// Warning: (ae-forgotten-export) The symbol "TaggingInfo" needs to be exported by the entry point index.d.ts
constructor(taggingMappers: ResponseMapper<string, TaggingInfo>[]);
constructor(taggingMappers: ResponseMapper<string, TrackingRequest>[]);
// (undocumented)

@@ -593,3 +592,3 @@ map(rawBanner: EmpathyBanner, banner: Banner, context: ResponseMapperContext): Banner;

export class EmpathyPromotedMapper implements ResponseMapper<EmpathyPromoted, Promoted> {
constructor(taggingMappers: ResponseMapper<string, TaggingInfo>[]);
constructor(taggingMappers: ResponseMapper<string, TrackingRequest>[]);
// (undocumented)

@@ -623,3 +622,3 @@ map(rawPromoted: EmpathyPromoted, promoted: Promoted, context: ResponseMapperContext): Promoted;

export class EmpathyRedirectionMapper implements ResponseMapper<EmpathyDirect, Redirection> {
constructor(taggingMappers: ResponseMapper<string, TaggingInfo>[]);
constructor(taggingMappers: ResponseMapper<string, TrackingRequest>[]);
// (undocumented)

@@ -724,3 +723,3 @@ map(rawDirect: EmpathyDirect, redirection: Redirection, context: ResponseMapperContext): Redirection;

export class EmpathyResultMapper implements ResponseMapper<EmpathyResult, Result> {
constructor(config: EmpathyAdapterConfig, taggingMappers: ResponseMapper<string, TaggingInfo>[]);
constructor(config: EmpathyAdapterConfig, taggingMappers: ResponseMapper<string, TrackingRequest>[]);
// (undocumented)

@@ -876,5 +875,5 @@ map(rawResult: EmpathyResult, result: Result, context: ResponseMapperContext): Result;

// @public
export class EmpathyTaggingMapper implements ResponseMapper<string, TaggingInfo> {
export class EmpathyTaggingMapper implements ResponseMapper<string, TrackingRequest> {
// (undocumented)
map(taggingUrl: string, tagging: TaggingInfo): TaggingInfo;
map(taggingUrl: string, tagging: TrackingRequest): TrackingRequest;
}

@@ -1353,3 +1352,3 @@

// (undocumented)
queryTagging: TaggingInfo;
queryTagging: TrackingRequest;
// (undocumented)

@@ -1412,3 +1411,3 @@ redirections?: Redirection[];

// (undocumented)
showTagging: TaggingInfo;
showTagging: TrackingRequest;
}

@@ -1415,0 +1414,0 @@

@@ -1,2 +0,3 @@

import { Banner, TaggingInfo } from '@empathyco/x-types';
import { Banner } from '@empathyco/x-types';
import { TrackingRequest } from '../../../types/requests.types';
import { ResponseMapper, ResponseMapperContext } from '../../empathy-adapter.types';

@@ -11,4 +12,4 @@ import { EmpathyBanner } from '../../models/entities/empathy-banner.model';

private readonly mapTagging;
constructor(taggingMappers: ResponseMapper<string, TaggingInfo>[]);
constructor(taggingMappers: ResponseMapper<string, TrackingRequest>[]);
map(rawBanner: EmpathyBanner, banner: Banner, context: ResponseMapperContext): Banner;
}

@@ -1,2 +0,3 @@

import { Promoted, TaggingInfo } from '@empathyco/x-types';
import { Promoted } from '@empathyco/x-types';
import { TrackingRequest } from '../../../types/requests.types';
import { ResponseMapper, ResponseMapperContext } from '../../empathy-adapter.types';

@@ -11,4 +12,4 @@ import { EmpathyPromoted } from '../../models';

private readonly mapTagging;
constructor(taggingMappers: ResponseMapper<string, TaggingInfo>[]);
constructor(taggingMappers: ResponseMapper<string, TrackingRequest>[]);
map(rawPromoted: EmpathyPromoted, promoted: Promoted, context: ResponseMapperContext): Promoted;
}

@@ -1,2 +0,3 @@

import { Redirection, TaggingInfo } from '@empathyco/x-types';
import { Redirection } from '@empathyco/x-types';
import { TrackingRequest } from '../../../types/requests.types';
import { ResponseMapper, ResponseMapperContext } from '../../empathy-adapter.types';

@@ -11,4 +12,4 @@ import { EmpathyDirect } from '../../models/entities/empathy-direct.model';

private readonly mapTagging;
constructor(taggingMappers: ResponseMapper<string, TaggingInfo>[]);
constructor(taggingMappers: ResponseMapper<string, TrackingRequest>[]);
map(rawDirect: EmpathyDirect, redirection: Redirection, context: ResponseMapperContext): Redirection;
}

@@ -1,2 +0,2 @@

import { TaggingInfo } from '@empathyco/x-types';
import { TrackingRequest } from '../../../types/requests.types';
import { ResponseMapper } from '../../empathy-adapter.types';

@@ -8,6 +8,6 @@ /**

*/
export declare class EmpathyTaggingMapper implements ResponseMapper<string, TaggingInfo> {
export declare class EmpathyTaggingMapper implements ResponseMapper<string, TrackingRequest> {
private readonly logger;
map(taggingUrl: string, tagging: TaggingInfo): TaggingInfo;
map(taggingUrl: string, tagging: TrackingRequest): TrackingRequest;
private extractUrlParameters;
}

@@ -1,2 +0,3 @@

import { Result, TaggingInfo } from '@empathyco/x-types';
import { Result } from '@empathyco/x-types';
import { TrackingRequest } from '../../../../types/requests.types';
import { EmpathyAdapterConfig } from '../../../config/empathy-adapter-config.types';

@@ -14,5 +15,5 @@ import { ResponseMapper, ResponseMapperContext } from '../../../empathy-adapter.types';

private readonly trackingResultConfig;
constructor(config: EmpathyAdapterConfig, taggingMappers: ResponseMapper<string, TaggingInfo>[]);
constructor(config: EmpathyAdapterConfig, taggingMappers: ResponseMapper<string, TrackingRequest>[]);
map(rawResult: EmpathyResult, result: Result, context: ResponseMapperContext): Result;
private createResultTagging;
}

@@ -1,2 +0,3 @@

import { Banner, Facet, NextQuery, PartialResult, Promoted, Redirection, RelatedTag, Result, Suggestion, TaggingInfo } from '@empathyco/x-types';
import { Banner, Facet, NextQuery, PartialResult, Promoted, Redirection, RelatedTag, Result, Suggestion } from '@empathyco/x-types';
import { TrackingRequest } from './requests.types';
/**

@@ -32,3 +33,3 @@ * TODO https://searchbroker.atlassian.net/browse/EX-2163

export interface TrackableShowResponse {
showTagging: TaggingInfo;
showTagging: TrackingRequest;
}

@@ -45,3 +46,3 @@ /**

promoteds?: Promoted[];
queryTagging: TaggingInfo;
queryTagging: TrackingRequest;
redirections?: Redirection[];

@@ -48,0 +49,0 @@ results: Result[];

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc