Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@evergis/api

Package Overview
Dependencies
Maintainers
6
Versions
329
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@evergis/api - npm Package Compare versions

Comparing version 0.1.25 to 0.1.26

8

es/__generated__/data-contracts/index.d.ts

@@ -1949,2 +1949,4 @@ /**

defaultValue?: number;
/** Name of default condition group. */
title?: string;
/** This expression is executed against the feature to be drawn, and the resulting number is used as the position

@@ -1976,2 +1978,4 @@ on the scale, from which the parameter value is taken. */

defaultValue?: string;
/** Name of default condition group. */
title?: string;
/** This expression is executed against the feature to be drawn, and the resulting number is used as the position

@@ -2002,2 +2006,4 @@ on the scale, from which the parameter value is taken. */

defaultValue?: number;
/** Name of default condition group. */
title?: string;
/** To choose the value for the parameter, this class checks the conditions in this array. The value of the first array entry

@@ -2026,2 +2032,4 @@ which condition returns true against a target feature, is used. */

defaultValue?: string;
/** Name of default condition group. */
title?: string;
/** To choose the value for the parameter, this class checks the conditions in this array. The value of the first array entry

@@ -2028,0 +2036,0 @@ which condition returns true against a target feature, is used. */

@@ -5,2 +5,3 @@ import { ServiceBase } from './ServiceBase';

geocode({ address, sr }: GeocodeParams): Promise<GeocodeResultDc[]>;
geocodeByPoint({ pointGeometry, pointSr }: GeocodeByPointParams): Promise<GeocodeResultDc[]>;
suggest(address?: string): Promise<GeocodeSuggestResultDc[]>;

@@ -14,1 +15,7 @@ }

};
export declare type GeocodeByPointParams = {
/** input point geometry. */
pointGeometry?: number[];
/** input point sr. */
pointSr?: number;
};

@@ -14,2 +14,7 @@ /*

}
geocodeByPoint({ pointGeometry, pointSr }) {
return this.http
.get(`${this.name}/geocodeByPoint`, { pointGeometry, pointSr })
.json();
}
suggest(address) {

@@ -16,0 +21,0 @@ return this.http

2

es/__generated__/Layers.d.ts

@@ -17,2 +17,3 @@ import { Service } from './Service';

updateCompositeService({ name, configuration, }: UpdateCompositeServiceParams): Promise<CompositeServiceInfoDc>;
reloadService(name: string): Promise<ServiceInfoDc>;
getFeatures({ name, query, offset, limit, wkid }: GetFeaturesParams): Promise<void>;

@@ -34,2 +35,3 @@ createFeatures({ name, features }: CreateFeaturesParams): Promise<LayerUpdateInfoDc>;

setPreview({ name, file }: SetPreviewParams): Promise<FileUploadResponse>;
deletePreview(name: string): Promise<void>;
getResourceDependencies(name: string): Promise<ResourceDependenciesDc>;

@@ -36,0 +38,0 @@ getResourceReferences(name: string): Promise<ResourceDependenciesDc>;

@@ -77,2 +77,5 @@ /*

}
reloadService(name) {
return this.http.get(`layers/${name}/reload`).json();
}
getFeatures({ name, query, offset, limit, wkid }) {

@@ -172,2 +175,5 @@ return this.http

}
deletePreview(name) {
return this.http.delete(`layers/${name}/preview`).then(() => { });
}
getResourceDependencies(name) {

@@ -174,0 +180,0 @@ return this.http

@@ -16,2 +16,3 @@ import { Service } from './Service';

setPreview({ name, file }: SetPreviewParams): Promise<FileUploadResponse>;
deletePreview(name: string): Promise<void>;
getResourceDependencies(name: string): Promise<ResourceDependenciesDc>;

@@ -18,0 +19,0 @@ getResourceReferences(name: string): Promise<ResourceDependenciesDc>;

@@ -59,2 +59,5 @@ /*

}
deletePreview(name) {
return this.http.delete(`projects/${name}/preview`).then(() => { });
}
getResourceDependencies(name) {

@@ -61,0 +64,0 @@ return this.http

@@ -11,2 +11,4 @@ import { ServiceBase } from './ServiceBase';

touchResources({ resourceType, resources }: TouchResourcesParams): Promise<void>;
shareResources({ resourceType, resources }: ShareResourcesParams): Promise<CatalogDataDc>;
unshareResources({ resourceType, resources }: UnshareResourcesParams): Promise<CatalogDataDc>;
}

@@ -71,1 +73,13 @@ export declare type GetProjectsParams = {

};
export declare type ShareResourcesParams = {
/** */
resourceType: 'tables' | 'layers' | 'projects';
/** */
resources?: string[];
};
export declare type UnshareResourcesParams = {
/** */
resourceType: 'tables' | 'layers' | 'projects';
/** */
resources?: string[];
};

@@ -63,3 +63,13 @@ /*

}
shareResources({ resourceType, resources }) {
return this.http
.post(`${this.name}/${resourceType}/shareAll`, resources)
.json();
}
unshareResources({ resourceType, resources }) {
return this.http
.post(`${this.name}/${resourceType}/unshareAll`, resources)
.json();
}
}
//# sourceMappingURL=ResourceCatalog.js.map

@@ -16,2 +16,3 @@ import { Service } from './Service';

setPreview({ name, file }: SetPreviewParams): Promise<FileUploadResponse>;
deletePreview(name: string): Promise<void>;
}

@@ -18,0 +19,0 @@ export declare type GetTableListParams = {

@@ -59,3 +59,6 @@ /*

}
deletePreview(name) {
return this.http.delete(`tables/${name}/preview`).then(() => { });
}
}
//# sourceMappingURL=Tables.js.map

2

package.json
{
"name": "@evergis/api",
"version": "0.1.25",
"version": "0.1.26",
"license": "ISC",

@@ -5,0 +5,0 @@ "author": "everpoint",

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

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