@conterra/ct-mapapps-typings 4.18.4-next.20241018040821 → 4.18.4-next.20241022040802
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/apprt-binding/Transformers.d.ts +1 -4
- package/apprt-core/when.d.ts +1 -1
- package/apprt-fetch/index.d.ts +1 -1
- package/mapnavigation/api/History.d.ts +4 -0
- package/package.json +1 -1
- package/selection-services/api/index.d.ts +4 -0
- package/store-api/api/ComplexQueryLang.d.ts +1 -0
- package/system/api/index.d.ts +4 -0
|
@@ -1,15 +1,12 @@
|
|
|
1
1
|
import { ConvertFunction } from './Binding.js';
|
|
2
2
|
|
|
3
|
-
/**
|
|
4
|
-
* Helper functions for Binding declarations.
|
|
5
|
-
*/
|
|
6
3
|
/**
|
|
7
4
|
* Transforms a value into another value.
|
|
8
5
|
*/
|
|
9
6
|
type Transformer = ConvertFunction;
|
|
10
7
|
/**
|
|
11
8
|
* A transformer that also supports an `else` function that can be used
|
|
12
|
-
* when the transformer would otherwise skip a value (e.g. if
|
|
9
|
+
* when the transformer would otherwise skip a value (e.g. if `isDefined` is being used).
|
|
13
10
|
*/
|
|
14
11
|
interface TransformerWithElse extends Transformer {
|
|
15
12
|
/**
|
package/apprt-core/when.d.ts
CHANGED
package/apprt-fetch/index.d.ts
CHANGED
|
@@ -373,7 +373,7 @@ type ProxyMode = "force-on" | "force-off" | "default";
|
|
|
373
373
|
interface ApprtRequestInit extends RequestInit {
|
|
374
374
|
/**
|
|
375
375
|
* Time in milliseconds after which the fetch aborts with a timeout.
|
|
376
|
-
* Defaults to the timeout settings on the global configuration object:
|
|
376
|
+
* Defaults to the timeout settings on the global configuration object: `config`.
|
|
377
377
|
*/
|
|
378
378
|
timeoutMillis?: number;
|
|
379
379
|
/**
|
package/package.json
CHANGED
|
@@ -6,6 +6,10 @@ import { Store, QueryOptions, IndexableThing } from 'store-api/api';
|
|
|
6
6
|
import { Watchable } from 'apprt-core/Types';
|
|
7
7
|
import { ServiceProperties } from 'apprt/api';
|
|
8
8
|
|
|
9
|
+
/**
|
|
10
|
+
* @module api
|
|
11
|
+
*/
|
|
12
|
+
|
|
9
13
|
/**
|
|
10
14
|
* Declares common properties and defines the interface of all InputActions.
|
|
11
15
|
*/
|