@evergis/api 3.0.47 → 3.0.48
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__/BulkOperationsService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +8 -2
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js.map +1 -1
- package/dist/services/BulkOperations.d.ts +2 -2
- package/package.json +2 -2
|
@@ -16,7 +16,7 @@ export declare class BulkOperationsService extends Service {
|
|
|
16
16
|
* @request POST:/bulk/catalog/addResources
|
|
17
17
|
* @response `200` Success
|
|
18
18
|
*/
|
|
19
|
-
batchAddResourcesToCatalog(data: BatchResourcesCatalogDc): Promise<BulkOperationResultDc>;
|
|
19
|
+
batchAddResourcesToCatalog(data: BatchResourcesCatalogDc): Promise<BulkOperationResultDc[]>;
|
|
20
20
|
/**
|
|
21
21
|
* No description
|
|
22
22
|
*
|
|
@@ -27,7 +27,7 @@ export declare class BulkOperationsService extends Service {
|
|
|
27
27
|
* @request POST:/bulk/catalog/removeResources
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
batchDeleteResourcesFromCatalog(data: BatchResourcesCatalogDc): Promise<BulkOperationResultDc>;
|
|
30
|
+
batchDeleteResourcesFromCatalog(data: BatchResourcesCatalogDc): Promise<BulkOperationResultDc[]>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -682,9 +682,9 @@ export interface CatalogDataDc {
|
|
|
682
682
|
*/
|
|
683
683
|
export interface CatalogResourceDc {
|
|
684
684
|
/** Name of the resource to add. */
|
|
685
|
-
objectName
|
|
685
|
+
objectName: string;
|
|
686
686
|
/** Users list. */
|
|
687
|
-
users
|
|
687
|
+
users: string[];
|
|
688
688
|
}
|
|
689
689
|
/**
|
|
690
690
|
* The symbol that draws a feature as a circle.
|
|
@@ -5435,6 +5435,8 @@ export interface GetLayersListParams {
|
|
|
5435
5435
|
geometryFilter?: string[];
|
|
5436
5436
|
/** Filters layers list by users favorite. */
|
|
5437
5437
|
isFavorite?: boolean;
|
|
5438
|
+
/** If set, returns for superuser layers for all users. */
|
|
5439
|
+
forAllUsers?: boolean;
|
|
5438
5440
|
}
|
|
5439
5441
|
export declare type SetPermissionsBatchPayload = ResourceAclDc[];
|
|
5440
5442
|
export interface GetFeaturesParams {
|
|
@@ -5825,6 +5827,8 @@ export interface GetProjectsListParams {
|
|
|
5825
5827
|
orderByFields?: string[];
|
|
5826
5828
|
/** Filters projects list by users favorite. */
|
|
5827
5829
|
isFavorite?: boolean;
|
|
5830
|
+
/** If set, returns for superuser projects for all users. */
|
|
5831
|
+
forAllUsers?: boolean;
|
|
5828
5832
|
}
|
|
5829
5833
|
export declare type SetPermissionsBatchBody = ResourceAclDc[];
|
|
5830
5834
|
export interface SetPreviewBody {
|
|
@@ -6024,6 +6028,8 @@ export interface GetTableListParams {
|
|
|
6024
6028
|
orderByFields?: string[];
|
|
6025
6029
|
/** Filters tables list by users favorite. */
|
|
6026
6030
|
isFavorite?: boolean;
|
|
6031
|
+
/** If set, returns for superuser tables for all users. */
|
|
6032
|
+
forAllUsers?: boolean;
|
|
6027
6033
|
/** Filters layers by geometry types. */
|
|
6028
6034
|
geometryFilter?: string[];
|
|
6029
6035
|
}
|