@evergis/api 5.0.13 → 5.0.15
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/dist/__generated__/CatalogService.d.ts +0 -12
- package/dist/__generated__/RemoteTaskManagerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +34 -251
- package/dist/api.esm.js +1 -142
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +0 -141
- package/dist/index.js.map +1 -1
- package/dist/services/ClientSettings.d.ts +4 -50
- package/package.json +2 -2
|
@@ -270,18 +270,6 @@ export declare class CatalogService extends Service {
|
|
|
270
270
|
* @response `200` OK
|
|
271
271
|
*/
|
|
272
272
|
getFile(resourceId: string): Promise<Blob>;
|
|
273
|
-
/**
|
|
274
|
-
* No description
|
|
275
|
-
*
|
|
276
|
-
* @tags Catalog
|
|
277
|
-
* @name DownloadFile
|
|
278
|
-
* @operationId CatalogController_DownloadFile
|
|
279
|
-
* @summary Download file.
|
|
280
|
-
* @request GET:/resources/download/{resourceId}
|
|
281
|
-
* @secure
|
|
282
|
-
* @response `200` OK
|
|
283
|
-
*/
|
|
284
|
-
downloadFile(resourceId: string): Promise<Blob>;
|
|
285
273
|
/**
|
|
286
274
|
* No description
|
|
287
275
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Service } from './Service';
|
|
2
|
-
import { ActiveWorkerDc,
|
|
2
|
+
import { ActiveWorkerDc, CreatedTaskResultDto, GetTaskPrototypesParams, GetTaskResourceParams, GetTasksForPrototypeParams, SearchResultsDtoTaskDto, SearchResultsDtoTaskPrototypeDto, SubTasksDto, TaskConfigurationDc, TaskPrototypeDto, TaskResourceCreateDto, TaskResourceUpdateDto, UpdateTaskPrototypeDto, WorkerStartMethodDto } from './data-contracts';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
5
5
|
* @version 1.5.1.0
|
|
@@ -149,7 +149,7 @@ export declare class RemoteTaskManagerService extends Service {
|
|
|
149
149
|
* @secure
|
|
150
150
|
* @response `200` OK
|
|
151
151
|
*/
|
|
152
|
-
updatePythonTaskResource(id: string, data:
|
|
152
|
+
updatePythonTaskResource(id: string, data: TaskResourceUpdateDto): Promise<void>;
|
|
153
153
|
/**
|
|
154
154
|
* No description
|
|
155
155
|
*
|
|
@@ -655,24 +655,6 @@ export interface BaseResourceInfoDc {
|
|
|
655
655
|
*/
|
|
656
656
|
name: string;
|
|
657
657
|
}
|
|
658
|
-
/**
|
|
659
|
-
* Represents the base class for updating task resource configurations, providing essential properties for task
|
|
660
|
-
resource updates.
|
|
661
|
-
*/
|
|
662
|
-
export interface BaseTaskResourceUpdateDto {
|
|
663
|
-
/**
|
|
664
|
-
* Specifies the types of task resources that can be updated within the system.
|
|
665
|
-
*
|
|
666
|
-
* SpTask
|
|
667
|
-
*
|
|
668
|
-
* PythonTask
|
|
669
|
-
*/
|
|
670
|
-
type?: TaskResourceUpdateType;
|
|
671
|
-
/** Configurations. */
|
|
672
|
-
configurations?: TaskMethodConfiguration[];
|
|
673
|
-
/** User ui configuration. */
|
|
674
|
-
uiConfiguration?: any;
|
|
675
|
-
}
|
|
676
658
|
/**
|
|
677
659
|
* Provides resources with their acl.
|
|
678
660
|
*/
|
|
@@ -1084,86 +1066,6 @@ export interface ConfigDc {
|
|
|
1084
1066
|
/**
|
|
1085
1067
|
*
|
|
1086
1068
|
|
|
1087
|
-
Unknown
|
|
1088
|
-
|
|
1089
|
-
SerializeError
|
|
1090
|
-
|
|
1091
|
-
InvalidDataService
|
|
1092
|
-
|
|
1093
|
-
InvalidConfiguration
|
|
1094
|
-
|
|
1095
|
-
InvalidDataServiceName
|
|
1096
|
-
|
|
1097
|
-
InvalidTableName
|
|
1098
|
-
|
|
1099
|
-
InvalidLayerName
|
|
1100
|
-
|
|
1101
|
-
ResourceNotFound
|
|
1102
|
-
|
|
1103
|
-
InvalidCondition
|
|
1104
|
-
|
|
1105
|
-
InvalidAttributes
|
|
1106
|
-
|
|
1107
|
-
InvalidIdAttribute
|
|
1108
|
-
|
|
1109
|
-
InvalidGeometryAttribute
|
|
1110
|
-
|
|
1111
|
-
InvalidGeometryAttributeType
|
|
1112
|
-
|
|
1113
|
-
InvalidColumnName
|
|
1114
|
-
|
|
1115
|
-
InvalidIdColumnSettings
|
|
1116
|
-
|
|
1117
|
-
ColumnNotExistsInTable
|
|
1118
|
-
|
|
1119
|
-
InvalidStyle
|
|
1120
|
-
|
|
1121
|
-
InvalidLayerType
|
|
1122
|
-
|
|
1123
|
-
ColumnLoadingError
|
|
1124
|
-
|
|
1125
|
-
InvalidAttributeFormat
|
|
1126
|
-
|
|
1127
|
-
DataSourceNotFound
|
|
1128
|
-
|
|
1129
|
-
DuplicateColumns
|
|
1130
|
-
|
|
1131
|
-
DuplicateAttributes
|
|
1132
|
-
|
|
1133
|
-
TableWithoutColumns
|
|
1134
|
-
|
|
1135
|
-
InvalidTableReferenceConfiguration
|
|
1136
|
-
*/
|
|
1137
|
-
export declare enum ConfigurationErrorEnum {
|
|
1138
|
-
Unknown = "Unknown",
|
|
1139
|
-
SerializeError = "SerializeError",
|
|
1140
|
-
InvalidDataService = "InvalidDataService",
|
|
1141
|
-
InvalidConfiguration = "InvalidConfiguration",
|
|
1142
|
-
InvalidDataServiceName = "InvalidDataServiceName",
|
|
1143
|
-
InvalidTableName = "InvalidTableName",
|
|
1144
|
-
InvalidLayerName = "InvalidLayerName",
|
|
1145
|
-
ResourceNotFound = "ResourceNotFound",
|
|
1146
|
-
InvalidCondition = "InvalidCondition",
|
|
1147
|
-
InvalidAttributes = "InvalidAttributes",
|
|
1148
|
-
InvalidIdAttribute = "InvalidIdAttribute",
|
|
1149
|
-
InvalidGeometryAttribute = "InvalidGeometryAttribute",
|
|
1150
|
-
InvalidGeometryAttributeType = "InvalidGeometryAttributeType",
|
|
1151
|
-
InvalidColumnName = "InvalidColumnName",
|
|
1152
|
-
InvalidIdColumnSettings = "InvalidIdColumnSettings",
|
|
1153
|
-
ColumnNotExistsInTable = "ColumnNotExistsInTable",
|
|
1154
|
-
InvalidStyle = "InvalidStyle",
|
|
1155
|
-
InvalidLayerType = "InvalidLayerType",
|
|
1156
|
-
ColumnLoadingError = "ColumnLoadingError",
|
|
1157
|
-
InvalidAttributeFormat = "InvalidAttributeFormat",
|
|
1158
|
-
DataSourceNotFound = "DataSourceNotFound",
|
|
1159
|
-
DuplicateColumns = "DuplicateColumns",
|
|
1160
|
-
DuplicateAttributes = "DuplicateAttributes",
|
|
1161
|
-
TableWithoutColumns = "TableWithoutColumns",
|
|
1162
|
-
InvalidTableReferenceConfiguration = "InvalidTableReferenceConfiguration"
|
|
1163
|
-
}
|
|
1164
|
-
/**
|
|
1165
|
-
*
|
|
1166
|
-
|
|
1167
1069
|
Skip
|
|
1168
1070
|
|
|
1169
1071
|
Overwrite
|
|
@@ -1799,38 +1701,6 @@ export declare enum ErrorDetailsType {
|
|
|
1799
1701
|
BadRequest = "BadRequest",
|
|
1800
1702
|
DuplicateContent = "DuplicateContent"
|
|
1801
1703
|
}
|
|
1802
|
-
export declare enum ErrorType {
|
|
1803
|
-
NotSpecified = "NotSpecified",
|
|
1804
|
-
LimitError = "LimitError",
|
|
1805
|
-
ValidationError = "ValidationError",
|
|
1806
|
-
JwtExpired = "JwtExpired",
|
|
1807
|
-
TokenInvalid = "TokenInvalid",
|
|
1808
|
-
RefreshTokenExpired = "RefreshTokenExpired",
|
|
1809
|
-
RefreshTokenInvalid = "RefreshTokenInvalid",
|
|
1810
|
-
CreateUserFailed = "CreateUserFailed",
|
|
1811
|
-
SetUserPasswordFailed = "SetUserPasswordFailed",
|
|
1812
|
-
SetUserRoleFailed = "SetUserRoleFailed",
|
|
1813
|
-
UpdateUserFailed = "UpdateUserFailed",
|
|
1814
|
-
RemoveUserFailed = "RemoveUserFailed",
|
|
1815
|
-
CreateRoleFailed = "CreateRoleFailed",
|
|
1816
|
-
UpdateRoleFailed = "UpdateRoleFailed",
|
|
1817
|
-
RemoveUserRoleFailed = "RemoveUserRoleFailed",
|
|
1818
|
-
ChangeActiveStateFailed = "ChangeActiveStateFailed",
|
|
1819
|
-
RemoveRoleFailed = "RemoveRoleFailed",
|
|
1820
|
-
UserNotFound = "UserNotFound",
|
|
1821
|
-
RoleNotFound = "RoleNotFound",
|
|
1822
|
-
EmailNotConfirmed = "EmailNotConfirmed",
|
|
1823
|
-
DuplicateEmailError = "DuplicateEmailError",
|
|
1824
|
-
InvalidPassword = "InvalidPassword",
|
|
1825
|
-
RoleExists = "RoleExists",
|
|
1826
|
-
UserExists = "UserExists",
|
|
1827
|
-
UserLockedError = "UserLockedError",
|
|
1828
|
-
InvalidEmail = "InvalidEmail",
|
|
1829
|
-
InvalidUsername = "InvalidUsername",
|
|
1830
|
-
Unauthorized = "Unauthorized",
|
|
1831
|
-
EmailNotChanged = "EmailNotChanged",
|
|
1832
|
-
EmailNotSet = "EmailNotSet"
|
|
1833
|
-
}
|
|
1834
1704
|
/**
|
|
1835
1705
|
* Result of the eql expression validation.
|
|
1836
1706
|
*/
|
|
@@ -1986,60 +1856,8 @@ export interface ExternalLayerInfoDc {
|
|
|
1986
1856
|
* The `FailedServiceInfoDc` describes Everpoint.Sdk.Layers.Abstractions.Models.FailedServiceInfo data contact.
|
|
1987
1857
|
*/
|
|
1988
1858
|
export type FailedServiceInfoDc = BaseResourceInfoDc & {
|
|
1989
|
-
/**
|
|
1990
|
-
|
|
1991
|
-
*
|
|
1992
|
-
* Unknown
|
|
1993
|
-
*
|
|
1994
|
-
* SerializeError
|
|
1995
|
-
*
|
|
1996
|
-
* InvalidDataService
|
|
1997
|
-
*
|
|
1998
|
-
* InvalidConfiguration
|
|
1999
|
-
*
|
|
2000
|
-
* InvalidDataServiceName
|
|
2001
|
-
*
|
|
2002
|
-
* InvalidTableName
|
|
2003
|
-
*
|
|
2004
|
-
* InvalidLayerName
|
|
2005
|
-
*
|
|
2006
|
-
* ResourceNotFound
|
|
2007
|
-
*
|
|
2008
|
-
* InvalidCondition
|
|
2009
|
-
*
|
|
2010
|
-
* InvalidAttributes
|
|
2011
|
-
*
|
|
2012
|
-
* InvalidIdAttribute
|
|
2013
|
-
*
|
|
2014
|
-
* InvalidGeometryAttribute
|
|
2015
|
-
*
|
|
2016
|
-
* InvalidGeometryAttributeType
|
|
2017
|
-
*
|
|
2018
|
-
* InvalidColumnName
|
|
2019
|
-
*
|
|
2020
|
-
* InvalidIdColumnSettings
|
|
2021
|
-
*
|
|
2022
|
-
* ColumnNotExistsInTable
|
|
2023
|
-
*
|
|
2024
|
-
* InvalidStyle
|
|
2025
|
-
*
|
|
2026
|
-
* InvalidLayerType
|
|
2027
|
-
*
|
|
2028
|
-
* ColumnLoadingError
|
|
2029
|
-
*
|
|
2030
|
-
* InvalidAttributeFormat
|
|
2031
|
-
*
|
|
2032
|
-
* DataSourceNotFound
|
|
2033
|
-
*
|
|
2034
|
-
* DuplicateColumns
|
|
2035
|
-
*
|
|
2036
|
-
* DuplicateAttributes
|
|
2037
|
-
*
|
|
2038
|
-
* TableWithoutColumns
|
|
2039
|
-
*
|
|
2040
|
-
* InvalidTableReferenceConfiguration
|
|
2041
|
-
*/
|
|
2042
|
-
errorType?: ConfigurationErrorEnum;
|
|
1859
|
+
/** Type of error that occurred during initialization. */
|
|
1860
|
+
errorType?: string | null;
|
|
2043
1861
|
/** Type of error that occurred during initialization. */
|
|
2044
1862
|
error?: string | null;
|
|
2045
1863
|
};
|
|
@@ -2722,11 +2540,6 @@ export type LinearServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
2722
2540
|
attributesConfiguration: AttributesConfigurationDc;
|
|
2723
2541
|
/** Condition to filter returned features. */
|
|
2724
2542
|
condition?: string | null;
|
|
2725
|
-
/**
|
|
2726
|
-
* Maximum number of features, that the service can return in a single request.
|
|
2727
|
-
* @format int32
|
|
2728
|
-
*/
|
|
2729
|
-
featuresLimit?: number;
|
|
2730
2543
|
/** Client style data storage. Storage isn't used by server. */
|
|
2731
2544
|
clientStyle?: any;
|
|
2732
2545
|
};
|
|
@@ -3612,11 +3425,6 @@ export type PostgresTileCatalogServiceConfigurationDc = ServiceConfigurationBase
|
|
|
3612
3425
|
clientStyle?: any;
|
|
3613
3426
|
/** Condition to filter returned features. */
|
|
3614
3427
|
condition?: string | null;
|
|
3615
|
-
/**
|
|
3616
|
-
* Maximum number of features, that the service can return in a single request.
|
|
3617
|
-
* @format int32
|
|
3618
|
-
*/
|
|
3619
|
-
featuresLimit?: number;
|
|
3620
3428
|
/**
|
|
3621
3429
|
* Min lod level.
|
|
3622
3430
|
* @format int32
|
|
@@ -3935,6 +3743,14 @@ export interface PythonTaskMethodConfiguration {
|
|
|
3935
3743
|
methodName?: string;
|
|
3936
3744
|
/** Gets or sets method init error. */
|
|
3937
3745
|
error?: string;
|
|
3746
|
+
/**
|
|
3747
|
+
* TaskPrototypeSubType.
|
|
3748
|
+
*
|
|
3749
|
+
* SpTask
|
|
3750
|
+
*
|
|
3751
|
+
* PythonTask
|
|
3752
|
+
*/
|
|
3753
|
+
type?: TaskResourceSubType;
|
|
3938
3754
|
/** Gets or sets description. */
|
|
3939
3755
|
description?: string;
|
|
3940
3756
|
/** Parameters. */
|
|
@@ -3942,15 +3758,6 @@ export interface PythonTaskMethodConfiguration {
|
|
|
3942
3758
|
/** TaskReturnType. */
|
|
3943
3759
|
return?: TaskReturnType;
|
|
3944
3760
|
}
|
|
3945
|
-
/**
|
|
3946
|
-
* PythonTaskMethodConfigurationDc.
|
|
3947
|
-
*/
|
|
3948
|
-
export type PythonTaskMethodConfigurationDc = TaskMethodConfigurationDc & {
|
|
3949
|
-
/** Gets or sets script file name. */
|
|
3950
|
-
fileName?: string | null;
|
|
3951
|
-
/** Gets or sets method. */
|
|
3952
|
-
method?: string | null;
|
|
3953
|
-
};
|
|
3954
3761
|
/**
|
|
3955
3762
|
* Query geometry data contract.
|
|
3956
3763
|
*/
|
|
@@ -4086,11 +3893,6 @@ export type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
4086
3893
|
clientStyle?: any;
|
|
4087
3894
|
/** Condition to filter returned features. */
|
|
4088
3895
|
condition?: string | null;
|
|
4089
|
-
/**
|
|
4090
|
-
* Maximum number of features, that the service can return in a single request.
|
|
4091
|
-
* @format int32
|
|
4092
|
-
*/
|
|
4093
|
-
featuresLimit?: number;
|
|
4094
3896
|
/** Simplify configuration information. */
|
|
4095
3897
|
simplify?: SimplifyInfoDc;
|
|
4096
3898
|
/** Tile geometry clipping configuration data contract. */
|
|
@@ -4800,11 +4602,6 @@ export type RouteServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
4800
4602
|
clientStyle?: any;
|
|
4801
4603
|
/** Condition to filter returned features. */
|
|
4802
4604
|
condition?: string | null;
|
|
4803
|
-
/**
|
|
4804
|
-
* Maximum number of features, that the service can return in a single request.
|
|
4805
|
-
* @format int32
|
|
4806
|
-
*/
|
|
4807
|
-
featuresLimit?: number;
|
|
4808
4605
|
};
|
|
4809
4606
|
/**
|
|
4810
4607
|
* RouteTableConfigurationDc.
|
|
@@ -5168,13 +4965,6 @@ export interface SocialNetworkInfoDc {
|
|
|
5168
4965
|
/** External provider name. */
|
|
5169
4966
|
providerName?: string;
|
|
5170
4967
|
}
|
|
5171
|
-
/**
|
|
5172
|
-
* SpTaskMethodConfiguration.
|
|
5173
|
-
*/
|
|
5174
|
-
export type SpTaskMethodConfigurationDc = TaskMethodConfigurationDc & {
|
|
5175
|
-
/** Gets or sets method. */
|
|
5176
|
-
method?: string | null;
|
|
5177
|
-
};
|
|
5178
4968
|
/**
|
|
5179
4969
|
* Postgres connection data source connection.
|
|
5180
4970
|
*/
|
|
@@ -5525,11 +5315,6 @@ export declare enum TableConfigurationType {
|
|
|
5525
5315
|
export interface TableInfoDc {
|
|
5526
5316
|
/** System table name. */
|
|
5527
5317
|
systemName?: string;
|
|
5528
|
-
/**
|
|
5529
|
-
* Row count.
|
|
5530
|
-
* @format int64
|
|
5531
|
-
*/
|
|
5532
|
-
rowCount?: number;
|
|
5533
5318
|
/** The geometry of the table. */
|
|
5534
5319
|
geometries?: OgcGeometryType[];
|
|
5535
5320
|
/** The type of the table. */
|
|
@@ -5621,9 +5406,9 @@ export interface TaskConfigurationDc {
|
|
|
5621
5406
|
/** ImportMethods. */
|
|
5622
5407
|
importMethods?: string[];
|
|
5623
5408
|
/** UserConfiguration. */
|
|
5624
|
-
userConfiguration?:
|
|
5409
|
+
userConfiguration?: TaskMethodConfigurationDc[];
|
|
5625
5410
|
/** DefaultConfiguration. */
|
|
5626
|
-
defaultConfiguration?:
|
|
5411
|
+
defaultConfiguration?: TaskMethodConfigurationDc[];
|
|
5627
5412
|
/** User ui configuration. */
|
|
5628
5413
|
uiConfiguration?: any;
|
|
5629
5414
|
}
|
|
@@ -5671,21 +5456,18 @@ export interface TaskDto {
|
|
|
5671
5456
|
/** ForceExecution. */
|
|
5672
5457
|
forceExecution?: boolean;
|
|
5673
5458
|
}
|
|
5674
|
-
/**
|
|
5675
|
-
* TaskMethodConfiguration.
|
|
5676
|
-
*/
|
|
5677
|
-
export interface TaskMethodConfiguration {
|
|
5678
|
-
/** Gets or sets description. */
|
|
5679
|
-
description?: string;
|
|
5680
|
-
/** Parameters. */
|
|
5681
|
-
parameters?: TaskParameter[];
|
|
5682
|
-
/** TaskReturnType. */
|
|
5683
|
-
return?: TaskReturnType;
|
|
5684
|
-
}
|
|
5685
5459
|
/**
|
|
5686
5460
|
* TaskMethodConfiguration.
|
|
5687
5461
|
*/
|
|
5688
5462
|
export interface TaskMethodConfigurationDc {
|
|
5463
|
+
/**
|
|
5464
|
+
* TaskPrototypeSubType.
|
|
5465
|
+
*
|
|
5466
|
+
* SpTask
|
|
5467
|
+
*
|
|
5468
|
+
* PythonTask
|
|
5469
|
+
*/
|
|
5470
|
+
type?: TaskResourceSubType;
|
|
5689
5471
|
/** Gets or sets description. */
|
|
5690
5472
|
description?: string;
|
|
5691
5473
|
/** Parameters. */
|
|
@@ -5819,7 +5601,7 @@ export interface TaskParameterDc {
|
|
|
5819
5601
|
/** Lookup values. */
|
|
5820
5602
|
lookupValues?: Record<string, string | null>;
|
|
5821
5603
|
/** ChildrenFields. */
|
|
5822
|
-
childrenFields?: Record<string,
|
|
5604
|
+
childrenFields?: Record<string, WorkerSettingsFieldDc[] | null>;
|
|
5823
5605
|
/** Default value. */
|
|
5824
5606
|
default?: any;
|
|
5825
5607
|
/** TaskParameterRange. */
|
|
@@ -5941,15 +5723,14 @@ export declare enum TaskResourceSubType {
|
|
|
5941
5723
|
PythonTask = "PythonTask"
|
|
5942
5724
|
}
|
|
5943
5725
|
/**
|
|
5944
|
-
*
|
|
5945
|
-
|
|
5946
|
-
SpTask
|
|
5947
|
-
|
|
5948
|
-
PythonTask
|
|
5726
|
+
* Represents the base class for updating task resource configurations, providing essential properties for task
|
|
5727
|
+
resource updates.
|
|
5949
5728
|
*/
|
|
5950
|
-
export
|
|
5951
|
-
|
|
5952
|
-
|
|
5729
|
+
export interface TaskResourceUpdateDto {
|
|
5730
|
+
/** Configurations. */
|
|
5731
|
+
configurations?: TaskMethodConfigurationDc[];
|
|
5732
|
+
/** User ui configuration. */
|
|
5733
|
+
uiConfiguration?: any;
|
|
5953
5734
|
}
|
|
5954
5735
|
/**
|
|
5955
5736
|
* TaskReturnType.
|
|
@@ -6470,7 +6251,7 @@ export interface WorkerSettingsField {
|
|
|
6470
6251
|
childrenFields?: Record<string, WorkerSettingsField[]>;
|
|
6471
6252
|
}
|
|
6472
6253
|
/**
|
|
6473
|
-
*
|
|
6254
|
+
* public class WorkerSettingsFieldDc.
|
|
6474
6255
|
*/
|
|
6475
6256
|
export interface WorkerSettingsFieldDc {
|
|
6476
6257
|
/** Name. */
|
|
@@ -6479,6 +6260,8 @@ export interface WorkerSettingsFieldDc {
|
|
|
6479
6260
|
alias?: string;
|
|
6480
6261
|
/** Group. */
|
|
6481
6262
|
group?: string;
|
|
6263
|
+
/** Nullable. */
|
|
6264
|
+
nullable?: boolean;
|
|
6482
6265
|
/**
|
|
6483
6266
|
*
|
|
6484
6267
|
*
|
|
@@ -6527,10 +6310,10 @@ export interface WorkerSettingsFieldDc {
|
|
|
6527
6310
|
* AttributeArray
|
|
6528
6311
|
*/
|
|
6529
6312
|
type?: WorkerSettingsFieldType;
|
|
6530
|
-
/**
|
|
6313
|
+
/** LookupValues. */
|
|
6531
6314
|
lookupValues?: Record<string, string | null>;
|
|
6532
|
-
/**
|
|
6533
|
-
|
|
6315
|
+
/** ChildrenFields. */
|
|
6316
|
+
childrenFields?: Record<string, WorkerSettingsFieldDc[] | null>;
|
|
6534
6317
|
}
|
|
6535
6318
|
/**
|
|
6536
6319
|
*
|
package/dist/api.esm.js
CHANGED
|
@@ -1260,7 +1260,6 @@ class ClientSettingsService extends Service {
|
|
|
1260
1260
|
|
|
1261
1261
|
class ClientSettings extends ClientSettingsService {
|
|
1262
1262
|
settings = {
|
|
1263
|
-
modules: [],
|
|
1264
1263
|
connection: {
|
|
1265
1264
|
url: "",
|
|
1266
1265
|
},
|
|
@@ -1898,20 +1897,6 @@ class CatalogService extends Service {
|
|
|
1898
1897
|
getFile(resourceId) {
|
|
1899
1898
|
return this.http.get(`/resources/file/${resourceId}`).blob();
|
|
1900
1899
|
}
|
|
1901
|
-
/**
|
|
1902
|
-
* No description
|
|
1903
|
-
*
|
|
1904
|
-
* @tags Catalog
|
|
1905
|
-
* @name DownloadFile
|
|
1906
|
-
* @operationId CatalogController_DownloadFile
|
|
1907
|
-
* @summary Download file.
|
|
1908
|
-
* @request GET:/resources/download/{resourceId}
|
|
1909
|
-
* @secure
|
|
1910
|
-
* @response `200` OK
|
|
1911
|
-
*/
|
|
1912
|
-
downloadFile(resourceId) {
|
|
1913
|
-
return this.http.get(`/resources/download/${resourceId}`).blob();
|
|
1914
|
-
}
|
|
1915
1900
|
/**
|
|
1916
1901
|
* No description
|
|
1917
1902
|
*
|
|
@@ -3294,87 +3279,6 @@ var ClassifyAttributeType;
|
|
|
3294
3279
|
/**
|
|
3295
3280
|
*
|
|
3296
3281
|
|
|
3297
|
-
Unknown
|
|
3298
|
-
|
|
3299
|
-
SerializeError
|
|
3300
|
-
|
|
3301
|
-
InvalidDataService
|
|
3302
|
-
|
|
3303
|
-
InvalidConfiguration
|
|
3304
|
-
|
|
3305
|
-
InvalidDataServiceName
|
|
3306
|
-
|
|
3307
|
-
InvalidTableName
|
|
3308
|
-
|
|
3309
|
-
InvalidLayerName
|
|
3310
|
-
|
|
3311
|
-
ResourceNotFound
|
|
3312
|
-
|
|
3313
|
-
InvalidCondition
|
|
3314
|
-
|
|
3315
|
-
InvalidAttributes
|
|
3316
|
-
|
|
3317
|
-
InvalidIdAttribute
|
|
3318
|
-
|
|
3319
|
-
InvalidGeometryAttribute
|
|
3320
|
-
|
|
3321
|
-
InvalidGeometryAttributeType
|
|
3322
|
-
|
|
3323
|
-
InvalidColumnName
|
|
3324
|
-
|
|
3325
|
-
InvalidIdColumnSettings
|
|
3326
|
-
|
|
3327
|
-
ColumnNotExistsInTable
|
|
3328
|
-
|
|
3329
|
-
InvalidStyle
|
|
3330
|
-
|
|
3331
|
-
InvalidLayerType
|
|
3332
|
-
|
|
3333
|
-
ColumnLoadingError
|
|
3334
|
-
|
|
3335
|
-
InvalidAttributeFormat
|
|
3336
|
-
|
|
3337
|
-
DataSourceNotFound
|
|
3338
|
-
|
|
3339
|
-
DuplicateColumns
|
|
3340
|
-
|
|
3341
|
-
DuplicateAttributes
|
|
3342
|
-
|
|
3343
|
-
TableWithoutColumns
|
|
3344
|
-
|
|
3345
|
-
InvalidTableReferenceConfiguration
|
|
3346
|
-
*/
|
|
3347
|
-
var ConfigurationErrorEnum;
|
|
3348
|
-
(function (ConfigurationErrorEnum) {
|
|
3349
|
-
ConfigurationErrorEnum["Unknown"] = "Unknown";
|
|
3350
|
-
ConfigurationErrorEnum["SerializeError"] = "SerializeError";
|
|
3351
|
-
ConfigurationErrorEnum["InvalidDataService"] = "InvalidDataService";
|
|
3352
|
-
ConfigurationErrorEnum["InvalidConfiguration"] = "InvalidConfiguration";
|
|
3353
|
-
ConfigurationErrorEnum["InvalidDataServiceName"] = "InvalidDataServiceName";
|
|
3354
|
-
ConfigurationErrorEnum["InvalidTableName"] = "InvalidTableName";
|
|
3355
|
-
ConfigurationErrorEnum["InvalidLayerName"] = "InvalidLayerName";
|
|
3356
|
-
ConfigurationErrorEnum["ResourceNotFound"] = "ResourceNotFound";
|
|
3357
|
-
ConfigurationErrorEnum["InvalidCondition"] = "InvalidCondition";
|
|
3358
|
-
ConfigurationErrorEnum["InvalidAttributes"] = "InvalidAttributes";
|
|
3359
|
-
ConfigurationErrorEnum["InvalidIdAttribute"] = "InvalidIdAttribute";
|
|
3360
|
-
ConfigurationErrorEnum["InvalidGeometryAttribute"] = "InvalidGeometryAttribute";
|
|
3361
|
-
ConfigurationErrorEnum["InvalidGeometryAttributeType"] = "InvalidGeometryAttributeType";
|
|
3362
|
-
ConfigurationErrorEnum["InvalidColumnName"] = "InvalidColumnName";
|
|
3363
|
-
ConfigurationErrorEnum["InvalidIdColumnSettings"] = "InvalidIdColumnSettings";
|
|
3364
|
-
ConfigurationErrorEnum["ColumnNotExistsInTable"] = "ColumnNotExistsInTable";
|
|
3365
|
-
ConfigurationErrorEnum["InvalidStyle"] = "InvalidStyle";
|
|
3366
|
-
ConfigurationErrorEnum["InvalidLayerType"] = "InvalidLayerType";
|
|
3367
|
-
ConfigurationErrorEnum["ColumnLoadingError"] = "ColumnLoadingError";
|
|
3368
|
-
ConfigurationErrorEnum["InvalidAttributeFormat"] = "InvalidAttributeFormat";
|
|
3369
|
-
ConfigurationErrorEnum["DataSourceNotFound"] = "DataSourceNotFound";
|
|
3370
|
-
ConfigurationErrorEnum["DuplicateColumns"] = "DuplicateColumns";
|
|
3371
|
-
ConfigurationErrorEnum["DuplicateAttributes"] = "DuplicateAttributes";
|
|
3372
|
-
ConfigurationErrorEnum["TableWithoutColumns"] = "TableWithoutColumns";
|
|
3373
|
-
ConfigurationErrorEnum["InvalidTableReferenceConfiguration"] = "InvalidTableReferenceConfiguration";
|
|
3374
|
-
})(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
|
|
3375
|
-
/**
|
|
3376
|
-
*
|
|
3377
|
-
|
|
3378
3282
|
Skip
|
|
3379
3283
|
|
|
3380
3284
|
Overwrite
|
|
@@ -3456,39 +3360,6 @@ var ErrorDetailsType;
|
|
|
3456
3360
|
ErrorDetailsType["BadRequest"] = "BadRequest";
|
|
3457
3361
|
ErrorDetailsType["DuplicateContent"] = "DuplicateContent";
|
|
3458
3362
|
})(ErrorDetailsType || (ErrorDetailsType = {}));
|
|
3459
|
-
var ErrorType;
|
|
3460
|
-
(function (ErrorType) {
|
|
3461
|
-
ErrorType["NotSpecified"] = "NotSpecified";
|
|
3462
|
-
ErrorType["LimitError"] = "LimitError";
|
|
3463
|
-
ErrorType["ValidationError"] = "ValidationError";
|
|
3464
|
-
ErrorType["JwtExpired"] = "JwtExpired";
|
|
3465
|
-
ErrorType["TokenInvalid"] = "TokenInvalid";
|
|
3466
|
-
ErrorType["RefreshTokenExpired"] = "RefreshTokenExpired";
|
|
3467
|
-
ErrorType["RefreshTokenInvalid"] = "RefreshTokenInvalid";
|
|
3468
|
-
ErrorType["CreateUserFailed"] = "CreateUserFailed";
|
|
3469
|
-
ErrorType["SetUserPasswordFailed"] = "SetUserPasswordFailed";
|
|
3470
|
-
ErrorType["SetUserRoleFailed"] = "SetUserRoleFailed";
|
|
3471
|
-
ErrorType["UpdateUserFailed"] = "UpdateUserFailed";
|
|
3472
|
-
ErrorType["RemoveUserFailed"] = "RemoveUserFailed";
|
|
3473
|
-
ErrorType["CreateRoleFailed"] = "CreateRoleFailed";
|
|
3474
|
-
ErrorType["UpdateRoleFailed"] = "UpdateRoleFailed";
|
|
3475
|
-
ErrorType["RemoveUserRoleFailed"] = "RemoveUserRoleFailed";
|
|
3476
|
-
ErrorType["ChangeActiveStateFailed"] = "ChangeActiveStateFailed";
|
|
3477
|
-
ErrorType["RemoveRoleFailed"] = "RemoveRoleFailed";
|
|
3478
|
-
ErrorType["UserNotFound"] = "UserNotFound";
|
|
3479
|
-
ErrorType["RoleNotFound"] = "RoleNotFound";
|
|
3480
|
-
ErrorType["EmailNotConfirmed"] = "EmailNotConfirmed";
|
|
3481
|
-
ErrorType["DuplicateEmailError"] = "DuplicateEmailError";
|
|
3482
|
-
ErrorType["InvalidPassword"] = "InvalidPassword";
|
|
3483
|
-
ErrorType["RoleExists"] = "RoleExists";
|
|
3484
|
-
ErrorType["UserExists"] = "UserExists";
|
|
3485
|
-
ErrorType["UserLockedError"] = "UserLockedError";
|
|
3486
|
-
ErrorType["InvalidEmail"] = "InvalidEmail";
|
|
3487
|
-
ErrorType["InvalidUsername"] = "InvalidUsername";
|
|
3488
|
-
ErrorType["Unauthorized"] = "Unauthorized";
|
|
3489
|
-
ErrorType["EmailNotChanged"] = "EmailNotChanged";
|
|
3490
|
-
ErrorType["EmailNotSet"] = "EmailNotSet";
|
|
3491
|
-
})(ErrorType || (ErrorType = {}));
|
|
3492
3363
|
/**
|
|
3493
3364
|
* Specifies the available types of layer services that can be used within the application.
|
|
3494
3365
|
|
|
@@ -3847,18 +3718,6 @@ var TaskResourceSubType;
|
|
|
3847
3718
|
TaskResourceSubType["PythonTask"] = "PythonTask";
|
|
3848
3719
|
})(TaskResourceSubType || (TaskResourceSubType = {}));
|
|
3849
3720
|
/**
|
|
3850
|
-
* Specifies the types of task resources that can be updated within the system.
|
|
3851
|
-
|
|
3852
|
-
SpTask
|
|
3853
|
-
|
|
3854
|
-
PythonTask
|
|
3855
|
-
*/
|
|
3856
|
-
var TaskResourceUpdateType;
|
|
3857
|
-
(function (TaskResourceUpdateType) {
|
|
3858
|
-
TaskResourceUpdateType["SpTask"] = "SpTask";
|
|
3859
|
-
TaskResourceUpdateType["PythonTask"] = "PythonTask";
|
|
3860
|
-
})(TaskResourceUpdateType || (TaskResourceUpdateType = {}));
|
|
3861
|
-
/**
|
|
3862
3721
|
*
|
|
3863
3722
|
|
|
3864
3723
|
Task
|
|
@@ -5893,5 +5752,5 @@ class VectorTileService extends Service {
|
|
|
5893
5752
|
class VectorTiles extends VectorTileService {
|
|
5894
5753
|
}
|
|
5895
5754
|
|
|
5896
|
-
export { AccessMode, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeConfigurationType, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings,
|
|
5755
|
+
export { AccessMode, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeConfigurationType, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConflictResolutionStrategy, ConnectionStatus, DataSourceConnectionType, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, External, Feedback, FileUpload, Filters, GEOCODE_PROVIDER, Geocode, HttpClient, Import, LayerServiceType, Layers, Names, Notification, NotificationEvent, OgcGeometryType, PbfSchema, Permissions, PolicyType, PortalSettings, Projects, RemoteTaskManager, RemoteTaskStatus, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, TableConfigurationType, Tables, TaskResourceSubType, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique, useToken };
|
|
5897
5756
|
//# sourceMappingURL=api.esm.js.map
|