dochub-sdk 0.1.125 → 0.1.126
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/interfaces/datalake.ts +1 -1
- package/interfaces/objects.ts +1 -1
- package/package.json +1 -1
package/interfaces/datalake.ts
CHANGED
@@ -8,7 +8,7 @@ export enum DataLakeChange {
|
|
8
8
|
/**
|
9
9
|
* RegExp для указания пути в DataLake в DocHub
|
10
10
|
*/
|
11
|
-
export const DataLakePathRegExp = '^(
|
11
|
+
export const DataLakePathRegExp = '^(\\/[a-zA-Z0-9_$\\.]{1,}){1,}$';
|
12
12
|
|
13
13
|
/**
|
14
14
|
* Путь к объекту в DataLake.
|
package/interfaces/objects.ts
CHANGED
@@ -18,7 +18,7 @@ export interface IDocHubObjectMeta {
|
|
18
18
|
/**
|
19
19
|
* RegExp для указания URL объекта в DocHub
|
20
20
|
*/
|
21
|
-
export const DocHubObjectURLRegExp = '
|
21
|
+
export const DocHubObjectURLRegExp = '^\\@[a-zA-Z0-9_$\\.]{1,}(\\/[a-zA-Z0-9_$\\.]{1,}){1,}(\\?[^(#|\\/)]*){0,1}(\\#[^(#|\\/|\\?)]*){0,1}$';
|
22
22
|
|
23
23
|
/**
|
24
24
|
* Специальный формат адресации к объектам DocHub
|