@evergis/api 4.1.7 → 4.1.9

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.
package/README.md CHANGED
@@ -8,4 +8,4 @@
8
8
  $ yarn generate
9
9
  ```
10
10
 
11
- ***ВАЖНО!!!***: Никогда и ни при каких обстоятельствах нельзя вручную править файлы, размещенные в директории `lib/__generated__`!
11
+ ***ВАЖНО!!!***: Никогда и ни при каких обстоятельствах нельзя вручную править файлы, размещенные в директории `src/__generated__`!
@@ -97,7 +97,7 @@ export declare class CatalogService extends Service {
97
97
  * @name MoveResource
98
98
  * @operationId CatalogController_MoveResource
99
99
  * @summary Rename resource with given id.
100
- * @request POST:/resources/{resourceId}/move
100
+ * @request POST:/resources/move/{resourceId}
101
101
  * @secure
102
102
  * @response `200` OK
103
103
  */
@@ -1,5 +1,5 @@
1
1
  import { Service } from './Service';
2
- import { AttributeDefinitionDc, AvailiableValuesDc, EqlRequestDc, GetAvailiableLayerParametersParams, GetLayerParameters1Params, GetLayerParametersParams, PagedFeaturesListDc, RemoveLayerParameterValueParams, SetLayerParameterValueParams, SetLayerParametersParams, SetLayerParametersPayload } from './data-contracts';
2
+ import { AttributeDefinitionDc, AvailiableValuesDc, EqlRequestDc, GetAvailiableLayerParametersParams, GetLayerParameters1Params, GetLayerParametersParams, GetPagedQueryResultParams, GetQueryHistoryParams, GetVectorTileParams, PagedFeaturesListDc, PagedListQueryHistoryDc, RemoveLayerParameterValueParams, SetLayerParameterValueParams, SetLayerParametersParams, SetLayerParametersPayload } from './data-contracts';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
5
  * @version 1.5.1.0
@@ -17,7 +17,7 @@ export declare class EqlService extends Service {
17
17
  * @secure
18
18
  * @response `200` OK
19
19
  */
20
- getPagedQueryResult(data: EqlRequestDc): Promise<PagedFeaturesListDc>;
20
+ getPagedQueryResult(query: GetPagedQueryResultParams, data: EqlRequestDc): Promise<PagedFeaturesListDc>;
21
21
  /**
22
22
  * No description
23
23
  *
@@ -30,6 +30,30 @@ export declare class EqlService extends Service {
30
30
  * @response `200` OK
31
31
  */
32
32
  getQueryDescription(data: EqlRequestDc): Promise<Record<string, AttributeDefinitionDc>>;
33
+ /**
34
+ * No description
35
+ *
36
+ * @tags Eql
37
+ * @name GetVectorTile
38
+ * @operationId EqlController_GetVectorTile
39
+ * @summary Get vector tile by query.
40
+ * @request GET:/eql/vt/{z}/{x}/{y}.pbf
41
+ * @secure
42
+ * @response `200` OK
43
+ */
44
+ getVectorTile({ z, x, y, ...query }: GetVectorTileParams): Promise<void>;
45
+ /**
46
+ * No description
47
+ *
48
+ * @tags Eql
49
+ * @name GetQueryHistory
50
+ * @operationId EqlController_GetQueryHistory
51
+ * @summary Get EQL requests history.
52
+ * @request GET:/eql/query/history
53
+ * @secure
54
+ * @response `200` OK
55
+ */
56
+ getQueryHistory(query: GetQueryHistoryParams): Promise<PagedListQueryHistoryDc>;
33
57
  /**
34
58
  * No description
35
59
  *
@@ -102,4 +126,40 @@ export declare class EqlService extends Service {
102
126
  * @response `200` OK
103
127
  */
104
128
  getAvailiableLayerParameters(query: GetAvailiableLayerParametersParams): Promise<AvailiableValuesDc>;
129
+ /**
130
+ * No description
131
+ *
132
+ * @tags Eql
133
+ * @name Get
134
+ * @operationId EqlController_Get
135
+ * @summary Returns the query by its id.
136
+ * @request GET:/eql/query/{id}
137
+ * @secure
138
+ * @response `200` OK
139
+ */
140
+ get(id: string): Promise<EqlRequestDc>;
141
+ /**
142
+ * No description
143
+ *
144
+ * @tags Eql
145
+ * @name Update
146
+ * @operationId EqlController_Update
147
+ * @summary Replaces a query and gives it a new id.
148
+ * @request POST:/eql/query/{id}
149
+ * @secure
150
+ * @response `200` OK
151
+ */
152
+ update(id: string, data: EqlRequestDc): Promise<void>;
153
+ /**
154
+ * No description
155
+ *
156
+ * @tags Eql
157
+ * @name Create
158
+ * @operationId EqlController_Create
159
+ * @summary Creates a new query.
160
+ * @request POST:/eql/query/save
161
+ * @secure
162
+ * @response `200` OK
163
+ */
164
+ create(data: EqlRequestDc): Promise<string>;
105
165
  }
@@ -510,18 +510,6 @@ export declare class LayersService extends Service {
510
510
  * @response `200` OK
511
511
  */
512
512
  validateExpression({ layerName, ...query }: ValidateExpressionParams): Promise<ExpressionValidationResultDc>;
513
- /**
514
- * No description
515
- *
516
- * @tags Layers
517
- * @name FlipCoordinates
518
- * @operationId LayersController_FlipCoordinates
519
- * @summary Flip geometry coordinates.
520
- * @request POST:/layers/{layerName}/flip-coordinates
521
- * @secure
522
- * @response `200` OK
523
- */
524
- flipCoordinates(layerName: string): Promise<ResourceInfoDc | ServiceInfoDc>;
525
513
  /**
526
514
  * No description
527
515
  *
@@ -1,5 +1,5 @@
1
1
  import { Service } from './Service';
2
- import { BulkOperationResultDc, CatalogConfigurationDc, ConfigurationType, DeleteResourcesParams2, EnvelopeDc, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, GetProjectEnvelopeParams, GetProjectsInfoParams, GetProjectsListParams, Operation, PagedListProjectInfoDc, PatchProjectConfigurationPayload, PutProjectConfigurationPayload, ResourceDependenciesDc, UpdateProjectV2Payload } from './data-contracts';
2
+ import { BulkOperationResultDc, CatalogConfigurationDc, DeleteProjectConfigurationParams, DeleteResourcesParams2, EnvelopeDc, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, GetProjectConfigurationParams, GetProjectEnvelopeParams, GetProjectsInfoParams, GetProjectsListParams, Operation, PagedListProjectInfoDc, PatchProjectConfigurationParams, PatchProjectConfigurationPayload, PutProjectConfigurationParams, PutProjectConfigurationPayload, ResourceDependenciesDc, UpdateProjectV2Payload } from './data-contracts';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
5
  * @version 1.5.1.0
@@ -133,11 +133,11 @@ export declare class ProjectsService extends Service {
133
133
  * @name PatchProjectConfiguration
134
134
  * @operationId ProjectsController_PatchProjectConfiguration
135
135
  * @summary Applies partial updates using JSON Patch.
136
- * @request PATCH:/projects/{name}/configuration/{type}
136
+ * @request PATCH:/projects/{name}/configuration
137
137
  * @secure
138
138
  * @response `200` OK
139
139
  */
140
- patchProjectConfiguration(name: string, type: ConfigurationType, data: PatchProjectConfigurationPayload): Promise<CatalogConfigurationDc>;
140
+ patchProjectConfiguration({ name, ...query }: PatchProjectConfigurationParams, data: PatchProjectConfigurationPayload): Promise<CatalogConfigurationDc>;
141
141
  /**
142
142
  * No description
143
143
  *
@@ -145,11 +145,11 @@ export declare class ProjectsService extends Service {
145
145
  * @name PutProjectConfiguration
146
146
  * @operationId ProjectsController_PutProjectConfiguration
147
147
  * @summary Creates or updates configuration (full replacement).
148
- * @request PUT:/projects/{name}/configuration/{type}
148
+ * @request PUT:/projects/{name}/configuration
149
149
  * @secure
150
150
  * @response `200` OK
151
151
  */
152
- putProjectConfiguration(name: string, type: ConfigurationType, data: PutProjectConfigurationPayload): Promise<CatalogConfigurationDc>;
152
+ putProjectConfiguration({ name, ...query }: PutProjectConfigurationParams, data: PutProjectConfigurationPayload): Promise<CatalogConfigurationDc>;
153
153
  /**
154
154
  * No description
155
155
  *
@@ -157,11 +157,11 @@ export declare class ProjectsService extends Service {
157
157
  * @name GetProjectConfiguration
158
158
  * @operationId ProjectsController_GetProjectConfiguration
159
159
  * @summary Gets configuration for a resource and type.
160
- * @request GET:/projects/{name}/configuration/{type}
160
+ * @request GET:/projects/{name}/configuration
161
161
  * @secure
162
162
  * @response `200` OK
163
163
  */
164
- getProjectConfiguration(name: string, type: ConfigurationType): Promise<CatalogConfigurationDc>;
164
+ getProjectConfiguration({ name, ...query }: GetProjectConfigurationParams): Promise<CatalogConfigurationDc>;
165
165
  /**
166
166
  * No description
167
167
  *
@@ -169,11 +169,11 @@ export declare class ProjectsService extends Service {
169
169
  * @name DeleteProjectConfiguration
170
170
  * @operationId ProjectsController_DeleteProjectConfiguration
171
171
  * @summary Creates or updates configuration (full replacement).
172
- * @request DELETE:/projects/{name}/configuration/{type}
172
+ * @request DELETE:/projects/{name}/configuration
173
173
  * @secure
174
174
  * @response `200` OK
175
175
  */
176
- deleteProjectConfiguration(name: string, type: ConfigurationType): Promise<CatalogConfigurationDc>;
176
+ deleteProjectConfiguration({ name, ...query }: DeleteProjectConfigurationParams): Promise<CatalogConfigurationDc>;
177
177
  /**
178
178
  * No description
179
179
  *
@@ -1,5 +1,5 @@
1
1
  import { Service } from './Service';
2
- import { GetVectorTileParams } from './data-contracts';
2
+ import { GetVectorTileParams2 } from './data-contracts';
3
3
  /**
4
4
  * @title Spatial Processing Core API
5
5
  * @version 1.5.1.0
@@ -17,5 +17,5 @@ export declare class VectorTileService extends Service {
17
17
  * @secure
18
18
  * @response `200` OK
19
19
  */
20
- getVectorTile({ name, z, x, y, ...query }: GetVectorTileParams): Promise<void>;
20
+ getVectorTile({ name, z, x, y, ...query }: GetVectorTileParams2): Promise<void>;
21
21
  }
@@ -61,6 +61,29 @@ export interface ActiveWorkerTaskDc {
61
61
  /** SettingsFields. */
62
62
  settingsFields?: WorkerSettingsFieldDc[];
63
63
  }
64
+ /**
65
+ * Additional data source connection data contract.
66
+ */
67
+ export interface AdditionalDataSourceConnectionDc {
68
+ /**
69
+ *
70
+ *
71
+ * Json
72
+ *
73
+ * Csv
74
+ *
75
+ * Orc
76
+ *
77
+ * Parquet
78
+ *
79
+ * Jdbc
80
+ */
81
+ type?: DataSourceConnectionType;
82
+ /** Temp view name. */
83
+ name?: string;
84
+ /** Connection string. */
85
+ connectionString?: string;
86
+ }
64
87
  /**
65
88
  * Describes data contract of aggregation result.
66
89
  */
@@ -205,6 +228,8 @@ export type ArcGisDataSourceDc = DataSourceDc & {
205
228
  * GisServer
206
229
  *
207
230
  * Spark
231
+ *
232
+ * Archive
208
233
  */
209
234
  type?: DataSourceType;
210
235
  /** Endpoint. */
@@ -1334,6 +1359,8 @@ export interface CreateUserDc {
1334
1359
  export interface CreateViewFromQueryDc {
1335
1360
  /** Is view materialized. */
1336
1361
  isMaterialized?: boolean;
1362
+ /** Recreate view if exists. */
1363
+ override?: boolean;
1337
1364
  /** Layer name. */
1338
1365
  eql?: string;
1339
1366
  /** View name. */
@@ -1347,6 +1374,8 @@ export interface CreateViewFromQueryDc {
1347
1374
  export interface CreateViewFromQueryLayerDc {
1348
1375
  /** Is view materialized. */
1349
1376
  isMaterialized?: boolean;
1377
+ /** Recreate view if exists. */
1378
+ override?: boolean;
1350
1379
  /** Layer name. */
1351
1380
  layerName?: string;
1352
1381
  /** View name. */
@@ -1366,6 +1395,26 @@ export interface CreatedTaskResultDto {
1366
1395
  /** Success flag. */
1367
1396
  success?: boolean;
1368
1397
  }
1398
+ /**
1399
+ *
1400
+
1401
+ Json
1402
+
1403
+ Csv
1404
+
1405
+ Orc
1406
+
1407
+ Parquet
1408
+
1409
+ Jdbc
1410
+ */
1411
+ export declare enum DataSourceConnectionType {
1412
+ Json = "Json",
1413
+ Csv = "Csv",
1414
+ Orc = "Orc",
1415
+ Parquet = "Parquet",
1416
+ Jdbc = "Jdbc"
1417
+ }
1369
1418
  /**
1370
1419
  * Data source data contract.
1371
1420
  */
@@ -1394,6 +1443,8 @@ export interface DataSourceDc {
1394
1443
  * GisServer
1395
1444
  *
1396
1445
  * Spark
1446
+ *
1447
+ * Archive
1397
1448
  */
1398
1449
  type?: DataSourceType;
1399
1450
  /** Tags. */
@@ -1421,6 +1472,8 @@ export interface DataSourceInfoDc {
1421
1472
  * GisServer
1422
1473
  *
1423
1474
  * Spark
1475
+ *
1476
+ * Archive
1424
1477
  */
1425
1478
  type?: DataSourceType;
1426
1479
  /** Tags. */
@@ -1456,13 +1509,16 @@ S3
1456
1509
  GisServer
1457
1510
 
1458
1511
  Spark
1512
+
1513
+ Archive
1459
1514
  */
1460
1515
  export declare enum DataSourceType {
1461
1516
  Postgres = "Postgres",
1462
1517
  Trino = "Trino",
1463
1518
  S3 = "S3",
1464
1519
  GisServer = "GisServer",
1465
- Spark = "Spark"
1520
+ Spark = "Spark",
1521
+ Archive = "Archive"
1466
1522
  }
1467
1523
  /**
1468
1524
  * Configuration of a table for feature layer.
@@ -1586,6 +1642,8 @@ export type EqlAttributesConfigurationDc = AttributesConfigurationDc & {
1586
1642
  export interface EqlRequestDc {
1587
1643
  /** Data source name. */
1588
1644
  ds?: string;
1645
+ /** Additional data source connection. */
1646
+ additionalDsConnections?: AdditionalDataSourceConnectionDc[];
1589
1647
  /**
1590
1648
  * EQL query string.
1591
1649
  * @minLength 1
@@ -2768,6 +2826,10 @@ export type MaterializedViewConfigurationDc = TableConfigurationBaseDc & {
2768
2826
  eql?: string | null;
2769
2827
  /** EQL parameters. */
2770
2828
  eqlParameters?: Record<string, any>;
2829
+ /** Schema. */
2830
+ schemaName?: string | null;
2831
+ /** TableName. */
2832
+ tableName?: string | null;
2771
2833
  };
2772
2834
  /**
2773
2835
  * MosRu data source.
@@ -2785,6 +2847,8 @@ export type MosRuDataSourceDc = DataSourceDc & {
2785
2847
  * GisServer
2786
2848
  *
2787
2849
  * Spark
2850
+ *
2851
+ * Archive
2788
2852
  */
2789
2853
  type?: DataSourceType;
2790
2854
  /** Endpoint. */
@@ -2925,6 +2989,15 @@ export interface PagedListProjectInfoDc {
2925
2989
  limit?: number;
2926
2990
  items?: (ProjectInfoDc | ExtendedProjectInfoDc)[];
2927
2991
  }
2992
+ export interface PagedListQueryHistoryDc {
2993
+ /** @format int64 */
2994
+ totalCount?: number;
2995
+ /** @format int32 */
2996
+ offset?: number;
2997
+ /** @format int32 */
2998
+ limit?: number;
2999
+ items?: QueryHistoryDc[];
3000
+ }
2928
3001
  export interface PagedListQueryTokenDc {
2929
3002
  /** @format int64 */
2930
3003
  totalCount?: number;
@@ -3231,6 +3304,8 @@ export type PostgresDataSourceDc = DataSourceDc & {
3231
3304
  * GisServer
3232
3305
  *
3233
3306
  * Spark
3307
+ *
3308
+ * Archive
3234
3309
  */
3235
3310
  type?: DataSourceType;
3236
3311
  /** Host. */
@@ -3697,14 +3772,47 @@ export interface QueryGeometryOperationDc {
3697
3772
  /** Additional parameters. */
3698
3773
  parameters?: any[];
3699
3774
  }
3775
+ /**
3776
+ * Query history data contract.
3777
+ */
3778
+ export interface QueryHistoryDc {
3779
+ /**
3780
+ * Date and time of request.
3781
+ * @format date-time
3782
+ */
3783
+ dt?: string;
3784
+ /**
3785
+ * Date and time of request started.
3786
+ * @format int64
3787
+ */
3788
+ elapsedMilliseconds?: number;
3789
+ /** Request owner. */
3790
+ owner?: string;
3791
+ /**
3792
+ * Returned rows.
3793
+ * @format int64
3794
+ */
3795
+ rowsCount?: number;
3796
+ /**
3797
+ * Total rows count.
3798
+ * @format int64
3799
+ */
3800
+ rowsTotalCount?: number;
3801
+ /** EQL requst data contract. */
3802
+ request?: EqlRequestDc;
3803
+ }
3700
3804
  /**
3701
3805
  * Configuration of a postgres feature layer service.
3702
3806
  */
3703
3807
  export type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
3704
3808
  /** Data source name. */
3705
3809
  ds?: string | null;
3810
+ /** Additional data source connection. */
3811
+ additionalDsConnections?: AdditionalDataSourceConnectionDc[] | null;
3706
3812
  /** EQL query. */
3707
3813
  eql?: string | null;
3814
+ /** Saved query id. */
3815
+ queryId?: string | null;
3708
3816
  /** EQL parameters. */
3709
3817
  eqlParameters?: Record<string, QueryLayerServiceEqlParameterConfigurationDc>;
3710
3818
  /**
@@ -3806,6 +3914,8 @@ export interface QueryLayerServiceEqlParameterConfigurationDc {
3806
3914
  descriptionColumn?: string;
3807
3915
  /** Data source name. */
3808
3916
  ds?: string;
3917
+ /** Additional data source connection. */
3918
+ additionalDsConnections?: AdditionalDataSourceConnectionDc[];
3809
3919
  /** Query text. */
3810
3920
  query?: string;
3811
3921
  /** Available values. */
@@ -3827,6 +3937,8 @@ export interface QueryLayerServiceEqlParameterQueryValueConfigurationDc {
3827
3937
  valueColumn?: string;
3828
3938
  /** Query text. */
3829
3939
  ds?: string;
3940
+ /** Additional data source connection. */
3941
+ additionalDsConnections?: AdditionalDataSourceConnectionDc[];
3830
3942
  /** Query text. */
3831
3943
  query?: string;
3832
3944
  }
@@ -4574,6 +4686,8 @@ export type S3DataSourceDc = DataSourceDc & {
4574
4686
  * GisServer
4575
4687
  *
4576
4688
  * Spark
4689
+ *
4690
+ * Archive
4577
4691
  */
4578
4692
  type?: DataSourceType;
4579
4693
  /** Endpoint. */
@@ -4913,6 +5027,8 @@ export type SparkDataSourceDc = DataSourceDc & {
4913
5027
  * GisServer
4914
5028
  *
4915
5029
  * Spark
5030
+ *
5031
+ * Archive
4916
5032
  */
4917
5033
  type?: DataSourceType;
4918
5034
  /** Endpoint. */
@@ -5371,6 +5487,8 @@ export interface TaskParameter {
5371
5487
  type?: WorkerSettingsFieldType;
5372
5488
  /** Lookup values. */
5373
5489
  lookupValues?: Record<string, string | null>;
5490
+ /** ChildrenFields. */
5491
+ childrenFields?: Record<string, WorkerSettingsField[] | null>;
5374
5492
  /** Default value. */
5375
5493
  default?: any;
5376
5494
  /** TaskParameterRange. */
@@ -5436,6 +5554,8 @@ export interface TaskParameterDc {
5436
5554
  type?: WorkerSettingsFieldType;
5437
5555
  /** Lookup values. */
5438
5556
  lookupValues?: Record<string, string | null>;
5557
+ /** ChildrenFields. */
5558
+ childrenFields?: Record<string, WorkerSettingsField[] | null>;
5439
5559
  /** Default value. */
5440
5560
  default?: any;
5441
5561
  /** TaskParameterRange. */
@@ -6092,6 +6212,8 @@ export type WmsDataSourceDc = DataSourceDc & {
6092
6212
  * GisServer
6093
6213
  *
6094
6214
  * Spark
6215
+ *
6216
+ * Archive
6095
6217
  */
6096
6218
  type?: DataSourceType;
6097
6219
  /** Endpoint. */
@@ -6115,6 +6237,62 @@ export declare enum WorkerMethodType {
6115
6237
  Rest = "Rest",
6116
6238
  Both = "Both"
6117
6239
  }
6240
+ export interface WorkerSettingsField {
6241
+ name?: string;
6242
+ alias?: string;
6243
+ group?: string;
6244
+ nullable?: boolean;
6245
+ /**
6246
+ *
6247
+ *
6248
+ * Int32
6249
+ *
6250
+ * Int64
6251
+ *
6252
+ * Double
6253
+ *
6254
+ * String
6255
+ *
6256
+ * Boolean
6257
+ *
6258
+ * DateTime
6259
+ *
6260
+ * Point
6261
+ *
6262
+ * Geometry
6263
+ *
6264
+ * Polyline
6265
+ *
6266
+ * MultiPolygon
6267
+ *
6268
+ * Polygon
6269
+ *
6270
+ * Multipoint
6271
+ *
6272
+ * IntergerArray
6273
+ *
6274
+ * DoubleArray
6275
+ *
6276
+ * StringArray
6277
+ *
6278
+ * SourceEql
6279
+ *
6280
+ * Layer
6281
+ *
6282
+ * Table
6283
+ *
6284
+ * Folder
6285
+ *
6286
+ * Json
6287
+ *
6288
+ * Attribute
6289
+ *
6290
+ * AttributeArray
6291
+ */
6292
+ type?: WorkerSettingsFieldType;
6293
+ lookupValues?: Record<string, string>;
6294
+ childrenFields?: Record<string, WorkerSettingsField[]>;
6295
+ }
6118
6296
  /**
6119
6297
  * Worker settings field data contract.
6120
6298
  */
@@ -6695,6 +6873,56 @@ export interface GetDataSourcesListParams {
6695
6873
  */
6696
6874
  limit?: number;
6697
6875
  }
6876
+ export interface GetPagedQueryResultParams {
6877
+ /**
6878
+ * Can be saved in history.
6879
+ * @default false
6880
+ */
6881
+ saveInHistory?: boolean;
6882
+ }
6883
+ export interface GetVectorTileParams {
6884
+ /** Query id. */
6885
+ eql?: string;
6886
+ /**
6887
+ * Zoom level.
6888
+ * @format int32
6889
+ */
6890
+ z: number;
6891
+ /**
6892
+ * X tile coordinate.
6893
+ * @format int32
6894
+ */
6895
+ x: number;
6896
+ /**
6897
+ * Y tile coordinate.
6898
+ * @format int32
6899
+ */
6900
+ y: number;
6901
+ }
6902
+ export interface GetQueryHistoryParams {
6903
+ /**
6904
+ * Date and time start.
6905
+ * @format date-time
6906
+ */
6907
+ dtStart?: string;
6908
+ /**
6909
+ * Date and time end.
6910
+ * @format date-time
6911
+ */
6912
+ dtEnd?: string;
6913
+ /**
6914
+ * Limit.
6915
+ * @format int32
6916
+ */
6917
+ limit?: number;
6918
+ /**
6919
+ * Offset.
6920
+ * @format int32
6921
+ */
6922
+ offset?: number;
6923
+ /** Request initiator username. */
6924
+ owner?: string;
6925
+ }
6698
6926
  export interface SetLayerParameterValueParams {
6699
6927
  /** Layer name. */
6700
6928
  layerName?: string;
@@ -7322,7 +7550,55 @@ export interface GetProjectEnvelopeParams {
7322
7550
  name: string;
7323
7551
  }
7324
7552
  export type PatchProjectConfigurationPayload = Operation[];
7553
+ export interface PatchProjectConfigurationParams {
7554
+ /**
7555
+ * Configuration type.
7556
+ *
7557
+ * Default
7558
+ *
7559
+ * DevConfiguration
7560
+ */
7561
+ type?: ConfigurationType;
7562
+ /** Name of the project. */
7563
+ name: string;
7564
+ }
7325
7565
  export type PutProjectConfigurationPayload = any;
7566
+ export interface PutProjectConfigurationParams {
7567
+ /**
7568
+ * Configuration type.
7569
+ *
7570
+ * Default
7571
+ *
7572
+ * DevConfiguration
7573
+ */
7574
+ type?: ConfigurationType;
7575
+ /** Name of the project. */
7576
+ name: string;
7577
+ }
7578
+ export interface GetProjectConfigurationParams {
7579
+ /**
7580
+ * Configuration type.
7581
+ *
7582
+ * Default
7583
+ *
7584
+ * DevConfiguration
7585
+ */
7586
+ type?: ConfigurationType;
7587
+ /** Name of the project. */
7588
+ name: string;
7589
+ }
7590
+ export interface DeleteProjectConfigurationParams {
7591
+ /**
7592
+ * Configuration type.
7593
+ *
7594
+ * Default
7595
+ *
7596
+ * DevConfiguration
7597
+ */
7598
+ type?: ConfigurationType;
7599
+ /** Name of the project. */
7600
+ name: string;
7601
+ }
7326
7602
  export interface GetAllScriptMethodsParams {
7327
7603
  /** ResourceId. */
7328
7604
  resourceId?: string;
@@ -7599,7 +7875,7 @@ export interface MapTableParams {
7599
7875
  /** Type of the resource. Default type os Table. */
7600
7876
  type?: string;
7601
7877
  }
7602
- export interface GetVectorTileParams {
7878
+ export interface GetVectorTileParams2 {
7603
7879
  /** Condition. */
7604
7880
  condition?: string;
7605
7881
  /** Id of override data filter to apply to the layer. If not set, the default filter is used. */