@evergis/api 3.0.191 → 3.0.193

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.
@@ -662,8 +662,6 @@ export interface AttributesConfigurationDc {
662
662
  tableName?: string;
663
663
  /** Configuration of the attributes of the layer. */
664
664
  attributes?: (AttributeConfigurationDc | EqlAttributeConfigurationDc)[];
665
- /** Configurations of the related tables. */
666
- tableReferences?: TableReferenceConfigurationDc[];
667
665
  /** Configuration of layer references. */
668
666
  layerReferences?: LayerReferenceConfigurationDc[];
669
667
  /** Values ranges. */
@@ -859,6 +857,24 @@ export interface CatalogResourceDc {
859
857
  createdAt?: string;
860
858
  /** Resource tags. */
861
859
  tags?: string[];
860
+ /**
861
+ *
862
+ *
863
+ * none
864
+ *
865
+ * configure
866
+ *
867
+ * write
868
+ *
869
+ * read
870
+ *
871
+ * read,configure
872
+ *
873
+ * read,write
874
+ *
875
+ * read,write,configure
876
+ */
877
+ permissions?: Permissions;
862
878
  }
863
879
  /**
864
880
  *
@@ -1408,7 +1424,7 @@ export interface CreateDirectoryDc {
1408
1424
  description?: string;
1409
1425
  /** A set of tags. */
1410
1426
  tags?: string[];
1411
- /** If true root folder will created as temporary. */
1427
+ /** If true root folder will create as temporary. */
1412
1428
  isTemporary?: boolean;
1413
1429
  }
1414
1430
  /**
@@ -1484,6 +1500,19 @@ export interface CreateUserDc {
1484
1500
  /** Phone number. */
1485
1501
  phone?: string;
1486
1502
  }
1503
+ /**
1504
+ * Create view from query layer data contract.
1505
+ */
1506
+ export interface CreateViewFromQueryLayerDc {
1507
+ /** Is view materialized. */
1508
+ isMaterialized?: boolean;
1509
+ /** Layer name. */
1510
+ layerName?: string;
1511
+ /** View name. */
1512
+ viewName?: string;
1513
+ /** Layer condition. */
1514
+ layerCondition?: string;
1515
+ }
1487
1516
  /**
1488
1517
  * Description of the temp file as a task data storage.
1489
1518
  */
@@ -1524,7 +1553,7 @@ export interface DependentResourceDc {
1524
1553
  * Table description with columns and access control list.
1525
1554
  */
1526
1555
  export declare type DetailedTableInfoDc = TableInfoDc & {
1527
- columns: ColumnDescriptionDc[];
1556
+ columns?: ColumnDescriptionDc[] | null;
1528
1557
  };
1529
1558
  /**
1530
1559
  * Empty square ending.
@@ -2402,6 +2431,44 @@ export declare enum GeometryType {
2402
2431
  Envelope = "envelope",
2403
2432
  Multipoint = "multipoint"
2404
2433
  }
2434
+ /**
2435
+ * Get features from layer paramaters.
2436
+ */
2437
+ export interface GetBulkFeaturesParametersDc {
2438
+ /** Layer name. */
2439
+ layerName?: string;
2440
+ /** Sets features filtering query. */
2441
+ query?: string;
2442
+ /** Id of override data filter to apply to the layer. If not set, the default filter is used. */
2443
+ dataFilterId?: string;
2444
+ /**
2445
+ * Features count have to skip.
2446
+ * @format int32
2447
+ */
2448
+ offset?: number;
2449
+ /**
2450
+ * Features limit per response.
2451
+ * @format int32
2452
+ */
2453
+ limit?: number;
2454
+ /**
2455
+ * Spatial reference of returned features.
2456
+ * @format int32
2457
+ */
2458
+ wkid?: number;
2459
+ /** If set to true, the geometry will not be returned for features. */
2460
+ withGeom?: boolean;
2461
+ /**
2462
+ * Comma separated list of attributes by which to sort the resulting feature list.
2463
+ * If the attribute name is preceded with the "-" sign, sorting by this attribute will be
2464
+ * in descending order.
2465
+ */
2466
+ sort?: string[];
2467
+ /** Comma separated list of features ids. */
2468
+ ids?: string[];
2469
+ /** Comma separated list of attributes to be returned. If not set, all attributes are returned. */
2470
+ attributes?: string[];
2471
+ }
2405
2472
  /**
2406
2473
  * Get classified attribute values data contract.
2407
2474
  */
@@ -3109,7 +3176,7 @@ export declare type LinearServiceConfigurationDc = ServiceConfigurationBaseDc &
3109
3176
  * Search resources.
3110
3177
  */
3111
3178
  export interface ListResourcesDto {
3112
- /** Id of the parent. */
3179
+ /** Parent id. */
3113
3180
  parentId?: string;
3114
3181
  /**
3115
3182
  * Text filer support sql like symbols
@@ -3130,6 +3197,8 @@ export interface ListResourcesDto {
3130
3197
  resourceTypes?: CatalogResourceType[];
3131
3198
  /** Resources subtypes filter. */
3132
3199
  subtypes?: string[];
3200
+ /** Tags filter. */
3201
+ tagsFilter?: TagsFilterDto;
3133
3202
  }
3134
3203
  /**
3135
3204
  * Configuration for the local tile service.
@@ -3205,6 +3274,14 @@ export declare type MaskedImagePolygonSymbolDc = SymbolDc & {
3205
3274
  imageMask?: string | null;
3206
3275
  maskedColor?: ParameterDcColor;
3207
3276
  };
3277
+ /**
3278
+ * Configuration of a table for feature layer.
3279
+ */
3280
+ export declare type MaterializedViewConfigurationDc = TableConfigurationBaseDc & {
3281
+ type?: string | null;
3282
+ eql?: string | null;
3283
+ eqlParameters?: Record<string, any>;
3284
+ };
3208
3285
  /**
3209
3286
  * Base template model data contract.
3210
3287
  */
@@ -3308,6 +3385,14 @@ export declare enum OwnerFilter {
3308
3385
  Shared = "Shared",
3309
3386
  Public = "Public"
3310
3387
  }
3388
+ /**
3389
+ * Features list definition.
3390
+ */
3391
+ export declare type PagedBulkFeaturesListDc = PagedListFeatureDc & {
3392
+ layerName?: string | null;
3393
+ hasError?: boolean;
3394
+ error?: string | null;
3395
+ };
3311
3396
  /**
3312
3397
  * Features list definition.
3313
3398
  */
@@ -3456,6 +3541,28 @@ export interface PagedListUserInfoDc {
3456
3541
  limit?: number;
3457
3542
  items?: UserInfoDc[];
3458
3543
  }
3544
+ /**
3545
+ * Paged resources list.
3546
+ */
3547
+ export interface PagedResourcesListDc {
3548
+ /** A set of resources. */
3549
+ items?: CatalogResourceDc[];
3550
+ /**
3551
+ * Limit.
3552
+ * @format int32
3553
+ */
3554
+ limit?: number;
3555
+ /**
3556
+ * Offset.
3557
+ * @format int32
3558
+ */
3559
+ offset?: number;
3560
+ /**
3561
+ * Total count.
3562
+ * @format int32
3563
+ */
3564
+ totalCount?: number;
3565
+ }
3459
3566
  /**
3460
3567
  * Number parameter of a symbol. The parameter can be represented as a simple number, or
3461
3568
  as an object with a "type" parameter specified.
@@ -3496,6 +3603,17 @@ export interface ParameterDcString {
3496
3603
  /** Type of the parameter. Possible values are "simple", "byAttribute", "scale". */
3497
3604
  type?: string;
3498
3605
  }
3606
+ /**
3607
+ * Patch resource request.
3608
+ */
3609
+ export interface PatchResourceDc {
3610
+ /** Description of the directory. */
3611
+ name?: string;
3612
+ /** Description of the directory. */
3613
+ description?: string;
3614
+ /** A set of tags. */
3615
+ tags?: string[];
3616
+ }
3499
3617
  /**
3500
3618
  * Provides image pattern brush properties.
3501
3619
  */
@@ -3769,6 +3887,8 @@ export interface ProjectConfigurationDc {
3769
3887
  clientData?: any;
3770
3888
  /** Card configuration. Storage isn't used by server. */
3771
3889
  dashboardConfiguration?: any;
3890
+ /** Project information. Storage isn't used by server. */
3891
+ projectInfo?: any;
3772
3892
  /** Project content items configurations. */
3773
3893
  items?: ProjectContentItemDc[];
3774
3894
  /** A collection of bookmarks of the map. */
@@ -4323,29 +4443,6 @@ export interface RasterVrtFeatureSourceDc {
4323
4443
  */
4324
4444
  id: number;
4325
4445
  }
4326
- /**
4327
- *
4328
-
4329
- OneToMany
4330
-
4331
- OneToOne
4332
-
4333
- Intersect
4334
-
4335
- RightJoin
4336
-
4337
- FullJoin
4338
-
4339
- CrossJoin
4340
- */
4341
- export declare enum ReferenceJoinType {
4342
- OneToMany = "OneToMany",
4343
- OneToOne = "OneToOne",
4344
- Intersect = "Intersect",
4345
- RightJoin = "RightJoin",
4346
- FullJoin = "FullJoin",
4347
- CrossJoin = "CrossJoin"
4348
- }
4349
4446
  /**
4350
4447
  * Data contract for register new user.
4351
4448
  */
@@ -4674,7 +4771,7 @@ export interface SearchResourcesDto {
4674
4771
  */
4675
4772
  ownerFilter?: OwnerFilter;
4676
4773
  /** Tags filter. */
4677
- tags?: string[];
4774
+ tagsFilter?: TagsFilterDto;
4678
4775
  /** Resources types filter. */
4679
4776
  resourceTypes?: CatalogResourceType[];
4680
4777
  /** Resources subtypes filter. */
@@ -5442,47 +5539,12 @@ export declare type TableInfoDc = ResourceInfoDc & {
5442
5539
  rowCount?: number;
5443
5540
  geometries?: GeometryType[] | null;
5444
5541
  type?: string | null;
5445
- configuration?: DefaultTableConfigurationDc | RouteTableConfigurationDc | TileCatalogTableConfigurationDc | ViewConfigurationDc | null;
5542
+ configuration?: DefaultTableConfigurationDc | MaterializedViewConfigurationDc | RouteTableConfigurationDc | TileCatalogTableConfigurationDc | ViewConfigurationDc | null;
5446
5543
  };
5447
5544
  /**
5448
5545
  * The `TableListDc` class provides list of tables info SPCore.Connectors.Connectors.Base.Models.Data.TableInfoDc.
5449
5546
  */
5450
5547
  export declare type TableListDc = PagedListTableInfoDc & object;
5451
- /**
5452
- * Configuration of a related table for feature layer.
5453
- */
5454
- export interface TableReferenceConfigurationDc {
5455
- /** The name of the table. */
5456
- tableName: string;
5457
- /** The column name in the base table that is used for foreign key relationship. */
5458
- referenceColumn: string;
5459
- /** The column name in the related table that is used for foreign key relationship. */
5460
- targetColumn: string;
5461
- /** Configuration of the attributes that get values from this table. */
5462
- attributes: (AttributeConfigurationDc | EqlAttributeConfigurationDc)[];
5463
- /** Child related tables configurations. */
5464
- tableReferences?: TableReferenceConfigurationDc[];
5465
- /**
5466
- *
5467
- *
5468
- * OneToMany
5469
- *
5470
- * OneToOne
5471
- *
5472
- * Intersect
5473
- *
5474
- * RightJoin
5475
- *
5476
- * FullJoin
5477
- *
5478
- * CrossJoin
5479
- */
5480
- joinType?: ReferenceJoinType;
5481
- /** Condition to referenced table. */
5482
- condition?: string;
5483
- /** Table reference unique id. */
5484
- referenceId?: string;
5485
- }
5486
5548
  /**
5487
5549
  * Data storage that allows accessing features directly from the tables.
5488
5550
  */
@@ -5499,6 +5561,18 @@ export interface TagInfoDc {
5499
5561
  /** If sets true. */
5500
5562
  isSystem?: boolean;
5501
5563
  }
5564
+ /**
5565
+ * Tags filter.
5566
+ */
5567
+ export interface TagsFilterDto {
5568
+ /** Tags set. */
5569
+ tags?: string[];
5570
+ /**
5571
+ * AND vs OR. The AND operator displays a record if all the conditions are TRUE.
5572
+ * The OR operator displays a record if any of the conditions are TRUE.
5573
+ */
5574
+ useAnd?: boolean;
5575
+ }
5502
5576
  /**
5503
5577
  * Task owner group.
5504
5578
 
@@ -6269,6 +6343,8 @@ export interface Vector2 {
6269
6343
  */
6270
6344
  export declare type ViewConfigurationDc = TableConfigurationBaseDc & {
6271
6345
  type?: string | null;
6346
+ eql?: string | null;
6347
+ eqlParameters?: Record<string, any>;
6272
6348
  };
6273
6349
  /**
6274
6350
  * Workspace limits data contract.
@@ -6559,7 +6635,44 @@ export interface GetAllParams {
6559
6635
  * Public
6560
6636
  */
6561
6637
  ownerFilter?: OwnerFilter;
6638
+ /**
6639
+ * Limit response page.
6640
+ * @format int32
6641
+ */
6642
+ limit?: number;
6643
+ /**
6644
+ * Offset objects from start.
6645
+ * @format int32
6646
+ */
6647
+ offset?: number;
6648
+ }
6649
+ export interface PostGetAllParams {
6650
+ /**
6651
+ * Limit response page.
6652
+ * @format int32
6653
+ */
6654
+ limit?: number;
6655
+ /**
6656
+ * Offset objects from start.
6657
+ * @format int32
6658
+ */
6659
+ offset?: number;
6562
6660
  }
6661
+ export interface GetTagsParams {
6662
+ /** Text filter. */
6663
+ filter?: string;
6664
+ /**
6665
+ * Limit response page.
6666
+ * @format int32
6667
+ */
6668
+ limit?: number;
6669
+ /**
6670
+ * Offset objects from start.
6671
+ * @format int32
6672
+ */
6673
+ offset?: number;
6674
+ }
6675
+ export declare type PutTagsPayload = string[];
6563
6676
  export interface SearchResourcesParams {
6564
6677
  /**
6565
6678
  * Limit response page.
@@ -6584,7 +6697,7 @@ export interface CreateFilePayload {
6584
6697
  file?: File;
6585
6698
  /**
6586
6699
  * Rewrite flag
6587
- * If true - rewrite file if exist. If false - return error.
6700
+ * If true - rewrite file if exists. If false - return error.
6588
6701
  */
6589
6702
  rewrite?: boolean;
6590
6703
  /** Description of the file. */
@@ -6634,7 +6747,7 @@ export interface SetLayerParameterValueParams {
6634
6747
  /** Layer parameter value. */
6635
6748
  value?: string;
6636
6749
  }
6637
- export declare type SetLayerParametersPayload = Record<string, string>;
6750
+ export declare type SetLayerParametersPayload = Record<string, any>;
6638
6751
  export interface SetLayerParametersParams {
6639
6752
  /** Layer name. */
6640
6753
  layerName?: string;
@@ -6806,6 +6919,7 @@ export interface GetRasterMetaParams {
6806
6919
  /** Raster filename. */
6807
6920
  fileName?: string;
6808
6921
  }
6922
+ export declare type GetBulkFeaturesPayload = GetBulkFeaturesParametersDc[];
6809
6923
  export interface GetLayersListParams {
6810
6924
  /**
6811
6925
  * Full text query filter that allow to query in alias and name fields.
@@ -7270,7 +7384,7 @@ export interface ValidateExpressionParams {
7270
7384
  /** Layer name. */
7271
7385
  layerName: string;
7272
7386
  }
7273
- export interface GetRasterMetaParams7 {
7387
+ export interface GetRasterMetaParams3 {
7274
7388
  /**
7275
7389
  * Min value for build histogram.
7276
7390
  * @format double
@@ -7397,7 +7511,7 @@ export interface GetProjectsListParams {
7397
7511
  tags?: string[];
7398
7512
  }
7399
7513
  export declare type SetPermissionsBatchBody = ResourceAclDc[];
7400
- export interface DeleteResourcesParams4 {
7514
+ export interface DeleteResourcesParams3 {
7401
7515
  /** Resource names. */
7402
7516
  names?: string[];
7403
7517
  }
@@ -7680,7 +7794,7 @@ export interface StatisticsDbParams {
7680
7794
  */
7681
7795
  types?: AggregationFunction[];
7682
7796
  }
7683
- export interface ClassifyParams2 {
7797
+ export interface ClassifyParams8 {
7684
7798
  /** Layer name. */
7685
7799
  name: string;
7686
7800
  /** Attribute name. */
@@ -7813,10 +7927,6 @@ export interface GetTableListParams {
7813
7927
  acl?: string;
7814
7928
  }
7815
7929
  export declare type SetPermissionsBatchInput = ResourceAclDc[];
7816
- export interface DeleteResourcesParams5 {
7817
- /** Resource names. */
7818
- names?: string[];
7819
- }
7820
7930
  export interface GetTablesInfoParams {
7821
7931
  /** Table names. */
7822
7932
  tableNames?: string[];
@@ -7895,7 +8005,7 @@ export interface GetAllParams6 {
7895
8005
  */
7896
8006
  limit?: number;
7897
8007
  }
7898
- export interface GetSearchResultParams {
8008
+ export interface SearchResultDcGetSearchResultParams {
7899
8009
  /** Results filter. */
7900
8010
  filter?: string;
7901
8011
  /**
@@ -7908,7 +8018,7 @@ export interface GetSearchResultParams {
7908
8018
  * @format int32
7909
8019
  */
7910
8020
  limit?: number;
7911
- /** Id of the task. */
8021
+ /** Task id. */
7912
8022
  taskId: string;
7913
8023
  /** Name of the layer. */
7914
8024
  layerName: string;
@@ -7970,7 +8080,7 @@ export interface GetPublicCapabilitiesParams {
7970
8080
  /** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
7971
8081
  AcceptFormats?: string[];
7972
8082
  }
7973
- export interface GetCapabilitiesParams6 {
8083
+ export interface GetCapabilitiesParams4 {
7974
8084
  /** Output format of service metadata. */
7975
8085
  Format?: string;
7976
8086
  /** Must be WMS. */