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

@esri/arcgis-rest-types

Package Overview
Dependencies
Maintainers
8
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@esri/arcgis-rest-types - npm Package Compare versions

Comparing version 3.1.2 to 3.2.0

30

dist/types/service.d.ts

@@ -106,1 +106,31 @@ import { ISpatialReference, IExtent } from "./geometry";

}
/**
* Very generic structure representing the return value from the
* /arcgis/rest/admin/services/<service-name>/FeatureServer?f=json response
*/
export interface IServiceInfo extends Record<string, unknown> {
adminServiceInfo?: Record<string, unknown>;
layers: Record<string, unknown>[];
}
/**
* Individual View Source entry
*/
export interface IViewServiceSource {
name: string;
type: string;
url: string;
serviceItemId: string;
}
/**
* Response from the /sources end-point of a view service
*/
export interface IViewServiceSources {
currentVersion: number;
services: IViewServiceSource[];
}
/**
* Response from the portals/Self/isServiceNameAvailable request
*/
export interface IServiceNameAvailable {
available: boolean;
}

2

package.json
{
"name": "@esri/arcgis-rest-types",
"version": "3.1.2",
"version": "3.2.0",
"description": "Shared TypeScript types for @esri/arcgis-rest-js",

@@ -5,0 +5,0 @@ "types": "dist/types/index.d.ts",

@@ -115,1 +115,34 @@ /* Copyright (c) 2018 Environmental Systems Research Institute, Inc.

}
/**
* Very generic structure representing the return value from the
* /arcgis/rest/admin/services/<service-name>/FeatureServer?f=json response
*/
export interface IServiceInfo extends Record<string, unknown> {
adminServiceInfo?: Record<string, unknown>;
layers: Record<string, unknown>[];
}
/**
* Individual View Source entry
*/
export interface IViewServiceSource {
name: string;
type: string;
url: string;
serviceItemId: string;
}
/**
* Response from the /sources end-point of a view service
*/
export interface IViewServiceSources {
currentVersion: number;
services: IViewServiceSource[];
}
/**
* Response from the portals/Self/isServiceNameAvailable request
*/
export interface IServiceNameAvailable {
available: boolean;
}
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