@evergis/api 3.0.192 → 3.0.194

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.
@@ -82,47 +82,47 @@ export interface AggregationDataResultDc {
82
82
  }
83
83
  /**
84
84
  *
85
-
85
+
86
86
  None
87
-
87
+
88
88
  Array
89
-
89
+
90
90
  Min
91
-
91
+
92
92
  Max
93
-
93
+
94
94
  Avg
95
-
95
+
96
96
  Sum
97
-
97
+
98
98
  Extent
99
-
99
+
100
100
  H3
101
-
101
+
102
102
  Count
103
-
103
+
104
104
  TotalCount
105
-
105
+
106
106
  DistinctCount
107
-
107
+
108
108
  First
109
-
109
+
110
110
  Last
111
-
111
+
112
112
  Median
113
-
113
+
114
114
  Mod
115
-
115
+
116
116
  StdDeviation
117
-
117
+
118
118
  SumOfProduct
119
-
119
+
120
120
  OnlyValue
121
-
121
+
122
122
  WeightedAvg
123
-
123
+
124
124
  DensityIndicators
125
-
125
+
126
126
  DividedSum
127
127
  */
128
128
  export declare enum AggregationFunction {
@@ -589,13 +589,13 @@ export interface AttributeFormatDefinitionDc {
589
589
  }
590
590
  /**
591
591
  *
592
-
592
+
593
593
  None
594
-
594
+
595
595
  SelectFromHandBook
596
-
596
+
597
597
  SelectFromRange
598
-
598
+
599
599
  ViewHandBook
600
600
  */
601
601
  export declare enum AttributeSelectorType {
@@ -606,31 +606,31 @@ export declare enum AttributeSelectorType {
606
606
  }
607
607
  /**
608
608
  *
609
-
609
+
610
610
  Unknown
611
-
611
+
612
612
  String
613
-
613
+
614
614
  Int32
615
-
615
+
616
616
  Int64
617
-
617
+
618
618
  Double
619
-
619
+
620
620
  DateTime
621
-
621
+
622
622
  Boolean
623
-
623
+
624
624
  Point
625
-
625
+
626
626
  Polyline
627
-
627
+
628
628
  MultiPolygon
629
-
629
+
630
630
  Multipoint
631
-
631
+
632
632
  H3Index
633
-
633
+
634
634
  Json
635
635
  */
636
636
  export declare enum AttributeType {
@@ -667,6 +667,19 @@ export interface AttributesConfigurationDc {
667
667
  /** Values ranges. */
668
668
  valuesRange?: ValuesRangeDc[];
669
669
  }
670
+ /**
671
+ * An authorization grant is a credential representing the resource
672
+ owner's authorization (to access its protected resources) used by the
673
+ client to obtain an access token.
674
+
675
+ authorization_code
676
+
677
+ refresh_token
678
+ */
679
+ export declare enum AuthorizationGrant {
680
+ AuthorizationCode = "authorization_code",
681
+ RefreshToken = "refresh_token"
682
+ }
670
683
  /**
671
684
  * The symbol that draws a raster with classification.
672
685
  */
@@ -857,20 +870,38 @@ export interface CatalogResourceDc {
857
870
  createdAt?: string;
858
871
  /** Resource tags. */
859
872
  tags?: string[];
873
+ /**
874
+ *
875
+ *
876
+ * none
877
+ *
878
+ * configure
879
+ *
880
+ * write
881
+ *
882
+ * read
883
+ *
884
+ * read,configure
885
+ *
886
+ * read,write
887
+ *
888
+ * read,write,configure
889
+ */
890
+ permissions?: Permissions;
860
891
  }
861
892
  /**
862
893
  *
863
-
894
+
864
895
  None
865
-
896
+
866
897
  Map
867
-
898
+
868
899
  Layer
869
-
900
+
870
901
  Table
871
-
902
+
872
903
  File
873
-
904
+
874
905
  TaskPrototype
875
906
  */
876
907
  export declare enum CatalogResourceType {
@@ -914,15 +945,15 @@ export declare type ClassificationRasterSymbolDc = RasterSymbolDc & {
914
945
  };
915
946
  /**
916
947
  * Describes classification methods.
917
-
948
+
918
949
  none
919
-
950
+
920
951
  naturalBreaks
921
-
952
+
922
953
  equalInterval
923
-
954
+
924
955
  quantile
925
-
956
+
926
957
  unique
927
958
  */
928
959
  export declare enum ClassificationType {
@@ -934,11 +965,11 @@ export declare enum ClassificationType {
934
965
  }
935
966
  /**
936
967
  *
937
-
968
+
938
969
  decimal
939
-
970
+
940
971
  dateTime
941
-
972
+
942
973
  text
943
974
  */
944
975
  export declare enum ClassifyAttributeType {
@@ -1232,55 +1263,55 @@ export interface ConfigDc {
1232
1263
  }
1233
1264
  /**
1234
1265
  *
1235
-
1266
+
1236
1267
  Unknown
1237
-
1268
+
1238
1269
  SerializeError
1239
-
1270
+
1240
1271
  InvalidDataService
1241
-
1272
+
1242
1273
  InvalidConfiguration
1243
-
1274
+
1244
1275
  InvalidDataServiceName
1245
-
1276
+
1246
1277
  InvalidTableName
1247
-
1278
+
1248
1279
  InvalidLayerName
1249
-
1280
+
1250
1281
  ResourceNotFound
1251
-
1282
+
1252
1283
  InvalidCondition
1253
-
1284
+
1254
1285
  InvalidAttributes
1255
-
1286
+
1256
1287
  InvalidIdAttribute
1257
-
1288
+
1258
1289
  InvalidGeometryAttribute
1259
-
1290
+
1260
1291
  InvalidGeometryAttributeType
1261
-
1292
+
1262
1293
  InvalidColumnName
1263
-
1294
+
1264
1295
  InvalidIdColumnSettings
1265
-
1296
+
1266
1297
  ColumnNotExistsInTable
1267
-
1298
+
1268
1299
  InvalidStyle
1269
-
1300
+
1270
1301
  InvalidLayerType
1271
-
1302
+
1272
1303
  ColumnLoadingError
1273
-
1304
+
1274
1305
  InvalidAttributeFormat
1275
-
1306
+
1276
1307
  DataSourceNotFound
1277
-
1308
+
1278
1309
  DuplicateColumns
1279
-
1310
+
1280
1311
  DuplicateAttributes
1281
-
1312
+
1282
1313
  TableWithoutColumns
1283
-
1314
+
1284
1315
  InvalidTableReferenceConfiguration
1285
1316
  */
1286
1317
  export declare enum ConfigurationErrorEnum {
@@ -1482,6 +1513,19 @@ export interface CreateUserDc {
1482
1513
  /** Phone number. */
1483
1514
  phone?: string;
1484
1515
  }
1516
+ /**
1517
+ * Create view from query layer data contract.
1518
+ */
1519
+ export interface CreateViewFromQueryLayerDc {
1520
+ /** Is view materialized. */
1521
+ isMaterialized?: boolean;
1522
+ /** Layer name. */
1523
+ layerName?: string;
1524
+ /** View name. */
1525
+ viewName?: string;
1526
+ /** Layer condition. */
1527
+ layerCondition?: string;
1528
+ }
1485
1529
  /**
1486
1530
  * Description of the temp file as a task data storage.
1487
1531
  */
@@ -1522,7 +1566,7 @@ export interface DependentResourceDc {
1522
1566
  * Table description with columns and access control list.
1523
1567
  */
1524
1568
  export declare type DetailedTableInfoDc = TableInfoDc & {
1525
- columns: ColumnDescriptionDc[];
1569
+ columns?: ColumnDescriptionDc[] | null;
1526
1570
  };
1527
1571
  /**
1528
1572
  * Empty square ending.
@@ -1621,15 +1665,15 @@ export interface ErrorDetailsDc {
1621
1665
  }
1622
1666
  /**
1623
1667
  * Type of the error.
1624
-
1668
+
1625
1669
  ResourceLimitExceeded
1626
-
1670
+
1627
1671
  ResourceNotFound
1628
-
1672
+
1629
1673
  InternalError
1630
-
1674
+
1631
1675
  BadRequest
1632
-
1676
+
1633
1677
  DuplicateContent
1634
1678
  */
1635
1679
  export declare enum ErrorDetailsType {
@@ -1975,7 +2019,7 @@ export interface FeatureDc {
1975
2019
  /** Feature unique identifier. */
1976
2020
  id?: string;
1977
2021
  /** Values for all bands of feature by pixel point. */
1978
- bandsValues?: Record<string, number | null>;
2022
+ bandsValues?: Record<string, number>;
1979
2023
  }
1980
2024
  /**
1981
2025
  * Service info for a feature layer service.
@@ -2121,9 +2165,9 @@ export declare type FeatureTaskParametersDc = TaskParametersDc & {
2121
2165
  };
2122
2166
  /**
2123
2167
  * Type of the feature.
2124
-
2168
+
2125
2169
  Unknown
2126
-
2170
+
2127
2171
  GeometricFeature
2128
2172
  */
2129
2173
  export declare enum FeatureType {
@@ -2250,11 +2294,11 @@ export interface FilterDc {
2250
2294
  }
2251
2295
  /**
2252
2296
  * Sets whether font should be styled.
2253
-
2297
+
2254
2298
  normal
2255
-
2299
+
2256
2300
  oblique
2257
-
2301
+
2258
2302
  italic
2259
2303
  */
2260
2304
  export declare enum FontStyle {
@@ -2264,27 +2308,27 @@ export declare enum FontStyle {
2264
2308
  }
2265
2309
  /**
2266
2310
  * Specifies the weight (or boldness) of the font.
2267
-
2311
+
2268
2312
  Thin
2269
-
2313
+
2270
2314
  ExtraLight
2271
-
2315
+
2272
2316
  Light
2273
-
2317
+
2274
2318
  SemiLight
2275
-
2319
+
2276
2320
  Normal
2277
-
2321
+
2278
2322
  Medium
2279
-
2323
+
2280
2324
  DemiBold
2281
-
2325
+
2282
2326
  Bold
2283
-
2327
+
2284
2328
  ExtraBold
2285
-
2329
+
2286
2330
  Black
2287
-
2331
+
2288
2332
  ExtraBlack
2289
2333
  */
2290
2334
  export declare enum FontWeight {
@@ -2379,17 +2423,17 @@ export interface GeometryDc {
2379
2423
  }
2380
2424
  /**
2381
2425
  *
2382
-
2426
+
2383
2427
  unknown
2384
-
2428
+
2385
2429
  point
2386
-
2430
+
2387
2431
  polyline
2388
-
2432
+
2389
2433
  multipolygon
2390
-
2434
+
2391
2435
  envelope
2392
-
2436
+
2393
2437
  multipoint
2394
2438
  */
2395
2439
  export declare enum GeometryType {
@@ -2519,44 +2563,6 @@ export interface GetFeaturesParametersDc {
2519
2563
  /** Comma separated list of attributes to be returned. If not set, all attributes are returned. */
2520
2564
  attributes?: string[];
2521
2565
  }
2522
- /**
2523
- * Get features parameters from one or many layers.
2524
- */
2525
- export interface GetFeaturesParametersFromLayersDc {
2526
- /** Enumerable of layer names. */
2527
- layerNames?: string[];
2528
- /** Sets features filtering query. */
2529
- query?: string;
2530
- /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
2531
- dataFilterId?: string;
2532
- /**
2533
- * Features count have to skip.
2534
- * @format int32
2535
- */
2536
- offset?: number;
2537
- /**
2538
- * Features limit per response.
2539
- * @format int32
2540
- */
2541
- limit?: number;
2542
- /**
2543
- * Spatial reference of returned features.
2544
- * @format int32
2545
- */
2546
- wkid?: number;
2547
- /** If set to true, the geometry will not be returned for features. */
2548
- withGeom?: boolean;
2549
- /**
2550
- * Comma separated list of attributes by which to sort the resulting feature list.
2551
- * If the attribute name is preceded with the "-" sign, sorting by this attribute will be
2552
- * in descending order.
2553
- */
2554
- sort?: string[];
2555
- /** Comma separated list of features ids. */
2556
- ids?: string[];
2557
- /** Comma separated list of attributes to be returned. If not set, all attributes are returned. */
2558
- attributes?: string[];
2559
- }
2560
2566
  /**
2561
2567
  * Get features count with layer filter condition data contract.
2562
2568
  */
@@ -2597,13 +2603,13 @@ export declare type GridElementDc = ModelElementDc & {
2597
2603
  };
2598
2604
  /**
2599
2605
  * Resource group.
2600
-
2606
+
2601
2607
  my
2602
-
2608
+
2603
2609
  role
2604
-
2610
+
2605
2611
  public
2606
-
2612
+
2607
2613
  all
2608
2614
  */
2609
2615
  export declare enum Group {
@@ -3066,13 +3072,13 @@ export declare type LegendTemplateModelDc = TemplateModelDc & {
3066
3072
  };
3067
3073
  /**
3068
3074
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
3069
-
3075
+
3070
3076
  Flat
3071
-
3077
+
3072
3078
  Square
3073
-
3079
+
3074
3080
  Round
3075
-
3081
+
3076
3082
  Triangle
3077
3083
  */
3078
3084
  export declare enum LineCapStyle {
@@ -3116,29 +3122,29 @@ export interface LineEndingBaseDc {
3116
3122
  }
3117
3123
  /**
3118
3124
  * Type of the line ending.
3119
-
3125
+
3120
3126
  none
3121
-
3127
+
3122
3128
  arrow
3123
-
3129
+
3124
3130
  filledArrow
3125
-
3131
+
3126
3132
  square
3127
-
3133
+
3128
3134
  filledSquare
3129
-
3135
+
3130
3136
  circle
3131
-
3137
+
3132
3138
  filledCircle
3133
-
3139
+
3134
3140
  diamond
3135
-
3141
+
3136
3142
  filledDiamond
3137
-
3143
+
3138
3144
  roundSquare
3139
-
3145
+
3140
3146
  filledRoundSquare
3141
-
3147
+
3142
3148
  svg
3143
3149
  */
3144
3150
  export declare enum LineEndingType {
@@ -3157,11 +3163,11 @@ export declare enum LineEndingType {
3157
3163
  }
3158
3164
  /**
3159
3165
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
3160
-
3166
+
3161
3167
  Miter
3162
-
3168
+
3163
3169
  Bevel
3164
-
3170
+
3165
3171
  Round
3166
3172
  */
3167
3173
  export declare enum LineJoinType {
@@ -3198,6 +3204,8 @@ export interface ListResourcesDto {
3198
3204
  * Shared
3199
3205
  *
3200
3206
  * Public
3207
+ *
3208
+ * All
3201
3209
  */
3202
3210
  ownerFilter?: OwnerFilter;
3203
3211
  /** Resources types filter. */
@@ -3206,6 +3214,10 @@ export interface ListResourcesDto {
3206
3214
  subtypes?: string[];
3207
3215
  /** Tags filter. */
3208
3216
  tagsFilter?: TagsFilterDto;
3217
+ /** Order by result. */
3218
+ orderBy?: string[];
3219
+ /** System names filter. */
3220
+ systemNames?: string[];
3209
3221
  }
3210
3222
  /**
3211
3223
  * Configuration for the local tile service.
@@ -3241,7 +3253,7 @@ export interface LoginDc {
3241
3253
  }
3242
3254
  /**
3243
3255
  * SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc provides information to create datasource and maps it to exists database table.
3244
-
3256
+
3245
3257
  SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc.Name can be materialized view or view.
3246
3258
  */
3247
3259
  export interface MapTableInfoDc {
@@ -3286,6 +3298,8 @@ export declare type MaskedImagePolygonSymbolDc = SymbolDc & {
3286
3298
  */
3287
3299
  export declare type MaterializedViewConfigurationDc = TableConfigurationBaseDc & {
3288
3300
  type?: string | null;
3301
+ eql?: string | null;
3302
+ eqlParameters?: Record<string, any>;
3289
3303
  };
3290
3304
  /**
3291
3305
  * Base template model data contract.
@@ -3339,7 +3353,7 @@ export interface NamespaceInfoDc {
3339
3353
  * RasterMetaDc.
3340
3354
  */
3341
3355
  export declare type NetCdfMetaDc = RasterMetaDc & {
3342
- dimExtraValues?: Record<string, string[]>;
3356
+ dimExtraValues?: Record<string, string[] | null>;
3343
3357
  };
3344
3358
  /**
3345
3359
  * Define no ending data contract.
@@ -3350,15 +3364,15 @@ export declare type NoneEndingDc = LineEndingBaseDc & {
3350
3364
  export declare type ObjectId = object;
3351
3365
  /**
3352
3366
  *
3353
-
3367
+
3354
3368
  Unknown
3355
-
3369
+
3356
3370
  union
3357
-
3371
+
3358
3372
  intersection
3359
-
3373
+
3360
3374
  subtraction
3361
-
3375
+
3362
3376
  symDifference
3363
3377
  */
3364
3378
  export declare enum Operation {
@@ -3378,23 +3392,28 @@ export declare type OverlayTaskParametersDc = FeatureTaskParametersDc & {
3378
3392
  };
3379
3393
  /**
3380
3394
  *
3381
-
3395
+
3382
3396
  My
3383
-
3397
+
3384
3398
  Shared
3385
-
3399
+
3386
3400
  Public
3401
+
3402
+ All
3387
3403
  */
3388
3404
  export declare enum OwnerFilter {
3389
3405
  My = "My",
3390
3406
  Shared = "Shared",
3391
- Public = "Public"
3407
+ Public = "Public",
3408
+ All = "All"
3392
3409
  }
3393
3410
  /**
3394
3411
  * Features list definition.
3395
3412
  */
3396
3413
  export declare type PagedBulkFeaturesListDc = PagedListFeatureDc & {
3397
3414
  layerName?: string | null;
3415
+ hasError?: boolean;
3416
+ error?: string | null;
3398
3417
  };
3399
3418
  /**
3400
3419
  * Features list definition.
@@ -3544,6 +3563,28 @@ export interface PagedListUserInfoDc {
3544
3563
  limit?: number;
3545
3564
  items?: UserInfoDc[];
3546
3565
  }
3566
+ /**
3567
+ * Paged resources list.
3568
+ */
3569
+ export interface PagedResourcesListDc {
3570
+ /** A set of resources. */
3571
+ items?: CatalogResourceDc[];
3572
+ /**
3573
+ * Limit.
3574
+ * @format int32
3575
+ */
3576
+ limit?: number;
3577
+ /**
3578
+ * Offset.
3579
+ * @format int32
3580
+ */
3581
+ offset?: number;
3582
+ /**
3583
+ * Total count.
3584
+ * @format int32
3585
+ */
3586
+ totalCount?: number;
3587
+ }
3547
3588
  /**
3548
3589
  * Number parameter of a symbol. The parameter can be represented as a simple number, or
3549
3590
  as an object with a "type" parameter specified.
@@ -3607,9 +3648,9 @@ export declare type PatternBrushDc = FillBrushDc & {
3607
3648
  };
3608
3649
  /**
3609
3650
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
3610
-
3651
+
3611
3652
  xyz
3612
-
3653
+
3613
3654
  tms
3614
3655
  */
3615
3656
  export declare enum PbfSchema {
@@ -3630,19 +3671,19 @@ export declare type PbfServiceInfoDc = ProxyServiceInfoDc & {
3630
3671
  };
3631
3672
  /**
3632
3673
  *
3633
-
3674
+
3634
3675
  none
3635
-
3676
+
3636
3677
  configure
3637
-
3678
+
3638
3679
  write
3639
-
3680
+
3640
3681
  read
3641
-
3682
+
3642
3683
  read,configure
3643
-
3684
+
3644
3685
  read,write
3645
-
3686
+
3646
3687
  read,write,configure
3647
3688
  */
3648
3689
  export declare enum Permissions {
@@ -3700,19 +3741,19 @@ export interface PolicyDc {
3700
3741
  }
3701
3742
  /**
3702
3743
  * Type of the authorization policy.
3703
-
3744
+
3704
3745
  Unknown
3705
-
3746
+
3706
3747
  CreateTable
3707
-
3748
+
3708
3749
  CreateLayer
3709
-
3750
+
3710
3751
  CreateProject
3711
-
3752
+
3712
3753
  MaxFeaturesInOneTable
3713
-
3754
+
3714
3755
  MaxObjectsToExport
3715
-
3756
+
3716
3757
  MaxUploadContentSize
3717
3758
  */
3718
3759
  export declare enum PolicyType {
@@ -3868,6 +3909,8 @@ export interface ProjectConfigurationDc {
3868
3909
  clientData?: any;
3869
3910
  /** Card configuration. Storage isn't used by server. */
3870
3911
  dashboardConfiguration?: any;
3912
+ /** Project information. Storage isn't used by server. */
3913
+ projectInfo?: any;
3871
3914
  /** Project content items configurations. */
3872
3915
  items?: ProjectContentItemDc[];
3873
3916
  /** A collection of bookmarks of the map. */
@@ -4070,11 +4113,11 @@ export interface ProxyServiceInfoDc {
4070
4113
  }
4071
4114
  /**
4072
4115
  * Stream quality.
4073
-
4116
+
4074
4117
  Low
4075
-
4118
+
4076
4119
  Medium
4077
-
4120
+
4078
4121
  High
4079
4122
  */
4080
4123
  export declare enum Quality {
@@ -4321,7 +4364,7 @@ export interface RasterBandMetaDc {
4321
4364
  /** Histogram. */
4322
4365
  histogram?: number[];
4323
4366
  /** Data histogram. */
4324
- dataHistogram?: Record<string, number | null>;
4367
+ dataHistogram?: Record<string, number>;
4325
4368
  }
4326
4369
  /**
4327
4370
  * Upload raster task parameters data contract.
@@ -4422,6 +4465,31 @@ export interface RasterVrtFeatureSourceDc {
4422
4465
  */
4423
4466
  id: number;
4424
4467
  }
4468
+ /**
4469
+ * Create client data contract.
4470
+ */
4471
+ export interface RegisterClientRequestDc {
4472
+ /** Name of the client. */
4473
+ client_name: string;
4474
+ /** Redirect uri. */
4475
+ redirect_uri: string;
4476
+ /** Client uri. */
4477
+ client_uri?: string;
4478
+ }
4479
+ /**
4480
+ * Create client response dc.
4481
+ */
4482
+ export interface RegisterClientResponseDc {
4483
+ /**
4484
+ * Client id.
4485
+ * @format uuid
4486
+ */
4487
+ client_id?: string;
4488
+ /** Client secret. */
4489
+ secret?: string;
4490
+ /** Client name. */
4491
+ client_name?: string;
4492
+ }
4425
4493
  /**
4426
4494
  * Data contract for register new user.
4427
4495
  */
@@ -4549,19 +4617,19 @@ export interface ResourceInfoDc {
4549
4617
  }
4550
4618
  /**
4551
4619
  *
4552
-
4620
+
4553
4621
  Unknown
4554
-
4622
+
4555
4623
  table
4556
-
4624
+
4557
4625
  layer
4558
-
4626
+
4559
4627
  project
4560
-
4628
+
4561
4629
  file
4562
-
4630
+
4563
4631
  feature
4564
-
4632
+
4565
4633
  tag
4566
4634
  */
4567
4635
  export declare enum ResourceType {
@@ -4578,6 +4646,17 @@ export declare enum ResourceTypeLink {
4578
4646
  Layer = "layers",
4579
4647
  Project = "projects"
4580
4648
  }
4649
+ /**
4650
+ * Response type.
4651
+
4652
+ code
4653
+
4654
+ token
4655
+ */
4656
+ export declare enum ResponseType {
4657
+ Code = "code",
4658
+ Token = "token"
4659
+ }
4581
4660
  /**
4582
4661
  * The symbol that draws a rgb raster.
4583
4662
  */
@@ -4747,6 +4826,8 @@ export interface SearchResourcesDto {
4747
4826
  * Shared
4748
4827
  *
4749
4828
  * Public
4829
+ *
4830
+ * All
4750
4831
  */
4751
4832
  ownerFilter?: OwnerFilter;
4752
4833
  /** Tags filter. */
@@ -4755,6 +4836,10 @@ export interface SearchResourcesDto {
4755
4836
  resourceTypes?: CatalogResourceType[];
4756
4837
  /** Resources subtypes filter. */
4757
4838
  subtypes?: string[];
4839
+ /** Order by response. */
4840
+ orderBy?: string[];
4841
+ /** Filter by system names. */
4842
+ systemNames?: string[];
4758
4843
  }
4759
4844
  /**
4760
4845
  * Result data.
@@ -4830,21 +4915,21 @@ export interface ServerInfoDc {
4830
4915
  }
4831
4916
  /**
4832
4917
  * Status of the server task.
4833
-
4918
+
4834
4919
  None
4835
-
4920
+
4836
4921
  Scheduled
4837
-
4922
+
4838
4923
  Planning
4839
-
4924
+
4840
4925
  Executing
4841
-
4926
+
4842
4927
  Completed
4843
-
4928
+
4844
4929
  Failed
4845
-
4930
+
4846
4931
  Canceled
4847
-
4932
+
4848
4933
  Timeout
4849
4934
  */
4850
4935
  export declare enum ServerTaskStatus {
@@ -4943,6 +5028,7 @@ export interface ServiceInfo {
4943
5028
  tags?: string[];
4944
5029
  inVisible?: boolean;
4945
5030
  parentId?: string;
5031
+ resourceId?: string;
4946
5032
  preview?: string;
4947
5033
  }
4948
5034
  /**
@@ -5102,7 +5188,7 @@ export interface SimpleEndingDc {
5102
5188
  }
5103
5189
  /**
5104
5190
  * Polyline symbol the parameters of endings of which are calculated based on the parameters of the symbol stoke.
5105
-
5191
+
5106
5192
  If the ending is set to be other then None, the size and color of the ending will be calculated based on the
5107
5193
  stroke width and color of the symbol.
5108
5194
  */
@@ -5177,11 +5263,11 @@ export interface SimplifyInfoItemDc {
5177
5263
  }
5178
5264
  /**
5179
5265
  *
5180
-
5266
+
5181
5267
  Basic
5182
-
5268
+
5183
5269
  PreserveTopology
5184
-
5270
+
5185
5271
  VW
5186
5272
  */
5187
5273
  export declare enum SimplifyType {
@@ -5332,13 +5418,13 @@ export declare type StepResultDc = BaseStepResultDc & {
5332
5418
  };
5333
5419
  /**
5334
5420
  *
5335
-
5421
+
5336
5422
  None
5337
-
5423
+
5338
5424
  Image
5339
-
5425
+
5340
5426
  PkkCode
5341
-
5427
+
5342
5428
  Attachments
5343
5429
  */
5344
5430
  export declare enum StringSubType {
@@ -5554,9 +5640,9 @@ export interface TagsFilterDto {
5554
5640
  }
5555
5641
  /**
5556
5642
  * Task owner group.
5557
-
5643
+
5558
5644
  my
5559
-
5645
+
5560
5646
  all
5561
5647
  */
5562
5648
  export declare enum TaskGroup {
@@ -5774,13 +5860,13 @@ export interface TemplateModelDc {
5774
5860
  }
5775
5861
  /**
5776
5862
  * Sets the horizontal alignment of text.
5777
-
5863
+
5778
5864
  right
5779
-
5865
+
5780
5866
  left
5781
-
5867
+
5782
5868
  center
5783
-
5869
+
5784
5870
  justified
5785
5871
  */
5786
5872
  export declare enum TextAlignment {
@@ -5800,11 +5886,11 @@ export interface TextBackgroundDc {
5800
5886
  }
5801
5887
  /**
5802
5888
  * Sets the vertical alignment of text.
5803
-
5889
+
5804
5890
  top
5805
-
5891
+
5806
5892
  bottom
5807
-
5893
+
5808
5894
  middle
5809
5895
  */
5810
5896
  export declare enum TextVerticalAlignment {
@@ -6103,6 +6189,44 @@ export declare type TilingTaskDataStorageDc = BaseTaskDataStorageDc & {
6103
6189
  createNewService?: boolean;
6104
6190
  type?: string | null;
6105
6191
  };
6192
+ /**
6193
+ * Access token request.
6194
+ */
6195
+ export interface TokenRequestDc {
6196
+ /**
6197
+ * An authorization grant is a credential representing the resource
6198
+ * owner's authorization (to access its protected resources) used by the
6199
+ * client to obtain an access token.
6200
+ *
6201
+ * authorization_code
6202
+ *
6203
+ * refresh_token
6204
+ */
6205
+ grant_type: AuthorizationGrant;
6206
+ /**
6207
+ * Client id.
6208
+ * @format uuid
6209
+ */
6210
+ client_id: string;
6211
+ /** Client secret. */
6212
+ client_secret: string;
6213
+ /** Authorization code. */
6214
+ code: string;
6215
+ }
6216
+ /**
6217
+ * Token response.
6218
+ */
6219
+ export interface TokenResponseDc {
6220
+ /** Access token. */
6221
+ access_token?: string;
6222
+ /**
6223
+ * Expires date.
6224
+ * @format date-time
6225
+ */
6226
+ expires_in?: string;
6227
+ /** Refresh token. */
6228
+ refresh_token?: string;
6229
+ }
6106
6230
  export declare type TrackSymbolBaseDc = SymbolDc & {
6107
6231
  groupAttribute?: string | null;
6108
6232
  sourceAttribute?: string | null;
@@ -6322,6 +6446,8 @@ export interface Vector2 {
6322
6446
  */
6323
6447
  export declare type ViewConfigurationDc = TableConfigurationBaseDc & {
6324
6448
  type?: string | null;
6449
+ eql?: string | null;
6450
+ eqlParameters?: Record<string, any>;
6325
6451
  };
6326
6452
  /**
6327
6453
  * Workspace limits data contract.
@@ -6473,6 +6599,23 @@ export interface ResetPasswordCallbackPayload {
6473
6599
  code: string;
6474
6600
  newPassword: string;
6475
6601
  }
6602
+ export interface AuthenticateParams {
6603
+ /**
6604
+ * Client id.
6605
+ * @format uuid
6606
+ */
6607
+ client_id?: string;
6608
+ /**
6609
+ * Response type.
6610
+ *
6611
+ * code
6612
+ *
6613
+ * token
6614
+ */
6615
+ response_type?: ResponseType;
6616
+ /** Redirect uri. */
6617
+ redirect_uri?: string;
6618
+ }
6476
6619
  export interface GetRolesParams {
6477
6620
  /** String filter for the role (uses % and _ wild cards like SQL). */
6478
6621
  filter?: string;
@@ -6610,8 +6753,32 @@ export interface GetAllParams {
6610
6753
  * Shared
6611
6754
  *
6612
6755
  * Public
6756
+ *
6757
+ * All
6613
6758
  */
6614
6759
  ownerFilter?: OwnerFilter;
6760
+ /**
6761
+ * Limit response page.
6762
+ * @format int32
6763
+ */
6764
+ limit?: number;
6765
+ /**
6766
+ * Offset objects from start.
6767
+ * @format int32
6768
+ */
6769
+ offset?: number;
6770
+ }
6771
+ export interface PostGetAllParams {
6772
+ /**
6773
+ * Limit response page.
6774
+ * @format int32
6775
+ */
6776
+ limit?: number;
6777
+ /**
6778
+ * Offset objects from start.
6779
+ * @format int32
6780
+ */
6781
+ offset?: number;
6615
6782
  }
6616
6783
  export interface GetTagsParams {
6617
6784
  /** Text filter. */
@@ -7339,7 +7506,7 @@ export interface ValidateExpressionParams {
7339
7506
  /** Layer name. */
7340
7507
  layerName: string;
7341
7508
  }
7342
- export interface GetRasterMetaParams9 {
7509
+ export interface GetRasterMetaParams3 {
7343
7510
  /**
7344
7511
  * Min value for build histogram.
7345
7512
  * @format double
@@ -7466,7 +7633,7 @@ export interface GetProjectsListParams {
7466
7633
  tags?: string[];
7467
7634
  }
7468
7635
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
7469
- export interface DeleteResourcesParams5 {
7636
+ export interface DeleteResourcesParams4 {
7470
7637
  /** Resource names. */
7471
7638
  names?: string[];
7472
7639
  }
@@ -7749,7 +7916,7 @@ export interface StatisticsDbParams {
7749
7916
  */
7750
7917
  types?: AggregationFunction[];
7751
7918
  }
7752
- export interface ClassifyParams5 {
7919
+ export interface ClassifyParams4 {
7753
7920
  /** Layer name. */
7754
7921
  name: string;
7755
7922
  /** Attribute name. */
@@ -7882,7 +8049,7 @@ export interface GetTableListParams {
7882
8049
  acl?: string;
7883
8050
  }
7884
8051
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
7885
- export interface DeleteResourcesParams2 {
8052
+ export interface DeleteResourcesParams10 {
7886
8053
  /** Resource names. */
7887
8054
  names?: string[];
7888
8055
  }
@@ -7950,7 +8117,7 @@ export interface SetPreviewInput {
7950
8117
  /** @format binary */
7951
8118
  file?: File;
7952
8119
  }
7953
- export interface GetAllParams9 {
8120
+ export interface GetAllParams3 {
7954
8121
  /** Text filter. */
7955
8122
  filter?: string;
7956
8123
  /**
@@ -7964,7 +8131,7 @@ export interface GetAllParams9 {
7964
8131
  */
7965
8132
  limit?: number;
7966
8133
  }
7967
- export interface GetSearchResultParams {
8134
+ export interface SearchResultDcGetSearchResultParams {
7968
8135
  /** Results filter. */
7969
8136
  filter?: string;
7970
8137
  /**
@@ -7977,7 +8144,7 @@ export interface GetSearchResultParams {
7977
8144
  * @format int32
7978
8145
  */
7979
8146
  limit?: number;
7980
- /** Id of the task. */
8147
+ /** Task id. */
7981
8148
  taskId: string;
7982
8149
  /** Name of the layer. */
7983
8150
  layerName: string;
@@ -8039,7 +8206,7 @@ export interface GetPublicCapabilitiesParams {
8039
8206
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
8040
8207
  AcceptFormats?: string[];
8041
8208
  }
8042
- export interface GetCapabilitiesParams3 {
8209
+ export interface GetCapabilitiesParams7 {
8043
8210
  /** Output format of service metadata. */
8044
8211
  Format?: string;
8045
8212
  /** Must be WMS. */