dochub-sdk 0.1.238 → 0.1.240
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/protocols.ts +2 -2
- package/package.json +1 -1
package/interfaces/protocols.ts
CHANGED
@@ -78,8 +78,8 @@ export type DocHubResourceMeta = DocHubResourceMetaFile | DocHubResourceMetaFold
|
|
78
78
|
* Информация о версии ресурса
|
79
79
|
*/
|
80
80
|
export interface IDocHubResourceVersion {
|
81
|
-
|
82
|
-
uri: string; // URI файла версии
|
81
|
+
uid: string; // Идентификатор версии в формате определенном протоколом
|
82
|
+
uri: string; // URI файла в этой версии
|
83
83
|
moment: Date; // Дата и время версии
|
84
84
|
author: string; // Автор версии
|
85
85
|
}
|