@evergis/api 3.0.132 → 3.0.134
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__/GeneralService.d.ts +6 -17
- package/dist/__generated__/ImportService.d.ts +12 -1
- package/dist/__generated__/LayersService.d.ts +11 -0
- package/dist/__generated__/ProjectsService.d.ts +13 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +13 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +65 -19
- package/dist/api.cjs.development.js +71 -23
- 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 +71 -23
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CancelTestParams, FunctionInfoDc, ServerInfoDc } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -21,24 +21,13 @@ export declare class GeneralService extends Service {
|
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
23
23
|
* @tags General
|
|
24
|
-
* @name
|
|
25
|
-
* @operationId
|
|
26
|
-
* @summary
|
|
27
|
-
* @request GET:/
|
|
24
|
+
* @name CancelTest
|
|
25
|
+
* @operationId GeneralController_CancelTest
|
|
26
|
+
* @summary Test method for CancellationToken.
|
|
27
|
+
* @request GET:/cancel
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
|
|
31
|
-
/**
|
|
32
|
-
* No description
|
|
33
|
-
*
|
|
34
|
-
* @tags General
|
|
35
|
-
* @name Logo
|
|
36
|
-
* @operationId GeneralController_Logo
|
|
37
|
-
* @summary Returns logo.
|
|
38
|
-
* @request GET:/logo.png
|
|
39
|
-
* @response `200` Success
|
|
40
|
-
*/
|
|
41
|
-
logo(query: LogoParams): string;
|
|
30
|
+
cancelTest(query: CancelTestParams): Promise<void>;
|
|
42
31
|
/**
|
|
43
32
|
* No description
|
|
44
33
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ExternalLayerInfoDc, GetDataSchemaParams, GetExternalArcGisLayersParams, GetExternalWmsLayersParams, GetRasterAttributesParams, ImportDataSchema, ImportFileFeaturesCountDc } from './data-contracts';
|
|
1
|
+
import { ExternalLayerInfoDc, GetDataSchemaParams, GetExternalArcGisLayersParams, GetExternalWmsLayersParams, GetRasterAttributesParams, ImportDataSchema, ImportFileFeaturesCountDc, ReadPartParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -28,6 +28,17 @@ export declare class ImportService extends Service {
|
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
30
|
getFeaturesCount(data: ImportFileFeaturesCountDc): Promise<number>;
|
|
31
|
+
/**
|
|
32
|
+
* No description
|
|
33
|
+
*
|
|
34
|
+
* @tags ImportService
|
|
35
|
+
* @name ReadPart
|
|
36
|
+
* @operationId ImportServiceController_ReadPart
|
|
37
|
+
* @summary Returns the features of the given file in temporary static storage.
|
|
38
|
+
* @request GET:/import/read
|
|
39
|
+
* @response `200` Success
|
|
40
|
+
*/
|
|
41
|
+
readPart(query: ReadPartParams): Promise<void>;
|
|
31
42
|
/**
|
|
32
43
|
* No description
|
|
33
44
|
*
|
|
@@ -546,6 +546,17 @@ export declare class LayersService extends Service {
|
|
|
546
546
|
* @response `200` Success
|
|
547
547
|
*/
|
|
548
548
|
deletePreview(name: string): Promise<void>;
|
|
549
|
+
/**
|
|
550
|
+
* No description
|
|
551
|
+
*
|
|
552
|
+
* @tags Layers
|
|
553
|
+
* @name IsExists
|
|
554
|
+
* @operationId LayersController_IsExistsAsync
|
|
555
|
+
* @summary Check is resource exists.
|
|
556
|
+
* @request GET:/layers/{name}/exists
|
|
557
|
+
* @response `200` Success
|
|
558
|
+
*/
|
|
559
|
+
isExists(name: string): Promise<void>;
|
|
549
560
|
/**
|
|
550
561
|
* No description
|
|
551
562
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, BulkOperationResultDc,
|
|
1
|
+
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams9, ExtendedProjectInfoDc, ExtendedProjectLayersInfo, FileUploadResponse, GetProjectsInfoParams, GetProjectsListParams, PagedListProjectInfoDc, ResourceDependenciesDc, SetPermissionsBatchBody, SetPreviewBody } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -49,7 +49,7 @@ export declare class ProjectsService extends Service {
|
|
|
49
49
|
* @request DELETE:/projects
|
|
50
50
|
* @response `200` Success
|
|
51
51
|
*/
|
|
52
|
-
deleteResources(query:
|
|
52
|
+
deleteResources(query: DeleteResourcesParams9): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -138,6 +138,17 @@ export declare class ProjectsService extends Service {
|
|
|
138
138
|
* @response `200` Success
|
|
139
139
|
*/
|
|
140
140
|
deletePreview(name: string): Promise<void>;
|
|
141
|
+
/**
|
|
142
|
+
* No description
|
|
143
|
+
*
|
|
144
|
+
* @tags Projects
|
|
145
|
+
* @name IsExists
|
|
146
|
+
* @operationId ProjectsController_IsExistsAsync
|
|
147
|
+
* @summary Check is resource exists.
|
|
148
|
+
* @request GET:/projects/{name}/exists
|
|
149
|
+
* @response `200` Success
|
|
150
|
+
*/
|
|
151
|
+
isExists(name: string): Promise<void>;
|
|
141
152
|
/**
|
|
142
153
|
* No description
|
|
143
154
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ClassifyDc,
|
|
1
|
+
import { ClassifyDc, ClassifyParams5, StatisticsDbParams, StatisticsDc, SumOfProductParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -27,7 +27,7 @@ export declare class StatisticService extends Service {
|
|
|
27
27
|
* @request GET:/statistics/classify
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
classify(query:
|
|
30
|
+
classify(query: ClassifyParams5): Promise<ClassifyDc>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessControlListDc, BulkOperationResultDc,
|
|
1
|
+
import { AccessControlListDc, BulkOperationResultDc, DeleteResourcesParams6, DeleteTableDataParams, DetailedTableInfoDc, FileUploadResponse, GetTableDataParams, GetTableListParams, GetTablesInfoParams, GetUniqueDataRowsParams, MapTableInfoDc, MapTableParams, PagedListIEnumerable1, PagedListTableInfoDc, ResourceDependenciesDc, SetPermissionsBatchInput, SetPreviewInput, UpdateTableDataParams, UpdateTableDataPayload, UpdateTableDc, WriteTableDataPayload } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -49,7 +49,7 @@ export declare class TablesService extends Service {
|
|
|
49
49
|
* @request DELETE:/tables
|
|
50
50
|
* @response `200` Success
|
|
51
51
|
*/
|
|
52
|
-
deleteResources(query:
|
|
52
|
+
deleteResources(query: DeleteResourcesParams6): Promise<BulkOperationResultDc[]>;
|
|
53
53
|
/**
|
|
54
54
|
* No description
|
|
55
55
|
*
|
|
@@ -204,6 +204,17 @@ export declare class TablesService extends Service {
|
|
|
204
204
|
* @response `200` Success
|
|
205
205
|
*/
|
|
206
206
|
deletePreview(name: string): Promise<void>;
|
|
207
|
+
/**
|
|
208
|
+
* No description
|
|
209
|
+
*
|
|
210
|
+
* @tags Tables
|
|
211
|
+
* @name IsExists
|
|
212
|
+
* @operationId TablesController_IsExistsAsync
|
|
213
|
+
* @summary Check is resource exists.
|
|
214
|
+
* @request GET:/tables/{name}/exists
|
|
215
|
+
* @response `200` Success
|
|
216
|
+
*/
|
|
217
|
+
isExists(name: string): Promise<void>;
|
|
207
218
|
/**
|
|
208
219
|
* No description
|
|
209
220
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GetCapabilities1Params,
|
|
1
|
+
import { GetCapabilities1Params, GetCapabilitiesParams8, GetFeatureInfoParams, GetLegendGraphicParams, GetMapParams } from './data-contracts';
|
|
2
2
|
import { Service } from './Service';
|
|
3
3
|
/**
|
|
4
4
|
* @title Spatial Processing Core API
|
|
@@ -16,7 +16,7 @@ export declare class WmsServerService extends Service {
|
|
|
16
16
|
* @request GET:/wms#REQUEST=GetCapabilities
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
getCapabilities(query:
|
|
19
|
+
getCapabilities(query: GetCapabilitiesParams8): Promise<void>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -154,6 +154,10 @@ export declare enum AggregationFunction {
|
|
|
154
154
|
export interface AggregationMappingDc {
|
|
155
155
|
/** Name of the attribute. */
|
|
156
156
|
attributeName: string;
|
|
157
|
+
/** Alias of the attribute. */
|
|
158
|
+
alias?: string;
|
|
159
|
+
/** Description of the attribute. */
|
|
160
|
+
description?: string;
|
|
157
161
|
/**
|
|
158
162
|
*
|
|
159
163
|
*
|
|
@@ -749,6 +753,9 @@ export declare type ClusterSymbolDc = SymbolDc & {
|
|
|
749
753
|
minClusterSize?: number;
|
|
750
754
|
maxObjectCount?: number;
|
|
751
755
|
gridSize?: number;
|
|
756
|
+
cacheTimeout?: number;
|
|
757
|
+
idAttributeAlias?: string;
|
|
758
|
+
countAttributeAlias?: string;
|
|
752
759
|
};
|
|
753
760
|
/**
|
|
754
761
|
* Description of a table column.
|
|
@@ -2275,7 +2282,7 @@ export interface ImportDataSchema {
|
|
|
2275
2282
|
type: string;
|
|
2276
2283
|
}
|
|
2277
2284
|
/**
|
|
2278
|
-
*
|
|
2285
|
+
* Get features count data contract.
|
|
2279
2286
|
*/
|
|
2280
2287
|
export interface ImportFileFeaturesCountDc {
|
|
2281
2288
|
/** Name of the layer. */
|
|
@@ -2291,6 +2298,8 @@ export interface ImportFileFeaturesCountDc {
|
|
|
2291
2298
|
export interface ImportLayerDataSchema {
|
|
2292
2299
|
/** Name of the layer. */
|
|
2293
2300
|
name: string;
|
|
2301
|
+
/** Storage type. */
|
|
2302
|
+
type?: string;
|
|
2294
2303
|
/** First feature in the layer. */
|
|
2295
2304
|
firstRow?: Record<string, any>;
|
|
2296
2305
|
/**
|
|
@@ -2298,6 +2307,8 @@ export interface ImportLayerDataSchema {
|
|
|
2298
2307
|
* @format int64
|
|
2299
2308
|
*/
|
|
2300
2309
|
objectCount?: number;
|
|
2310
|
+
/** Assumed coordinate fields. */
|
|
2311
|
+
coordinateFields?: string[];
|
|
2301
2312
|
/** Information about the layer attributes and their configuration. */
|
|
2302
2313
|
layerDefinition?: LayerDefinitionDc;
|
|
2303
2314
|
/** Schema of a inner layers. */
|
|
@@ -5350,13 +5361,12 @@ export interface FeedbackParams {
|
|
|
5350
5361
|
/** Message text. */
|
|
5351
5362
|
Message?: string;
|
|
5352
5363
|
}
|
|
5353
|
-
export interface
|
|
5354
|
-
/**
|
|
5355
|
-
|
|
5356
|
-
|
|
5357
|
-
|
|
5358
|
-
|
|
5359
|
-
bucketName?: string;
|
|
5364
|
+
export interface CancelTestParams {
|
|
5365
|
+
/**
|
|
5366
|
+
* Wait delay in ms.
|
|
5367
|
+
* @format int32
|
|
5368
|
+
*/
|
|
5369
|
+
waitTimeout?: number;
|
|
5360
5370
|
}
|
|
5361
5371
|
export interface GeocodeParams {
|
|
5362
5372
|
/** Input address. */
|
|
@@ -5401,6 +5411,24 @@ export interface GetDataSchemaParams {
|
|
|
5401
5411
|
/** File id. */
|
|
5402
5412
|
fileId?: string;
|
|
5403
5413
|
}
|
|
5414
|
+
export interface ReadPartParams {
|
|
5415
|
+
/** Name of the layer. */
|
|
5416
|
+
LayerName?: string;
|
|
5417
|
+
/** Id of the file in the temporary static storage. */
|
|
5418
|
+
FileId: string;
|
|
5419
|
+
/** Condition. */
|
|
5420
|
+
Condition?: string;
|
|
5421
|
+
/**
|
|
5422
|
+
* Offset.
|
|
5423
|
+
* @format int32
|
|
5424
|
+
*/
|
|
5425
|
+
Offset?: number;
|
|
5426
|
+
/**
|
|
5427
|
+
* Count.
|
|
5428
|
+
* @format int32
|
|
5429
|
+
*/
|
|
5430
|
+
Count?: number;
|
|
5431
|
+
}
|
|
5404
5432
|
export interface GetExternalWmsLayersParams {
|
|
5405
5433
|
/** WMS service url. */
|
|
5406
5434
|
url?: string;
|
|
@@ -5617,6 +5645,21 @@ export interface GetLayerImageParams {
|
|
|
5617
5645
|
extentSr?: number;
|
|
5618
5646
|
/** Condition to apply to the layer to filter the features. */
|
|
5619
5647
|
condition?: string;
|
|
5648
|
+
/**
|
|
5649
|
+
* Simplify type.
|
|
5650
|
+
*
|
|
5651
|
+
* Basic
|
|
5652
|
+
*
|
|
5653
|
+
* PreserveTopology
|
|
5654
|
+
*/
|
|
5655
|
+
SimplifyType?: SimplifyType;
|
|
5656
|
+
/**
|
|
5657
|
+
* Tolerance.
|
|
5658
|
+
* @format float
|
|
5659
|
+
*/
|
|
5660
|
+
SimplifyTolerance?: number;
|
|
5661
|
+
/** The "preserve collapsed" flag will retain objects that would otherwise be too small given the tolerance. */
|
|
5662
|
+
SimplifyPreserveCollapsed?: boolean;
|
|
5620
5663
|
/**
|
|
5621
5664
|
* Opacity to apply to the layer image.
|
|
5622
5665
|
* @format float
|
|
@@ -5855,6 +5898,11 @@ export interface SelectFeaturesParams {
|
|
|
5855
5898
|
filters?: string[];
|
|
5856
5899
|
/** If set to true, the response will include the specific symbol for each feature. */
|
|
5857
5900
|
includeSymbols?: boolean;
|
|
5901
|
+
/**
|
|
5902
|
+
* Spatial reference of features to be returned.
|
|
5903
|
+
* @format int32
|
|
5904
|
+
*/
|
|
5905
|
+
targetSr?: number;
|
|
5858
5906
|
}
|
|
5859
5907
|
export interface ValidateExpressionParams {
|
|
5860
5908
|
/** Expression to validate. */
|
|
@@ -5951,7 +5999,7 @@ export interface GetProjectsListParams {
|
|
|
5951
5999
|
tags?: string[];
|
|
5952
6000
|
}
|
|
5953
6001
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
5954
|
-
export interface
|
|
6002
|
+
export interface DeleteResourcesParams9 {
|
|
5955
6003
|
/** Resource names. */
|
|
5956
6004
|
names?: string[];
|
|
5957
6005
|
}
|
|
@@ -6189,7 +6237,7 @@ export interface StatisticsDbParams {
|
|
|
6189
6237
|
*/
|
|
6190
6238
|
types?: AggregationFunction[];
|
|
6191
6239
|
}
|
|
6192
|
-
export interface
|
|
6240
|
+
export interface ClassifyParams5 {
|
|
6193
6241
|
/** Layer name. */
|
|
6194
6242
|
name?: string;
|
|
6195
6243
|
/** Attribute name. */
|
|
@@ -6313,7 +6361,7 @@ export interface GetTableListParams {
|
|
|
6313
6361
|
acl?: string;
|
|
6314
6362
|
}
|
|
6315
6363
|
export declare type SetPermissionsBatchInput = ResourceAclDc[];
|
|
6316
|
-
export interface
|
|
6364
|
+
export interface DeleteResourcesParams6 {
|
|
6317
6365
|
/** Resource names. */
|
|
6318
6366
|
names?: string[];
|
|
6319
6367
|
}
|
|
@@ -6402,8 +6450,6 @@ export interface GetVectorTileParams {
|
|
|
6402
6450
|
condition?: string;
|
|
6403
6451
|
/** True if name is project name, otherwise false. */
|
|
6404
6452
|
isProject?: boolean;
|
|
6405
|
-
/** Simpify geometry using the Douglas-Peucker algorithm. */
|
|
6406
|
-
simplify?: boolean;
|
|
6407
6453
|
/**
|
|
6408
6454
|
* Simplify type.
|
|
6409
6455
|
*
|
|
@@ -6411,14 +6457,14 @@ export interface GetVectorTileParams {
|
|
|
6411
6457
|
*
|
|
6412
6458
|
* PreserveTopology
|
|
6413
6459
|
*/
|
|
6414
|
-
|
|
6460
|
+
SimplifyType?: SimplifyType;
|
|
6415
6461
|
/**
|
|
6416
|
-
*
|
|
6462
|
+
* Tolerance.
|
|
6417
6463
|
* @format float
|
|
6418
6464
|
*/
|
|
6419
|
-
|
|
6420
|
-
/**
|
|
6421
|
-
|
|
6465
|
+
SimplifyTolerance?: number;
|
|
6466
|
+
/** The "preserve collapsed" flag will retain objects that would otherwise be too small given the tolerance. */
|
|
6467
|
+
SimplifyPreserveCollapsed?: boolean;
|
|
6422
6468
|
/** Id of override data filter to apply to the layer. If not set, the default filter is used. */
|
|
6423
6469
|
dataFilterId?: string;
|
|
6424
6470
|
/** Project or layer name. */
|
|
@@ -6469,7 +6515,7 @@ export interface GetPublicCapabilitiesParams {
|
|
|
6469
6515
|
/** When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". */
|
|
6470
6516
|
AcceptFormats?: string[];
|
|
6471
6517
|
}
|
|
6472
|
-
export interface
|
|
6518
|
+
export interface GetCapabilitiesParams8 {
|
|
6473
6519
|
/** Output format of service metadata. */
|
|
6474
6520
|
Format?: string;
|
|
6475
6521
|
/** Must be WMS. */
|
|
@@ -763,6 +763,22 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
763
763
|
value: function getFeaturesCount(data) {
|
|
764
764
|
return this.http.post("/import/count", data).json();
|
|
765
765
|
}
|
|
766
|
+
/**
|
|
767
|
+
* No description
|
|
768
|
+
*
|
|
769
|
+
* @tags ImportService
|
|
770
|
+
* @name ReadPart
|
|
771
|
+
* @operationId ImportServiceController_ReadPart
|
|
772
|
+
* @summary Returns the features of the given file in temporary static storage.
|
|
773
|
+
* @request GET:/import/read
|
|
774
|
+
* @response `200` Success
|
|
775
|
+
*/
|
|
776
|
+
|
|
777
|
+
}, {
|
|
778
|
+
key: "readPart",
|
|
779
|
+
value: function readPart(query) {
|
|
780
|
+
return this.http.get("/import/read", query).then(() => {});
|
|
781
|
+
}
|
|
766
782
|
/**
|
|
767
783
|
* No description
|
|
768
784
|
*
|
|
@@ -2495,6 +2511,22 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
2495
2511
|
value: function deletePreview(name) {
|
|
2496
2512
|
return this.http.delete("/layers/" + name + "/preview", null).then(() => {});
|
|
2497
2513
|
}
|
|
2514
|
+
/**
|
|
2515
|
+
* No description
|
|
2516
|
+
*
|
|
2517
|
+
* @tags Layers
|
|
2518
|
+
* @name IsExists
|
|
2519
|
+
* @operationId LayersController_IsExistsAsync
|
|
2520
|
+
* @summary Check is resource exists.
|
|
2521
|
+
* @request GET:/layers/{name}/exists
|
|
2522
|
+
* @response `200` Success
|
|
2523
|
+
*/
|
|
2524
|
+
|
|
2525
|
+
}, {
|
|
2526
|
+
key: "isExists",
|
|
2527
|
+
value: function isExists(name) {
|
|
2528
|
+
return this.http.get("/layers/" + name + "/exists").then(() => {});
|
|
2529
|
+
}
|
|
2498
2530
|
/**
|
|
2499
2531
|
* No description
|
|
2500
2532
|
*
|
|
@@ -3027,6 +3059,22 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
3027
3059
|
value: function deletePreview(name) {
|
|
3028
3060
|
return this.http.delete("/tables/" + name + "/preview", null).then(() => {});
|
|
3029
3061
|
}
|
|
3062
|
+
/**
|
|
3063
|
+
* No description
|
|
3064
|
+
*
|
|
3065
|
+
* @tags Tables
|
|
3066
|
+
* @name IsExists
|
|
3067
|
+
* @operationId TablesController_IsExistsAsync
|
|
3068
|
+
* @summary Check is resource exists.
|
|
3069
|
+
* @request GET:/tables/{name}/exists
|
|
3070
|
+
* @response `200` Success
|
|
3071
|
+
*/
|
|
3072
|
+
|
|
3073
|
+
}, {
|
|
3074
|
+
key: "isExists",
|
|
3075
|
+
value: function isExists(name) {
|
|
3076
|
+
return this.http.get("/tables/" + name + "/exists").then(() => {});
|
|
3077
|
+
}
|
|
3030
3078
|
/**
|
|
3031
3079
|
* No description
|
|
3032
3080
|
*
|
|
@@ -3391,6 +3439,22 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
3391
3439
|
value: function deletePreview(name) {
|
|
3392
3440
|
return this.http.delete("/projects/" + name + "/preview", null).then(() => {});
|
|
3393
3441
|
}
|
|
3442
|
+
/**
|
|
3443
|
+
* No description
|
|
3444
|
+
*
|
|
3445
|
+
* @tags Projects
|
|
3446
|
+
* @name IsExists
|
|
3447
|
+
* @operationId ProjectsController_IsExistsAsync
|
|
3448
|
+
* @summary Check is resource exists.
|
|
3449
|
+
* @request GET:/projects/{name}/exists
|
|
3450
|
+
* @response `200` Success
|
|
3451
|
+
*/
|
|
3452
|
+
|
|
3453
|
+
}, {
|
|
3454
|
+
key: "isExists",
|
|
3455
|
+
value: function isExists(name) {
|
|
3456
|
+
return this.http.get("/projects/" + name + "/exists").then(() => {});
|
|
3457
|
+
}
|
|
3394
3458
|
/**
|
|
3395
3459
|
* No description
|
|
3396
3460
|
*
|
|
@@ -4048,33 +4112,17 @@ let GeneralService = /*#__PURE__*/function (_Service) {
|
|
|
4048
4112
|
* No description
|
|
4049
4113
|
*
|
|
4050
4114
|
* @tags General
|
|
4051
|
-
* @name
|
|
4052
|
-
* @operationId
|
|
4053
|
-
* @summary
|
|
4054
|
-
* @request GET:/
|
|
4055
|
-
* @response `200` Success
|
|
4056
|
-
*/
|
|
4057
|
-
|
|
4058
|
-
}, {
|
|
4059
|
-
key: "favicon",
|
|
4060
|
-
value: function favicon(query) {
|
|
4061
|
-
return this.http.createUrl("/favicon.ico", query);
|
|
4062
|
-
}
|
|
4063
|
-
/**
|
|
4064
|
-
* No description
|
|
4065
|
-
*
|
|
4066
|
-
* @tags General
|
|
4067
|
-
* @name Logo
|
|
4068
|
-
* @operationId GeneralController_Logo
|
|
4069
|
-
* @summary Returns logo.
|
|
4070
|
-
* @request GET:/logo.png
|
|
4115
|
+
* @name CancelTest
|
|
4116
|
+
* @operationId GeneralController_CancelTest
|
|
4117
|
+
* @summary Test method for CancellationToken.
|
|
4118
|
+
* @request GET:/cancel
|
|
4071
4119
|
* @response `200` Success
|
|
4072
4120
|
*/
|
|
4073
4121
|
|
|
4074
4122
|
}, {
|
|
4075
|
-
key: "
|
|
4076
|
-
value: function
|
|
4077
|
-
return this.http.
|
|
4123
|
+
key: "cancelTest",
|
|
4124
|
+
value: function cancelTest(query) {
|
|
4125
|
+
return this.http.get("/cancel", query).then(() => {});
|
|
4078
4126
|
}
|
|
4079
4127
|
/**
|
|
4080
4128
|
* No description
|