New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@elastic/ems-client

Package Overview
Dependencies
Maintainers
66
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@elastic/ems-client - npm Package Compare versions

Comparing version 7.17.2 to 7.17.3

.buildkite/compare_dependencies.js

6

CHANGELOG.md

@@ -6,2 +6,8 @@ # Changelog

## [7.17.3] - 2024-07-10
### Changed
- Update dependencies #243
## [7.17.2] - 2024-07-05

@@ -8,0 +14,0 @@

8

package.json
{
"name": "@elastic/ems-client",
"version": "7.17.2",
"version": "7.17.3",
"description": "JavaScript client library for the Elastic Maps Service",

@@ -42,4 +42,4 @@ "main": "target/node/index.js",

"@types/topojson-specification": "^1.0.5",
"lodash": "^4.17.15",
"lru-cache": "^6.0.0",
"lodash": "^4.17.21",
"lru-cache": "^4.1.5",
"semver": "7.6.2",

@@ -67,3 +67,3 @@ "topojson-client": "^3.1.0"

"jest": "^26.4.0",
"node-fetch": "^2.6.1",
"node-fetch": "^2.6.7",
"prettier": "^2.0.5",

@@ -70,0 +70,0 @@ "ts-jest": "^26.2.0",

import { TMSService } from './tms_service';
import { EMSFormatType, FileLayer } from './file_layer';
import { FeatureCollection } from 'geojson';
type LocalizedStrings = {
declare type LocalizedStrings = {
[key: string]: string;
};
type BaseClientConfig = {
declare type BaseClientConfig = {
appName?: string;

@@ -20,9 +20,9 @@ manifestServiceUrl?: string;

};
type DeprecatedClientConfig = BaseClientConfig & {
declare type DeprecatedClientConfig = BaseClientConfig & {
kbnVersion: string;
};
type ClientConfig = BaseClientConfig & {
declare type ClientConfig = BaseClientConfig & {
appVersion: string;
};
type EmsCatalogService = {
declare type EmsCatalogService = {
id?: string;

@@ -33,11 +33,11 @@ name?: string;

};
type EmsCatalogManifest = {
declare type EmsCatalogManifest = {
version?: string;
services: EmsCatalogService[];
};
type EmsTmsCatalog = {
declare type EmsTmsCatalog = {
version?: string;
services: TMSServiceConfig[];
};
export type EmsTmsFormat = {
export declare type EmsTmsFormat = {
locale: string;

@@ -47,6 +47,6 @@ format: string;

};
export type BaseEmsServiceConfig = {
export declare type BaseEmsServiceConfig = {
attribution: EmsLayerAttribution[];
};
export type FileLayerConfig = BaseEmsServiceConfig & {
export declare type FileLayerConfig = BaseEmsServiceConfig & {
layer_id: string;

@@ -59,3 +59,3 @@ created_at: string;

};
export type FileLayerField = {
export declare type FileLayerField = {
type: string;

@@ -68,3 +68,3 @@ id: string;

};
export type TMSServiceConfig = BaseEmsServiceConfig & {
export declare type TMSServiceConfig = BaseEmsServiceConfig & {
id: string;

@@ -76,11 +76,11 @@ name: {

};
type EmsFileCatalog = {
declare type EmsFileCatalog = {
version?: string;
layers: FileLayerConfig[];
};
export type EmsLayerAttribution = {
export declare type EmsLayerAttribution = {
label: LocalizedStrings;
url: LocalizedStrings;
};
export type EmsFileLayerFormatGeoJson = {
export declare type EmsFileLayerFormatGeoJson = {
type: EMSFormatType.geojson;

@@ -90,3 +90,3 @@ url: string;

};
export type EmsFileLayerFormatTopoJson = {
export declare type EmsFileLayerFormatTopoJson = {
type: EMSFormatType.topojson;

@@ -93,0 +93,0 @@ url: string;

@@ -8,3 +8,3 @@ import { EMSClient, FileLayerConfig, FileLayerField } from './ems_client';

}
export type EMSFormatTypeStrings = keyof typeof EMSFormatType;
export declare type EMSFormatTypeStrings = keyof typeof EMSFormatType;
export declare class FileLayer extends AbstractEmsService {

@@ -11,0 +11,0 @@ protected readonly _config: FileLayerConfig;

import { EMSClient, TMSServiceConfig } from './ems_client';
import { AbstractEmsService } from './ems_service';
type EmsVectorSource = {
declare type EmsVectorSource = {
type: 'vector';

@@ -13,6 +13,6 @@ url: string;

};
type EmsVectorSources = {
declare type EmsVectorSources = {
[sourceName: string]: EmsVectorSource;
};
type EmsVectorStyle = {
declare type EmsVectorStyle = {
sources: EmsVectorSources;

@@ -32,3 +32,3 @@ sprite: string;

};
type EmsSprite = {
declare type EmsSprite = {
height: number;

@@ -40,6 +40,6 @@ pixelRatio: number;

};
type EmsSpriteSheet = {
declare type EmsSpriteSheet = {
[spriteName: string]: EmsSprite;
};
type EmsRasterStyle = {
declare type EmsRasterStyle = {
tilejson: string;

@@ -46,0 +46,0 @@ name: string;

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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