@mesh-sync/worker-backend-client 1.0.1 → 1.0.2
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/README.md +3 -3
- package/dist/types.d.ts +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -218,11 +218,11 @@ await client.sendToQueue(MessageTypes.FILE_DOWNLOAD_REQUEST, {
|
|
|
218
218
|
|
|
219
219
|
**Fields:**
|
|
220
220
|
|
|
221
|
-
- `libraryId` (string) [
|
|
221
|
+
- `libraryId` (string) [✗]: The ID of the library to scan.
|
|
222
222
|
|
|
223
|
-
- `storageConnectionId` (string) [
|
|
223
|
+
- `storageConnectionId` (string) [✗]: The ID of the storage connection to scan.
|
|
224
224
|
|
|
225
|
-
- `providerType` (string) [
|
|
225
|
+
- `providerType` (string) [✗]: The type of the storage provider.
|
|
226
226
|
|
|
227
227
|
|
|
228
228
|
|
package/dist/types.d.ts
CHANGED
|
@@ -94,11 +94,11 @@ export interface ModelDiscoveryScanProgressEventMessage {
|
|
|
94
94
|
*/
|
|
95
95
|
export interface ModelDiscoveryScanRequestMessage {
|
|
96
96
|
/** The ID of the library to scan. */
|
|
97
|
-
libraryId
|
|
97
|
+
libraryId?: string;
|
|
98
98
|
/** The ID of the storage connection to scan. */
|
|
99
|
-
storageConnectionId
|
|
99
|
+
storageConnectionId?: string;
|
|
100
100
|
/** The type of the storage provider. */
|
|
101
|
-
providerType
|
|
101
|
+
providerType?: string;
|
|
102
102
|
}
|
|
103
103
|
/**
|
|
104
104
|
* Handles model metadata generation completed.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mesh-sync/worker-backend-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Auto-generated TypeScript client for worker-backend - provides type-safe methods for enqueueing jobs",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|