@mesh-sync/worker-backend-client 1.0.2 → 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
@@ -224,6 +224,8 @@ await client.sendToQueue(MessageTypes.FILE_DOWNLOAD_REQUEST, {
224
224
 
225
225
  - `providerType` (string) [✗]: The type of the storage provider.
226
226
 
227
+ - `path` (string) [✗]: The specific path within the storage connection to scan for this library.
228
+
227
229
 
228
230
 
229
231
  ### model-metadata-generation-completed
package/dist/types.d.ts CHANGED
@@ -99,6 +99,8 @@ export interface ModelDiscoveryScanRequestMessage {
99
99
  storageConnectionId?: string;
100
100
  /** The type of the storage provider. */
101
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.2",
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",