@evergis/api 4.0.1-alpha.0 → 4.0.3

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.
@@ -247,17 +247,16 @@ export interface AggregationMappingDc {
247
247
  * S3 data source settings.
248
248
  */
249
249
  export declare type ArcGisDataSourceDc = DataSourceDc & {
250
+ type?: DataSourceType;
250
251
  serviceUrl?: string | null;
251
- username?: string | null;
252
- password?: string | null;
252
+ params?: Record<string, string | null>;
253
+ headers?: Record<string, string | null>;
253
254
  };
254
255
  /**
255
256
  * S3 data source info.
256
257
  */
257
258
  export declare type ArcGisDataSourceInfoDc = DataSourceInfoDc & {
258
259
  serviceUrl?: string | null;
259
- username?: string | null;
260
- password?: string | null;
261
260
  };
262
261
  /**
263
262
  * Archive calendar response.
@@ -959,6 +958,8 @@ export interface CatalogResourceDc {
959
958
  * @format int32
960
959
  */
961
960
  srid?: number;
961
+ /** True if resource has children. */
962
+ hasChildren?: boolean;
962
963
  }
963
964
  /**
964
965
  *
@@ -2067,6 +2068,8 @@ export interface ExtendedUserInfoDc {
2067
2068
  * @format int32
2068
2069
  */
2069
2070
  idModifyUser?: number;
2071
+ /** Gets or sets emoji. */
2072
+ emoji?: string;
2070
2073
  /** Information about connected social networks. */
2071
2074
  social?: SocialNetworkInfoDc[];
2072
2075
  /** Username. */
@@ -2284,6 +2287,8 @@ export interface FeatureLayerServiceInfoDc {
2284
2287
  copyrightText?: string;
2285
2288
  /** Client data storage. Storage isn't used by server. */
2286
2289
  clientData?: any;
2290
+ /** Card configuration. Storage isn't used by server. */
2291
+ cardConfiguration?: any;
2287
2292
  /** The type of the resource. */
2288
2293
  type: string;
2289
2294
  /**
@@ -2638,6 +2643,8 @@ export interface GeocodeSuggestResultDc {
2638
2643
  text?: string;
2639
2644
  /** Source label. */
2640
2645
  label?: string;
2646
+ /** Source id. */
2647
+ id?: string;
2641
2648
  }
2642
2649
  /**
2643
2650
  * Geocode task.
@@ -2803,6 +2810,8 @@ export interface GetFeaturesParametersDc {
2803
2810
  query?: string;
2804
2811
  /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
2805
2812
  dataFilterId?: string;
2813
+ /** Click geometry. */
2814
+ ewktGeometry?: string;
2806
2815
  /**
2807
2816
  * Features count have to skip.
2808
2817
  * @format int32
@@ -3686,6 +3695,21 @@ export declare type MaterializedViewConfigurationDc = TableConfigurationBaseDc &
3686
3695
  eql?: string | null;
3687
3696
  eqlParameters?: Record<string, any>;
3688
3697
  };
3698
+ /**
3699
+ * MosRu data source.
3700
+ */
3701
+ export declare type MosRuDataSourceDc = DataSourceDc & {
3702
+ type?: DataSourceType;
3703
+ serviceUrl?: string | null;
3704
+ accessToken?: string | null;
3705
+ };
3706
+ /**
3707
+ * MosRu data source info.
3708
+ */
3709
+ export declare type MosRuDataSourceInfoDc = DataSourceInfoDc & {
3710
+ serviceUrl?: string | null;
3711
+ accessToken?: string | null;
3712
+ };
3689
3713
  /**
3690
3714
  * Move resource dto.
3691
3715
  */
@@ -3814,7 +3838,7 @@ export interface PagedListDataSourceInfoDc {
3814
3838
  offset?: number;
3815
3839
  /** @format int32 */
3816
3840
  limit?: number;
3817
- items?: (DataSourceInfoDc | ArcGisDataSourceInfoDc | PostgresDataSourceInfoDc | S3DataSourceInfoDc)[];
3841
+ items?: (DataSourceInfoDc | ArcGisDataSourceInfoDc | MosRuDataSourceInfoDc | PostgresDataSourceInfoDc | S3DataSourceInfoDc)[];
3818
3842
  }
3819
3843
  export interface PagedListExtendedUserInfoDc {
3820
3844
  /** @format int64 */
@@ -3870,15 +3894,6 @@ export interface PagedListRoleInfoDc {
3870
3894
  limit?: number;
3871
3895
  items?: RoleInfoDc[];
3872
3896
  }
3873
- export interface PagedListScriptDc {
3874
- /** @format int64 */
3875
- totalCount?: number;
3876
- /** @format int32 */
3877
- offset?: number;
3878
- /** @format int32 */
3879
- limit?: number;
3880
- items?: ScriptDc[];
3881
- }
3882
3897
  export interface PagedListSearchResultDc {
3883
3898
  /** @format int64 */
3884
3899
  totalCount?: number;
@@ -4230,6 +4245,7 @@ export declare type PositionDc = number[];
4230
4245
  * Postgres connection data source connection.
4231
4246
  */
4232
4247
  export declare type PostgresDataSourceDc = DataSourceDc & {
4248
+ type?: DataSourceType;
4233
4249
  host?: string | null;
4234
4250
  userName?: string | null;
4235
4251
  password?: string | null;
@@ -4308,6 +4324,10 @@ export interface ProjectConfigurationDc {
4308
4324
  items?: ProjectContentItemDc[];
4309
4325
  /** A collection of bookmarks of the map. */
4310
4326
  bookmarks?: BookmarkDc[];
4327
+ /** Language of the project. */
4328
+ language?: string;
4329
+ /** Project configuration. */
4330
+ config?: any;
4311
4331
  }
4312
4332
  /**
4313
4333
  * Project item description.
@@ -4344,6 +4364,8 @@ export interface ProjectContentItemDc {
4344
4364
  isBasemap?: boolean;
4345
4365
  /** Children items. */
4346
4366
  children?: ProjectContentItemDc[];
4367
+ /** Layer type. */
4368
+ layerType?: string;
4347
4369
  }
4348
4370
  /**
4349
4371
  * A project configuration data contract.
@@ -4387,8 +4409,10 @@ export interface ProxyLayerLegendItemDc {
4387
4409
  * Configuration for the proxy service.
4388
4410
  */
4389
4411
  export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
4390
- sourceType: string;
4391
- sourceUrl: string;
4412
+ resourceId?: string | null;
4413
+ geometryType?: GeometryType;
4414
+ sourceType?: string | null;
4415
+ sourceUrl?: string | null;
4392
4416
  minResolution?: number;
4393
4417
  maxResolution?: number;
4394
4418
  layers?: string[] | null;
@@ -4402,6 +4426,8 @@ export declare type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
4402
4426
  * Service info for a Proxy service.
4403
4427
  */
4404
4428
  export interface ProxyServiceInfoDc {
4429
+ /** Information about the layer attributes and their configuration. */
4430
+ layerDefinition?: LayerDefinitionDc;
4405
4431
  /** Source system type, e.g. "ArcGIS". */
4406
4432
  sourceType: string;
4407
4433
  /** Source url path. Like http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/SuperTuesdaySample/MapServer. */
@@ -4508,6 +4534,21 @@ export interface ProxyServiceInfoDc {
4508
4534
  /** Resource tags. */
4509
4535
  tags?: string[];
4510
4536
  }
4537
+ /**
4538
+ * PythonResourceCreateDto.
4539
+ */
4540
+ export interface PythonResourceCreateDto {
4541
+ /** SystemName. */
4542
+ systemName?: string;
4543
+ /** Name. */
4544
+ name?: string;
4545
+ /** ParentId. */
4546
+ parentId?: string;
4547
+ /** Description. */
4548
+ description?: string;
4549
+ /** Tags. */
4550
+ tags?: string[];
4551
+ }
4511
4552
  /**
4512
4553
  * Stream quality.
4513
4554
 
@@ -4620,6 +4661,8 @@ export interface QueryLayerServiceInfoDc {
4620
4661
  copyrightText?: string;
4621
4662
  /** Client data storage. Storage isn't used by server. */
4622
4663
  clientData?: any;
4664
+ /** Card configuration. Storage isn't used by server. */
4665
+ cardConfiguration?: any;
4623
4666
  /** The type of the resource. */
4624
4667
  type: string;
4625
4668
  /**
@@ -4929,6 +4972,7 @@ export declare type RemoteTileServiceConfigurationDc = ServiceConfigurationBaseD
4929
4972
  subDomains?: string[] | null;
4930
4973
  allowDirectAccess?: boolean;
4931
4974
  RequestTimeout?: number;
4975
+ useProxyHttpClient?: boolean;
4932
4976
  };
4933
4977
  export interface RemoteTileServiceInfo {
4934
4978
  /** Description of a service in the Spatial Processor. */
@@ -5270,6 +5314,7 @@ export interface RoutingProviderInfoDc {
5270
5314
  * S3 data source settings.
5271
5315
  */
5272
5316
  export declare type S3DataSourceDc = DataSourceDc & {
5317
+ type?: DataSourceType;
5273
5318
  endpoint?: string | null;
5274
5319
  secretKey?: string | null;
5275
5320
  accessKey?: string | null;
@@ -5315,13 +5360,128 @@ export interface ScaleBarElementDc {
5315
5360
  enabled?: boolean;
5316
5361
  }
5317
5362
  /**
5318
- * Script data contract.
5363
+ * ScriptConfiguration.
5364
+ */
5365
+ export interface ScriptConfiguration {
5366
+ /** Gets or sets script. */
5367
+ script?: string;
5368
+ /** Gets or sets method. */
5369
+ method?: string;
5370
+ /** Gets or sets description. */
5371
+ description?: string;
5372
+ /** Parameters. */
5373
+ parameters?: ScriptParameter[];
5374
+ /** ScriptReturnType. */
5375
+ return?: ScriptReturnType;
5376
+ /** Script error message. */
5377
+ error?: string;
5378
+ }
5379
+ /**
5380
+ * ScriptParameter.
5319
5381
  */
5320
- export interface ScriptDc {
5382
+ export interface ScriptParameter {
5321
5383
  /** Name. */
5322
- name: string;
5323
- /** Description. */
5384
+ name?: string;
5385
+ /** Gets or sets description. */
5386
+ description?: string;
5387
+ /**
5388
+ *
5389
+ *
5390
+ * Integer
5391
+ *
5392
+ * Double
5393
+ *
5394
+ * String
5395
+ *
5396
+ * Extent
5397
+ *
5398
+ * Geometry
5399
+ *
5400
+ * IntergerArray
5401
+ *
5402
+ * DoubleArray
5403
+ *
5404
+ * StringArray
5405
+ *
5406
+ * Boolean
5407
+ *
5408
+ * SourceEql
5409
+ *
5410
+ * Layer
5411
+ *
5412
+ * Table
5413
+ *
5414
+ * Folder
5415
+ *
5416
+ * Json
5417
+ *
5418
+ * Expression
5419
+ *
5420
+ * Expressions
5421
+ */
5422
+ type?: WorkerSettingsFieldType;
5423
+ /** Name. */
5424
+ default?: any;
5425
+ /** ScriptRange. */
5426
+ range?: ScriptRange;
5427
+ /** Name. */
5428
+ nullable?: boolean;
5429
+ }
5430
+ /**
5431
+ * ScriptRange.
5432
+ */
5433
+ export interface ScriptRange {
5434
+ /** Name. */
5435
+ min?: any;
5436
+ /** Name. */
5437
+ max?: any;
5438
+ }
5439
+ /**
5440
+ * ScriptReturnType.
5441
+ */
5442
+ export interface ScriptReturnType {
5443
+ /** Gets or sets description. */
5324
5444
  description?: string;
5445
+ /**
5446
+ *
5447
+ *
5448
+ * Integer
5449
+ *
5450
+ * Double
5451
+ *
5452
+ * String
5453
+ *
5454
+ * Extent
5455
+ *
5456
+ * Geometry
5457
+ *
5458
+ * IntergerArray
5459
+ *
5460
+ * DoubleArray
5461
+ *
5462
+ * StringArray
5463
+ *
5464
+ * Boolean
5465
+ *
5466
+ * SourceEql
5467
+ *
5468
+ * Layer
5469
+ *
5470
+ * Table
5471
+ *
5472
+ * Folder
5473
+ *
5474
+ * Json
5475
+ *
5476
+ * Expression
5477
+ *
5478
+ * Expressions
5479
+ */
5480
+ type?: WorkerSettingsFieldType;
5481
+ /** Name. */
5482
+ default?: any;
5483
+ /** Name. */
5484
+ nullable?: boolean;
5325
5485
  }
5326
5486
  /**
5327
5487
  * Result data.
@@ -6789,6 +6949,15 @@ export declare type ViewConfigurationDc = TableConfigurationBaseDc & {
6789
6949
  eql?: string | null;
6790
6950
  eqlParameters?: Record<string, any>;
6791
6951
  };
6952
+ /**
6953
+ * S3 data source settings.
6954
+ */
6955
+ export declare type WmsDataSourceDc = DataSourceDc & {
6956
+ type?: DataSourceType;
6957
+ serviceUrl?: string | null;
6958
+ params?: Record<string, string | null>;
6959
+ headers?: Record<string, string | null>;
6960
+ };
6792
6961
  /**
6793
6962
  *
6794
6963
 
@@ -6937,11 +7106,6 @@ export interface WorkspaceLimitsDc {
6937
7106
  * @format int32
6938
7107
  */
6939
7108
  maxFeaturesInOneTable?: number;
6940
- /**
6941
- * Max current features in one table.
6942
- * @format int64
6943
- */
6944
- currentFeaturesInOneTable?: number;
6945
7109
  /**
6946
7110
  * Max projects count in workspace.
6947
7111
  * @format int32
@@ -6957,8 +7121,11 @@ export interface WorkspaceLimitsDc {
6957
7121
  * @format int64
6958
7122
  */
6959
7123
  maxObjectsToExport?: number;
6960
- /** Allowed service types in workspace. */
6961
- allowedServiceTypes?: string[];
7124
+ /**
7125
+ * Maximum number of rows that a user can quering by eql parameter query.
7126
+ * @format int64
7127
+ */
7128
+ maxEqlQueryParametersValues?: number;
6962
7129
  /**
6963
7130
  * Current table count.
6964
7131
  * @format int64
@@ -7109,12 +7276,6 @@ export interface UploadPreviewPayload {
7109
7276
  /** @format binary */
7110
7277
  file?: File;
7111
7278
  }
7112
- export interface UploadPreviewParams {
7113
- /** Image in base64 format. */
7114
- base64Image?: string;
7115
- /** User name. */
7116
- username: string;
7117
- }
7118
7279
  export interface GetCamerasParams {
7119
7280
  /**
7120
7281
  * Page objects limit.
@@ -7566,6 +7727,8 @@ export declare type PublishProxyServicePayload = ProxyServiceConfigurationDc | P
7566
7727
  */
7567
7728
  export declare type UpdateProxyServicePayload = ProxyServiceConfigurationDc | PbfServiceConfigurationDc;
7568
7729
  export interface GetFeatures1Params {
7730
+ /** Click geometry. */
7731
+ ewktGeometry?: string;
7569
7732
  /** Sets features filtering query. */
7570
7733
  query?: string;
7571
7734
  /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
@@ -7965,7 +8128,7 @@ export interface ValidateExpressionParams {
7965
8128
  /** Layer name. */
7966
8129
  layerName: string;
7967
8130
  }
7968
- export interface GetRasterMetaParams9 {
8131
+ export interface GetRasterMetaParams6 {
7969
8132
  /**
7970
8133
  * Min value for build histogram.
7971
8134
  * @format double
@@ -8084,7 +8247,7 @@ export interface GetProjectsListParams {
8084
8247
  tags?: string[];
8085
8248
  }
8086
8249
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
8087
- export interface DeleteResourcesParams8 {
8250
+ export interface DeleteResourcesParams4 {
8088
8251
  /** Resource names. */
8089
8252
  names?: string[];
8090
8253
  }
@@ -8105,43 +8268,35 @@ export interface SetPreviewBody {
8105
8268
  /** @format binary */
8106
8269
  file?: File;
8107
8270
  }
8108
- export interface AddPayload {
8109
- /** Name. */
8110
- Name: string;
8111
- /** Description. */
8112
- Description?: string;
8113
- /**
8114
- * Add date and time.
8115
- * @format date-time
8116
- */
8117
- DtAdd?: string;
8118
- /**
8119
- * Last update date and time.
8120
- * @format date-time
8121
- */
8122
- DtLastUpdate?: string;
8123
- /** @format binary */
8124
- file?: File;
8271
+ export interface UpdatePythonConfigurationParams {
8272
+ /** ResourceId. */
8273
+ resourceId?: string;
8125
8274
  }
8126
- export interface UpdateBody {
8127
- /** Name. */
8128
- Name: string;
8129
- /** Description. */
8130
- Description?: string;
8131
- /**
8132
- * Add date and time.
8133
- * @format date-time
8134
- */
8135
- DtAdd?: string;
8136
- /**
8137
- * Last update date and time.
8138
- * @format date-time
8139
- */
8140
- DtLastUpdate?: string;
8141
- /** @format binary */
8142
- file?: File;
8275
+ export interface GetPythonConfigurationParams {
8276
+ /** ResourceId. */
8277
+ resourceId?: string;
8278
+ }
8279
+ export interface GetAutoConfigurationParams {
8280
+ /** ResourceId. */
8281
+ resourceId?: string;
8282
+ /** Script name. */
8283
+ scriptName?: string;
8284
+ /** Method name. */
8285
+ methodName?: string;
8286
+ }
8287
+ export interface GetAllScriptMethodsParams {
8288
+ /** ResourceId. */
8289
+ resourceId?: string;
8290
+ }
8291
+ export declare type RunScriptPayload = any;
8292
+ export interface RunScriptParams {
8293
+ /** Python resource id. */
8294
+ resourceId?: string;
8295
+ /** Script name. */
8296
+ scriptName?: string;
8297
+ /** Method name. */
8298
+ methodName?: string;
8143
8299
  }
8144
- export declare type RunPayload = Record<string, any>;
8145
8300
  export interface GetTaskPrototypesParams {
8146
8301
  /** Username. */
8147
8302
  Username?: string;
@@ -8181,10 +8336,6 @@ export interface GetTasksForPrototypeParams {
8181
8336
  */
8182
8337
  id: string;
8183
8338
  }
8184
- export interface CheckLimitsParams {
8185
- /** Workspace. */
8186
- userName?: string;
8187
- }
8188
8339
  export declare type CopyResourcesPayload = CopyResourceDc[];
8189
8340
  export interface GetResourceParams {
8190
8341
  /** Object name. */
@@ -8363,7 +8514,7 @@ export interface StatisticsDbParams {
8363
8514
  */
8364
8515
  types?: AggregationFunction[];
8365
8516
  }
8366
- export interface ClassifyParams2 {
8517
+ export interface ClassifyParams9 {
8367
8518
  /** Layer name. */
8368
8519
  name: string;
8369
8520
  /** Attribute name. */
@@ -8496,10 +8647,6 @@ export interface GetTableListParams {
8496
8647
  acl?: string;
8497
8648
  }
8498
8649
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
8499
- export interface DeleteResourcesParams3 {
8500
- /** Resource names. */
8501
- names?: string[];
8502
- }
8503
8650
  export interface GetTablesInfoParams {
8504
8651
  /** Table names. */
8505
8652
  tableNames?: string[];
@@ -8653,7 +8800,7 @@ export interface GetPublicCapabilitiesParams {
8653
8800
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
8654
8801
  AcceptFormats?: string[];
8655
8802
  }
8656
- export interface GetCapabilitiesParams7 {
8803
+ export interface GetCapabilitiesParams4 {
8657
8804
  /** Output format of service metadata. */
8658
8805
  Format?: string;
8659
8806
  /** Must be WMS. */