@evergis/api 5.0.9-alpha.0 → 5.0.9-alpha.1
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.
|
@@ -545,6 +545,8 @@ export interface AttributesConfigurationDc {
|
|
|
545
545
|
orderAttribute?: string;
|
|
546
546
|
/** Configuration of the attributes of the layer. */
|
|
547
547
|
attributes?: (AttributeConfigurationDc | CalculatedAttributeConfigurationDc | GeometryAttributeConfigurationDc | StringAttributeConfigurationDc)[];
|
|
548
|
+
/** Configuration of layer references. Isn't used by server. */
|
|
549
|
+
layerReferences?: LayerReferenceConfigurationDc[];
|
|
548
550
|
}
|
|
549
551
|
/**
|
|
550
552
|
*
|
|
@@ -2473,6 +2475,21 @@ export interface IncreaseResourcesLimitDc {
|
|
|
2473
2475
|
/** Request justification. */
|
|
2474
2476
|
justification?: string;
|
|
2475
2477
|
}
|
|
2478
|
+
/**
|
|
2479
|
+
* Layer reference configuration. Isn't used by server.
|
|
2480
|
+
*/
|
|
2481
|
+
export interface LayerReferenceConfigurationDc {
|
|
2482
|
+
/** Name of the layer. */
|
|
2483
|
+
layerName?: string;
|
|
2484
|
+
/** Condition to apply. */
|
|
2485
|
+
condition?: string;
|
|
2486
|
+
/** Attribute name in base layer. */
|
|
2487
|
+
referenceAttribute?: string;
|
|
2488
|
+
/** Attribute name in target layer. */
|
|
2489
|
+
targetAttribute?: string;
|
|
2490
|
+
/** Id of the reference. */
|
|
2491
|
+
referenceId?: string;
|
|
2492
|
+
}
|
|
2476
2493
|
/**
|
|
2477
2494
|
* Specifies the available types of layer services that can be used within the application.
|
|
2478
2495
|
|