@fgv/ts-http-storage 5.1.0-1

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.
Files changed (137) hide show
  1. package/.rush/temp/chunked-rush-logs/ts-http-storage.build.chunks.jsonl +9 -0
  2. package/.rush/temp/fbfcc9487d290993ba47f1d36e9383196e7b12ac.tar.log +61 -0
  3. package/.rush/temp/operation/build/all.log +9 -0
  4. package/.rush/temp/operation/build/log-chunks.jsonl +9 -0
  5. package/.rush/temp/operation/build/state.json +3 -0
  6. package/.rush/temp/shrinkwrap-deps.json +647 -0
  7. package/config/api-extractor.json +36 -0
  8. package/config/rig.json +10 -0
  9. package/config/typedoc.json +7 -0
  10. package/dist/ts-http-storage.d.ts +225 -0
  11. package/dist/tsdoc-metadata.json +11 -0
  12. package/docs/README.md +298 -0
  13. package/docs/classes/FsStorageProvider.createDirectory.md +20 -0
  14. package/docs/classes/FsStorageProvider.getChildren.md +20 -0
  15. package/docs/classes/FsStorageProvider.getFile.md +20 -0
  16. package/docs/classes/FsStorageProvider.getItem.md +20 -0
  17. package/docs/classes/FsStorageProvider.md +134 -0
  18. package/docs/classes/FsStorageProvider.saveFile.md +22 -0
  19. package/docs/classes/FsStorageProvider.sync.md +13 -0
  20. package/docs/classes/FsStorageProviderFactory.forNamespace.md +20 -0
  21. package/docs/classes/FsStorageProviderFactory.md +69 -0
  22. package/docs/classes/HttpStorageService.createDirectory.md +20 -0
  23. package/docs/classes/HttpStorageService.getChildren.md +20 -0
  24. package/docs/classes/HttpStorageService.getFile.md +20 -0
  25. package/docs/classes/HttpStorageService.getItem.md +20 -0
  26. package/docs/classes/HttpStorageService.md +132 -0
  27. package/docs/classes/HttpStorageService.saveFile.md +20 -0
  28. package/docs/classes/HttpStorageService.sync.md +20 -0
  29. package/docs/functions/createStorageRoutes.md +11 -0
  30. package/docs/functions/normalizeRequestPath.md +11 -0
  31. package/docs/functions/sanitizeNamespace.md +11 -0
  32. package/docs/interfaces/ICreateStorageRoutesOptions.logger.md +9 -0
  33. package/docs/interfaces/ICreateStorageRoutesOptions.md +61 -0
  34. package/docs/interfaces/ICreateStorageRoutesOptions.providers.md +9 -0
  35. package/docs/interfaces/IFsStorageProviderFactoryOptions.md +44 -0
  36. package/docs/interfaces/IFsStorageProviderFactoryOptions.rootPath.md +9 -0
  37. package/docs/interfaces/IHttpStorageProvider.createDirectory.md +20 -0
  38. package/docs/interfaces/IHttpStorageProvider.getChildren.md +20 -0
  39. package/docs/interfaces/IHttpStorageProvider.getFile.md +20 -0
  40. package/docs/interfaces/IHttpStorageProvider.getItem.md +20 -0
  41. package/docs/interfaces/IHttpStorageProvider.md +102 -0
  42. package/docs/interfaces/IHttpStorageProvider.saveFile.md +22 -0
  43. package/docs/interfaces/IHttpStorageProvider.sync.md +13 -0
  44. package/docs/interfaces/IHttpStorageProviderFactory.forNamespace.md +20 -0
  45. package/docs/interfaces/IHttpStorageProviderFactory.md +36 -0
  46. package/docs/interfaces/IStorageFileResponse.contentType.md +9 -0
  47. package/docs/interfaces/IStorageFileResponse.contents.md +9 -0
  48. package/docs/interfaces/IStorageFileResponse.md +78 -0
  49. package/docs/interfaces/IStorageFileResponse.path.md +9 -0
  50. package/docs/interfaces/IStoragePathRequest.md +61 -0
  51. package/docs/interfaces/IStoragePathRequest.namespace.md +9 -0
  52. package/docs/interfaces/IStoragePathRequest.path.md +9 -0
  53. package/docs/interfaces/IStorageSyncRequest.md +44 -0
  54. package/docs/interfaces/IStorageSyncRequest.namespace.md +9 -0
  55. package/docs/interfaces/IStorageSyncResponse.md +44 -0
  56. package/docs/interfaces/IStorageSyncResponse.synced.md +9 -0
  57. package/docs/interfaces/IStorageTreeChildrenResponse.children.md +9 -0
  58. package/docs/interfaces/IStorageTreeChildrenResponse.md +61 -0
  59. package/docs/interfaces/IStorageTreeChildrenResponse.path.md +9 -0
  60. package/docs/interfaces/IStorageTreeItem.md +78 -0
  61. package/docs/interfaces/IStorageTreeItem.name.md +9 -0
  62. package/docs/interfaces/IStorageTreeItem.path.md +9 -0
  63. package/docs/interfaces/IStorageTreeItem.type.md +9 -0
  64. package/docs/interfaces/IStorageWriteFileRequest.contentType.md +9 -0
  65. package/docs/interfaces/IStorageWriteFileRequest.contents.md +9 -0
  66. package/docs/interfaces/IStorageWriteFileRequest.md +97 -0
  67. package/docs/type-aliases/StorageItemType.md +11 -0
  68. package/docs/type-aliases/StorageNamespace.md +11 -0
  69. package/docs/variables/storageFileResponse.md +9 -0
  70. package/docs/variables/storagePathRequest.md +9 -0
  71. package/docs/variables/storageSyncRequest.md +9 -0
  72. package/docs/variables/storageTreeChildrenResponse.md +9 -0
  73. package/docs/variables/storageTreeItem.md +9 -0
  74. package/docs/variables/storageWriteFileRequest.md +9 -0
  75. package/etc/ts-http-storage.api.md +184 -0
  76. package/lib/index.d.ts +6 -0
  77. package/lib/index.d.ts.map +1 -0
  78. package/lib/index.js +43 -0
  79. package/lib/index.js.map +1 -0
  80. package/lib/packlets/storage/converters.d.ts +33 -0
  81. package/lib/packlets/storage/converters.d.ts.map +1 -0
  82. package/lib/packlets/storage/converters.js +81 -0
  83. package/lib/packlets/storage/converters.js.map +1 -0
  84. package/lib/packlets/storage/fsProvider.d.ts +47 -0
  85. package/lib/packlets/storage/fsProvider.d.ts.map +1 -0
  86. package/lib/packlets/storage/fsProvider.js +260 -0
  87. package/lib/packlets/storage/fsProvider.js.map +1 -0
  88. package/lib/packlets/storage/index.d.ts +11 -0
  89. package/lib/packlets/storage/index.d.ts.map +1 -0
  90. package/lib/packlets/storage/index.js +48 -0
  91. package/lib/packlets/storage/index.js.map +1 -0
  92. package/lib/packlets/storage/model.d.ts +82 -0
  93. package/lib/packlets/storage/model.d.ts.map +1 -0
  94. package/lib/packlets/storage/model.js +24 -0
  95. package/lib/packlets/storage/model.js.map +1 -0
  96. package/lib/packlets/storage/provider.d.ts +10 -0
  97. package/lib/packlets/storage/provider.d.ts.map +1 -0
  98. package/lib/packlets/storage/provider.js +24 -0
  99. package/lib/packlets/storage/provider.js.map +1 -0
  100. package/lib/packlets/storage/routes.d.ts +17 -0
  101. package/lib/packlets/storage/routes.d.ts.map +1 -0
  102. package/lib/packlets/storage/routes.js +170 -0
  103. package/lib/packlets/storage/routes.js.map +1 -0
  104. package/lib/packlets/storage/service.d.ts +20 -0
  105. package/lib/packlets/storage/service.d.ts.map +1 -0
  106. package/lib/packlets/storage/service.js +95 -0
  107. package/lib/packlets/storage/service.js.map +1 -0
  108. package/lib/test/unit/storage/fsProvider.test.d.ts +2 -0
  109. package/lib/test/unit/storage/fsProvider.test.d.ts.map +1 -0
  110. package/lib/test/unit/storage/fsProvider.test.js +106 -0
  111. package/lib/test/unit/storage/fsProvider.test.js.map +1 -0
  112. package/lib/test/unit/storage/routes.test.d.ts +2 -0
  113. package/lib/test/unit/storage/routes.test.d.ts.map +1 -0
  114. package/lib/test/unit/storage/routes.test.js +124 -0
  115. package/lib/test/unit/storage/routes.test.js.map +1 -0
  116. package/lib/test/unit/storage/service.test.d.ts +2 -0
  117. package/lib/test/unit/storage/service.test.d.ts.map +1 -0
  118. package/lib/test/unit/storage/service.test.js +67 -0
  119. package/lib/test/unit/storage/service.test.js.map +1 -0
  120. package/package.json +66 -0
  121. package/rush-logs/ts-http-storage.build.cache.log +3 -0
  122. package/rush-logs/ts-http-storage.build.log +9 -0
  123. package/src/index.ts +28 -0
  124. package/src/packlets/storage/converters.ts +100 -0
  125. package/src/packlets/storage/fsProvider.ts +263 -0
  126. package/src/packlets/storage/index.ts +33 -0
  127. package/src/packlets/storage/model.ts +113 -0
  128. package/src/packlets/storage/provider.ts +33 -0
  129. package/src/packlets/storage/routes.ts +215 -0
  130. package/src/packlets/storage/service.ts +114 -0
  131. package/src/test/unit/storage/fsProvider.test.ts +129 -0
  132. package/src/test/unit/storage/routes.test.ts +165 -0
  133. package/src/test/unit/storage/service.test.ts +95 -0
  134. package/temp/build/typescript/ts_l9Fw4VUO.json +1 -0
  135. package/temp/ts-http-storage.api.json +3103 -0
  136. package/temp/ts-http-storage.api.md +184 -0
  137. package/tsconfig.json +7 -0
@@ -0,0 +1,20 @@
1
+ [Home](../README.md) > [IHttpStorageProvider](./IHttpStorageProvider.md) > createDirectory
2
+
3
+ ## IHttpStorageProvider.createDirectory() method
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ createDirectory(path: string): Promise<Result<IStorageTreeItem>>;
9
+ ```
10
+
11
+ **Parameters:**
12
+
13
+ <table><thead><tr><th>Parameter</th><th>Type</th><th>Description</th></tr></thead>
14
+ <tbody>
15
+ <tr><td>path</td><td>string</td><td></td></tr>
16
+ </tbody></table>
17
+
18
+ **Returns:**
19
+
20
+ Promise&lt;Result&lt;[IStorageTreeItem](IStorageTreeItem.md)&gt;&gt;
@@ -0,0 +1,20 @@
1
+ [Home](../README.md) > [IHttpStorageProvider](./IHttpStorageProvider.md) > getChildren
2
+
3
+ ## IHttpStorageProvider.getChildren() method
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ getChildren(path: string): Promise<Result<readonly IStorageTreeItem[]>>;
9
+ ```
10
+
11
+ **Parameters:**
12
+
13
+ <table><thead><tr><th>Parameter</th><th>Type</th><th>Description</th></tr></thead>
14
+ <tbody>
15
+ <tr><td>path</td><td>string</td><td></td></tr>
16
+ </tbody></table>
17
+
18
+ **Returns:**
19
+
20
+ Promise&lt;Result&lt;readonly [IStorageTreeItem](IStorageTreeItem.md)[]&gt;&gt;
@@ -0,0 +1,20 @@
1
+ [Home](../README.md) > [IHttpStorageProvider](./IHttpStorageProvider.md) > getFile
2
+
3
+ ## IHttpStorageProvider.getFile() method
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ getFile(path: string): Promise<Result<IStorageFileResponse>>;
9
+ ```
10
+
11
+ **Parameters:**
12
+
13
+ <table><thead><tr><th>Parameter</th><th>Type</th><th>Description</th></tr></thead>
14
+ <tbody>
15
+ <tr><td>path</td><td>string</td><td></td></tr>
16
+ </tbody></table>
17
+
18
+ **Returns:**
19
+
20
+ Promise&lt;Result&lt;[IStorageFileResponse](IStorageFileResponse.md)&gt;&gt;
@@ -0,0 +1,20 @@
1
+ [Home](../README.md) > [IHttpStorageProvider](./IHttpStorageProvider.md) > getItem
2
+
3
+ ## IHttpStorageProvider.getItem() method
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ getItem(path: string): Promise<Result<IStorageTreeItem>>;
9
+ ```
10
+
11
+ **Parameters:**
12
+
13
+ <table><thead><tr><th>Parameter</th><th>Type</th><th>Description</th></tr></thead>
14
+ <tbody>
15
+ <tr><td>path</td><td>string</td><td></td></tr>
16
+ </tbody></table>
17
+
18
+ **Returns:**
19
+
20
+ Promise&lt;Result&lt;[IStorageTreeItem](IStorageTreeItem.md)&gt;&gt;
@@ -0,0 +1,102 @@
1
+ [Home](../README.md) > IHttpStorageProvider
2
+
3
+ # Interface: IHttpStorageProvider
4
+
5
+ Provider contract for storage backends.
6
+ All methods are async to support both filesystem and database backends.
7
+
8
+ ## Methods
9
+
10
+ <table><thead><tr><th>
11
+
12
+ Method
13
+
14
+ </th><th>
15
+
16
+ Modifiers
17
+
18
+ </th><th>
19
+
20
+ Description
21
+
22
+ </th></tr></thead>
23
+ <tbody>
24
+ <tr><td>
25
+
26
+ [getItem(path)](./IHttpStorageProvider.getItem.md)
27
+
28
+ </td><td>
29
+
30
+
31
+
32
+ </td><td>
33
+
34
+
35
+
36
+ </td></tr>
37
+ <tr><td>
38
+
39
+ [getChildren(path)](./IHttpStorageProvider.getChildren.md)
40
+
41
+ </td><td>
42
+
43
+
44
+
45
+ </td><td>
46
+
47
+
48
+
49
+ </td></tr>
50
+ <tr><td>
51
+
52
+ [getFile(path)](./IHttpStorageProvider.getFile.md)
53
+
54
+ </td><td>
55
+
56
+
57
+
58
+ </td><td>
59
+
60
+
61
+
62
+ </td></tr>
63
+ <tr><td>
64
+
65
+ [saveFile(path, contents, contentType)](./IHttpStorageProvider.saveFile.md)
66
+
67
+ </td><td>
68
+
69
+
70
+
71
+ </td><td>
72
+
73
+
74
+
75
+ </td></tr>
76
+ <tr><td>
77
+
78
+ [createDirectory(path)](./IHttpStorageProvider.createDirectory.md)
79
+
80
+ </td><td>
81
+
82
+
83
+
84
+ </td><td>
85
+
86
+
87
+
88
+ </td></tr>
89
+ <tr><td>
90
+
91
+ [sync()](./IHttpStorageProvider.sync.md)
92
+
93
+ </td><td>
94
+
95
+
96
+
97
+ </td><td>
98
+
99
+
100
+
101
+ </td></tr>
102
+ </tbody></table>
@@ -0,0 +1,22 @@
1
+ [Home](../README.md) > [IHttpStorageProvider](./IHttpStorageProvider.md) > saveFile
2
+
3
+ ## IHttpStorageProvider.saveFile() method
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ saveFile(path: string, contents: string, contentType?: string): Promise<Result<IStorageFileResponse>>;
9
+ ```
10
+
11
+ **Parameters:**
12
+
13
+ <table><thead><tr><th>Parameter</th><th>Type</th><th>Description</th></tr></thead>
14
+ <tbody>
15
+ <tr><td>path</td><td>string</td><td></td></tr>
16
+ <tr><td>contents</td><td>string</td><td></td></tr>
17
+ <tr><td>contentType</td><td>string</td><td></td></tr>
18
+ </tbody></table>
19
+
20
+ **Returns:**
21
+
22
+ Promise&lt;Result&lt;[IStorageFileResponse](IStorageFileResponse.md)&gt;&gt;
@@ -0,0 +1,13 @@
1
+ [Home](../README.md) > [IHttpStorageProvider](./IHttpStorageProvider.md) > sync
2
+
3
+ ## IHttpStorageProvider.sync() method
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ sync(): Promise<Result<IStorageSyncResponse>>;
9
+ ```
10
+
11
+ **Returns:**
12
+
13
+ Promise&lt;Result&lt;[IStorageSyncResponse](IStorageSyncResponse.md)&gt;&gt;
@@ -0,0 +1,20 @@
1
+ [Home](../README.md) > [IHttpStorageProviderFactory](./IHttpStorageProviderFactory.md) > forNamespace
2
+
3
+ ## IHttpStorageProviderFactory.forNamespace() method
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ forNamespace(namespace?: string): Result<IHttpStorageProvider>;
9
+ ```
10
+
11
+ **Parameters:**
12
+
13
+ <table><thead><tr><th>Parameter</th><th>Type</th><th>Description</th></tr></thead>
14
+ <tbody>
15
+ <tr><td>namespace</td><td>string</td><td></td></tr>
16
+ </tbody></table>
17
+
18
+ **Returns:**
19
+
20
+ Result&lt;[IHttpStorageProvider](IHttpStorageProvider.md)&gt;
@@ -0,0 +1,36 @@
1
+ [Home](../README.md) > IHttpStorageProviderFactory
2
+
3
+ # Interface: IHttpStorageProviderFactory
4
+
5
+ Factory for creating namespace-scoped storage providers.
6
+
7
+ ## Methods
8
+
9
+ <table><thead><tr><th>
10
+
11
+ Method
12
+
13
+ </th><th>
14
+
15
+ Modifiers
16
+
17
+ </th><th>
18
+
19
+ Description
20
+
21
+ </th></tr></thead>
22
+ <tbody>
23
+ <tr><td>
24
+
25
+ [forNamespace(namespace)](./IHttpStorageProviderFactory.forNamespace.md)
26
+
27
+ </td><td>
28
+
29
+
30
+
31
+ </td><td>
32
+
33
+
34
+
35
+ </td></tr>
36
+ </tbody></table>
@@ -0,0 +1,9 @@
1
+ [Home](../README.md) > [IStorageFileResponse](./IStorageFileResponse.md) > contentType
2
+
3
+ ## IStorageFileResponse.contentType property
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ readonly contentType: string;
9
+ ```
@@ -0,0 +1,9 @@
1
+ [Home](../README.md) > [IStorageFileResponse](./IStorageFileResponse.md) > contents
2
+
3
+ ## IStorageFileResponse.contents property
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ readonly contents: string;
9
+ ```
@@ -0,0 +1,78 @@
1
+ [Home](../README.md) > IStorageFileResponse
2
+
3
+ # Interface: IStorageFileResponse
4
+
5
+ Response for reading a file.
6
+
7
+ ## Properties
8
+
9
+ <table><thead><tr><th>
10
+
11
+ Property
12
+
13
+ </th><th>
14
+
15
+ Modifiers
16
+
17
+ </th><th>
18
+
19
+ Type
20
+
21
+ </th><th>
22
+
23
+ Description
24
+
25
+ </th></tr></thead>
26
+ <tbody>
27
+ <tr><td>
28
+
29
+ [path](./IStorageFileResponse.path.md)
30
+
31
+ </td><td>
32
+
33
+ `readonly`
34
+
35
+ </td><td>
36
+
37
+ string
38
+
39
+ </td><td>
40
+
41
+
42
+
43
+ </td></tr>
44
+ <tr><td>
45
+
46
+ [contents](./IStorageFileResponse.contents.md)
47
+
48
+ </td><td>
49
+
50
+ `readonly`
51
+
52
+ </td><td>
53
+
54
+ string
55
+
56
+ </td><td>
57
+
58
+
59
+
60
+ </td></tr>
61
+ <tr><td>
62
+
63
+ [contentType](./IStorageFileResponse.contentType.md)
64
+
65
+ </td><td>
66
+
67
+ `readonly`
68
+
69
+ </td><td>
70
+
71
+ string
72
+
73
+ </td><td>
74
+
75
+
76
+
77
+ </td></tr>
78
+ </tbody></table>
@@ -0,0 +1,9 @@
1
+ [Home](../README.md) > [IStorageFileResponse](./IStorageFileResponse.md) > path
2
+
3
+ ## IStorageFileResponse.path property
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ readonly path: string;
9
+ ```
@@ -0,0 +1,61 @@
1
+ [Home](../README.md) > IStoragePathRequest
2
+
3
+ # Interface: IStoragePathRequest
4
+
5
+ Request for path-based operations.
6
+
7
+ ## Properties
8
+
9
+ <table><thead><tr><th>
10
+
11
+ Property
12
+
13
+ </th><th>
14
+
15
+ Modifiers
16
+
17
+ </th><th>
18
+
19
+ Type
20
+
21
+ </th><th>
22
+
23
+ Description
24
+
25
+ </th></tr></thead>
26
+ <tbody>
27
+ <tr><td>
28
+
29
+ [path](./IStoragePathRequest.path.md)
30
+
31
+ </td><td>
32
+
33
+ `readonly`
34
+
35
+ </td><td>
36
+
37
+ string
38
+
39
+ </td><td>
40
+
41
+
42
+
43
+ </td></tr>
44
+ <tr><td>
45
+
46
+ [namespace](./IStoragePathRequest.namespace.md)
47
+
48
+ </td><td>
49
+
50
+ `readonly`
51
+
52
+ </td><td>
53
+
54
+ string
55
+
56
+ </td><td>
57
+
58
+
59
+
60
+ </td></tr>
61
+ </tbody></table>
@@ -0,0 +1,9 @@
1
+ [Home](../README.md) > [IStoragePathRequest](./IStoragePathRequest.md) > namespace
2
+
3
+ ## IStoragePathRequest.namespace property
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ readonly namespace: string;
9
+ ```
@@ -0,0 +1,9 @@
1
+ [Home](../README.md) > [IStoragePathRequest](./IStoragePathRequest.md) > path
2
+
3
+ ## IStoragePathRequest.path property
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ readonly path: string;
9
+ ```
@@ -0,0 +1,44 @@
1
+ [Home](../README.md) > IStorageSyncRequest
2
+
3
+ # Interface: IStorageSyncRequest
4
+
5
+ Request for sync operation.
6
+
7
+ ## Properties
8
+
9
+ <table><thead><tr><th>
10
+
11
+ Property
12
+
13
+ </th><th>
14
+
15
+ Modifiers
16
+
17
+ </th><th>
18
+
19
+ Type
20
+
21
+ </th><th>
22
+
23
+ Description
24
+
25
+ </th></tr></thead>
26
+ <tbody>
27
+ <tr><td>
28
+
29
+ [namespace](./IStorageSyncRequest.namespace.md)
30
+
31
+ </td><td>
32
+
33
+ `readonly`
34
+
35
+ </td><td>
36
+
37
+ string
38
+
39
+ </td><td>
40
+
41
+
42
+
43
+ </td></tr>
44
+ </tbody></table>
@@ -0,0 +1,9 @@
1
+ [Home](../README.md) > [IStorageSyncRequest](./IStorageSyncRequest.md) > namespace
2
+
3
+ ## IStorageSyncRequest.namespace property
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ readonly namespace: string;
9
+ ```
@@ -0,0 +1,44 @@
1
+ [Home](../README.md) > IStorageSyncResponse
2
+
3
+ # Interface: IStorageSyncResponse
4
+
5
+ Sync response metadata.
6
+
7
+ ## Properties
8
+
9
+ <table><thead><tr><th>
10
+
11
+ Property
12
+
13
+ </th><th>
14
+
15
+ Modifiers
16
+
17
+ </th><th>
18
+
19
+ Type
20
+
21
+ </th><th>
22
+
23
+ Description
24
+
25
+ </th></tr></thead>
26
+ <tbody>
27
+ <tr><td>
28
+
29
+ [synced](./IStorageSyncResponse.synced.md)
30
+
31
+ </td><td>
32
+
33
+ `readonly`
34
+
35
+ </td><td>
36
+
37
+ number
38
+
39
+ </td><td>
40
+
41
+
42
+
43
+ </td></tr>
44
+ </tbody></table>
@@ -0,0 +1,9 @@
1
+ [Home](../README.md) > [IStorageSyncResponse](./IStorageSyncResponse.md) > synced
2
+
3
+ ## IStorageSyncResponse.synced property
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ readonly synced: number;
9
+ ```
@@ -0,0 +1,9 @@
1
+ [Home](../README.md) > [IStorageTreeChildrenResponse](./IStorageTreeChildrenResponse.md) > children
2
+
3
+ ## IStorageTreeChildrenResponse.children property
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ readonly children: readonly IStorageTreeItem[];
9
+ ```
@@ -0,0 +1,61 @@
1
+ [Home](../README.md) > IStorageTreeChildrenResponse
2
+
3
+ # Interface: IStorageTreeChildrenResponse
4
+
5
+ Response for listing children.
6
+
7
+ ## Properties
8
+
9
+ <table><thead><tr><th>
10
+
11
+ Property
12
+
13
+ </th><th>
14
+
15
+ Modifiers
16
+
17
+ </th><th>
18
+
19
+ Type
20
+
21
+ </th><th>
22
+
23
+ Description
24
+
25
+ </th></tr></thead>
26
+ <tbody>
27
+ <tr><td>
28
+
29
+ [path](./IStorageTreeChildrenResponse.path.md)
30
+
31
+ </td><td>
32
+
33
+ `readonly`
34
+
35
+ </td><td>
36
+
37
+ string
38
+
39
+ </td><td>
40
+
41
+
42
+
43
+ </td></tr>
44
+ <tr><td>
45
+
46
+ [children](./IStorageTreeChildrenResponse.children.md)
47
+
48
+ </td><td>
49
+
50
+ `readonly`
51
+
52
+ </td><td>
53
+
54
+ readonly [IStorageTreeItem](IStorageTreeItem.md)[]
55
+
56
+ </td><td>
57
+
58
+
59
+
60
+ </td></tr>
61
+ </tbody></table>
@@ -0,0 +1,9 @@
1
+ [Home](../README.md) > [IStorageTreeChildrenResponse](./IStorageTreeChildrenResponse.md) > path
2
+
3
+ ## IStorageTreeChildrenResponse.path property
4
+
5
+ **Signature:**
6
+
7
+ ```typescript
8
+ readonly path: string;
9
+ ```