@evergis/api 5.0.31 → 5.0.32

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.
@@ -1,5 +1,5 @@
1
1
  import { Service } from './Service';
2
- import { AccessControlListDc, CatalogResourceDc, CopyResourceResultDc, CopyResourcesPayload, CreateDirectoryDc, CreateFile1Payload, CreateFilePayload, CreateSymlinkDc, DeleteResourceParams, GetByPathDc, GetTagsParams, ListResourcesDc, MoveResourceDc, PagedResourcesListDc, PagedTagsListDc, PatchResourceDc, PostGetAllParams, PutTagsPayload, ResourceParentDc, SetPermissionsPayload, ZipExtractRequestDc } from './data-contracts';
2
+ import { AccessControlListDc, CopyResourceResultDc, CopyResourcesPayload, CreateDirectoryDc, CreateFile1Payload, CreateFilePayload, CreateSymlinkDc, DeleteResourceParams, ExtendedCatalogResourceDc, GetTagsParams, ListResourcesDc, MoveResourceDc, PagedResourcesListDc, PagedTagsListDc, PatchResourceDc, PostGetAllParams, PutTagsPayload, ResourceParentDc, SetPermissionsPayload, ZipExtractRequestDc } from './data-contracts';
3
3
  /**
4
4
  * @title Spatial Processing Gateway API
5
5
  * @version 1.5.1.0
@@ -41,7 +41,7 @@ export declare class CatalogService extends Service {
41
41
  * @secure
42
42
  * @response `200` OK
43
43
  */
44
- putTags(resourceId: string, data: PutTagsPayload): Promise<CatalogResourceDc>;
44
+ putTags(resourceId: string, data: PutTagsPayload): Promise<ExtendedCatalogResourceDc>;
45
45
  /**
46
46
  * No description
47
47
  *
@@ -53,7 +53,7 @@ export declare class CatalogService extends Service {
53
53
  * @secure
54
54
  * @response `200` OK
55
55
  */
56
- postLink(data: CreateSymlinkDc): Promise<CatalogResourceDc>;
56
+ postLink(data: CreateSymlinkDc): Promise<ExtendedCatalogResourceDc>;
57
57
  /**
58
58
  * No description
59
59
  *
@@ -77,7 +77,7 @@ export declare class CatalogService extends Service {
77
77
  * @secure
78
78
  * @response `200` OK
79
79
  */
80
- getResource(resourceId: string): Promise<CatalogResourceDc>;
80
+ getResource(resourceId: string): Promise<ExtendedCatalogResourceDc>;
81
81
  /**
82
82
  * No description
83
83
  *
@@ -89,7 +89,7 @@ export declare class CatalogService extends Service {
89
89
  * @secure
90
90
  * @response `200` OK
91
91
  */
92
- patchResource(resourceId: string, data: PatchResourceDc): Promise<CatalogResourceDc>;
92
+ patchResource(resourceId: string, data: PatchResourceDc): Promise<ExtendedCatalogResourceDc>;
93
93
  /**
94
94
  * No description
95
95
  *
@@ -102,18 +102,6 @@ export declare class CatalogService extends Service {
102
102
  * @response `200` OK
103
103
  */
104
104
  deleteResource({ resourceId, ...query }: DeleteResourceParams): Promise<void>;
105
- /**
106
- * No description
107
- *
108
- * @tags Catalog
109
- * @name ResourceExistsByPath
110
- * @operationId CatalogController_ResourceExistsByPathAsync
111
- * @summary Check resource path is existing.
112
- * @request GET:/resources/existsByPath/{path}
113
- * @secure
114
- * @response `200` OK
115
- */
116
- resourceExistsByPath(path: string): Promise<boolean>;
117
105
  /**
118
106
  * No description
119
107
  *
@@ -121,59 +109,11 @@ export declare class CatalogService extends Service {
121
109
  * @name ResourceExistsById
122
110
  * @operationId CatalogController_ResourceExistsByIdAsync
123
111
  * @summary Check resource id is existing.
124
- * @request GET:/resources/existsById/{resourceId}
112
+ * @request GET:/resources/exists/{resourceId}
125
113
  * @secure
126
114
  * @response `200` OK
127
115
  */
128
116
  resourceExistsById(resourceId: string): Promise<boolean>;
129
- /**
130
- * No description
131
- *
132
- * @tags Catalog
133
- * @name ResourceExistsByName
134
- * @operationId CatalogController_ResourceExistsByNameAsync
135
- * @summary Check resource path exists.
136
- * @request GET:/resources/existsByName/{systemName}
137
- * @secure
138
- * @response `200` OK
139
- */
140
- resourceExistsByName(systemName: string): Promise<boolean>;
141
- /**
142
- * No description
143
- *
144
- * @tags Catalog
145
- * @name GetResourceByPath
146
- * @operationId CatalogController_GetResourceByPath
147
- * @summary Get resource with given path.
148
- * @request GET:/resources/getByPath/{path}
149
- * @secure
150
- * @response `200` OK
151
- */
152
- getResourceByPath(path: string): Promise<CatalogResourceDc>;
153
- /**
154
- * No description
155
- *
156
- * @tags Catalog
157
- * @name PostGetResourceByPath
158
- * @operationId CatalogController_PostGetResourceByPath
159
- * @summary Get resource with given path.
160
- * @request POST:/resources/getByPath
161
- * @secure
162
- * @response `200` OK
163
- */
164
- postGetResourceByPath(data: GetByPathDc): Promise<CatalogResourceDc>;
165
- /**
166
- * No description
167
- *
168
- * @tags Catalog
169
- * @name GetBySystemName
170
- * @operationId CatalogController_GetBySystemName
171
- * @summary Get resource with given system name.
172
- * @request GET:/resources/getBySystemName/{systemName}
173
- * @secure
174
- * @response `200` OK
175
- */
176
- getBySystemName(systemName: string): Promise<CatalogResourceDc>;
177
117
  /**
178
118
  * No description
179
119
  *
@@ -185,7 +125,7 @@ export declare class CatalogService extends Service {
185
125
  * @secure
186
126
  * @response `200` OK
187
127
  */
188
- moveResource(resourceId: string, data: MoveResourceDc): Promise<CatalogResourceDc>;
128
+ moveResource(resourceId: string, data: MoveResourceDc): Promise<ExtendedCatalogResourceDc>;
189
129
  /**
190
130
  * No description
191
131
  *
@@ -197,7 +137,7 @@ export declare class CatalogService extends Service {
197
137
  * @secure
198
138
  * @response `200` OK
199
139
  */
200
- createDirectory(data: CreateDirectoryDc): Promise<CatalogResourceDc>;
140
+ createDirectory(data: CreateDirectoryDc): Promise<ExtendedCatalogResourceDc>;
201
141
  /**
202
142
  * No description
203
143
  *
@@ -209,7 +149,7 @@ export declare class CatalogService extends Service {
209
149
  * @secure
210
150
  * @response `200` OK
211
151
  */
212
- createFile(data: CreateFilePayload | FormData): Promise<CatalogResourceDc>;
152
+ createFile(data: CreateFilePayload | FormData): Promise<ExtendedCatalogResourceDc>;
213
153
  /**
214
154
  * No description
215
155
  *
@@ -221,7 +161,7 @@ export declare class CatalogService extends Service {
221
161
  * @secure
222
162
  * @response `200` OK
223
163
  */
224
- createFile1(data: CreateFile1Payload | FormData): Promise<CatalogResourceDc>;
164
+ createFile1(data: CreateFile1Payload | FormData): Promise<ExtendedCatalogResourceDc>;
225
165
  /**
226
166
  * No description
227
167
  *
@@ -246,6 +186,18 @@ export declare class CatalogService extends Service {
246
186
  * @response `200` OK
247
187
  */
248
188
  setPermissions1(resourceId: string, data: AccessControlListDc): Promise<void>;
189
+ /**
190
+ * No description
191
+ *
192
+ * @tags Catalog
193
+ * @name GetPermissionsV2
194
+ * @operationId CatalogController_GetPermissionsV2
195
+ * @summary Set permissions to the resource.
196
+ * @request GET:/resources/permissions/{resourceId}
197
+ * @secure
198
+ * @response `200` OK
199
+ */
200
+ getPermissionsV2(resourceId: string): Promise<AccessControlListDc>;
249
201
  /**
250
202
  * No description
251
203
  *
@@ -1,5 +1,5 @@
1
1
  import { Service } from './Service';
2
- import { AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkExtentsDc, BulkFilteredFeaturesCountDc, BulkOperationResultDc, ClassifyDc, ClassifyParams, CreateFeaturesParams, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DeleteResourcesParams, DetailedTableInfoDc, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, ExtendedProjectInfoDc, ExtendedProjectInfoDcV2, FailedServiceInfoDc, FeatureDc, GetBulkExtentsParams, GetBulkExtentsPayload, GetBulkFeaturesPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCount1Params, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountPayload, GetLayerExtentParams, GetLayersInfoParams, GetRasterMetaParams2, GetTilesLayerImage1Params, GetTilesLayerImageParams, GetTilesLayerImageWithFormatAndDpiParams, LayerUpdateInfoDc, NetCdfMetaDc, Operation, PagedBulkFeaturesListDc, PagedFeaturesListDc, PatchQueryLayerService1Payload, PatchQueryLayerServicePayload, PbfServiceInfoDc, ProjectInfoDcV2, ProxyServiceInfoDc, PublishLayerInfoDc, PythonServiceInfoDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceInfoDc, ResourceDependenciesDc, ServiceInfoDc, TileCatalogServiceInfoDc, UpdateFeaturePayload, UpdateTableDc, ValidateExpressionParams } from './data-contracts';
2
+ import { AggregateAttributeParams, AggregationDataResultDc, AttributeDistinctsDc, BulkExtentsDc, BulkFilteredFeaturesCountDc, ClassifyDc, ClassifyParams, CreateFeaturesParams, CreateFeaturesPayload, DeleteByConditionParams, DeleteFeatureParams, DeleteFeaturesParams, DetailedTableInfoDc, DistinctsParams, EditAttributesInfoDc, EnvelopeDc, ExpressionValidationResultDc, ExtendedProjectInfoDc, ExtendedProjectInfoDcV2, FailedServiceInfoDc, FeatureDc, GetBulkExtentsParams, GetBulkExtentsPayload, GetBulkFeaturesPayload, GetByIdParams, GetFeatures1Params, GetFeaturesParametersDc, GetFilteredFeaturesCount1Params, GetFilteredFeaturesCountDc, GetFilteredFeaturesCountPayload, GetLayerExtentParams, GetLayersInfoParams, GetRasterMetaParams2, GetTilesLayerImage1Params, GetTilesLayerImageParams, GetTilesLayerImageWithFormatAndDpiParams, LayerUpdateInfoDc, NetCdfMetaDc, Operation, PagedBulkFeaturesListDc, PagedFeaturesListDc, PatchQueryLayerService1Payload, PatchQueryLayerServicePayload, PbfServiceInfoDc, ProjectInfoDcV2, ProxyServiceInfoDc, PublishLayerInfoDc, PythonServiceInfoDc, QueryLayerServiceInfoDc, RasterMetaDc, RemoteTileServiceInfoDc, ResourceDependenciesDc, ServiceInfoDc, TileCatalogServiceInfoDc, UpdateFeaturePayload, UpdateTableDc, ValidateExpressionParams } from './data-contracts';
3
3
  /**
4
4
  * @title Spatial Processing Gateway API
5
5
  * @version 1.5.1.0
@@ -90,18 +90,6 @@ export declare class LayersService extends Service {
90
90
  * @response `200` OK
91
91
  */
92
92
  publishService(data: PublishLayerInfoDc): Promise<ServiceInfoDc | RemoteTileServiceInfoDc | ProxyServiceInfoDc | PythonServiceInfoDc | ExtendedProjectInfoDc | ProjectInfoDcV2 | ExtendedProjectInfoDcV2 | PbfServiceInfoDc | FailedServiceInfoDc | QueryLayerServiceInfoDc | TileCatalogServiceInfoDc | DetailedTableInfoDc | UpdateTableDc>;
93
- /**
94
- * No description
95
- *
96
- * @tags Layers
97
- * @name DeleteResources
98
- * @operationId LayersController_DeleteResources
99
- * @summary Bulk delete resources.
100
- * @request DELETE:/layers
101
- * @secure
102
- * @response `200` OK
103
- */
104
- deleteResources(query: DeleteResourcesParams): Promise<BulkOperationResultDc[]>;
105
93
  /**
106
94
  * No description
107
95
  *
@@ -1,5 +1,5 @@
1
1
  import { Service } from './Service';
2
- import { BulkOperationResultDc, DeleteResourcesParams2, EnvelopeDc, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, GetProjectEnvelopeParams, GetProjectsInfoParams, Operation, ResourceDependenciesDc, UpdateProjectV2Payload } from './data-contracts';
2
+ import { EnvelopeDc, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, GetProjectEnvelopeParams, GetProjectsInfoParams, Operation, ResourceDependenciesDc, UpdateProjectV2Payload } from './data-contracts';
3
3
  /**
4
4
  * @title Spatial Processing Gateway API
5
5
  * @version 1.5.1.0
@@ -18,18 +18,6 @@ export declare class ProjectsService extends Service {
18
18
  * @response `200` OK
19
19
  */
20
20
  createProject(data: ExtendedProjectInfoDc): Promise<ExtendedProjectInfoDc>;
21
- /**
22
- * No description
23
- *
24
- * @tags Projects
25
- * @name DeleteResources
26
- * @operationId ProjectsController_DeleteResources
27
- * @summary Bulk delete resources.
28
- * @request DELETE:/projects
29
- * @secure
30
- * @response `200` OK
31
- */
32
- deleteResources(query: DeleteResourcesParams2): Promise<BulkOperationResultDc[]>;
33
21
  /**
34
22
  * No description
35
23
  *
@@ -1,5 +1,5 @@
1
1
  import { Service } from './Service';
2
- import { BulkOperationResultDc, CreateViewFromQueryDc, CreateViewFromQueryLayerDc, DeleteResourcesParams4, DeleteTableDataParams, DetailedTableInfoDc, GetTableDataParams, GetTablesInfoParams, MapTableInfoDc, MapTableParams, PagedListFeatureDc, ResourceDependenciesDc, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
2
+ import { CreateViewFromQueryDc, CreateViewFromQueryLayerDc, DeleteTableDataParams, DetailedTableInfoDc, GetTableDataParams, GetTablesInfoParams, MapTableInfoDc, MapTableParams, PagedListFeatureDc, ResourceDependenciesDc, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
3
3
  /**
4
4
  * @title Spatial Processing Gateway API
5
5
  * @version 1.5.1.0
@@ -18,18 +18,6 @@ export declare class TablesService extends Service {
18
18
  * @response `200` OK
19
19
  */
20
20
  createTable(data: DetailedTableInfoDc): Promise<DetailedTableInfoDc>;
21
- /**
22
- * No description
23
- *
24
- * @tags Tables
25
- * @name DeleteResources
26
- * @operationId TablesController_DeleteResources
27
- * @summary Bulk delete resources.
28
- * @request DELETE:/tables
29
- * @secure
30
- * @response `200` OK
31
- */
32
- deleteResources(query: DeleteResourcesParams4): Promise<BulkOperationResultDc[]>;
33
21
  /**
34
22
  * No description
35
23
  *
@@ -42,6 +42,8 @@ export interface ActiveWorkerTaskDc {
42
42
  methodCallType?: WorkerMethodType;
43
43
  /** SettingsFields. */
44
44
  settingsFields?: WorkerSettingsFieldDc[];
45
+ /** JsonSchema. */
46
+ jsonSchema?: any;
45
47
  }
46
48
  /**
47
49
  * Additional data source connection data contract.
@@ -418,8 +420,6 @@ export interface CatalogResourceDc {
418
420
  isSymlink?: boolean;
419
421
  /** Owner of the resource. */
420
422
  owner?: string;
421
- /** Resource path. */
422
- path?: string;
423
423
  /**
424
424
  * Updated at.
425
425
  * @format date-time
@@ -444,6 +444,10 @@ export interface CatalogResourceDc {
444
444
  isObservable?: boolean;
445
445
  /** Resource icon. */
446
446
  icon?: string;
447
+ /** True if acl inherited from parent. */
448
+ inheritAcl?: boolean;
449
+ /** Access control list for a security object. */
450
+ acl?: AccessControlListDc;
447
451
  }
448
452
  export declare enum CatalogResourceType {
449
453
  Directory = "Directory",
@@ -630,6 +634,8 @@ export interface CreateDirectoryDc {
630
634
  icon?: string;
631
635
  /** Rewrite if exists. */
632
636
  rewrite?: boolean;
637
+ /** True if acl inherited from parent. */
638
+ inheritAcl?: boolean;
633
639
  }
634
640
  /**
635
641
  * Data contract for create new role.
@@ -693,6 +699,8 @@ export interface CreateSymlinkDc {
693
699
  parentId?: string;
694
700
  /** A set of tags. */
695
701
  tags?: string[];
702
+ /** True if acl inherited from parent. */
703
+ inheritAcl?: boolean;
696
704
  }
697
705
  /**
698
706
  * Data contract for create new user.
@@ -1038,6 +1046,74 @@ export interface ExpressionValidationResultDc {
1038
1046
  /** The expression that was validated. */
1039
1047
  expression?: string;
1040
1048
  }
1049
+ /**
1050
+ * Extended resource info.
1051
+ */
1052
+ export interface ExtendedCatalogResourceDc {
1053
+ /** Resource path. */
1054
+ path?: string;
1055
+ /** Resource id. */
1056
+ resourceId?: string;
1057
+ /** Resource id. */
1058
+ targetResourceId?: string;
1059
+ /** System name. */
1060
+ systemName?: string;
1061
+ /** Parent resource id. */
1062
+ parentId?: string;
1063
+ type?: CatalogResourceType;
1064
+ /** Resource subtype. */
1065
+ subtype?: string;
1066
+ geometryType?: OgcGeometryType;
1067
+ /** Path to the resource. */
1068
+ name?: string;
1069
+ /** Description of the resource. */
1070
+ description?: string;
1071
+ /**
1072
+ * Resource size.
1073
+ * @format int64
1074
+ */
1075
+ size?: number;
1076
+ /** Content type. */
1077
+ contentType?: string;
1078
+ /** Preview. */
1079
+ preview?: string;
1080
+ /** Check if resource is temporary. */
1081
+ isTemporary?: boolean;
1082
+ /** Check if resource is system. */
1083
+ isSystem?: boolean;
1084
+ /** Check if resource is symlink. */
1085
+ isSymlink?: boolean;
1086
+ /** Owner of the resource. */
1087
+ owner?: string;
1088
+ /**
1089
+ * Updated at.
1090
+ * @format date-time
1091
+ */
1092
+ updatedAt?: string;
1093
+ /**
1094
+ * Created at.
1095
+ * @format date-time
1096
+ */
1097
+ createdAt?: string;
1098
+ /** Resource tags. */
1099
+ tags?: string[];
1100
+ permissions?: Permissions;
1101
+ /** Table schema. */
1102
+ schema?: string;
1103
+ /**
1104
+ * Spatial reference id. Nothing if geometry type is mixed.
1105
+ * @format int32
1106
+ */
1107
+ srid?: number;
1108
+ /** True if resource is observable. */
1109
+ isObservable?: boolean;
1110
+ /** Resource icon. */
1111
+ icon?: string;
1112
+ /** True if acl inherited from parent. */
1113
+ inheritAcl?: boolean;
1114
+ /** Access control list for a security object. */
1115
+ acl?: AccessControlListDc;
1116
+ }
1041
1117
  /**
1042
1118
  * Project extended configuration data contract.
1043
1119
  */
@@ -1319,13 +1395,6 @@ export interface GetBulkFilteredFeaturesCountDc {
1319
1395
  /** Filter query geometries. */
1320
1396
  geometries?: QueryGeometryDc[];
1321
1397
  }
1322
- /**
1323
- * Get resource by path request data.
1324
- */
1325
- export interface GetByPathDc {
1326
- /** Resource path. */
1327
- path: string;
1328
- }
1329
1398
  /**
1330
1399
  * Get classified attribute values data contract.
1331
1400
  */
@@ -1718,8 +1787,10 @@ export interface MoveResourceDc {
1718
1787
  targetResource?: string;
1719
1788
  /** Name of target resource. */
1720
1789
  newName?: string;
1721
- /** Rewrite target if exists. */
1790
+ /** Rewrite removes the conflicting target resource and preserves the ResourceId of the moved resource. */
1722
1791
  rewrite?: boolean;
1792
+ /** Inherit acl from parents. */
1793
+ inheritAcl?: boolean;
1723
1794
  }
1724
1795
  /**
1725
1796
  * MultiLineString geometry object definition.
@@ -1959,6 +2030,8 @@ export interface PatchResourceDc {
1959
2030
  tags?: string[];
1960
2031
  /** Resource icon. */
1961
2032
  icon?: string;
2033
+ /** True if acl inherited from parent. */
2034
+ inheritAcl?: boolean;
1962
2035
  }
1963
2036
  /**
1964
2037
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
@@ -2330,14 +2403,6 @@ export interface PythonTaskMethodConfiguration {
2330
2403
  methodName?: string;
2331
2404
  /** Gets or sets method init error. */
2332
2405
  error?: string;
2333
- /** TaskPrototypeSubType. */
2334
- type?: TaskResourceSubType;
2335
- /** Gets or sets description. */
2336
- description?: string;
2337
- /** Parameters. */
2338
- parameters?: TaskParameter[];
2339
- /** TaskReturnType. */
2340
- return?: TaskReturnType;
2341
2406
  }
2342
2407
  /**
2343
2408
  * Query geometry data contract.
@@ -3432,11 +3497,11 @@ export interface TaskConfigurationDc {
3432
3497
  /** Description. */
3433
3498
  description?: string;
3434
3499
  /** ImportMethods. */
3435
- importMethods?: string[];
3500
+ importMethod?: string;
3436
3501
  /** UserConfiguration. */
3437
- userConfiguration?: TaskMethodConfigurationDc[];
3502
+ userConfiguration?: any;
3438
3503
  /** DefaultConfiguration. */
3439
- defaultConfiguration?: TaskMethodConfigurationDc[];
3504
+ defaultConfiguration?: any;
3440
3505
  /** User ui configuration. */
3441
3506
  uiConfiguration?: any;
3442
3507
  }
@@ -3463,68 +3528,6 @@ export interface TaskDto {
3463
3528
  /** ForceExecution. */
3464
3529
  forceExecution?: boolean;
3465
3530
  }
3466
- /**
3467
- * TaskMethodConfiguration.
3468
- */
3469
- export interface TaskMethodConfigurationDc {
3470
- /** TaskPrototypeSubType. */
3471
- type?: TaskResourceSubType;
3472
- /** Gets or sets description. */
3473
- description?: string;
3474
- /** Parameters. */
3475
- parameters?: TaskParameterDc[];
3476
- /** TaskReturnType. */
3477
- return?: TaskReturnType;
3478
- }
3479
- /**
3480
- * TaskParameter.
3481
- */
3482
- export interface TaskParameter {
3483
- /** Name. */
3484
- name?: string;
3485
- /** Gets or sets description. */
3486
- description?: string;
3487
- type?: WorkerSettingsFieldType;
3488
- /** Lookup values. */
3489
- lookupValues?: Record<string, string | null>;
3490
- /** ChildrenFields. */
3491
- childrenFields?: Record<string, WorkerSettingsField[] | null>;
3492
- /** Default value. */
3493
- default?: any;
3494
- /** TaskParameterRange. */
3495
- range?: TaskParameterRange;
3496
- /** Nullable. */
3497
- nullable?: boolean;
3498
- }
3499
- /**
3500
- * TaskParameterDc.
3501
- */
3502
- export interface TaskParameterDc {
3503
- /** Name. */
3504
- name?: string;
3505
- /** Gets or sets description. */
3506
- description?: string;
3507
- type?: WorkerSettingsFieldType;
3508
- /** Lookup values. */
3509
- lookupValues?: Record<string, string | null>;
3510
- /** ChildrenFields. */
3511
- childrenFields?: Record<string, WorkerSettingsFieldDc[] | null>;
3512
- /** Default value. */
3513
- default?: any;
3514
- /** TaskParameterRange. */
3515
- range?: TaskParameterRange;
3516
- /** Nullable. */
3517
- nullable?: boolean;
3518
- }
3519
- /**
3520
- * TaskParameterRange.
3521
- */
3522
- export interface TaskParameterRange {
3523
- /** Name. */
3524
- min?: any;
3525
- /** Name. */
3526
- max?: any;
3527
- }
3528
3531
  /**
3529
3532
  * TaskPrototypeDto.
3530
3533
  */
@@ -3580,8 +3583,8 @@ export interface TaskResourceCreateDto {
3580
3583
  subType?: TaskResourceSubType;
3581
3584
  /** Task type. */
3582
3585
  taskType?: string;
3583
- /** Import methods. */
3584
- importMethods?: string[];
3586
+ /** Import method. */
3587
+ importMethod?: string;
3585
3588
  /** Name. */
3586
3589
  name?: string;
3587
3590
  /** ParentId. */
@@ -3604,22 +3607,10 @@ resource updates.
3604
3607
  */
3605
3608
  export interface TaskResourceUpdateDto {
3606
3609
  /** Configurations. */
3607
- configurations?: TaskMethodConfigurationDc[];
3610
+ configuration?: any;
3608
3611
  /** User ui configuration. */
3609
3612
  uiConfiguration?: any;
3610
3613
  }
3611
- /**
3612
- * TaskReturnType.
3613
- */
3614
- export interface TaskReturnType {
3615
- /** Gets or sets description. */
3616
- description?: string;
3617
- type?: WorkerSettingsFieldType;
3618
- /** Name. */
3619
- default?: any;
3620
- /** Name. */
3621
- nullable?: boolean;
3622
- }
3623
3614
  /**
3624
3615
  * Service info for a tile catalog layer service.
3625
3616
  */
@@ -3959,15 +3950,6 @@ export declare enum WorkerMethodType {
3959
3950
  Rest = "Rest",
3960
3951
  Both = "Both"
3961
3952
  }
3962
- export interface WorkerSettingsField {
3963
- name?: string;
3964
- alias?: string;
3965
- group?: string;
3966
- nullable?: boolean;
3967
- type?: WorkerSettingsFieldType;
3968
- lookupValues?: Record<string, string>;
3969
- childrenFields?: Record<string, WorkerSettingsField[]>;
3970
- }
3971
3953
  /**
3972
3954
  * public class WorkerSettingsFieldDc.
3973
3955
  */
@@ -4316,6 +4298,8 @@ export interface CreateFilePayload {
4316
4298
  tags?: string[];
4317
4299
  /** File icon. */
4318
4300
  icon?: string;
4301
+ /** True if acl inherited from parent. */
4302
+ InheritAcl?: boolean;
4319
4303
  }
4320
4304
  export interface CreateFile1Payload {
4321
4305
  /** File resource id. */
@@ -4349,6 +4333,8 @@ export interface CreateFile1Payload {
4349
4333
  icon?: string;
4350
4334
  /** Check if resource is system. */
4351
4335
  isSystem?: boolean;
4336
+ /** True if acl inherited from parent. */
4337
+ InheritAcl?: boolean;
4352
4338
  }
4353
4339
  export type SetPermissionsPayload = ResourceAclDc[];
4354
4340
  export type CopyResourcesPayload = CopyResourceDc[];
@@ -4670,10 +4656,6 @@ export interface GetLayersInfoParams {
4670
4656
  /** ProjectName array with layers. */
4671
4657
  projectNames?: string[];
4672
4658
  }
4673
- export interface DeleteResourcesParams {
4674
- /** Resource names. */
4675
- names?: string[];
4676
- }
4677
4659
  export type PatchQueryLayerService1Payload = Operation[];
4678
4660
  export interface GetFeatures1Params {
4679
4661
  /** Click geometry. */
@@ -4934,10 +4916,6 @@ export interface GetRasterMetaParams2 {
4934
4916
  */
4935
4917
  id: number;
4936
4918
  }
4937
- export interface DeleteResourcesParams2 {
4938
- /** Resource names. */
4939
- names?: string[];
4940
- }
4941
4919
  export type UpdateProjectV2Payload = Operation[];
4942
4920
  export interface GetProjectsInfoParams {
4943
4921
  /** Project names. */
@@ -5098,10 +5076,6 @@ export interface GetSymbolsListParams {
5098
5076
  */
5099
5077
  limit?: number;
5100
5078
  }
5101
- export interface DeleteResourcesParams4 {
5102
- /** Resource names. */
5103
- names?: string[];
5104
- }
5105
5079
  export interface GetTablesInfoParams {
5106
5080
  /** Table names. */
5107
5081
  tableNames?: string[];