@arcgis/core-adapter 4.32.0-next.38 → 4.32.0-next.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +4 -4
- package/package.json +1 -1
- package/support/arcgis.d.ts +18 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -6,11 +6,11 @@ CLI Target: es2020
|
|
|
6
6
|
CLI Cleaning output folder
|
|
7
7
|
ESM Build start
|
|
8
8
|
CJS Build start
|
|
9
|
-
ESM dist/index.js 480.54 KB
|
|
10
|
-
ESM ⚡️ Build success in 1132ms
|
|
11
9
|
CJS dist/index.cjs 621.02 KB
|
|
12
|
-
CJS ⚡️ Build success in
|
|
10
|
+
CJS ⚡️ Build success in 553ms
|
|
11
|
+
ESM dist/index.js 480.54 KB
|
|
12
|
+
ESM ⚡️ Build success in 640ms
|
|
13
13
|
DTS Build start
|
|
14
|
-
DTS ⚡️ Build success in
|
|
14
|
+
DTS ⚡️ Build success in 13063ms
|
|
15
15
|
DTS dist/index.d.ts 251.88 KB
|
|
16
16
|
DTS dist/index.d.cts 251.88 KB
|
package/package.json
CHANGED
package/support/arcgis.d.ts
CHANGED
|
@@ -4237,6 +4237,22 @@ declare namespace __esri {
|
|
|
4237
4237
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-urlUtils.html#getProxyRule Read more...}
|
|
4238
4238
|
*/
|
|
4239
4239
|
getProxyRule(url: string): any;
|
|
4240
|
+
/**
|
|
4241
|
+
* Tests whether a url uses the data protocol.
|
|
4242
|
+
*
|
|
4243
|
+
* @param url The url to test.
|
|
4244
|
+
*
|
|
4245
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-urlUtils.html#isDataProtocol Read more...}
|
|
4246
|
+
*/
|
|
4247
|
+
isDataProtocol(url: string): boolean;
|
|
4248
|
+
/**
|
|
4249
|
+
* Tests whether a url uses the https protocol.
|
|
4250
|
+
*
|
|
4251
|
+
* @param url The url to test.
|
|
4252
|
+
*
|
|
4253
|
+
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-urlUtils.html#isHTTPSProtocol Read more...}
|
|
4254
|
+
*/
|
|
4255
|
+
isHTTPSProtocol(url: string): boolean;
|
|
4240
4256
|
/**
|
|
4241
4257
|
* Converts the URL arguments to an object representation.
|
|
4242
4258
|
*
|
|
@@ -13214,7 +13230,7 @@ declare namespace __esri {
|
|
|
13214
13230
|
*/
|
|
13215
13231
|
popupWindowFeatures: string;
|
|
13216
13232
|
/**
|
|
13217
|
-
* The ArcGIS Enterprise portal
|
|
13233
|
+
* The URL to either an ArcGIS Online or an ArcGIS Enterprise portal.
|
|
13218
13234
|
*
|
|
13219
13235
|
* @default "https://www.arcgis.com"
|
|
13220
13236
|
*
|
|
@@ -13325,7 +13341,7 @@ declare namespace __esri {
|
|
|
13325
13341
|
*/
|
|
13326
13342
|
popupWindowFeatures?: string;
|
|
13327
13343
|
/**
|
|
13328
|
-
* The ArcGIS Enterprise portal
|
|
13344
|
+
* The URL to either an ArcGIS Online or an ArcGIS Enterprise portal.
|
|
13329
13345
|
*
|
|
13330
13346
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-identity-OAuthInfo.html#portalUrl Read more...}
|
|
13331
13347
|
*/
|