@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.
@@ -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 {@link isDefined} is being used).
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
  /**
@@ -17,7 +17,7 @@ type ErrorCallback<Scope> = (this: Scope, error: any) => any;
17
17
  * ```
18
18
  *
19
19
  * @example
20
- * ```td
20
+ * ```ts
21
21
  * import when from "apprt-core/when";
22
22
  * // bind success and error handler from an object
23
23
  * const scope = {
@@ -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: {@link config}.
376
+ * Defaults to the timeout settings on the global configuration object: `config`.
377
377
  */
378
378
  timeoutMillis?: number;
379
379
  /**
@@ -1,5 +1,9 @@
1
1
  import { Evented } from 'apprt-core/Events';
2
2
 
3
+ /**
4
+ * @module api
5
+ */
6
+
3
7
  /**
4
8
  * Interface for the history service (reference `"mapnavigation.History"`).
5
9
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conterra/ct-mapapps-typings",
3
- "version": "4.18.4-next.20241018040821",
3
+ "version": "4.18.4-next.20241022040802",
4
4
  "description": "TypeDefinitions for ct-mapapps",
5
5
  "author": "conterra",
6
6
  "license": "Apache-2.0"
@@ -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
  */
@@ -6,6 +6,7 @@ import Geometry from 'esri/geometry/Geometry';
6
6
  *
7
7
  * @module
8
8
  */
9
+
9
10
  /** Expression to describe a ComplexQuery. */
10
11
  type ComplexQueryExpression = ShortAndExpression | LogicExpression;
11
12
  /**
@@ -1,5 +1,9 @@
1
1
  import { Watchable } from 'apprt-core/Types';
2
2
 
3
+ /**
4
+ * @module api
5
+ */
6
+
3
7
  /**
4
8
  * Represents observable properties of the activity state.
5
9
  */