@arcgis/core-adapter 4.33.0-next.152 → 4.33.0-next.153

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/dist/index.cjs CHANGED
@@ -1844,6 +1844,17 @@ async function newLayersSupportPixelBlock(properties) {
1844
1844
  const ModConstructor = await importLayersSupportPixelBlock();
1845
1845
  return new ModConstructor(properties);
1846
1846
  }
1847
+ async function importLayersSupportPlaybackInfo() {
1848
+ if (isAMD) {
1849
+ return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
1850
+ }
1851
+ const module2 = await import("@arcgis/core/layers/support/PlaybackInfo.js");
1852
+ return isDefaultModule(module2) ? module2.default : module2;
1853
+ }
1854
+ async function newLayersSupportPlaybackInfo(properties) {
1855
+ const ModConstructor = await importLayersSupportPlaybackInfo();
1856
+ return new ModConstructor(properties);
1857
+ }
1847
1858
  async function importLayersSupportPublishingInfo() {
1848
1859
  if (isAMD) {
1849
1860
  return await window.$arcgis.import("esri/layers/support/PublishingInfo");
@@ -10997,6 +11008,7 @@ exports.importLayersSupportParquetEncodingLocation = importLayersSupportParquetE
10997
11008
  exports.importLayersSupportParquetEncodingWkb = importLayersSupportParquetEncodingWkb;
10998
11009
  exports.importLayersSupportParquetUtils = importLayersSupportParquetUtils;
10999
11010
  exports.importLayersSupportPixelBlock = importLayersSupportPixelBlock;
11011
+ exports.importLayersSupportPlaybackInfo = importLayersSupportPlaybackInfo;
11000
11012
  exports.importLayersSupportPublishingInfo = importLayersSupportPublishingInfo;
11001
11013
  exports.importLayersSupportRangeDomain = importLayersSupportRangeDomain;
11002
11014
  exports.importLayersSupportRasterBandInfo = importLayersSupportRasterBandInfo;
@@ -11938,6 +11950,7 @@ exports.newLayersSupportOrderByInfo = newLayersSupportOrderByInfo;
11938
11950
  exports.newLayersSupportParquetEncodingLocation = newLayersSupportParquetEncodingLocation;
11939
11951
  exports.newLayersSupportParquetEncodingWkb = newLayersSupportParquetEncodingWkb;
11940
11952
  exports.newLayersSupportPixelBlock = newLayersSupportPixelBlock;
11953
+ exports.newLayersSupportPlaybackInfo = newLayersSupportPlaybackInfo;
11941
11954
  exports.newLayersSupportPublishingInfo = newLayersSupportPublishingInfo;
11942
11955
  exports.newLayersSupportRangeDomain = newLayersSupportRangeDomain;
11943
11956
  exports.newLayersSupportRasterBandInfo = newLayersSupportRasterBandInfo;
package/dist/index.d.cts CHANGED
@@ -343,6 +343,8 @@ export declare function importLayersSupportParquetEncodingWkb(): Promise<typeof
343
343
  export declare function newLayersSupportParquetEncodingWkb(properties: __esri.ParquetEncodingWkbProperties): Promise<__esri.ParquetEncodingWkb>;
344
344
  export declare function importLayersSupportPixelBlock(): Promise<typeof __esri.PixelBlock>;
345
345
  export declare function newLayersSupportPixelBlock(properties: __esri.PixelBlockProperties): Promise<__esri.PixelBlock>;
346
+ export declare function importLayersSupportPlaybackInfo(): Promise<typeof __esri.PlaybackInfo>;
347
+ export declare function newLayersSupportPlaybackInfo(properties: __esri.PlaybackInfoProperties): Promise<__esri.PlaybackInfo>;
346
348
  export declare function importLayersSupportPublishingInfo(): Promise<typeof __esri.PublishingInfo>;
347
349
  export declare function newLayersSupportPublishingInfo(properties: __esri.PublishingInfoProperties): Promise<__esri.PublishingInfo>;
348
350
  export declare function importLayersSupportRangeDomain(): Promise<typeof __esri.RangeDomain>;
package/dist/index.d.ts CHANGED
@@ -343,6 +343,8 @@ export declare function importLayersSupportParquetEncodingWkb(): Promise<typeof
343
343
  export declare function newLayersSupportParquetEncodingWkb(properties: __esri.ParquetEncodingWkbProperties): Promise<__esri.ParquetEncodingWkb>;
344
344
  export declare function importLayersSupportPixelBlock(): Promise<typeof __esri.PixelBlock>;
345
345
  export declare function newLayersSupportPixelBlock(properties: __esri.PixelBlockProperties): Promise<__esri.PixelBlock>;
346
+ export declare function importLayersSupportPlaybackInfo(): Promise<typeof __esri.PlaybackInfo>;
347
+ export declare function newLayersSupportPlaybackInfo(properties: __esri.PlaybackInfoProperties): Promise<__esri.PlaybackInfo>;
346
348
  export declare function importLayersSupportPublishingInfo(): Promise<typeof __esri.PublishingInfo>;
347
349
  export declare function newLayersSupportPublishingInfo(properties: __esri.PublishingInfoProperties): Promise<__esri.PublishingInfo>;
348
350
  export declare function importLayersSupportRangeDomain(): Promise<typeof __esri.RangeDomain>;
package/dist/index.js CHANGED
@@ -1820,6 +1820,17 @@ async function newLayersSupportPixelBlock(properties) {
1820
1820
  const ModConstructor = await importLayersSupportPixelBlock();
1821
1821
  return new ModConstructor(properties);
1822
1822
  }
1823
+ async function importLayersSupportPlaybackInfo() {
1824
+ if (isAMD) {
1825
+ return await window.$arcgis.import("esri/layers/support/PlaybackInfo");
1826
+ }
1827
+ const module = await import("@arcgis/core/layers/support/PlaybackInfo.js");
1828
+ return isDefaultModule(module) ? module.default : module;
1829
+ }
1830
+ async function newLayersSupportPlaybackInfo(properties) {
1831
+ const ModConstructor = await importLayersSupportPlaybackInfo();
1832
+ return new ModConstructor(properties);
1833
+ }
1823
1834
  async function importLayersSupportPublishingInfo() {
1824
1835
  if (isAMD) {
1825
1836
  return await window.$arcgis.import("esri/layers/support/PublishingInfo");
@@ -10974,6 +10985,7 @@ export {
10974
10985
  importLayersSupportParquetEncodingWkb,
10975
10986
  importLayersSupportParquetUtils,
10976
10987
  importLayersSupportPixelBlock,
10988
+ importLayersSupportPlaybackInfo,
10977
10989
  importLayersSupportPublishingInfo,
10978
10990
  importLayersSupportRangeDomain,
10979
10991
  importLayersSupportRasterBandInfo,
@@ -11915,6 +11927,7 @@ export {
11915
11927
  newLayersSupportParquetEncodingLocation,
11916
11928
  newLayersSupportParquetEncodingWkb,
11917
11929
  newLayersSupportPixelBlock,
11930
+ newLayersSupportPlaybackInfo,
11918
11931
  newLayersSupportPublishingInfo,
11919
11932
  newLayersSupportRangeDomain,
11920
11933
  newLayersSupportRasterBandInfo,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/core-adapter",
3
- "version": "4.33.0-next.152",
3
+ "version": "4.33.0-next.153",
4
4
  "description": "ArcGIS Core Adapter",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",