@evergis/api 4.0.0-alpha.0 → 4.0.1-alpha.0
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__/LayersService.d.ts +2 -2
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/RemoteTaskManagerService.d.ts +14 -14
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +165 -5
- package/dist/api.cjs.development.js +38 -13
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +89 -14
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -6045,7 +6045,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6045
6045
|
value: function startCogCreateTask(data) {
|
|
6046
6046
|
return this.http.post("/scheduler/tasks", data, {
|
|
6047
6047
|
type: 'cogService_create'
|
|
6048
|
-
}).
|
|
6048
|
+
}).text();
|
|
6049
6049
|
}
|
|
6050
6050
|
/**
|
|
6051
6051
|
* No description
|
|
@@ -6063,7 +6063,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6063
6063
|
value: function startRasterVrtTask(data) {
|
|
6064
6064
|
return this.http.post("/scheduler/tasks", data, {
|
|
6065
6065
|
type: 'cogService_vrt'
|
|
6066
|
-
}).
|
|
6066
|
+
}).text();
|
|
6067
6067
|
}
|
|
6068
6068
|
/**
|
|
6069
6069
|
* No description
|
|
@@ -6081,7 +6081,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6081
6081
|
value: function startNetCdfTask(data) {
|
|
6082
6082
|
return this.http.post("/scheduler/tasks", data, {
|
|
6083
6083
|
type: 'cogService_netcdf'
|
|
6084
|
-
}).
|
|
6084
|
+
}).text();
|
|
6085
6085
|
}
|
|
6086
6086
|
/**
|
|
6087
6087
|
* No description
|
|
@@ -6099,7 +6099,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6099
6099
|
value: function startBufferTask(data) {
|
|
6100
6100
|
return this.http.post("/scheduler/tasks", data, {
|
|
6101
6101
|
type: 'geoService_buffer'
|
|
6102
|
-
}).
|
|
6102
|
+
}).text();
|
|
6103
6103
|
}
|
|
6104
6104
|
/**
|
|
6105
6105
|
* No description
|
|
@@ -6117,7 +6117,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6117
6117
|
value: function startCopyTableTask(data) {
|
|
6118
6118
|
return this.http.post("/scheduler/tasks", data, {
|
|
6119
6119
|
type: 'geoService_copy'
|
|
6120
|
-
}).
|
|
6120
|
+
}).text();
|
|
6121
6121
|
}
|
|
6122
6122
|
/**
|
|
6123
6123
|
* No description
|
|
@@ -6135,7 +6135,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6135
6135
|
value: function startUnionTask(data) {
|
|
6136
6136
|
return this.http.post("/scheduler/tasks", data, {
|
|
6137
6137
|
type: 'geoService_union'
|
|
6138
|
-
}).
|
|
6138
|
+
}).text();
|
|
6139
6139
|
}
|
|
6140
6140
|
/**
|
|
6141
6141
|
* No description
|
|
@@ -6153,7 +6153,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6153
6153
|
value: function startOverlayTask(data) {
|
|
6154
6154
|
return this.http.post("/scheduler/tasks", data, {
|
|
6155
6155
|
type: 'geoService_overlay'
|
|
6156
|
-
}).
|
|
6156
|
+
}).text();
|
|
6157
6157
|
}
|
|
6158
6158
|
/**
|
|
6159
6159
|
* No description
|
|
@@ -6171,7 +6171,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6171
6171
|
value: function startCopyTask(data) {
|
|
6172
6172
|
return this.http.post("/scheduler/tasks", data, {
|
|
6173
6173
|
type: 'copyTask'
|
|
6174
|
-
}).
|
|
6174
|
+
}).text();
|
|
6175
6175
|
}
|
|
6176
6176
|
/**
|
|
6177
6177
|
* No description
|
|
@@ -6189,7 +6189,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6189
6189
|
value: function startAvailableAreaTask(data) {
|
|
6190
6190
|
return this.http.post("/scheduler/tasks", data, {
|
|
6191
6191
|
type: 'availabilityArea'
|
|
6192
|
-
}).
|
|
6192
|
+
}).text();
|
|
6193
6193
|
}
|
|
6194
6194
|
/**
|
|
6195
6195
|
* No description
|
|
@@ -6207,7 +6207,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6207
6207
|
value: function startGeocodeTask(data) {
|
|
6208
6208
|
return this.http.post("/scheduler/tasks", data, {
|
|
6209
6209
|
type: 'geocodeTask'
|
|
6210
|
-
}).
|
|
6210
|
+
}).text();
|
|
6211
6211
|
}
|
|
6212
6212
|
/**
|
|
6213
6213
|
* No description
|
|
@@ -6255,7 +6255,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6255
6255
|
}, {
|
|
6256
6256
|
key: "createTaskPrototype",
|
|
6257
6257
|
value: function createTaskPrototype(data) {
|
|
6258
|
-
return this.http.post("/scheduler", data).
|
|
6258
|
+
return this.http.post("/scheduler", data).text();
|
|
6259
6259
|
}
|
|
6260
6260
|
/**
|
|
6261
6261
|
* No description
|
|
@@ -6388,7 +6388,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6388
6388
|
}, {
|
|
6389
6389
|
key: "get1",
|
|
6390
6390
|
value: function get1() {
|
|
6391
|
-
return this.http.get("/scheduler/worker").
|
|
6391
|
+
return this.http.get("/scheduler/worker").json();
|
|
6392
6392
|
}
|
|
6393
6393
|
/**
|
|
6394
6394
|
* No description
|
|
@@ -6404,7 +6404,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
6404
6404
|
}, {
|
|
6405
6405
|
key: "post",
|
|
6406
6406
|
value: function post(data) {
|
|
6407
|
-
return this.http.post("/scheduler/worker", data).
|
|
6407
|
+
return this.http.post("/scheduler/worker", data).json();
|
|
6408
6408
|
}
|
|
6409
6409
|
}]);
|
|
6410
6410
|
|
|
@@ -8902,6 +8902,81 @@ var TextVerticalAlignment;
|
|
|
8902
8902
|
TextVerticalAlignment["Bottom"] = "bottom";
|
|
8903
8903
|
TextVerticalAlignment["Middle"] = "middle";
|
|
8904
8904
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
8905
|
+
/**
|
|
8906
|
+
*
|
|
8907
|
+
|
|
8908
|
+
Task
|
|
8909
|
+
|
|
8910
|
+
Rest
|
|
8911
|
+
|
|
8912
|
+
Both
|
|
8913
|
+
*/
|
|
8914
|
+
|
|
8915
|
+
|
|
8916
|
+
var WorkerMethodType;
|
|
8917
|
+
|
|
8918
|
+
(function (WorkerMethodType) {
|
|
8919
|
+
WorkerMethodType["Task"] = "Task";
|
|
8920
|
+
WorkerMethodType["Rest"] = "Rest";
|
|
8921
|
+
WorkerMethodType["Both"] = "Both";
|
|
8922
|
+
})(WorkerMethodType || (WorkerMethodType = {}));
|
|
8923
|
+
/**
|
|
8924
|
+
*
|
|
8925
|
+
|
|
8926
|
+
Integer
|
|
8927
|
+
|
|
8928
|
+
Double
|
|
8929
|
+
|
|
8930
|
+
String
|
|
8931
|
+
|
|
8932
|
+
Extent
|
|
8933
|
+
|
|
8934
|
+
Geometry
|
|
8935
|
+
|
|
8936
|
+
IntergerArray
|
|
8937
|
+
|
|
8938
|
+
DoubleArray
|
|
8939
|
+
|
|
8940
|
+
StringArray
|
|
8941
|
+
|
|
8942
|
+
Boolean
|
|
8943
|
+
|
|
8944
|
+
SourceEql
|
|
8945
|
+
|
|
8946
|
+
Layer
|
|
8947
|
+
|
|
8948
|
+
Table
|
|
8949
|
+
|
|
8950
|
+
Folder
|
|
8951
|
+
|
|
8952
|
+
Json
|
|
8953
|
+
|
|
8954
|
+
Expression
|
|
8955
|
+
|
|
8956
|
+
Expressions
|
|
8957
|
+
*/
|
|
8958
|
+
|
|
8905
8959
|
|
|
8906
|
-
|
|
8960
|
+
var WorkerSettingsFieldType;
|
|
8961
|
+
|
|
8962
|
+
(function (WorkerSettingsFieldType) {
|
|
8963
|
+
WorkerSettingsFieldType["Integer"] = "Integer";
|
|
8964
|
+
WorkerSettingsFieldType["Double"] = "Double";
|
|
8965
|
+
WorkerSettingsFieldType["String"] = "String";
|
|
8966
|
+
WorkerSettingsFieldType["Extent"] = "Extent";
|
|
8967
|
+
WorkerSettingsFieldType["Geometry"] = "Geometry";
|
|
8968
|
+
WorkerSettingsFieldType["IntergerArray"] = "IntergerArray";
|
|
8969
|
+
WorkerSettingsFieldType["DoubleArray"] = "DoubleArray";
|
|
8970
|
+
WorkerSettingsFieldType["StringArray"] = "StringArray";
|
|
8971
|
+
WorkerSettingsFieldType["Boolean"] = "Boolean";
|
|
8972
|
+
WorkerSettingsFieldType["SourceEql"] = "SourceEql";
|
|
8973
|
+
WorkerSettingsFieldType["Layer"] = "Layer";
|
|
8974
|
+
WorkerSettingsFieldType["Table"] = "Table";
|
|
8975
|
+
WorkerSettingsFieldType["Folder"] = "Folder";
|
|
8976
|
+
WorkerSettingsFieldType["Json"] = "Json";
|
|
8977
|
+
WorkerSettingsFieldType["Expression"] = "Expression";
|
|
8978
|
+
WorkerSettingsFieldType["Expressions"] = "Expressions";
|
|
8979
|
+
})(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
|
|
8980
|
+
|
|
8981
|
+
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LineCapStyle, LineEndingType, LineJoinType, Names, Namespace, Notification, NotificationEvent, Operation, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, RemoteTaskManager, ResourceCatalog, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Styles, Tables, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
|
|
8907
8982
|
//# sourceMappingURL=api.esm.js.map
|