@mesh-sync/worker-backend-client 1.0.1 → 1.0.3

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 CHANGED
@@ -218,11 +218,13 @@ await client.sendToQueue(MessageTypes.FILE_DOWNLOAD_REQUEST, {
218
218
 
219
219
  **Fields:**
220
220
 
221
- - `libraryId` (string) []: The ID of the library to scan.
221
+ - `libraryId` (string) []: The ID of the library to scan.
222
222
 
223
- - `storageConnectionId` (string) []: The ID of the storage connection to scan.
223
+ - `storageConnectionId` (string) []: The ID of the storage connection to scan.
224
224
 
225
- - `providerType` (string) []: The type of the storage provider.
225
+ - `providerType` (string) []: The type of the storage provider.
226
+
227
+ - `path` (string) [✗]: The specific path within the storage connection to scan for this library.
226
228
 
227
229
 
228
230
 
package/dist/types.d.ts CHANGED
@@ -94,11 +94,13 @@ export interface ModelDiscoveryScanProgressEventMessage {
94
94
  */
95
95
  export interface ModelDiscoveryScanRequestMessage {
96
96
  /** The ID of the library to scan. */
97
- libraryId: string;
97
+ libraryId?: string;
98
98
  /** The ID of the storage connection to scan. */
99
- storageConnectionId: string;
99
+ storageConnectionId?: string;
100
100
  /** The type of the storage provider. */
101
- providerType: string;
101
+ providerType?: string;
102
+ /** The specific path within the storage connection to scan for this library. */
103
+ path?: string;
102
104
  }
103
105
  /**
104
106
  * 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.1",
3
+ "version": "1.0.3",
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",