@evergis/api 4.1.55-alpha.1 → 4.1.56-alpha.1

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.
@@ -665,6 +665,8 @@ export interface AttributesConfigurationDc {
665
665
  titleAttribute?: string;
666
666
  /** The name of the attribute that contains the feature geometry. */
667
667
  geometryAttribute?: string;
668
+ /** Name of the attribute that contains the ordering of the feature. */
669
+ orderAttribute?: string;
668
670
  /** The name of the table in data source service, that contains the data for this layer. */
669
671
  tableName?: string;
670
672
  /** Configuration of the attributes of the layer. */
@@ -694,6 +696,17 @@ export interface AvailiableValuesDc {
694
696
  /** Dictionary of availiable parameters values. */
695
697
  values?: Record<string, ValueDc[] | null>;
696
698
  }
699
+ /**
700
+ * Represents the base class for resource information data contracts, providing common properties for derived
701
+ resource types.
702
+ */
703
+ export interface BaseResourceInfoDc {
704
+ /**
705
+ * Name of the resource including its namespaces (names of the service managers that contain this service).
706
+ * @minLength 1
707
+ */
708
+ name: string;
709
+ }
697
710
  /**
698
711
  * Provides resources with their acl.
699
712
  */
@@ -1243,6 +1256,8 @@ export interface CreateDirectoryDc {
1243
1256
  tags?: string[];
1244
1257
  /** If true root folder will create as temporary. */
1245
1258
  isTemporary?: boolean;
1259
+ /** Check if resource is system. */
1260
+ isSystem?: boolean;
1246
1261
  /** Resource icon. */
1247
1262
  icon?: string;
1248
1263
  /** Rewrite if exists. */
@@ -1856,6 +1871,13 @@ export type ExtendedProjectInfoDc = ProjectInfoDc & {
1856
1871
  /** Project content configuration data contract. */
1857
1872
  content: ProjectConfigurationDc;
1858
1873
  };
1874
+ /**
1875
+ * Project extended configuration data contract.
1876
+ */
1877
+ export type ExtendedProjectInfoDcV2 = ProjectInfoDcV2 & {
1878
+ /** Project content configuration data contract. */
1879
+ content: ProjectConfigurationDcV2;
1880
+ };
1859
1881
  /**
1860
1882
  * SPCore.Connectors.Connectors.Base.Models.Projects.ExtendedProjectLayersInfo provides extended project info with included layers info.
1861
1883
  */
@@ -1949,7 +1971,7 @@ export interface ExternalLayerInfoDc {
1949
1971
  /**
1950
1972
  * The `FailedServiceInfoDc` describes Everpoint.Sdk.Layers.Abstractions.Models.FailedServiceInfo data contact.
1951
1973
  */
1952
- export type FailedServiceInfoDc = ServiceInfoDc & {
1974
+ export type FailedServiceInfoDc = BaseResourceInfoDc & {
1953
1975
  /**
1954
1976
  *
1955
1977
  *
@@ -2045,11 +2067,6 @@ export interface FileUploadResponse {
2045
2067
  * Provides filter data contract.
2046
2068
  */
2047
2069
  export interface FilterDc {
2048
- /**
2049
- * Filter string to save.
2050
- * @deprecated
2051
- */
2052
- filterString?: string;
2053
2070
  /** Filter conditions. */
2054
2071
  conditions?: string[];
2055
2072
  /** Query parameters. */
@@ -2195,11 +2212,6 @@ export interface GeometryDc {
2195
2212
  export interface GetBulkExtentsDc {
2196
2213
  /** Full name of the layer. */
2197
2214
  layerName?: string;
2198
- /**
2199
- * If set, only the features that satisfy the condition will be considered when calculating the extent.
2200
- * @deprecated
2201
- */
2202
- query?: string;
2203
2215
  /** Filter conditions. */
2204
2216
  conditions?: string[];
2205
2217
  /** Query parameters. */
@@ -2213,11 +2225,6 @@ export interface GetBulkExtentsDc {
2213
2225
  export interface GetBulkFeaturesParametersDc {
2214
2226
  /** Layer name. */
2215
2227
  layerName?: string;
2216
- /**
2217
- * Sets features filtering query.
2218
- * @deprecated
2219
- */
2220
- query?: string;
2221
2228
  /** Collection of filtering conditions. */
2222
2229
  conditions?: string[];
2223
2230
  /** Features filtering query parameters. */
@@ -2262,11 +2269,6 @@ export interface GetBulkFeaturesParametersDc {
2262
2269
  export interface GetBulkFilteredFeaturesCountDc {
2263
2270
  /** Layer name. */
2264
2271
  layerName?: string;
2265
- /**
2266
- * Layer condition.
2267
- * @deprecated
2268
- */
2269
- condition?: string;
2270
2272
  /** Collection of filtering conditions. */
2271
2273
  conditions?: string[];
2272
2274
  /** Query parameters. */
@@ -2295,11 +2297,6 @@ export interface GetClassifyDc {
2295
2297
  * @minLength 1
2296
2298
  */
2297
2299
  attributeName: string;
2298
- /**
2299
- * Layer condition.
2300
- * @deprecated
2301
- */
2302
- condition?: string;
2303
2300
  /** Collection of filtering conditions. */
2304
2301
  conditions?: string[];
2305
2302
  /** Query parameters. */
@@ -2347,11 +2344,6 @@ export interface GetClassifyDc {
2347
2344
  * Get features paramaters.
2348
2345
  */
2349
2346
  export interface GetFeaturesParametersDc {
2350
- /**
2351
- * Features filtering query.
2352
- * @deprecated
2353
- */
2354
- query?: string;
2355
2347
  /** Collection of filtering conditions. */
2356
2348
  conditions?: string[];
2357
2349
  /** Features filtering query parameters. */
@@ -2394,11 +2386,6 @@ export interface GetFeaturesParametersDc {
2394
2386
  * Get features count with layer filter condition data contract.
2395
2387
  */
2396
2388
  export interface GetFilteredFeaturesCountDc {
2397
- /**
2398
- * Layer condition.
2399
- * @deprecated
2400
- */
2401
- condition?: string;
2402
2389
  /** Collection of filtering conditions. */
2403
2390
  conditions?: string[];
2404
2391
  /** Query parameters. */
@@ -2420,11 +2407,6 @@ export interface GetStatisticsDc {
2420
2407
  * @minLength 1
2421
2408
  */
2422
2409
  attributeName: string;
2423
- /**
2424
- * Condition.
2425
- * @deprecated
2426
- */
2427
- condition?: string;
2428
2410
  /** Collection of filtering conditions. */
2429
2411
  conditions?: string[];
2430
2412
  /** Query parameters. */
@@ -2445,11 +2427,6 @@ export interface GetSumOfProductDc {
2445
2427
  layerName: string;
2446
2428
  /** Attribute name. */
2447
2429
  attributes: string[];
2448
- /**
2449
- * Layer condition.
2450
- * @deprecated
2451
- */
2452
- condition?: string;
2453
2430
  /** Collection of filtering conditions. */
2454
2431
  conditions?: string[];
2455
2432
  /** Query parameters. */
@@ -3568,6 +3545,25 @@ export interface ProjectConfigurationDc {
3568
3545
  /** Project configuration. */
3569
3546
  config?: any;
3570
3547
  }
3548
+ /**
3549
+ * Project content configuration data contract.
3550
+ */
3551
+ export interface ProjectConfigurationDcV2 {
3552
+ /** Client data storage. Expecting not used by server. */
3553
+ clientData?: any;
3554
+ /** Card configuration. Storage isn't used by server. */
3555
+ dashboardConfiguration?: any;
3556
+ /** Developer configuration. */
3557
+ devConfiguration?: any;
3558
+ /** Edit configuration. Storage isn't used by server. */
3559
+ editConfiguration?: any;
3560
+ /** Project information. Storage isn't used by server. */
3561
+ projectInfo?: any;
3562
+ /** Language of the project. */
3563
+ language?: string;
3564
+ /** Project configuration. */
3565
+ config?: any;
3566
+ }
3571
3567
  /**
3572
3568
  * Project item description.
3573
3569
  */
@@ -3633,6 +3629,10 @@ export type ProjectInfoDc = ResourceInfoDc & {
3633
3629
  */
3634
3630
  zoom?: number | null;
3635
3631
  };
3632
+ /**
3633
+ * A project configuration data contract.
3634
+ */
3635
+ export type ProjectInfoDcV2 = ResourceInfoDcV2 & object;
3636
3636
  /**
3637
3637
  * Data contract for inner layer Legend.
3638
3638
  */
@@ -3720,16 +3720,6 @@ export type ProxyServiceConfigurationDc = ServiceConfigurationBaseDc & {
3720
3720
  sourceType?: string | null;
3721
3721
  /** Source url path. Like http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/SuperTuesdaySample/MapServer. */
3722
3722
  sourceUrl?: string | null;
3723
- /**
3724
- * Gets or sets minimum scale resolution.
3725
- * @format double
3726
- */
3727
- minResolution?: number;
3728
- /**
3729
- * Gets or sets maximum scale resolution.
3730
- * @format double
3731
- */
3732
- maxResolution?: number;
3733
3723
  /** Names of layers to include in proxy layer (can be numbers). */
3734
3724
  layers?: string[] | null;
3735
3725
  };
@@ -3764,6 +3754,16 @@ export type ProxyServiceInfoDc = ServiceInfoDc & {
3764
3754
  /** Edit configuration. Storage isn't used by server. */
3765
3755
  editConfiguration?: any;
3766
3756
  };
3757
+ /**
3758
+ * Represents the information required to publish a layer service, including its metadata, configuration, and
3759
+ access control settings.
3760
+ */
3761
+ export interface PublishLayerInfoDc {
3762
+ /** Access control list for a security object. */
3763
+ acl?: AccessControlListDc;
3764
+ /** Configuration of the service. */
3765
+ configuration: LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
3766
+ }
3767
3767
  export interface PullResponse {
3768
3768
  commitSha?: string;
3769
3769
  files?: FileDto[];
@@ -4057,8 +4057,6 @@ export type QueryLayerServiceInfoDc = ServiceInfoDc & {
4057
4057
  layerDefinition: LayerDefinitionDc;
4058
4058
  /** Provides data source type. */
4059
4059
  dataSourceType?: string | null;
4060
- /** Copyright text. */
4061
- copyrightText?: string | null;
4062
4060
  /** Client data storage. Storage isn't used by server. */
4063
4061
  clientData?: any;
4064
4062
  /** Client style data storage. Storage isn't used by server. */
@@ -4075,8 +4073,6 @@ export interface QueryTokenDc {
4075
4073
  dtCreate?: string;
4076
4074
  /** @format date-time */
4077
4075
  validBefore?: string;
4078
- /** @format date-time */
4079
- revokeDt?: string;
4080
4076
  isActive?: boolean;
4081
4077
  }
4082
4078
  /**
@@ -4350,11 +4346,66 @@ export interface ResourceDependenciesDc {
4350
4346
  * The `ResourceInfoDc` provides information about resource.
4351
4347
  */
4352
4348
  export interface ResourceInfoDc {
4349
+ /** Resource alias. */
4350
+ alias?: string;
4351
+ /** Resource owner. */
4352
+ owner?: string;
4353
+ /** Resource description. */
4354
+ description?: string;
4355
+ /**
4356
+ * The date when resource was created.
4357
+ * @format date-time
4358
+ */
4359
+ createdDate?: string;
4360
+ /**
4361
+ * The date when resource was last modified.
4362
+ * @format date-time
4363
+ */
4364
+ changedDate?: string;
4365
+ /**
4366
+ *
4367
+ *
4368
+ * none
4369
+ *
4370
+ * configure
4371
+ *
4372
+ * write
4373
+ *
4374
+ * read
4375
+ *
4376
+ * read,configure
4377
+ *
4378
+ * read,write
4379
+ *
4380
+ * read,write,configure
4381
+ */
4382
+ permissions?: Permissions;
4383
+ /** Access control list for a security object. */
4384
+ acl?: AccessControlListDc;
4385
+ /**
4386
+ * Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends.
4387
+ * @minLength 0
4388
+ * @maxLength 102400
4389
+ */
4390
+ icon?: string;
4391
+ /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
4392
+ invisibleInCatalog?: boolean;
4393
+ /** Parent id in resources catalog. */
4394
+ parentId?: string;
4395
+ /** Resource id in resources catalog. */
4396
+ resourceId?: string;
4397
+ /** Resource tags. */
4398
+ tags?: string[];
4353
4399
  /**
4354
4400
  * Name of the resource including its namespaces (names of the service managers that contain this service).
4355
4401
  * @minLength 1
4356
4402
  */
4357
4403
  name: string;
4404
+ }
4405
+ /**
4406
+ * The `ResourceInfoDc` provides information about resource.
4407
+ */
4408
+ export interface ResourceInfoDcV2 {
4358
4409
  /** Resource alias. */
4359
4410
  alias?: string;
4360
4411
  /** Resource owner. */
@@ -4389,22 +4440,23 @@ export interface ResourceInfoDc {
4389
4440
  * read,write,configure
4390
4441
  */
4391
4442
  permissions?: Permissions;
4392
- /** Access control list for a security object. */
4393
- acl?: AccessControlListDc;
4394
4443
  /**
4395
4444
  * Base64 encoded image - icon of the resource. Usually shown next to the resource name in lists and legends.
4396
4445
  * @minLength 0
4397
4446
  * @maxLength 102400
4398
4447
  */
4399
4448
  icon?: string;
4400
- /** Is set true resource is not visible in catalog. Can be changed only by owner or user with admin access. */
4401
- invisibleInCatalog?: boolean;
4402
4449
  /** Parent id in resources catalog. */
4403
4450
  parentId?: string;
4404
4451
  /** Resource id in resources catalog. */
4405
4452
  resourceId?: string;
4406
4453
  /** Resource tags. */
4407
4454
  tags?: string[];
4455
+ /**
4456
+ * Name of the resource including its namespaces (names of the service managers that contain this service).
4457
+ * @minLength 1
4458
+ */
4459
+ name: string;
4408
4460
  }
4409
4461
  /**
4410
4462
  * Resource parent.
@@ -4706,8 +4758,6 @@ export interface ServiceConfigurationBaseDc {
4706
4758
  alias?: string;
4707
4759
  /** Description of the service. */
4708
4760
  description?: string;
4709
- /** Access control list for a security object. */
4710
- acl?: AccessControlListDc;
4711
4761
  /**
4712
4762
  * Base64 encoded image - icon of the resource.
4713
4763
  * @minLength 0
@@ -4743,18 +4793,6 @@ export type ServiceInfoDc = ResourceInfoDc & {
4743
4793
  * @minLength 1
4744
4794
  */
4745
4795
  type: string;
4746
- /**
4747
- * Minimum resolution that this service will be rendered on. If no resolution limits are set for the top-level
4748
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
4749
- * @format double
4750
- */
4751
- minResolution?: number;
4752
- /**
4753
- * Maximum resolution that this service will be rendered on. If no resolution limits are set for the top-level
4754
- * style of the service, or if no such property is available for this type of the service, 0 is returned.
4755
- * @format double
4756
- */
4757
- maxResolution?: number;
4758
4796
  /**
4759
4797
  * Filtering condition for the objects in the service. If no condition set or if no such property is available
4760
4798
  * for the given service type, null is returned.
@@ -5294,11 +5332,6 @@ export interface TableInfoDc {
5294
5332
  type?: string;
5295
5333
  /** Configuration of the table. */
5296
5334
  configuration?: DefaultTableConfigurationDc | MaterializedViewConfigurationDc | RouteTableConfigurationDc | TileCatalogTableConfigurationDc | ViewConfigurationDc;
5297
- /**
5298
- * Name of the resource including its namespaces (names of the service managers that contain this service).
5299
- * @minLength 1
5300
- */
5301
- name: string;
5302
5335
  /** Resource alias. */
5303
5336
  alias?: string;
5304
5337
  /** Resource owner. */
@@ -5349,6 +5382,11 @@ export interface TableInfoDc {
5349
5382
  resourceId?: string;
5350
5383
  /** Resource tags. */
5351
5384
  tags?: string[];
5385
+ /**
5386
+ * Name of the resource including its namespaces (names of the service managers that contain this service).
5387
+ * @minLength 1
5388
+ */
5389
+ name: string;
5352
5390
  }
5353
5391
  /**
5354
5392
  * Tags filter.
@@ -6688,6 +6726,8 @@ export interface CreateFile1Payload {
6688
6726
  tags?: string[];
6689
6727
  /** File icon. */
6690
6728
  icon?: string;
6729
+ /** Check if resource is system. */
6730
+ isSystem?: boolean;
6691
6731
  }
6692
6732
  export type SetPermissionsPayload = ResourceAclDc[];
6693
6733
  export type CopyResourcesPayload = CopyResourceDc[];
@@ -6999,21 +7039,21 @@ export interface GetBulkExtentsParams {
6999
7039
  srId?: number;
7000
7040
  }
7001
7041
  export type GetFilteredFeaturesCountPayload = GetBulkFilteredFeaturesCountDc[];
7042
+ /**
7043
+ * Common fields for service configurations.
7044
+ */
7045
+ export type PatchQueryLayerServicePayload = LinearServiceConfigurationDc | PbfServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc | ProxyServiceConfigurationDc | PythonServiceConfigurationDc | QueryLayerServiceConfigurationDc | RemoteTileServiceConfigurationDc | RouteServiceConfigurationDc;
7002
7046
  export interface GetLayersInfoParams {
7003
7047
  /** Name array of the layers. */
7004
7048
  layerNames?: string[];
7005
7049
  /** ProjectName array with layers. */
7006
7050
  projectNames?: string[];
7007
7051
  }
7008
- /**
7009
- * Configuration for the proxy service.
7010
- */
7011
- export type PublishProxyServicePayload = ProxyServiceConfigurationDc | PbfServiceConfigurationDc | PythonServiceConfigurationDc;
7012
- /**
7013
- * Configuration for the proxy service.
7014
- */
7015
- export type UpdateProxyServicePayload = ProxyServiceConfigurationDc | PbfServiceConfigurationDc | PythonServiceConfigurationDc;
7016
- export type PatchQueryLayerServicePayload = Operation[];
7052
+ export interface DeleteResourcesParams {
7053
+ /** Resource names. */
7054
+ names?: string[];
7055
+ }
7056
+ export type PatchQueryLayerService1Payload = Operation[];
7017
7057
  export interface GetFeatures1Params {
7018
7058
  /** Click geometry. */
7019
7059
  ewktGeometry?: string;
@@ -7333,10 +7373,6 @@ export interface GetRasterMetaParams2 {
7333
7373
  */
7334
7374
  id: number;
7335
7375
  }
7336
- export interface DeleteResourcesParams {
7337
- /** Resource names. */
7338
- names?: string[];
7339
- }
7340
7376
  export interface SubscribeOperationParams {
7341
7377
  /** Notification tag. */
7342
7378
  tag?: string;