@evergis/api 3.0.100 → 3.0.102

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.
Files changed (41) hide show
  1. package/LICENSE +20 -20
  2. package/README.md +21 -21
  3. package/dist/__generated__/AccountPreviewService.d.ts +8 -19
  4. package/dist/__generated__/AccountService.d.ts +12 -1
  5. package/dist/__generated__/BulkOperationsService.d.ts +1 -1
  6. package/dist/__generated__/ClientSettingsService.d.ts +1 -1
  7. package/dist/__generated__/ExternalProvidersService.d.ts +1 -1
  8. package/dist/__generated__/FeedbackService.d.ts +1 -1
  9. package/dist/__generated__/FiltersService.d.ts +1 -1
  10. package/dist/__generated__/GeneralService.d.ts +1 -1
  11. package/dist/__generated__/GeocodeService.d.ts +1 -1
  12. package/dist/__generated__/IceRouterService.d.ts +1 -1
  13. package/dist/__generated__/ImportService.d.ts +1 -1
  14. package/dist/__generated__/LayersService.d.ts +24 -13
  15. package/dist/__generated__/NamespaceService.d.ts +1 -1
  16. package/dist/__generated__/NotificationService.d.ts +1 -1
  17. package/dist/__generated__/PrintService.d.ts +1 -1
  18. package/dist/__generated__/ProjectsService.d.ts +14 -3
  19. package/dist/__generated__/ResourceCatalogService.d.ts +1 -1
  20. package/dist/__generated__/S3Service.d.ts +1 -1
  21. package/dist/__generated__/SchedulerService.d.ts +1 -1
  22. package/dist/__generated__/SecurityService.d.ts +1 -1
  23. package/dist/__generated__/StaticContentService.d.ts +13 -2
  24. package/dist/__generated__/StatisticService.d.ts +3 -3
  25. package/dist/__generated__/StyleService.d.ts +1 -1
  26. package/dist/__generated__/TablesService.d.ts +16 -27
  27. package/dist/__generated__/TagsService.d.ts +1 -1
  28. package/dist/__generated__/ToolsService.d.ts +1 -1
  29. package/dist/__generated__/WfsServerService.d.ts +1 -1
  30. package/dist/__generated__/WmsServerService.d.ts +3 -3
  31. package/dist/__generated__/WmtsService.d.ts +1 -1
  32. package/dist/__generated__/data-contracts.d.ts +229 -189
  33. package/dist/api.cjs.development.js +164 -115
  34. package/dist/api.cjs.development.js.map +1 -1
  35. package/dist/api.cjs.production.min.js +1 -1
  36. package/dist/api.cjs.production.min.js.map +1 -1
  37. package/dist/api.esm.js +313 -258
  38. package/dist/api.esm.js.map +1 -1
  39. package/dist/services/AccountPreview.d.ts +3 -1
  40. package/dist/services/Statistic.d.ts +2 -2
  41. package/package.json +3 -3
@@ -80,45 +80,45 @@ export interface AggregationDataResultDc {
80
80
  }
81
81
  /**
82
82
  *
83
-
83
+
84
84
  None
85
-
85
+
86
86
  Array
87
-
87
+
88
88
  Min
89
-
89
+
90
90
  Max
91
-
91
+
92
92
  Avg
93
-
93
+
94
94
  Sum
95
-
95
+
96
96
  Extent
97
-
97
+
98
98
  Count
99
-
99
+
100
100
  TotalCount
101
-
101
+
102
102
  DistinctCount
103
-
103
+
104
104
  First
105
-
105
+
106
106
  Last
107
-
107
+
108
108
  Median
109
-
109
+
110
110
  Mod
111
-
111
+
112
112
  StdDeviation
113
-
113
+
114
114
  SumOfProduct
115
-
115
+
116
116
  OnlyValue
117
-
117
+
118
118
  WeightedAvg
119
-
119
+
120
120
  DensityIndicators
121
-
121
+
122
122
  DividedSum
123
123
  */
124
124
  export declare enum AggregationFunction {
@@ -427,27 +427,27 @@ export interface AttributeFormatDefinitionDc {
427
427
  }
428
428
  /**
429
429
  * Types of the attributes that are supported by the system.
430
-
430
+
431
431
  Unknown
432
-
432
+
433
433
  String
434
-
434
+
435
435
  Int32
436
-
436
+
437
437
  Int64
438
-
438
+
439
439
  Double
440
-
440
+
441
441
  DateTime
442
-
442
+
443
443
  Boolean
444
-
444
+
445
445
  Point
446
-
446
+
447
447
  Polyline
448
-
448
+
449
449
  Polygon
450
-
450
+
451
451
  Multipoint
452
452
  */
453
453
  export declare enum AttributeType {
@@ -611,15 +611,15 @@ export declare type CirclePointSymbolDc = SymbolDc & {
611
611
  };
612
612
  /**
613
613
  * Describes classification methods.
614
-
614
+
615
615
  none
616
-
616
+
617
617
  naturalBreaks
618
-
618
+
619
619
  equalInterval
620
-
620
+
621
621
  quantile
622
-
622
+
623
623
  unique
624
624
  */
625
625
  export declare enum ClassificationType {
@@ -631,11 +631,11 @@ export declare enum ClassificationType {
631
631
  }
632
632
  /**
633
633
  * Type of attribute.
634
-
634
+
635
635
  decimal
636
-
636
+
637
637
  dateTime
638
-
638
+
639
639
  text
640
640
  */
641
641
  export declare enum ClassifyAttributeType {
@@ -900,48 +900,52 @@ export interface ConfigDc {
900
900
  }
901
901
  /**
902
902
  * Types of errors that can occur during layer initialize.
903
-
903
+
904
904
  Unknown
905
-
905
+
906
906
  SerializeError
907
-
907
+
908
908
  InvalidDataService
909
-
909
+
910
910
  InvalidConfiguration
911
-
911
+
912
912
  InvalidDataServiceName
913
-
913
+
914
914
  InvalidTableName
915
-
915
+
916
+ InvalidLayerName
917
+
916
918
  ResourceNotFound
917
-
919
+
918
920
  InvalidCondition
919
-
921
+
920
922
  InvalidAttributes
921
-
923
+
922
924
  InvalidIdAttribute
923
-
925
+
924
926
  InvalidGeometryAttribute
925
-
927
+
926
928
  InvalidGeometryAttributeType
927
-
929
+
928
930
  InvalidColumnName
929
-
931
+
930
932
  InvalidIdColumnSettings
931
-
933
+
932
934
  ColumnNotExistsInTable
933
-
935
+
934
936
  InvalidStyle
935
-
937
+
936
938
  InvalidLayerType
937
-
939
+
938
940
  ColumnLoadingError
939
-
941
+
940
942
  InvalidAttributeFormat
941
-
943
+
942
944
  DataSourceNotFound
943
-
945
+
944
946
  DuplicateColumns
947
+
948
+ TableWithoutColumns
945
949
  */
946
950
  export declare enum ConfigurationErrorEnum {
947
951
  Unknown = "Unknown",
@@ -950,6 +954,7 @@ export declare enum ConfigurationErrorEnum {
950
954
  InvalidConfiguration = "InvalidConfiguration",
951
955
  InvalidDataServiceName = "InvalidDataServiceName",
952
956
  InvalidTableName = "InvalidTableName",
957
+ InvalidLayerName = "InvalidLayerName",
953
958
  ResourceNotFound = "ResourceNotFound",
954
959
  InvalidCondition = "InvalidCondition",
955
960
  InvalidAttributes = "InvalidAttributes",
@@ -964,7 +969,8 @@ export declare enum ConfigurationErrorEnum {
964
969
  ColumnLoadingError = "ColumnLoadingError",
965
970
  InvalidAttributeFormat = "InvalidAttributeFormat",
966
971
  DataSourceNotFound = "DataSourceNotFound",
967
- DuplicateColumns = "DuplicateColumns"
972
+ DuplicateColumns = "DuplicateColumns",
973
+ TableWithoutColumns = "TableWithoutColumns"
968
974
  }
969
975
  /**
970
976
  * SPCore.Connectors.Connectors.Base.Models.Scheduler.ConfiguredLayerDataStorageDc provides configurable layer storage.
@@ -1186,15 +1192,15 @@ export interface ErrorDetailsDc {
1186
1192
  }
1187
1193
  /**
1188
1194
  * Type of the error.
1189
-
1195
+
1190
1196
  ResourceLimitExceeded
1191
-
1197
+
1192
1198
  ResourceNotFound
1193
-
1199
+
1194
1200
  InternalError
1195
-
1201
+
1196
1202
  BadRequest
1197
-
1203
+
1198
1204
  DuplicateContent
1199
1205
  */
1200
1206
  export declare enum ErrorDetailsType {
@@ -1404,6 +1410,8 @@ export interface FailedServiceInfoDc {
1404
1410
  *
1405
1411
  * InvalidTableName
1406
1412
  *
1413
+ * InvalidLayerName
1414
+ *
1407
1415
  * ResourceNotFound
1408
1416
  *
1409
1417
  * InvalidCondition
@@ -1433,6 +1441,8 @@ export interface FailedServiceInfoDc {
1433
1441
  * DataSourceNotFound
1434
1442
  *
1435
1443
  * DuplicateColumns
1444
+ *
1445
+ * TableWithoutColumns
1436
1446
  */
1437
1447
  errorType?: ConfigurationErrorEnum;
1438
1448
  /** The type of the resource. */
@@ -1676,9 +1686,9 @@ export declare type FeatureTaskParametersDc = TaskParametersDc & {
1676
1686
  };
1677
1687
  /**
1678
1688
  * Type of the feature.
1679
-
1689
+
1680
1690
  Unknown
1681
-
1691
+
1682
1692
  GeometricFeature
1683
1693
  */
1684
1694
  export declare enum FeatureType {
@@ -1697,6 +1707,20 @@ export interface FeaturesListDc {
1697
1707
  */
1698
1708
  totalCount: number;
1699
1709
  }
1710
+ /**
1711
+ * Uploading file info.
1712
+ */
1713
+ export interface FileUploadInfoDc {
1714
+ /** Name of uploaded file. */
1715
+ fileName?: string;
1716
+ /**
1717
+ * Content length in bytes, if specified.
1718
+ * @format int64
1719
+ */
1720
+ contentLength?: number;
1721
+ /** Content type, if specified. */
1722
+ contentType?: string;
1723
+ }
1700
1724
  /**
1701
1725
  * The result of uploading a file.
1702
1726
  */
@@ -1738,11 +1762,11 @@ export interface FilterDc {
1738
1762
  }
1739
1763
  /**
1740
1764
  * Sets whether font should be styled.
1741
-
1765
+
1742
1766
  normal
1743
-
1767
+
1744
1768
  oblique
1745
-
1769
+
1746
1770
  italic
1747
1771
  */
1748
1772
  export declare enum FontStyle {
@@ -1752,27 +1776,27 @@ export declare enum FontStyle {
1752
1776
  }
1753
1777
  /**
1754
1778
  * Specifies the weight (or boldness) of the font.
1755
-
1779
+
1756
1780
  Thin
1757
-
1781
+
1758
1782
  ExtraLight
1759
-
1783
+
1760
1784
  Light
1761
-
1785
+
1762
1786
  SemiLight
1763
-
1787
+
1764
1788
  Normal
1765
-
1789
+
1766
1790
  Medium
1767
-
1791
+
1768
1792
  DemiBold
1769
-
1793
+
1770
1794
  Bold
1771
-
1795
+
1772
1796
  ExtraBold
1773
-
1797
+
1774
1798
  Black
1775
-
1799
+
1776
1800
  ExtraBlack
1777
1801
  */
1778
1802
  export declare enum FontWeight {
@@ -1867,17 +1891,17 @@ export interface GeometryDc {
1867
1891
  }
1868
1892
  /**
1869
1893
  *
1870
-
1894
+
1871
1895
  unknown
1872
-
1896
+
1873
1897
  point
1874
-
1898
+
1875
1899
  polyline
1876
-
1900
+
1877
1901
  polygon
1878
-
1902
+
1879
1903
  envelope
1880
-
1904
+
1881
1905
  multipoint
1882
1906
  */
1883
1907
  export declare enum GeometryType {
@@ -1897,13 +1921,13 @@ export declare type GridElementDc = ModelElementDc & {
1897
1921
  };
1898
1922
  /**
1899
1923
  * Resource group.
1900
-
1924
+
1901
1925
  my
1902
-
1926
+
1903
1927
  role
1904
-
1928
+
1905
1929
  public
1906
-
1930
+
1907
1931
  all
1908
1932
  */
1909
1933
  export declare enum Group {
@@ -2359,9 +2383,9 @@ export declare type LegendTemplateModelDc = TemplateModelDc & {
2359
2383
  /**
2360
2384
  * The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
2361
2385
  of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
2362
-
2386
+
2363
2387
  small
2364
-
2388
+
2365
2389
  large
2366
2390
  */
2367
2391
  export declare enum LineEndingSize {
@@ -2370,19 +2394,19 @@ export declare enum LineEndingSize {
2370
2394
  }
2371
2395
  /**
2372
2396
  * Type of the line ending.
2373
-
2397
+
2374
2398
  none
2375
-
2399
+
2376
2400
  arrow
2377
-
2401
+
2378
2402
  filledArrow
2379
-
2403
+
2380
2404
  square
2381
-
2405
+
2382
2406
  filledSquare
2383
-
2407
+
2384
2408
  circle
2385
-
2409
+
2386
2410
  filledCircle
2387
2411
  */
2388
2412
  export declare enum LineEndingType {
@@ -2553,30 +2577,22 @@ export interface LoginDc {
2553
2577
  /** Password. */
2554
2578
  password: string;
2555
2579
  }
2556
- /**
2557
- * SPCore.Connectors.Connectors.Base.Models.Data.MapRemoteTableInfoDc provider remote table info data contract.
2558
- */
2559
- export declare type MapRemoteTableInfoDc = MapTableInfoDc & {
2560
- dataProvider: string;
2561
- };
2562
2580
  /**
2563
2581
  * SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc provides information to create datasource and maps it to exists database table.
2564
2582
  <br>SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc.Name can be materialized view or view.
2565
2583
  */
2566
2584
  export interface MapTableInfoDc {
2567
- /** Name of the table, materialized view or view. */
2585
+ /** Name of the data source. */
2568
2586
  name: string;
2569
- /** Owner of the table. */
2570
- owner: string;
2571
- /** Create datasource alias. */
2587
+ /** Alias of the data source. */
2572
2588
  alias?: string;
2573
- /** Create datasource description. */
2589
+ /** Description of the data source. */
2574
2590
  description?: string;
2591
+ /** Owner of the data source. */
2592
+ owner: string;
2593
+ /** Access control list for a security object. */
2594
+ acl?: AccessControlListDc;
2575
2595
  }
2576
- /**
2577
- * SPCore.Connectors.Connectors.Base.Models.Data.MapViewInfoDc provides map view data source data contract.
2578
- */
2579
- export declare type MapViewInfoDc = MapTableInfoDc;
2580
2596
  /**
2581
2597
  * The point symbol drawing as image with the mask.
2582
2598
  */
@@ -2647,15 +2663,15 @@ export interface NamespaceInfoDc {
2647
2663
  export declare type ObjectId = object;
2648
2664
  /**
2649
2665
  *
2650
-
2666
+
2651
2667
  Unknown
2652
-
2668
+
2653
2669
  union
2654
-
2670
+
2655
2671
  intersection
2656
-
2672
+
2657
2673
  subtraction
2658
-
2674
+
2659
2675
  symDifference
2660
2676
  */
2661
2677
  export declare enum Operation {
@@ -2749,19 +2765,19 @@ export declare type PatternBrushDc = FillBrushDc & {
2749
2765
  };
2750
2766
  /**
2751
2767
  * User permissions for server security objects (services, projects etc.)
2752
-
2768
+
2753
2769
  none
2754
-
2770
+
2755
2771
  configure
2756
-
2772
+
2757
2773
  write
2758
-
2774
+
2759
2775
  read
2760
-
2776
+
2761
2777
  read,configure
2762
-
2778
+
2763
2779
  read,write
2764
-
2780
+
2765
2781
  read,write,configure
2766
2782
  */
2767
2783
  export declare enum Permissions {
@@ -2808,6 +2824,8 @@ export interface PolicyDc {
2808
2824
  * MaxFeaturesInOneTable
2809
2825
  *
2810
2826
  * MaxObjectsToExport
2827
+ *
2828
+ * MaxUploadContentSize
2811
2829
  */
2812
2830
  type: PolicyType;
2813
2831
  role?: string;
@@ -2816,18 +2834,20 @@ export interface PolicyDc {
2816
2834
  }
2817
2835
  /**
2818
2836
  * Type of the authorization policy.
2819
-
2837
+
2820
2838
  Unknown
2821
-
2839
+
2822
2840
  CreateTable
2823
-
2841
+
2824
2842
  CreateLayer
2825
-
2843
+
2826
2844
  CreateProject
2827
-
2845
+
2828
2846
  MaxFeaturesInOneTable
2829
-
2847
+
2830
2848
  MaxObjectsToExport
2849
+
2850
+ MaxUploadContentSize
2831
2851
  */
2832
2852
  export declare enum PolicyType {
2833
2853
  Unknown = "Unknown",
@@ -2835,7 +2855,8 @@ export declare enum PolicyType {
2835
2855
  CreateLayer = "CreateLayer",
2836
2856
  CreateProject = "CreateProject",
2837
2857
  MaxFeaturesInOneTable = "MaxFeaturesInOneTable",
2838
- MaxObjectsToExport = "MaxObjectsToExport"
2858
+ MaxObjectsToExport = "MaxObjectsToExport",
2859
+ MaxUploadContentSize = "MaxUploadContentSize"
2839
2860
  }
2840
2861
  /**
2841
2862
  * Polyline and Polygon base geometry object definition.
@@ -3050,6 +3071,8 @@ export interface ProxyLayerLegendItemDc {
3050
3071
  export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
3051
3072
  sourceType: string;
3052
3073
  sourceUrl: string;
3074
+ minResolution?: number;
3075
+ maxResolution?: number;
3053
3076
  layers: string[];
3054
3077
  };
3055
3078
  /**
@@ -3195,13 +3218,6 @@ export interface RegisterUserDc {
3195
3218
  /** Password. */
3196
3219
  password: string;
3197
3220
  }
3198
- /**
3199
- * SPCore.Connectors.Connectors.Base.Models.Data.Configurations.RemoteTableConfigurationDc provides remote table configuration data contract.
3200
- */
3201
- export declare type RemoteTableConfigurationDc = TableConfigurationBaseDc & {
3202
- type?: string;
3203
- dataProvider?: string;
3204
- };
3205
3221
  /**
3206
3222
  * Configuration for the remote tile service.
3207
3223
  */
@@ -3306,19 +3322,19 @@ export interface ResourceInfoDc {
3306
3322
  }
3307
3323
  /**
3308
3324
  * The `ResourceType` represents resource manager supports types.
3309
-
3325
+
3310
3326
  Unknown
3311
-
3327
+
3312
3328
  table
3313
-
3329
+
3314
3330
  layer
3315
-
3331
+
3316
3332
  project
3317
-
3333
+
3318
3334
  file
3319
-
3335
+
3320
3336
  feature
3321
-
3337
+
3322
3338
  tag
3323
3339
  */
3324
3340
  export declare enum ResourceType {
@@ -3483,26 +3499,24 @@ export interface ServerInfoDc {
3483
3499
  * @format date-time
3484
3500
  */
3485
3501
  startedAt?: string;
3486
- /** Whether the server is running in the debug mode. */
3487
- debug?: boolean;
3488
3502
  }
3489
3503
  /**
3490
3504
  * Status of the server task.
3491
-
3505
+
3492
3506
  None
3493
-
3507
+
3494
3508
  Scheduled
3495
-
3509
+
3496
3510
  Planning
3497
-
3511
+
3498
3512
  Executing
3499
-
3513
+
3500
3514
  Completed
3501
-
3515
+
3502
3516
  Failed
3503
-
3517
+
3504
3518
  Canceled
3505
-
3519
+
3506
3520
  Timeout
3507
3521
  */
3508
3522
  export declare enum ServerTaskStatus {
@@ -3844,11 +3858,11 @@ export declare type StepResultDc = BaseStepResultDc & {
3844
3858
  };
3845
3859
  /**
3846
3860
  * The `StringSubType` provides information about string attribute subtype.
3847
-
3861
+
3848
3862
  None
3849
-
3863
+
3850
3864
  Image
3851
-
3865
+
3852
3866
  PkkCode
3853
3867
  */
3854
3868
  export declare enum StringSubType {
@@ -3932,7 +3946,7 @@ export declare type TableInfoDc = ResourceInfoDc & {
3932
3946
  rowCount?: number;
3933
3947
  geometries?: GeometryType[];
3934
3948
  type?: string;
3935
- configuration?: DefaultTableConfigurationDc | RemoteTableConfigurationDc | RouteTableConfigurationDc | TileCatalogTableConfigurationDc | ViewConfigurationDc;
3949
+ configuration?: DefaultTableConfigurationDc | RouteTableConfigurationDc | TileCatalogTableConfigurationDc | ViewConfigurationDc;
3936
3950
  };
3937
3951
  /**
3938
3952
  * The `TableListDc` class provides list of tables info SPCore.Connectors.Connectors.Base.Models.Data.TableInfoDc.
@@ -4172,13 +4186,13 @@ export interface TemplateModelDc {
4172
4186
  }
4173
4187
  /**
4174
4188
  * Sets the horizontal alignment of text.
4175
-
4189
+
4176
4190
  right
4177
-
4191
+
4178
4192
  left
4179
-
4193
+
4180
4194
  center
4181
-
4195
+
4182
4196
  justified
4183
4197
  */
4184
4198
  export declare enum TextAlignment {
@@ -4198,11 +4212,11 @@ export interface TextBackgroundDc {
4198
4212
  }
4199
4213
  /**
4200
4214
  * Sets the vertical alignment of text.
4201
-
4215
+
4202
4216
  top
4203
-
4217
+
4204
4218
  bottom
4205
-
4219
+
4206
4220
  middle
4207
4221
  */
4208
4222
  export declare enum TextVerticalAlignment {
@@ -4687,6 +4701,11 @@ export interface WorkspaceLimitsDc {
4687
4701
  * @format int32
4688
4702
  */
4689
4703
  maxProjectsCount?: number;
4704
+ /**
4705
+ * Max upload file size.
4706
+ * @format int64
4707
+ */
4708
+ maxUploadContentSize?: number;
4690
4709
  /**
4691
4710
  * Max objects to export.
4692
4711
  * @format int64
@@ -4827,6 +4846,12 @@ export interface UploadPreviewPayload {
4827
4846
  /** @format binary */
4828
4847
  file?: File;
4829
4848
  }
4849
+ export interface UploadPreviewParams {
4850
+ /** Image in base64 format. */
4851
+ base64Image?: string;
4852
+ /** User name. */
4853
+ username: string;
4854
+ }
4830
4855
  export interface GetConfigurationsListParams {
4831
4856
  /**
4832
4857
  * Offset.
@@ -5006,6 +5031,12 @@ export interface DeleteResourcesParams {
5006
5031
  /** Resource names. */
5007
5032
  names?: string[];
5008
5033
  }
5034
+ export interface GetLayersInfoParams {
5035
+ /** Name array of the layers. */
5036
+ layerNames?: string[];
5037
+ /** ProjectName array with layers. */
5038
+ projectNames?: string[];
5039
+ }
5009
5040
  export interface GetFeaturesParams {
5010
5041
  /** Sets features filtering query. */
5011
5042
  query?: string;
@@ -5486,10 +5517,14 @@ export interface GetProjectsListParams {
5486
5517
  tags?: string[];
5487
5518
  }
5488
5519
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
5489
- export interface DeleteResourcesParams4 {
5520
+ export interface DeleteResourcesParams5 {
5490
5521
  /** Resource names. */
5491
5522
  names?: string[];
5492
5523
  }
5524
+ export interface GetProjectsInfoParams {
5525
+ /** Project names. */
5526
+ projectNames?: string[];
5527
+ }
5493
5528
  export interface SetPreviewBody {
5494
5529
  /** @format binary */
5495
5530
  file?: File;
@@ -5573,6 +5608,8 @@ export interface GetPolicyListParams {
5573
5608
  * MaxFeaturesInOneTable
5574
5609
  *
5575
5610
  * MaxObjectsToExport
5611
+ *
5612
+ * MaxUploadContentSize
5576
5613
  */
5577
5614
  type?: PolicyType;
5578
5615
  }
@@ -5591,6 +5628,8 @@ export interface RemovePolicyParams {
5591
5628
  * MaxFeaturesInOneTable
5592
5629
  *
5593
5630
  * MaxObjectsToExport
5631
+ *
5632
+ * MaxUploadContentSize
5594
5633
  */
5595
5634
  type?: PolicyType;
5596
5635
  /** Use role the policy is applied to. */
@@ -5601,11 +5640,15 @@ export interface DownloadFileParams {
5601
5640
  fileName?: string;
5602
5641
  }
5603
5642
  export interface UploadFilePayload {
5643
+ /** Name of the uploading file. */
5644
+ fileName?: string;
5645
+ /** Url to upload file. */
5646
+ url?: string;
5604
5647
  /**
5605
5648
  * Id of the tile in the session static storage.
5606
5649
  * @format binary
5607
5650
  */
5608
- file: File;
5651
+ file?: File;
5609
5652
  /**
5610
5653
  * Rewrite flag
5611
5654
  * If true - rewrite file if exist. If false - return error.
@@ -5616,6 +5659,10 @@ export interface DeleteFileParams {
5616
5659
  /** File id to delete. */
5617
5660
  fileid?: string;
5618
5661
  }
5662
+ export interface GetFileInfoParams {
5663
+ /** Id of the file in the temporary static storage. */
5664
+ url?: string;
5665
+ }
5619
5666
  export interface StatisticsDbParams {
5620
5667
  /** Layer name. */
5621
5668
  name?: string;
@@ -5626,7 +5673,7 @@ export interface StatisticsDbParams {
5626
5673
  /** Type of required statistic function. */
5627
5674
  types?: AggregationFunction[];
5628
5675
  }
5629
- export interface ClassifyParams1 {
5676
+ export interface ClassifyParams6 {
5630
5677
  /** Layer name. */
5631
5678
  name?: string;
5632
5679
  /** Attribute name. */
@@ -5721,10 +5768,14 @@ export interface GetTableListParams {
5721
5768
  acl?: string;
5722
5769
  }
5723
5770
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
5724
- export interface DeleteResourcesParams7 {
5771
+ export interface DeleteResourcesParams10 {
5725
5772
  /** Resource names. */
5726
5773
  names?: string[];
5727
5774
  }
5775
+ export interface GetTablesInfoParams {
5776
+ /** Table names. */
5777
+ tableNames?: string[];
5778
+ }
5728
5779
  export interface GetTableDataParams {
5729
5780
  /** String filter for the all text column (uses % and _ wild cards like SQL). */
5730
5781
  filter?: string;
@@ -5775,21 +5826,10 @@ export interface GetUniqueDataRowsParams {
5775
5826
  /** Name of the table. */
5776
5827
  name: string;
5777
5828
  }
5778
- /**
5779
- * SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc provides information to create datasource and maps it to exists database table.
5780
- <br>SPCore.Connectors.Connectors.Base.Models.Data.MapTableInfoDc.Name can be materialized view or view.
5781
- */
5782
- export declare type MapTablePayload = MapTableInfoDc | MapRemoteTableInfoDc | MapViewInfoDc;
5783
5829
  export interface MapTableParams {
5784
- /** Type of data source. */
5785
- type?: string;
5786
- }
5787
- export interface MapViewParams {
5788
- /** Type of data source. */
5789
- type?: string;
5790
- }
5791
- export interface MapRemoteTableParams {
5792
- /** Type of data source. */
5830
+ /** Name of the remote data provider. Allows to map table from foreign db. */
5831
+ dataProvider?: string;
5832
+ /** Type of the resource. Default type os Table. */
5793
5833
  type?: string;
5794
5834
  }
5795
5835
  export interface SetPreviewInput {
@@ -5840,7 +5880,7 @@ export interface GetPublicCapabilitiesParams {
5840
5880
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
5841
5881
  AcceptFormats?: string[];
5842
5882
  }
5843
- export interface GetCapabilitiesParams8 {
5883
+ export interface GetCapabilitiesParams10 {
5844
5884
  /** Output format of service metadata. */
5845
5885
  Format?: string;
5846
5886
  /** Must be WMS. */