dochub-sdk 0.1.332 → 0.1.333

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.332",
3
+ "version": "0.1.333",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",
@@ -6,6 +6,7 @@ export interface IDocHubJSONSchemaBase {
6
6
  description?: string; // Описание
7
7
  default?: any; // Значение по умолчанию
8
8
  examples?: any[]; // Примеры использования
9
+ [customFile: string]: any; // Пользовательские поля
9
10
  }
10
11
 
11
12
  /**
@@ -53,6 +54,7 @@ export interface IDocHubJSONSchemaString extends IDocHubJSONSchemaBase {
53
54
  maxLength?: number;
54
55
  enum?: string[];
55
56
  format?: DocHubJSONSchemaStringFormat;
57
+ pattern?: string;
56
58
  }
57
59
 
58
60
  export interface IDocHubJSONSchemaNumber extends IDocHubJSONSchemaBase {