@evergis/api 5.0.34 → 5.0.36
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/Api.d.ts +3 -1
- package/dist/__generated__/CatalogService.d.ts +26 -13
- package/dist/__generated__/CatalogShareService.d.ts +74 -0
- package/dist/__generated__/HistoryService.d.ts +21 -0
- package/dist/__generated__/TablesService.d.ts +49 -1
- package/dist/__generated__/data-contracts.d.ts +213 -98
- package/dist/api.esm.js +238 -15
- package/dist/api.esm.js.map +1 -1
- package/dist/index.js +239 -14
- package/dist/index.js.map +1 -1
- package/dist/services/CatalogShare.d.ts +3 -0
- package/dist/services/History.d.ts +3 -0
- package/dist/services/index.d.ts +2 -0
- package/package.json +2 -2
- package/dist/__generated__/NotificationService.d.ts +0 -69
- package/dist/services/Notification.d.ts +0 -48
|
@@ -278,7 +278,9 @@ export declare enum AttributeType {
|
|
|
278
278
|
H3Index = "H3Index",
|
|
279
279
|
Json = "Json",
|
|
280
280
|
MultiPolygon = "MultiPolygon",
|
|
281
|
-
GeometryCollection = "GeometryCollection"
|
|
281
|
+
GeometryCollection = "GeometryCollection",
|
|
282
|
+
Geometry = "Geometry",
|
|
283
|
+
PrimaryKey = "PrimaryKey"
|
|
282
284
|
}
|
|
283
285
|
/**
|
|
284
286
|
* Configuration of the attribute set in a feature layer.
|
|
@@ -383,6 +385,13 @@ export type CalculatedAttributeConfigurationDc = AttributeConfigurationDc & {
|
|
|
383
385
|
expression?: string | null;
|
|
384
386
|
aggregation?: AggregationFunction;
|
|
385
387
|
};
|
|
388
|
+
/**
|
|
389
|
+
* Base class for catalog configuration responses.
|
|
390
|
+
*/
|
|
391
|
+
export interface CatalogConfigurationDc {
|
|
392
|
+
/** Discriminator field indicating the concrete type of this response. */
|
|
393
|
+
type?: string;
|
|
394
|
+
}
|
|
386
395
|
/**
|
|
387
396
|
* Resource catalog item.
|
|
388
397
|
*/
|
|
@@ -444,10 +453,12 @@ export interface CatalogResourceDc {
|
|
|
444
453
|
isObservable?: boolean;
|
|
445
454
|
/** Resource icon. */
|
|
446
455
|
icon?: string;
|
|
447
|
-
/**
|
|
448
|
-
|
|
456
|
+
/** If true, the resource does not inherit permissions from its parent (inheritance is broken at this node). */
|
|
457
|
+
breakInheritance?: boolean;
|
|
449
458
|
/** Access control list for a security object. */
|
|
450
459
|
acl?: AccessControlListDc;
|
|
460
|
+
/** Access control list for a security object. */
|
|
461
|
+
ownAcl?: AccessControlListDc;
|
|
451
462
|
}
|
|
452
463
|
export declare enum CatalogResourceType {
|
|
453
464
|
Directory = "Directory",
|
|
@@ -634,8 +645,6 @@ export interface CreateDirectoryDc {
|
|
|
634
645
|
icon?: string;
|
|
635
646
|
/** Rewrite if exists. */
|
|
636
647
|
rewrite?: boolean;
|
|
637
|
-
/** True if acl inherited from parent. */
|
|
638
|
-
inheritAcl?: boolean;
|
|
639
648
|
}
|
|
640
649
|
/**
|
|
641
650
|
* Data contract for create new role.
|
|
@@ -699,8 +708,6 @@ export interface CreateSymlinkDc {
|
|
|
699
708
|
parentId?: string;
|
|
700
709
|
/** A set of tags. */
|
|
701
710
|
tags?: string[];
|
|
702
|
-
/** True if acl inherited from parent. */
|
|
703
|
-
inheritAcl?: boolean;
|
|
704
711
|
}
|
|
705
712
|
/**
|
|
706
713
|
* Data contract for create new user.
|
|
@@ -1049,71 +1056,10 @@ export interface ExpressionValidationResultDc {
|
|
|
1049
1056
|
/**
|
|
1050
1057
|
* Extended resource info.
|
|
1051
1058
|
*/
|
|
1052
|
-
export
|
|
1059
|
+
export type ExtendedCatalogResourceDc = CatalogResourceDc & {
|
|
1053
1060
|
/** Resource path. */
|
|
1054
|
-
path?: string;
|
|
1055
|
-
|
|
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
|
-
}
|
|
1061
|
+
path?: string | null;
|
|
1062
|
+
};
|
|
1117
1063
|
/**
|
|
1118
1064
|
* Project extended configuration data contract.
|
|
1119
1065
|
*/
|
|
@@ -1218,6 +1164,17 @@ export interface ExternalLayerInfoDc {
|
|
|
1218
1164
|
/** Child layers. */
|
|
1219
1165
|
layer?: ExternalLayerInfoDc[];
|
|
1220
1166
|
}
|
|
1167
|
+
/**
|
|
1168
|
+
* Failed catalog configuration response indicating an error during configuration retrieval.
|
|
1169
|
+
*/
|
|
1170
|
+
export type FailedCatalogConfigurationDc = CatalogConfigurationDc & {
|
|
1171
|
+
/** Detailed error message describing what went wrong during configuration retrieval. */
|
|
1172
|
+
errorMessage?: string | null;
|
|
1173
|
+
/** Categorized error type indicating the kind of failure that occurred. */
|
|
1174
|
+
errorType?: string | null;
|
|
1175
|
+
/** Type discriminator for polymorphic serialization. */
|
|
1176
|
+
type?: string | null;
|
|
1177
|
+
};
|
|
1221
1178
|
/**
|
|
1222
1179
|
* The `FailedServiceInfoDc` describes Everpoint.Sdk.Layers.Abstractions.Models.FailedServiceInfo data contact.
|
|
1223
1180
|
*/
|
|
@@ -1428,6 +1385,15 @@ export interface GetClassifyDc {
|
|
|
1428
1385
|
type?: ClassificationType;
|
|
1429
1386
|
attributeType?: ClassifyAttributeType;
|
|
1430
1387
|
}
|
|
1388
|
+
/**
|
|
1389
|
+
* Request for retrieving a specific catalog configuration.
|
|
1390
|
+
*/
|
|
1391
|
+
export interface GetConfigurationDc {
|
|
1392
|
+
/** Unique identifier of the resource. */
|
|
1393
|
+
resourceId: string;
|
|
1394
|
+
/** Optional JSON path to retrieve a specific part of the configuration. */
|
|
1395
|
+
configurationPath?: string;
|
|
1396
|
+
}
|
|
1431
1397
|
/**
|
|
1432
1398
|
* Get features paramaters.
|
|
1433
1399
|
*/
|
|
@@ -1522,6 +1488,27 @@ export interface GetSumOfProductDc {
|
|
|
1522
1488
|
/** Filter query geometries. */
|
|
1523
1489
|
geometries?: QueryGeometryDc[];
|
|
1524
1490
|
}
|
|
1491
|
+
/**
|
|
1492
|
+
* History itrem data contract.
|
|
1493
|
+
*/
|
|
1494
|
+
export interface HistoryItemDc {
|
|
1495
|
+
/** Operation. */
|
|
1496
|
+
operation?: string;
|
|
1497
|
+
/**
|
|
1498
|
+
* Date and time of history event.
|
|
1499
|
+
* @format date-time
|
|
1500
|
+
*/
|
|
1501
|
+
dtChange?: string;
|
|
1502
|
+
/** Feature object definition. */
|
|
1503
|
+
oldFeature?: FeatureDc;
|
|
1504
|
+
/** Feature object definition. */
|
|
1505
|
+
newFeature?: FeatureDc;
|
|
1506
|
+
featureDiff?: IAttributesTable;
|
|
1507
|
+
}
|
|
1508
|
+
export interface IAttributesTable {
|
|
1509
|
+
/** @format int32 */
|
|
1510
|
+
count?: number;
|
|
1511
|
+
}
|
|
1525
1512
|
/**
|
|
1526
1513
|
* Data schema of a file for import.
|
|
1527
1514
|
*/
|
|
@@ -1595,6 +1582,27 @@ export interface IncreaseResourcesLimitDc {
|
|
|
1595
1582
|
/** Request justification. */
|
|
1596
1583
|
justification?: string;
|
|
1597
1584
|
}
|
|
1585
|
+
/**
|
|
1586
|
+
* Wrapper carrying a single invitation id for accept/decline/revoke requests.
|
|
1587
|
+
*/
|
|
1588
|
+
export interface InvitationIdDc {
|
|
1589
|
+
/** Invitation id. */
|
|
1590
|
+
invitationId: string;
|
|
1591
|
+
}
|
|
1592
|
+
/**
|
|
1593
|
+
* Read model of a share invitation.
|
|
1594
|
+
*/
|
|
1595
|
+
export interface InvitationViewDc {
|
|
1596
|
+
/** Invitation id. */
|
|
1597
|
+
invitationId?: string;
|
|
1598
|
+
/** Proposed alias (link) name in the recipient tree, if any. */
|
|
1599
|
+
alias?: string;
|
|
1600
|
+
/** User name of the owner who shared the resource. */
|
|
1601
|
+
inviterUserName?: string;
|
|
1602
|
+
/** User name of the invitation recipient. */
|
|
1603
|
+
granteeUserName?: string;
|
|
1604
|
+
status?: ShareInvitationStatus;
|
|
1605
|
+
}
|
|
1598
1606
|
/**
|
|
1599
1607
|
* Specifies the available types of layer services that can be used within the application.
|
|
1600
1608
|
*/
|
|
@@ -1648,6 +1656,22 @@ export type LinearServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
1648
1656
|
/** Client style data storage. Storage isn't used by server. */
|
|
1649
1657
|
clientStyle?: any;
|
|
1650
1658
|
};
|
|
1659
|
+
/**
|
|
1660
|
+
* Batch request for retrieving configurations of multiple resources.
|
|
1661
|
+
*/
|
|
1662
|
+
export interface ListConfigurationsDc {
|
|
1663
|
+
/** Array of individual configuration requests for each resource. */
|
|
1664
|
+
configurationRequests: GetConfigurationDc[];
|
|
1665
|
+
}
|
|
1666
|
+
/**
|
|
1667
|
+
* Filter for listing the current user's invitations.
|
|
1668
|
+
*/
|
|
1669
|
+
export interface ListInvitationsDc {
|
|
1670
|
+
/** Invitation statuses to include. Defaults to Everpoint.Static.FilesStorage.Models.ShareInvitationStatus.Pending. */
|
|
1671
|
+
statuses?: ShareInvitationStatus[];
|
|
1672
|
+
/** Target resources to include. */
|
|
1673
|
+
targets?: string[];
|
|
1674
|
+
}
|
|
1651
1675
|
/**
|
|
1652
1676
|
* Search resources.
|
|
1653
1677
|
*/
|
|
@@ -1789,8 +1813,6 @@ export interface MoveResourceDc {
|
|
|
1789
1813
|
newName?: string;
|
|
1790
1814
|
/** Rewrite removes the conflicting target resource and preserves the ResourceId of the moved resource. */
|
|
1791
1815
|
rewrite?: boolean;
|
|
1792
|
-
/** Inherit acl from parents. */
|
|
1793
|
-
inheritAcl?: boolean;
|
|
1794
1816
|
}
|
|
1795
1817
|
/**
|
|
1796
1818
|
* MultiLineString geometry object definition.
|
|
@@ -1904,6 +1926,15 @@ export interface PagedFeaturesListDc {
|
|
|
1904
1926
|
*/
|
|
1905
1927
|
limit?: number;
|
|
1906
1928
|
}
|
|
1929
|
+
export interface PagedListCatalogResourceDc {
|
|
1930
|
+
/** @format int64 */
|
|
1931
|
+
totalCount?: number;
|
|
1932
|
+
/** @format int32 */
|
|
1933
|
+
offset?: number;
|
|
1934
|
+
/** @format int32 */
|
|
1935
|
+
limit?: number;
|
|
1936
|
+
items?: (CatalogResourceDc | ExtendedCatalogResourceDc)[];
|
|
1937
|
+
}
|
|
1907
1938
|
export interface PagedListConfigDc {
|
|
1908
1939
|
/** @format int64 */
|
|
1909
1940
|
totalCount?: number;
|
|
@@ -1967,6 +1998,15 @@ export interface PagedListRoleInfoDc {
|
|
|
1967
1998
|
limit?: number;
|
|
1968
1999
|
items?: RoleInfoDc[];
|
|
1969
2000
|
}
|
|
2001
|
+
export interface PagedListString {
|
|
2002
|
+
/** @format int64 */
|
|
2003
|
+
totalCount?: number;
|
|
2004
|
+
/** @format int32 */
|
|
2005
|
+
offset?: number;
|
|
2006
|
+
/** @format int32 */
|
|
2007
|
+
limit?: number;
|
|
2008
|
+
items?: string[];
|
|
2009
|
+
}
|
|
1970
2010
|
export interface PagedListSymbolCategoryInfoDc {
|
|
1971
2011
|
/** @format int64 */
|
|
1972
2012
|
totalCount?: number;
|
|
@@ -1997,27 +2037,11 @@ export interface PagedListUserInfoDc {
|
|
|
1997
2037
|
/**
|
|
1998
2038
|
* Paged resources list.
|
|
1999
2039
|
*/
|
|
2000
|
-
export
|
|
2001
|
-
/** @format int64 */
|
|
2002
|
-
totalCount?: number;
|
|
2003
|
-
/** @format int32 */
|
|
2004
|
-
offset?: number;
|
|
2005
|
-
/** @format int32 */
|
|
2006
|
-
limit?: number;
|
|
2007
|
-
items?: CatalogResourceDc[];
|
|
2008
|
-
}
|
|
2040
|
+
export type PagedResourcesListDc = PagedListCatalogResourceDc & object;
|
|
2009
2041
|
/**
|
|
2010
2042
|
* Paged resources list.
|
|
2011
2043
|
*/
|
|
2012
|
-
export
|
|
2013
|
-
/** @format int64 */
|
|
2014
|
-
totalCount?: number;
|
|
2015
|
-
/** @format int32 */
|
|
2016
|
-
offset?: number;
|
|
2017
|
-
/** @format int32 */
|
|
2018
|
-
limit?: number;
|
|
2019
|
-
items?: string[];
|
|
2020
|
-
}
|
|
2044
|
+
export type PagedTagsListDc = PagedListString & object;
|
|
2021
2045
|
/**
|
|
2022
2046
|
* Patch resource request.
|
|
2023
2047
|
*/
|
|
@@ -2030,8 +2054,6 @@ export interface PatchResourceDc {
|
|
|
2030
2054
|
tags?: string[];
|
|
2031
2055
|
/** Resource icon. */
|
|
2032
2056
|
icon?: string;
|
|
2033
|
-
/** True if acl inherited from parent. */
|
|
2034
|
-
inheritAcl?: boolean;
|
|
2035
2057
|
}
|
|
2036
2058
|
/**
|
|
2037
2059
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
@@ -2091,7 +2113,10 @@ export declare enum PolicyType {
|
|
|
2091
2113
|
MaxFeaturesInOneTable = "MaxFeaturesInOneTable",
|
|
2092
2114
|
MaxObjectsToExport = "MaxObjectsToExport",
|
|
2093
2115
|
MaxUploadContentSize = "MaxUploadContentSize",
|
|
2094
|
-
MaxEqlQueryParametersValues = "MaxEqlQueryParametersValues"
|
|
2116
|
+
MaxEqlQueryParametersValues = "MaxEqlQueryParametersValues",
|
|
2117
|
+
MaxPythonSandboxMemorySize = "MaxPythonSandboxMemorySize",
|
|
2118
|
+
MaxPythonSandboxCpu = "MaxPythonSandboxCpu",
|
|
2119
|
+
MaxPythonSandboxCount = "MaxPythonSandboxCount"
|
|
2095
2120
|
}
|
|
2096
2121
|
/**
|
|
2097
2122
|
* Polygon geometry object definition.
|
|
@@ -2255,6 +2280,18 @@ export interface ProjectContentItemDc {
|
|
|
2255
2280
|
* A project configuration data contract.
|
|
2256
2281
|
*/
|
|
2257
2282
|
export type ProjectInfoDcV2 = ResourceInfoDcV2 & object;
|
|
2283
|
+
/**
|
|
2284
|
+
* Request to propose a share invitation for a resource.
|
|
2285
|
+
*/
|
|
2286
|
+
export interface ProposeInvitationDc {
|
|
2287
|
+
/** ID of the resource to share. */
|
|
2288
|
+
resourceId: string;
|
|
2289
|
+
/** Username of the invitation recipient. */
|
|
2290
|
+
granteeUserName: string;
|
|
2291
|
+
/** Proposed alias (link) name in the recipient tree. When omitted, the target name is used. */
|
|
2292
|
+
alias?: string;
|
|
2293
|
+
permissions?: Permissions;
|
|
2294
|
+
}
|
|
2258
2295
|
/**
|
|
2259
2296
|
* Data contract for inner layer Legend.
|
|
2260
2297
|
*/
|
|
@@ -2403,6 +2440,8 @@ export interface PythonTaskMethodConfiguration {
|
|
|
2403
2440
|
methodName?: string;
|
|
2404
2441
|
/** Gets or sets method init error. */
|
|
2405
2442
|
error?: string;
|
|
2443
|
+
/** Gets or sets JsonSchema. */
|
|
2444
|
+
jsonSchema?: any;
|
|
2406
2445
|
}
|
|
2407
2446
|
/**
|
|
2408
2447
|
* Query geometry data contract.
|
|
@@ -2490,6 +2529,8 @@ export type QueryLayerServiceConfigurationDc = ServiceConfigurationBaseDc & {
|
|
|
2490
2529
|
clipping?: ClippingInfoDc;
|
|
2491
2530
|
/** Create a table to use if it doesn't exists. */
|
|
2492
2531
|
createTable?: boolean;
|
|
2532
|
+
/** Enable cache for this layer. */
|
|
2533
|
+
enableCache?: boolean;
|
|
2493
2534
|
};
|
|
2494
2535
|
/**
|
|
2495
2536
|
* EQL parameter configuration data contract.
|
|
@@ -3177,6 +3218,13 @@ export interface ServiceListItemDc {
|
|
|
3177
3218
|
/** Envelope geometry. */
|
|
3178
3219
|
envelope?: EnvelopeDc;
|
|
3179
3220
|
}
|
|
3221
|
+
export declare enum ShareInvitationStatus {
|
|
3222
|
+
Unspecified = "Unspecified",
|
|
3223
|
+
Pending = "Pending",
|
|
3224
|
+
Accepted = "Accepted",
|
|
3225
|
+
Declined = "Declined",
|
|
3226
|
+
Revoked = "Revoked"
|
|
3227
|
+
}
|
|
3180
3228
|
/**
|
|
3181
3229
|
* Simplify configuration information.
|
|
3182
3230
|
*/
|
|
@@ -3366,6 +3414,19 @@ export interface SubTasksDto {
|
|
|
3366
3414
|
/** Results. */
|
|
3367
3415
|
results?: Record<string, any>;
|
|
3368
3416
|
}
|
|
3417
|
+
/**
|
|
3418
|
+
* Successful catalog configuration response containing the requested configuration data.
|
|
3419
|
+
*/
|
|
3420
|
+
export type SucceedCatalogConfigurationDc = CatalogConfigurationDc & {
|
|
3421
|
+
/** Unique identifier of the resource whose configuration was retrieved. */
|
|
3422
|
+
resourceId?: string | null;
|
|
3423
|
+
/** JSON path used to retrieve a specific part of the configuration. */
|
|
3424
|
+
configurationPath?: string | null;
|
|
3425
|
+
/** The retrieved configuration data as a JSON string. */
|
|
3426
|
+
configurationData?: string | null;
|
|
3427
|
+
/** Type discriminator for polymorphic serialization. */
|
|
3428
|
+
type?: string | null;
|
|
3429
|
+
};
|
|
3369
3430
|
/**
|
|
3370
3431
|
* Symbol category data contract.
|
|
3371
3432
|
*/
|
|
@@ -3425,6 +3486,25 @@ export declare enum TableConfigurationType {
|
|
|
3425
3486
|
MaterializedViewConfiguration = "MaterializedViewConfiguration",
|
|
3426
3487
|
RouteTableConfiguration = "RouteTableConfiguration"
|
|
3427
3488
|
}
|
|
3489
|
+
/**
|
|
3490
|
+
* Represents a request for table history.
|
|
3491
|
+
*/
|
|
3492
|
+
export interface TableHistoryRequestDc {
|
|
3493
|
+
/** Data source name. */
|
|
3494
|
+
ds?: string;
|
|
3495
|
+
/** Operation type. */
|
|
3496
|
+
operation?: string;
|
|
3497
|
+
/**
|
|
3498
|
+
* Start period date and time.
|
|
3499
|
+
* @format date-time
|
|
3500
|
+
*/
|
|
3501
|
+
start?: string;
|
|
3502
|
+
/**
|
|
3503
|
+
* End period date and time.
|
|
3504
|
+
* @format date-time
|
|
3505
|
+
*/
|
|
3506
|
+
end?: string;
|
|
3507
|
+
}
|
|
3428
3508
|
/**
|
|
3429
3509
|
* Table description.
|
|
3430
3510
|
*/
|
|
@@ -4057,6 +4137,21 @@ export interface WorkspaceLimitsDc {
|
|
|
4057
4137
|
* @format int64
|
|
4058
4138
|
*/
|
|
4059
4139
|
currentProjectCount?: number;
|
|
4140
|
+
/**
|
|
4141
|
+
* Maximum memory size for user sandboxes.
|
|
4142
|
+
* @format int32
|
|
4143
|
+
*/
|
|
4144
|
+
maxPythonSandboxMemorySize?: number;
|
|
4145
|
+
/**
|
|
4146
|
+
* Maximum sandbox cpu.
|
|
4147
|
+
* @format int32
|
|
4148
|
+
*/
|
|
4149
|
+
maxPythonSandboxCpu?: number;
|
|
4150
|
+
/**
|
|
4151
|
+
* Maximum count user sandboxes.
|
|
4152
|
+
* @format int32
|
|
4153
|
+
*/
|
|
4154
|
+
maxPythonSandboxCount?: number;
|
|
4060
4155
|
}
|
|
4061
4156
|
/**
|
|
4062
4157
|
* Zip extraction request.
|
|
@@ -4298,8 +4393,6 @@ export interface CreateFilePayload {
|
|
|
4298
4393
|
tags?: string[];
|
|
4299
4394
|
/** File icon. */
|
|
4300
4395
|
icon?: string;
|
|
4301
|
-
/** True if acl inherited from parent. */
|
|
4302
|
-
InheritAcl?: boolean;
|
|
4303
4396
|
}
|
|
4304
4397
|
export interface CreateFile1Payload {
|
|
4305
4398
|
/** File resource id. */
|
|
@@ -4333,8 +4426,6 @@ export interface CreateFile1Payload {
|
|
|
4333
4426
|
icon?: string;
|
|
4334
4427
|
/** Check if resource is system. */
|
|
4335
4428
|
isSystem?: boolean;
|
|
4336
|
-
/** True if acl inherited from parent. */
|
|
4337
|
-
InheritAcl?: boolean;
|
|
4338
4429
|
}
|
|
4339
4430
|
export type SetPermissionsPayload = ResourceAclDc[];
|
|
4340
4431
|
export type CopyResourcesPayload = CopyResourceDc[];
|
|
@@ -4550,6 +4641,12 @@ export interface SuggestParams {
|
|
|
4550
4641
|
/** Geocode provider name to use. */
|
|
4551
4642
|
providerName: string;
|
|
4552
4643
|
}
|
|
4644
|
+
export interface InitializeParams {
|
|
4645
|
+
/** Username. */
|
|
4646
|
+
username?: string;
|
|
4647
|
+
/** Data source name. */
|
|
4648
|
+
ds?: string;
|
|
4649
|
+
}
|
|
4553
4650
|
export interface GetDataSchemaParams {
|
|
4554
4651
|
/** Resource id. */
|
|
4555
4652
|
resourceId?: string;
|
|
@@ -5137,6 +5234,24 @@ export interface MapTableParams {
|
|
|
5137
5234
|
/** Type of the resource. Default type os Table. */
|
|
5138
5235
|
type?: string;
|
|
5139
5236
|
}
|
|
5237
|
+
export interface EnableParams {
|
|
5238
|
+
/** Data source name. */
|
|
5239
|
+
ds?: string;
|
|
5240
|
+
/** Table name. */
|
|
5241
|
+
tableName: string;
|
|
5242
|
+
}
|
|
5243
|
+
export interface DisableParams {
|
|
5244
|
+
/** Data source name. */
|
|
5245
|
+
ds?: string;
|
|
5246
|
+
/** Table name. */
|
|
5247
|
+
tableName: string;
|
|
5248
|
+
}
|
|
5249
|
+
export interface CleanParams {
|
|
5250
|
+
/** Data source name. */
|
|
5251
|
+
ds?: string;
|
|
5252
|
+
/** Table name. */
|
|
5253
|
+
tableName: string;
|
|
5254
|
+
}
|
|
5140
5255
|
export interface GetVectorTileParams2 {
|
|
5141
5256
|
/** Condition. */
|
|
5142
5257
|
condition?: string;
|