@evergis/api 4.0.7 → 4.0.10

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,10 +1,6 @@
1
1
  interface BrandedType<T> {
2
2
  __type__?: T;
3
3
  }
4
- export interface TypeCoordsEFixedBuffer {
5
- /** @format double */
6
- fixedElementField?: number;
7
- }
8
4
  /**
9
5
  * Access control list for a security object.
10
6
  */
@@ -321,6 +317,8 @@ export declare type ArrowLineEndingDc = LineEndingBaseDc & {
321
317
  export interface AttributeConfigurationDc {
322
318
  /** The name of the attribute. */
323
319
  attributeName: string;
320
+ /** The name of the column in the data table that holds the attribute values. */
321
+ columnName?: string;
324
322
  /** Human-friendly name for the attribute. */
325
323
  alias?: string;
326
324
  /** Description for the attribute. */
@@ -1590,6 +1588,10 @@ export interface EqlRequestDc {
1590
1588
  ds?: string;
1591
1589
  /** EQL query string. */
1592
1590
  query: string;
1591
+ /** Geometry field name. */
1592
+ geometryField?: string;
1593
+ /** Id field name. */
1594
+ idField?: string;
1593
1595
  /**
1594
1596
  * Offset.
1595
1597
  * @format int32
@@ -1600,6 +1602,8 @@ export interface EqlRequestDc {
1600
1602
  * @format int32
1601
1603
  */
1602
1604
  limit?: number;
1605
+ /** With geometry. */
1606
+ withgeom?: boolean;
1603
1607
  /** Columns. */
1604
1608
  columns?: Record<string, string | null>;
1605
1609
  /** EQL query parameters. */
@@ -2491,17 +2495,10 @@ export interface GetSumOfProductDc {
2491
2495
  /**
2492
2496
  * Map element data contract.
2493
2497
  */
2494
- export interface GridElementDc {
2495
- /** Grid color. */
2498
+ export declare type GridElementDc = ModelElementDc & {
2496
2499
  color?: string;
2497
- /**
2498
- * Grid width.
2499
- * @format int32
2500
- */
2501
2500
  gridThickness?: number;
2502
- /** Check what this model element enabled. */
2503
- enabled?: boolean;
2504
- }
2501
+ };
2505
2502
  /**
2506
2503
  * Resource group.
2507
2504
 
@@ -2571,48 +2568,6 @@ export interface IDatum {
2571
2568
  dimensions?: number;
2572
2569
  datum?: IDatum;
2573
2570
  }
2574
- export interface IEnvelopeGeometry {
2575
- start?: Vector2;
2576
- end?: Vector2;
2577
- /** @format double */
2578
- width?: number;
2579
- /** @format double */
2580
- height?: number;
2581
- centroid?: IVector;
2582
- /**
2583
- *
2584
- *
2585
- * unknown
2586
- *
2587
- * point
2588
- *
2589
- * polyline
2590
- *
2591
- * multipolygon
2592
- *
2593
- * envelope
2594
- *
2595
- * multipoint
2596
- */
2597
- geometryType?: GeometryType;
2598
- sr?: ISpatialReference;
2599
- envelope?: IEnvelopeGeometry;
2600
- }
2601
- export interface IRectangle {
2602
- /** @format double */
2603
- width?: number;
2604
- /** @format double */
2605
- height?: number;
2606
- center?: IVector;
2607
- halfSize?: IVector;
2608
- }
2609
- /**
2610
- * Configuration of an SP service.
2611
- */
2612
- export interface IServiceConfiguration {
2613
- /** Type of the layer. */
2614
- type?: string;
2615
- }
2616
2571
  export interface ISpatialReference {
2617
2572
  /** @format int32 */
2618
2573
  id?: number;
@@ -2623,10 +2578,6 @@ export interface ISpatialReference {
2623
2578
  dimensions?: number;
2624
2579
  datum?: IDatum;
2625
2580
  }
2626
- export interface IVector {
2627
- /** @format int32 */
2628
- dimensions?: number;
2629
- }
2630
2581
  /**
2631
2582
  * Attributes provides by router to describe route.
2632
2583
  */
@@ -2825,37 +2776,16 @@ export interface LayerDefinitionDc {
2825
2776
  /**
2826
2777
  * Map element data contract.
2827
2778
  */
2828
- export interface LayerMapElementDc {
2829
- /** Gets or sets layers for printing. */
2830
- layers?: LayerModelDc[];
2831
- mapCenter?: Vector2;
2832
- /**
2833
- * Gets or sets map width.
2834
- * @format int32
2835
- */
2779
+ export declare type LayerMapElementDc = ModelElementDc & {
2780
+ layers?: LayerModelDc[] | null;
2781
+ mapCenter?: PositionDc;
2836
2782
  paperWidth?: number;
2837
- /**
2838
- * Gets or sets map height.
2839
- * @format int32
2840
- */
2841
2783
  paperHeight?: number;
2842
- /**
2843
- * Gets or sets spatial reference.
2844
- * @format int32
2845
- */
2846
2784
  spatialReference?: number;
2847
- /**
2848
- * Gets or sets map resolution.
2849
- * @format double
2850
- */
2851
2785
  resolution?: number;
2852
- /** Map element data contract. */
2853
2786
  gridElement?: GridElementDc;
2854
- /** ScaleBar element data contract. */
2855
2787
  scaleBar?: ScaleBarElementDc;
2856
- /** Check what this model element enabled. */
2857
- enabled?: boolean;
2858
- }
2788
+ };
2859
2789
  /**
2860
2790
  * Layer model data contract.
2861
2791
  */
@@ -2892,61 +2822,12 @@ export interface LayerReferenceConfigurationDc {
2892
2822
  /**
2893
2823
  * Layer template model data contract.
2894
2824
  */
2895
- export interface LayerTemplateModelDc {
2896
- type?: string;
2897
- /** Map element data contract. */
2825
+ export declare type LayerTemplateModelDc = TemplateModelDc & {
2826
+ type?: string | null;
2898
2827
  map?: LayerMapElementDc;
2899
- /** Check if legend enabled. */
2900
2828
  legendEnabled?: boolean;
2901
- /**
2902
- * Legend layers from client.
2903
- * Set null for using serverSide generated legend.
2904
- */
2905
- legendLayers?: LegendLayerDc[];
2906
- /** The name of the result file. */
2907
- fileName?: string;
2908
- /** File Format. */
2909
- fileFormat?: string;
2910
- /** Gets or sets template name. */
2911
- templateName?: string;
2912
- /** Gets or sets template title. */
2913
- title?: string;
2914
- /**
2915
- * Gets or sets paper width.
2916
- * @format int32
2917
- */
2918
- paperWidth?: number;
2919
- /**
2920
- * Gets or sets paper height.
2921
- * @format int32
2922
- */
2923
- paperHeight?: number;
2924
- /**
2925
- * Gets or sets dpi.
2926
- * @format int32
2927
- */
2928
- dpi?: number;
2929
- /** Gets or sets paper margin. */
2930
- margin?: number[];
2931
- /** Localization contains fields that should be localized on printing template. */
2932
- localization?: TemplateLocalizationDc;
2933
- /** Checks if title enabled. */
2934
- titleEnabled?: boolean;
2935
- }
2936
- export interface LayerUpdateInfo {
2937
- layerServiceName?: string;
2938
- boundingBox?: IEnvelopeGeometry;
2939
- createdIds?: ObjectId[];
2940
- updatedIds?: ObjectId[];
2941
- deletedIds?: ObjectId[];
2942
- failedIds?: number[];
2943
- /** @format int64 */
2944
- totalCount?: number;
2945
- isLayerDeleted?: boolean;
2946
- exceptions?: ValueTupleStringString[];
2947
- /** @format int32 */
2948
- failedCount?: number;
2949
- }
2829
+ legendLayers?: LegendLayerDc[] | null;
2830
+ };
2950
2831
  /**
2951
2832
  * Information about layer update.
2952
2833
  Includes ids of modified features and their bbox.
@@ -2954,7 +2835,8 @@ Includes ids of modified features and their bbox.
2954
2835
  export interface LayerUpdateInfoDc {
2955
2836
  /** Updated layer service name. */
2956
2837
  layerServiceName: string;
2957
- boundingBox?: IEnvelopeGeometry;
2838
+ /** Envelope geometry. */
2839
+ boundingBox?: EnvelopeDc;
2958
2840
  /** Array of created ids. */
2959
2841
  createdIds?: ObjectId[];
2960
2842
  /** Array of updated ids. */
@@ -2994,47 +2876,12 @@ export interface LegendLayerDc {
2994
2876
  /**
2995
2877
  * Legend template model data contract.
2996
2878
  */
2997
- export interface LegendTemplateModelDc {
2998
- /** Gets or sets layers for printing. */
2999
- layers?: LayerModelDc[];
3000
- /** Check if legend enabled. */
2879
+ export declare type LegendTemplateModelDc = TemplateModelDc & {
2880
+ layers?: LayerModelDc[] | null;
3001
2881
  legendEnabled?: boolean;
3002
- /**
3003
- * Legend layers from client.
3004
- * Set null for using serverSide generated legend.
3005
- */
3006
- legendLayers?: LegendLayerDc[];
3007
- type?: string;
3008
- /** The name of the result file. */
3009
- fileName?: string;
3010
- /** File Format. */
3011
- fileFormat?: string;
3012
- /** Gets or sets template name. */
3013
- templateName?: string;
3014
- /** Gets or sets template title. */
3015
- title?: string;
3016
- /**
3017
- * Gets or sets paper width.
3018
- * @format int32
3019
- */
3020
- paperWidth?: number;
3021
- /**
3022
- * Gets or sets paper height.
3023
- * @format int32
3024
- */
3025
- paperHeight?: number;
3026
- /**
3027
- * Gets or sets dpi.
3028
- * @format int32
3029
- */
3030
- dpi?: number;
3031
- /** Gets or sets paper margin. */
3032
- margin?: number[];
3033
- /** Localization contains fields that should be localized on printing template. */
3034
- localization?: TemplateLocalizationDc;
3035
- /** Checks if title enabled. */
3036
- titleEnabled?: boolean;
3037
- }
2882
+ legendLayers?: LegendLayerDc[] | null;
2883
+ type?: string | null;
2884
+ };
3038
2885
  /**
3039
2886
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
3040
2887
 
@@ -3277,6 +3124,13 @@ export declare type MaterializedViewConfigurationDc = TableConfigurationBaseDc &
3277
3124
  eql?: string | null;
3278
3125
  eqlParameters?: Record<string, any>;
3279
3126
  };
3127
+ /**
3128
+ * Base template model data contract.
3129
+ */
3130
+ export interface ModelElementDc {
3131
+ /** Check what this model element enabled. */
3132
+ enabled?: boolean;
3133
+ }
3280
3134
  /**
3281
3135
  * MosRu data source.
3282
3136
  */
@@ -3390,15 +3244,6 @@ export interface PagedListFeatureDc {
3390
3244
  limit?: number;
3391
3245
  items?: FeatureDc[];
3392
3246
  }
3393
- export interface PagedListIEnumerable1 {
3394
- /** @format int64 */
3395
- totalCount?: number;
3396
- /** @format int32 */
3397
- offset?: number;
3398
- /** @format int32 */
3399
- limit?: number;
3400
- items?: Record<string, any>[][];
3401
- }
3402
3247
  export interface PagedListProjectInfoDc {
3403
3248
  /** @format int64 */
3404
3249
  totalCount?: number;
@@ -3453,14 +3298,14 @@ export interface PagedListSymbolInfoDc {
3453
3298
  limit?: number;
3454
3299
  items?: SymbolInfoDc[];
3455
3300
  }
3456
- export interface PagedListTableInfoDc {
3301
+ export interface PagedListTableListItemDc {
3457
3302
  /** @format int64 */
3458
3303
  totalCount?: number;
3459
3304
  /** @format int32 */
3460
3305
  offset?: number;
3461
3306
  /** @format int32 */
3462
3307
  limit?: number;
3463
- items?: (TableInfoDc | DetailedTableInfoDc | UpdateTableDc)[];
3308
+ items?: TableListItemDc[];
3464
3309
  }
3465
3310
  export interface PagedListUserInfoDc {
3466
3311
  /** @format int64 */
@@ -3803,15 +3648,6 @@ export declare type PostgresTileCatalogServiceConfigurationDc = ServiceConfigura
3803
3648
  maxLodLevel?: number;
3804
3649
  isCogLayer?: boolean;
3805
3650
  };
3806
- export interface ProblemDetails {
3807
- type?: string;
3808
- title?: string;
3809
- /** @format int32 */
3810
- status?: number;
3811
- detail?: string;
3812
- instance?: string;
3813
- extensions?: Record<string, any>;
3814
- }
3815
3651
  /**
3816
3652
  * Project content configuration data contract.
3817
3653
  */
@@ -4079,6 +3915,8 @@ export interface PythonTaskMethodConfiguration {
4079
3915
  fileName?: string;
4080
3916
  /** Gets or sets method. */
4081
3917
  methodName?: string;
3918
+ /** Gets or sets method init error. */
3919
+ error?: string;
4082
3920
  /** Gets or sets description. */
4083
3921
  description?: string;
4084
3922
  /** Parameters. */
@@ -4122,6 +3960,7 @@ export declare type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseD
4122
3960
  featuresLimit?: number;
4123
3961
  extentOffset?: number;
4124
3962
  simplify?: SimplifyInfoDc;
3963
+ createTable?: boolean;
4125
3964
  };
4126
3965
  /**
4127
3966
  * EQL parameter configuration data contract.
@@ -4547,25 +4386,6 @@ export declare type RemoteTileServiceConfigurationDc = ServiceConfigurationBaseD
4547
4386
  RequestTimeout?: number;
4548
4387
  useProxyHttpClient?: boolean;
4549
4388
  };
4550
- export interface RemoteTileServiceInfo {
4551
- /** Description of a service in the Spatial Processor. */
4552
- layerInfo?: ServiceInfo;
4553
- /** Tile info structure. */
4554
- tileInfo?: TileInfo;
4555
- /** SourceBatch server address. */
4556
- sourceUrl?: string;
4557
- /** Mask for getting tiles in default form www.{s}.tiles.com/{z}/{x}/{y}.png. */
4558
- sourceUrlMask?: string;
4559
- /** SourceBatch servers, what can be placed at source url mask, instead {s}. */
4560
- sourceServers?: string[];
4561
- /**
4562
- * Allow direct access.
4563
- * Allows the client to receive tiles directly from the source server.
4564
- */
4565
- allowDirectAccess?: boolean;
4566
- /** Copyright text. */
4567
- copyrightText?: string;
4568
- }
4569
4389
  /**
4570
4390
  * Service info for a tile service.
4571
4391
  */
@@ -4985,32 +4805,13 @@ export declare type S3DataSourceInfoDc = DataSourceInfoDc & {
4985
4805
  /**
4986
4806
  * ScaleBar element data contract.
4987
4807
  */
4988
- export interface ScaleBarElementDc {
4989
- /**
4990
- * ScaleBar width.
4991
- * @format int32
4992
- */
4808
+ export declare type ScaleBarElementDc = ModelElementDc & {
4993
4809
  width?: number;
4994
- /**
4995
- * ScaleBar height.
4996
- * @format int32
4997
- */
4998
4810
  height?: number;
4999
- /**
5000
- * ScaleBar thickness.
5001
- * @format int32
5002
- */
5003
4811
  thickness?: number;
5004
- /** Font for scaleBar. */
5005
- font?: string;
5006
- /**
5007
- * Font size for scaleBar.
5008
- * @format float
5009
- */
4812
+ font?: string | null;
5010
4813
  fontSize?: number;
5011
- /** Check what this model element enabled. */
5012
- enabled?: boolean;
5013
- }
4814
+ };
5014
4815
  /**
5015
4816
  * SearchResults.
5016
4817
  */
@@ -5046,22 +4847,6 @@ export interface SearchedUserDc {
5046
4847
  /** Photo. */
5047
4848
  photo?: string;
5048
4849
  }
5049
- /**
5050
- * General information about the server.
5051
- */
5052
- export interface ServerInfoDc {
5053
- /** The name of the server. */
5054
- serverName?: string;
5055
- /** The name of the running application. */
5056
- application?: string;
5057
- /** Version number of the server build. */
5058
- version?: string;
5059
- /**
5060
- * Date and time when the server was started.
5061
- * @format date-time
5062
- */
5063
- startedAt?: string;
5064
- }
5065
4850
  /**
5066
4851
  * Common fields for service configurations.
5067
4852
  */
@@ -5097,63 +4882,6 @@ export interface ServiceConfigurationBaseDc {
5097
4882
  /** Parent resource id. */
5098
4883
  parentId?: string;
5099
4884
  }
5100
- /**
5101
- * Description of a service in the Spatial Processor.
5102
- */
5103
- export interface ServiceInfo {
5104
- /** The type of the service. */
5105
- type?: string;
5106
- /** Configuration of an SP service. */
5107
- configuration?: IServiceConfiguration;
5108
- /**
5109
- *
5110
- *
5111
- * Unknown
5112
- *
5113
- * table
5114
- *
5115
- * layer
5116
- *
5117
- * project
5118
- *
5119
- * file
5120
- *
5121
- * feature
5122
- *
5123
- * tag
5124
- *
5125
- * datasource
5126
- */
5127
- resourceType?: ResourceType;
5128
- /** Categories of the service. */
5129
- categories?: string[];
5130
- name?: string;
5131
- alias?: string;
5132
- owner?: string;
5133
- description?: string;
5134
- /** @format date-time */
5135
- createdDate?: string;
5136
- /** @format date-time */
5137
- changedDate?: string;
5138
- parameters?: {
5139
- Category?: string[];
5140
- GeometryType?: string[];
5141
- DependentResource?: string[];
5142
- ResolutionFilter?: string[];
5143
- AttributesFilter?: string[];
5144
- ObjectsCount?: string[];
5145
- DataSourceType?: string[];
5146
- Extent?: string[];
5147
- Zoom?: string[];
5148
- };
5149
- acl?: Record<string, Permissions>;
5150
- icon?: string;
5151
- tags?: string[];
5152
- inVisible?: boolean;
5153
- parentId?: string;
5154
- resourceId?: string;
5155
- sourcePath?: string;
5156
- }
5157
4885
  /**
5158
4886
  * The `ServiceInfoDc` provides information about the service.
5159
4887
  */
@@ -5784,9 +5512,58 @@ export declare type TableInfoDc = ResourceInfoDc & {
5784
5512
  configuration?: DefaultTableConfigurationDc | MaterializedViewConfigurationDc | RouteTableConfigurationDc | TileCatalogTableConfigurationDc | ViewConfigurationDc | null;
5785
5513
  };
5786
5514
  /**
5787
- * The `TableListDc` class provides list of tables info SPCore.Connectors.Connectors.Base.Models.Data.TableInfoDc.
5515
+ * Table list item.
5788
5516
  */
5789
- export declare type TableListDc = PagedListTableInfoDc & object;
5517
+ export interface TableListItemDc {
5518
+ /** Name of the resource. */
5519
+ name?: string;
5520
+ /** Type of the service. */
5521
+ type?: string;
5522
+ /** Alias of the resource. */
5523
+ alias?: string;
5524
+ /** Description of the resource. */
5525
+ description?: string;
5526
+ /** Owner of the resource. */
5527
+ owner?: string;
5528
+ /** The geometry of the table. */
5529
+ geometries?: GeometryType[];
5530
+ /**
5531
+ * The date and time the resource was created.
5532
+ * @format date-time
5533
+ */
5534
+ createdDate?: string;
5535
+ /**
5536
+ * The date and time the resource was modified the last time.
5537
+ * @format date-time
5538
+ */
5539
+ changedDate?: string;
5540
+ /**
5541
+ *
5542
+ *
5543
+ * none
5544
+ *
5545
+ * configure
5546
+ *
5547
+ * write
5548
+ *
5549
+ * read
5550
+ *
5551
+ * read,configure
5552
+ *
5553
+ * read,write
5554
+ *
5555
+ * read,write,configure
5556
+ */
5557
+ permissions?: Permissions;
5558
+ /** A set of tags. */
5559
+ tags?: string[];
5560
+ /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
5561
+ invisibleInCatalog?: boolean;
5562
+ /** Check if table is editable. */
5563
+ isEditable?: boolean;
5564
+ /** Icon. */
5565
+ icon?: string;
5566
+ }
5790
5567
  /**
5791
5568
  * Tags filter.
5792
5569
  */
@@ -5890,24 +5667,36 @@ export interface TaskParameter {
5890
5667
  /**
5891
5668
  *
5892
5669
  *
5893
- * Integer
5670
+ * Int32
5671
+ *
5672
+ * Int64
5894
5673
  *
5895
5674
  * Double
5896
5675
  *
5897
5676
  * String
5898
5677
  *
5899
- * Extent
5678
+ * Boolean
5679
+ *
5680
+ * DateTime
5681
+ *
5682
+ * Point
5900
5683
  *
5901
5684
  * Geometry
5902
5685
  *
5686
+ * Polyline
5687
+ *
5688
+ * MultiPolygon
5689
+ *
5690
+ * Polygon
5691
+ *
5692
+ * Multipoint
5693
+ *
5903
5694
  * IntergerArray
5904
5695
  *
5905
5696
  * DoubleArray
5906
5697
  *
5907
5698
  * StringArray
5908
5699
  *
5909
- * Boolean
5910
- *
5911
5700
  * SourceEql
5912
5701
  *
5913
5702
  * Layer
@@ -5918,9 +5707,9 @@ export interface TaskParameter {
5918
5707
  *
5919
5708
  * Json
5920
5709
  *
5921
- * Expression
5710
+ * Attribute
5922
5711
  *
5923
- * Expressions
5712
+ * AttributeArray
5924
5713
  */
5925
5714
  type?: WorkerSettingsFieldType;
5926
5715
  /** Lookup values. */
@@ -5943,24 +5732,36 @@ export interface TaskParameterDc {
5943
5732
  /**
5944
5733
  *
5945
5734
  *
5946
- * Integer
5735
+ * Int32
5736
+ *
5737
+ * Int64
5947
5738
  *
5948
5739
  * Double
5949
5740
  *
5950
5741
  * String
5951
5742
  *
5952
- * Extent
5743
+ * Boolean
5744
+ *
5745
+ * DateTime
5746
+ *
5747
+ * Point
5953
5748
  *
5954
5749
  * Geometry
5955
5750
  *
5751
+ * Polyline
5752
+ *
5753
+ * MultiPolygon
5754
+ *
5755
+ * Polygon
5756
+ *
5757
+ * Multipoint
5758
+ *
5956
5759
  * IntergerArray
5957
5760
  *
5958
5761
  * DoubleArray
5959
5762
  *
5960
5763
  * StringArray
5961
5764
  *
5962
- * Boolean
5963
- *
5964
5765
  * SourceEql
5965
5766
  *
5966
5767
  * Layer
@@ -5971,9 +5772,9 @@ export interface TaskParameterDc {
5971
5772
  *
5972
5773
  * Json
5973
5774
  *
5974
- * Expression
5775
+ * Attribute
5975
5776
  *
5976
- * Expressions
5777
+ * AttributeArray
5977
5778
  */
5978
5779
  type?: WorkerSettingsFieldType;
5979
5780
  /** Lookup values. */
@@ -6114,24 +5915,36 @@ export interface TaskReturnType {
6114
5915
  /**
6115
5916
  *
6116
5917
  *
6117
- * Integer
5918
+ * Int32
5919
+ *
5920
+ * Int64
6118
5921
  *
6119
5922
  * Double
6120
5923
  *
6121
5924
  * String
6122
5925
  *
6123
- * Extent
5926
+ * Boolean
5927
+ *
5928
+ * DateTime
5929
+ *
5930
+ * Point
6124
5931
  *
6125
5932
  * Geometry
6126
5933
  *
5934
+ * Polyline
5935
+ *
5936
+ * MultiPolygon
5937
+ *
5938
+ * Polygon
5939
+ *
5940
+ * Multipoint
5941
+ *
6127
5942
  * IntergerArray
6128
5943
  *
6129
5944
  * DoubleArray
6130
5945
  *
6131
5946
  * StringArray
6132
5947
  *
6133
- * Boolean
6134
- *
6135
5948
  * SourceEql
6136
5949
  *
6137
5950
  * Layer
@@ -6142,9 +5955,9 @@ export interface TaskReturnType {
6142
5955
  *
6143
5956
  * Json
6144
5957
  *
6145
- * Expression
5958
+ * Attribute
6146
5959
  *
6147
- * Expressions
5960
+ * AttributeArray
6148
5961
  */
6149
5962
  type?: WorkerSettingsFieldType;
6150
5963
  /** Name. */
@@ -6365,39 +6178,6 @@ export interface TileCatalogServiceInfoDc {
6365
6178
  export declare type TileCatalogTableConfigurationDc = TableConfigurationBaseDc & {
6366
6179
  type?: string | null;
6367
6180
  };
6368
- /**
6369
- * Tile info structure.
6370
- */
6371
- export interface TileInfo {
6372
- origin?: IVector;
6373
- boundingRectangle?: IRectangle;
6374
- /**
6375
- * If set to true, the origin point will be considered to be the bottom left corner and increasing tile indexes increase
6376
- * the value of the Y coordinate. If false, the origin point is top left corner, and increasing tile indexes decrease
6377
- * Y coordinate (tiles go from top to bottom).
6378
- */
6379
- reversedY?: boolean;
6380
- /**
6381
- * The dpi of the tiling schema.
6382
- * @format int32
6383
- */
6384
- dpi?: number;
6385
- /**
6386
- * Height of each tile in pixels.
6387
- * @format int32
6388
- */
6389
- height?: number;
6390
- /**
6391
- * Height of each tile in pixels.
6392
- * @format int32
6393
- */
6394
- width?: number;
6395
- /** Image format. */
6396
- format?: string;
6397
- spatialReference?: ISpatialReference;
6398
- /** List of levels of detail that define the tiling schema. */
6399
- lods?: LodInfo[];
6400
- }
6401
6181
  /**
6402
6182
  * Tile info structure.
6403
6183
  */
@@ -6664,10 +6444,6 @@ export interface ValueDc {
6664
6444
  /** Value. */
6665
6445
  value?: any;
6666
6446
  }
6667
- export interface ValueTupleStringString {
6668
- item1?: string;
6669
- item2?: string;
6670
- }
6671
6447
  export interface ValuesRange {
6672
6448
  min?: any;
6673
6449
  max?: any;
@@ -6681,13 +6457,6 @@ export interface ValuesRangeDc {
6681
6457
  /** Maximum value. */
6682
6458
  max: any;
6683
6459
  }
6684
- export interface Vector2 {
6685
- coords?: TypeCoordsEFixedBuffer;
6686
- /** @format double */
6687
- x?: number;
6688
- /** @format double */
6689
- y?: number;
6690
- }
6691
6460
  /**
6692
6461
  * Configuration of a table for feature layer.
6693
6462
  */
@@ -6695,6 +6464,8 @@ export declare type ViewConfigurationDc = TableConfigurationBaseDc & {
6695
6464
  type?: string | null;
6696
6465
  eql?: string | null;
6697
6466
  eqlParameters?: Record<string, any>;
6467
+ schemaName?: string | null;
6468
+ tableName?: string | null;
6698
6469
  };
6699
6470
  /**
6700
6471
  * S3 data source settings.
@@ -6732,24 +6503,36 @@ export interface WorkerSettingsFieldDc {
6732
6503
  /**
6733
6504
  *
6734
6505
  *
6735
- * Integer
6506
+ * Int32
6507
+ *
6508
+ * Int64
6736
6509
  *
6737
6510
  * Double
6738
6511
  *
6739
6512
  * String
6740
6513
  *
6741
- * Extent
6514
+ * Boolean
6515
+ *
6516
+ * DateTime
6517
+ *
6518
+ * Point
6742
6519
  *
6743
6520
  * Geometry
6744
6521
  *
6522
+ * Polyline
6523
+ *
6524
+ * MultiPolygon
6525
+ *
6526
+ * Polygon
6527
+ *
6528
+ * Multipoint
6529
+ *
6745
6530
  * IntergerArray
6746
6531
  *
6747
6532
  * DoubleArray
6748
6533
  *
6749
6534
  * StringArray
6750
6535
  *
6751
- * Boolean
6752
- *
6753
6536
  * SourceEql
6754
6537
  *
6755
6538
  * Layer
@@ -6760,9 +6543,9 @@ export interface WorkerSettingsFieldDc {
6760
6543
  *
6761
6544
  * Json
6762
6545
  *
6763
- * Expression
6546
+ * Attribute
6764
6547
  *
6765
- * Expressions
6548
+ * AttributeArray
6766
6549
  */
6767
6550
  type?: WorkerSettingsFieldType;
6768
6551
  /** Lookup values. */
@@ -6773,24 +6556,36 @@ export interface WorkerSettingsFieldDc {
6773
6556
  /**
6774
6557
  *
6775
6558
 
6776
- Integer
6559
+ Int32
6560
+
6561
+ Int64
6777
6562
 
6778
6563
  Double
6779
6564
 
6780
6565
  String
6781
6566
 
6782
- Extent
6567
+ Boolean
6568
+
6569
+ DateTime
6570
+
6571
+ Point
6783
6572
 
6784
6573
  Geometry
6785
6574
 
6575
+ Polyline
6576
+
6577
+ MultiPolygon
6578
+
6579
+ Polygon
6580
+
6581
+ Multipoint
6582
+
6786
6583
  IntergerArray
6787
6584
 
6788
6585
  DoubleArray
6789
6586
 
6790
6587
  StringArray
6791
6588
 
6792
- Boolean
6793
-
6794
6589
  SourceEql
6795
6590
 
6796
6591
  Layer
@@ -6801,27 +6596,33 @@ Folder
6801
6596
 
6802
6597
  Json
6803
6598
 
6804
- Expression
6599
+ Attribute
6805
6600
 
6806
- Expressions
6601
+ AttributeArray
6807
6602
  */
6808
6603
  export declare enum WorkerSettingsFieldType {
6809
- Integer = "Integer",
6604
+ Int32 = "Int32",
6605
+ Int64 = "Int64",
6810
6606
  Double = "Double",
6811
6607
  String = "String",
6812
- Extent = "Extent",
6608
+ Boolean = "Boolean",
6609
+ DateTime = "DateTime",
6610
+ Point = "Point",
6813
6611
  Geometry = "Geometry",
6612
+ Polyline = "Polyline",
6613
+ MultiPolygon = "MultiPolygon",
6614
+ Polygon = "Polygon",
6615
+ Multipoint = "Multipoint",
6814
6616
  IntergerArray = "IntergerArray",
6815
6617
  DoubleArray = "DoubleArray",
6816
6618
  StringArray = "StringArray",
6817
- Boolean = "Boolean",
6818
6619
  SourceEql = "SourceEql",
6819
6620
  Layer = "Layer",
6820
6621
  Table = "Table",
6821
6622
  Folder = "Folder",
6822
6623
  Json = "Json",
6823
- Expression = "Expression",
6824
- Expressions = "Expressions"
6624
+ Attribute = "Attribute",
6625
+ AttributeArray = "AttributeArray"
6825
6626
  }
6826
6627
  /**
6827
6628
  * Worker post method params.
@@ -7808,7 +7609,7 @@ export interface ValidateExpressionParams {
7808
7609
  /** Layer name. */
7809
7610
  layerName: string;
7810
7611
  }
7811
- export interface GetRasterMetaParams8 {
7612
+ export interface GetRasterMetaParams5 {
7812
7613
  /**
7813
7614
  * Min value for build histogram.
7814
7615
  * @format double
@@ -7837,6 +7638,14 @@ export interface UnsubscribeOperationParams {
7837
7638
  }
7838
7639
  export declare type SubscribeListOperationPayload = string[];
7839
7640
  export declare type UnsubscribeListOperationPayload = string[];
7641
+ /**
7642
+ * Base template model data contract.
7643
+ */
7644
+ export declare type PrintPayload = LayerTemplateModelDc | LegendTemplateModelDc;
7645
+ /**
7646
+ * Base template model data contract.
7647
+ */
7648
+ export declare type PrintToHtmlPayload = LayerTemplateModelDc | LegendTemplateModelDc;
7840
7649
  export interface UploadTemplatePayload {
7841
7650
  /** @format binary */
7842
7651
  template?: File;
@@ -7879,7 +7688,7 @@ export interface GetProjectsListParams {
7879
7688
  /** Filter layers by set of tags. */
7880
7689
  tags?: string[];
7881
7690
  }
7882
- export interface DeleteResourcesParams4 {
7691
+ export interface DeleteResourcesParams3 {
7883
7692
  /** Resource names. */
7884
7693
  names?: string[];
7885
7694
  }
@@ -8078,7 +7887,7 @@ export interface StatisticsDbParams {
8078
7887
  */
8079
7888
  types?: AggregationFunction[];
8080
7889
  }
8081
- export interface ClassifyParams1 {
7890
+ export interface ClassifyParams2 {
8082
7891
  /** Layer name. */
8083
7892
  name: string;
8084
7893
  /** Attribute name. */
@@ -8210,7 +8019,7 @@ export interface GetTableListParams {
8210
8019
  /** All available permissions list. */
8211
8020
  acl?: string;
8212
8021
  }
8213
- export interface DeleteResourcesParams6 {
8022
+ export interface DeleteResourcesParams7 {
8214
8023
  /** Resource names. */
8215
8024
  names?: string[];
8216
8025
  }
@@ -8219,6 +8028,10 @@ export interface GetTablesInfoParams {
8219
8028
  tableNames?: string[];
8220
8029
  }
8221
8030
  export interface GetTableDataParams {
8031
+ /** Id field name. */
8032
+ idField?: string;
8033
+ /** Geometry field name. */
8034
+ geometryField?: string;
8222
8035
  /** String filter for the all text column (uses % and _ wild cards like SQL). */
8223
8036
  filter?: string;
8224
8037
  /**
@@ -8321,7 +8134,7 @@ export interface GetPublicCapabilitiesParams {
8321
8134
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
8322
8135
  AcceptFormats?: string[];
8323
8136
  }
8324
- export interface GetCapabilitiesParams3 {
8137
+ export interface GetCapabilitiesParams8 {
8325
8138
  /** Output format of service metadata. */
8326
8139
  Format?: string;
8327
8140
  /** Must be WMS. */