@conterra/ct-mapapps-typings 4.18.0-next.20240411050259 → 4.18.0-next.20240412041923
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/agssearch/api.d.ts +1 -1
- package/geojson/api.d.ts +1 -1
- package/package.json +1 -1
- package/result-api/__internal__/{DxXgpOtB.d.ts → DWUn7GdG.d.ts} +6 -1
- package/result-api/api/actions.d.ts +1 -1
- package/result-api/api/formatting.d.ts +1 -1
- package/result-api/api/index.d.ts +1 -1
- package/result-api/api/model.d.ts +1 -1
- package/result-api/api/service.d.ts +1 -1
- package/result-api/api/ui.d.ts +1 -1
- package/store-api/api/Store.d.ts +6 -0
package/agssearch/api.d.ts
CHANGED
|
@@ -84,7 +84,7 @@ interface AGSStoreFromURLOptions extends AGSStoreCommonOptions {
|
|
|
84
84
|
/**
|
|
85
85
|
* The type of the service. Defaults to "feature".
|
|
86
86
|
*/
|
|
87
|
-
type?: "feature" | "geojson" | "csv" | "wfs";
|
|
87
|
+
type?: "feature" | "geojson" | "csv" | "wfs" | "ogc-feature";
|
|
88
88
|
/**
|
|
89
89
|
* An API key (or token) required to access the service.
|
|
90
90
|
*
|
package/geojson/api.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -221,11 +221,11 @@ interface FormatterFacade {
|
|
|
221
221
|
*/
|
|
222
222
|
interface DatasetItemIdsProvider<IdType extends DatasetItemId = DatasetItemId> {
|
|
223
223
|
/**
|
|
224
|
-
*
|
|
225
224
|
* @opts options to respect during id resolving. A limit of -1 means unlimited.
|
|
226
225
|
* @returns a promise with the ids as array.
|
|
227
226
|
* An optional total value, which defines the full amount available ids.
|
|
228
227
|
* An optional hasMore flag, which defines that there where more ids available.
|
|
228
|
+
* An data lookup, which carries the concrete items. If provided a store is not requested for extra data.
|
|
229
229
|
*/
|
|
230
230
|
(opts: {
|
|
231
231
|
limit: number;
|
|
@@ -233,6 +233,7 @@ interface DatasetItemIdsProvider<IdType extends DatasetItemId = DatasetItemId> {
|
|
|
233
233
|
ids: IdType[];
|
|
234
234
|
total?: number;
|
|
235
235
|
hasMore?: boolean;
|
|
236
|
+
data?: Record<IdType, Readonly<Record<string, any>>>;
|
|
236
237
|
}>;
|
|
237
238
|
}
|
|
238
239
|
/**
|
|
@@ -643,6 +644,10 @@ interface Dataset<IdType extends DatasetItemId = DatasetItemId> extends EventSou
|
|
|
643
644
|
* A update error. This error may happen if an updating process failed.
|
|
644
645
|
*/
|
|
645
646
|
readonly updateError: Error | undefined;
|
|
647
|
+
/**
|
|
648
|
+
* Provides access to the initial id provider, if not yet used to init the dataset.
|
|
649
|
+
*/
|
|
650
|
+
readonly initialIdsProvider: DatasetItemIdsProvider | undefined;
|
|
646
651
|
/**
|
|
647
652
|
* Starts dataset initialization.
|
|
648
653
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DataTable, TableItem, DataTableCollection } from '../__internal__/
|
|
1
|
+
import { DataTable, TableItem, DataTableCollection } from '../__internal__/DWUn7GdG.js';
|
|
2
2
|
import { EventSource } from 'apprt-core/Events';
|
|
3
3
|
import 'apprt-core/Types';
|
|
4
4
|
import 'esri/geometry';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ArcadeFormatOptions, DateTimeFormat, DateTimeFormatOptions, FORMATTER_COMBINED_IDENTIFIER, FORMATTER_DOMAIN_VALUE_IDENTIFIER, FORMATTER_ID_IDENTIFIER, Formatter, FormatterFacade, FormatterOptions, FormattingInfo, FormattingInfoProvider, NumberFormatOptions, WellKnownFormatterOptions } from '../__internal__/
|
|
1
|
+
export { ArcadeFormatOptions, DateTimeFormat, DateTimeFormatOptions, FORMATTER_COMBINED_IDENTIFIER, FORMATTER_DOMAIN_VALUE_IDENTIFIER, FORMATTER_ID_IDENTIFIER, Formatter, FormatterFacade, FormatterOptions, FormattingInfo, FormattingInfoProvider, NumberFormatOptions, WellKnownFormatterOptions } from '../__internal__/DWUn7GdG.js';
|
|
2
2
|
import 'apprt-core/Types';
|
|
3
3
|
import 'esri/geometry';
|
|
4
4
|
import 'store-api/api';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ArcadeFormatOptions, CollectionChangedEvent, Column, ColumnAlign, ColumnProvider, ColumnProviderFactory, DataSource, DataTable, DataTableCollection, DataTableCollectionEvents, DataTableEvents, DataTableId, DataTableWatchProperties, Dataset, DatasetCapabilities, DatasetEvents, DatasetField, DatasetItem, DatasetItemId, DatasetItemIdsProvider, DatasetState, DatasetWatchProperties, DateTimeFormat, DateTimeFormatOptions, FORMATTER_COMBINED_IDENTIFIER, FORMATTER_DOMAIN_VALUE_IDENTIFIER, FORMATTER_ID_IDENTIFIER, Filter, FocusChangedEvent, Formatter, FormatterFacade, FormatterOptions, FormattingInfo, FormattingInfoProvider, ItemCount, NumberFormatOptions, QueryDefinition, QueryResult, RowEvent, RowItem, SELECTION_COLUMN_NAME, Selection, SelectionEvents, SortSpecifier, SuggestFilter, TableItem, TableModel, TableModelEvents, TableModelState, TableModelWatchProperties, WellKnownFormatterOptions } from '../__internal__/
|
|
1
|
+
export { ArcadeFormatOptions, CollectionChangedEvent, Column, ColumnAlign, ColumnProvider, ColumnProviderFactory, DataSource, DataTable, DataTableCollection, DataTableCollectionEvents, DataTableEvents, DataTableId, DataTableWatchProperties, Dataset, DatasetCapabilities, DatasetEvents, DatasetField, DatasetItem, DatasetItemId, DatasetItemIdsProvider, DatasetState, DatasetWatchProperties, DateTimeFormat, DateTimeFormatOptions, FORMATTER_COMBINED_IDENTIFIER, FORMATTER_DOMAIN_VALUE_IDENTIFIER, FORMATTER_ID_IDENTIFIER, Filter, FocusChangedEvent, Formatter, FormatterFacade, FormatterOptions, FormattingInfo, FormattingInfoProvider, ItemCount, NumberFormatOptions, QueryDefinition, QueryResult, RowEvent, RowItem, SELECTION_COLUMN_NAME, Selection, SelectionEvents, SortSpecifier, SuggestFilter, TableItem, TableModel, TableModelEvents, TableModelState, TableModelWatchProperties, WellKnownFormatterOptions } from '../__internal__/DWUn7GdG.js';
|
|
2
2
|
export { DataTableFactory, ResultViewerService, ResultViewerServiceEvents, ResultViewerServiceOpenOptions } from './service.js';
|
|
3
3
|
export { DataTableUi, DataTableUiConfig, DataTableUiEvents, DataTableUiFactory } from './ui.js';
|
|
4
4
|
export { BulkActionContext, BulkButtonTableAction, BulkTableAction, RowActionContext, RowButtonTableAction, RowTableAction, TableAction, TableActionDisplayState, TableActionDisplayStateProvider, TableActionItem, TableActionResolver, TableActionResolverContext, TableActionResolverContextEvents, TableActionResolverContextOptions, TableActionUIType } from './actions.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import 'apprt-core/Types';
|
|
2
2
|
import 'esri/geometry';
|
|
3
3
|
import 'store-api/api';
|
|
4
|
-
export { CollectionChangedEvent, Column, ColumnAlign, ColumnProvider, ColumnProviderFactory, DataSource, DataTable, DataTableCollection, DataTableCollectionEvents, DataTableEvents, DataTableId, DataTableWatchProperties, Dataset, DatasetCapabilities, DatasetEvents, DatasetField, DatasetItem, DatasetItemId, DatasetItemIdsProvider, DatasetState, DatasetWatchProperties, Filter, FocusChangedEvent, ItemCount, QueryDefinition, QueryResult, RowEvent, RowItem, SELECTION_COLUMN_NAME, Selection, SelectionEvents, SortSpecifier, SuggestFilter, TableItem, TableModel, TableModelEvents, TableModelState, TableModelWatchProperties } from '../__internal__/
|
|
4
|
+
export { CollectionChangedEvent, Column, ColumnAlign, ColumnProvider, ColumnProviderFactory, DataSource, DataTable, DataTableCollection, DataTableCollectionEvents, DataTableEvents, DataTableId, DataTableWatchProperties, Dataset, DatasetCapabilities, DatasetEvents, DatasetField, DatasetItem, DatasetItemId, DatasetItemIdsProvider, DatasetState, DatasetWatchProperties, Filter, FocusChangedEvent, ItemCount, QueryDefinition, QueryResult, RowEvent, RowItem, SELECTION_COLUMN_NAME, Selection, SelectionEvents, SortSpecifier, SuggestFilter, TableItem, TableModel, TableModelEvents, TableModelState, TableModelWatchProperties } from '../__internal__/DWUn7GdG.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Store, ComplexQueryExpression, QueryOptions } from 'store-api/api';
|
|
2
|
-
import { DataTableCollection, DataTable, DatasetItemIdsProvider } from '../__internal__/
|
|
2
|
+
import { DataTableCollection, DataTable, DatasetItemIdsProvider } from '../__internal__/DWUn7GdG.js';
|
|
3
3
|
import { EventSource, Handle } from 'apprt-core/Types';
|
|
4
4
|
import 'esri/geometry';
|
|
5
5
|
|
package/result-api/api/ui.d.ts
CHANGED
package/store-api/api/Store.d.ts
CHANGED
|
@@ -326,6 +326,12 @@ interface Metadata {
|
|
|
326
326
|
* Default is 'false'.
|
|
327
327
|
*/
|
|
328
328
|
readonly supportsGeometry?: boolean;
|
|
329
|
+
/**
|
|
330
|
+
* Flag to indicate, if the store supports spatial geometry generalization.
|
|
331
|
+
* If set to 'true' clients know that the usage of
|
|
332
|
+
* the `GeometryOptions.maxAllowableOffset` is supported by the store.
|
|
333
|
+
*/
|
|
334
|
+
readonly supportsGeometryGeneralization?: boolean;
|
|
329
335
|
/**
|
|
330
336
|
* Flag to indicate, if the store can react to the 'sort' option in queries.
|
|
331
337
|
* If this flag ommited, the default value is 'true'.
|