dochub-sdk 0.1.299 → 0.1.300

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.
@@ -66,7 +66,7 @@ export type DocHubResourceMetaFile = {
66
66
  export type DocHubResourceMetaFolder = {
67
67
  type: DocHubResourceType.folder;
68
68
  uri: string;
69
- files?: DocHubResourceMetaFile[] // Если undefined - статус содержания файлов не определен
69
+ files?: DocHubResourceMetaFile[] // Если undefined - статус содержания файлов не определен
70
70
  }
71
71
 
72
72
  /**
@@ -75,7 +75,7 @@ export type DocHubResourceMetaFolder = {
75
75
  export type DocHubResourceMetaBranch = {
76
76
  type: DocHubResourceType.branch,
77
77
  uri: string;
78
- files?: DocHubResourceMetaFile[] // Если undefined - статус содержания файлов не определен
78
+ files?: DocHubResourceMetaFile[] // Если undefined - статус содержания файлов не определен
79
79
  }
80
80
 
81
81
  /**
@@ -84,7 +84,7 @@ export type DocHubResourceMetaBranch = {
84
84
  export type DocHubResourceMetaRepo = {
85
85
  type: DocHubResourceType.repo;
86
86
  uri: string;
87
- branches?: string[]; // Если undefined - статус содержания веток неопределен
87
+ branches?: DocHubResourceMetaBranch[]; // Если undefined - статус содержания веток неопределен
88
88
  }
89
89
 
90
90
  /**
@@ -93,7 +93,7 @@ export type DocHubResourceMetaRepo = {
93
93
  export type DocHubResourceMetaHost = {
94
94
  type: DocHubResourceType.host;
95
95
  uri: string;
96
- buckets?: DocHubResourceMetaRepo[]; // В зависимости от хоста может быть репозиторием и т.п.
96
+ buckets?: DocHubResourceMetaRepo[]; // В зависимости от хоста может быть репозиторием и т.п.
97
97
  }
98
98
 
99
99
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.299",
3
+ "version": "0.1.300",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",