edge-impulse-api 1.93.24 → 1.93.25

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.
@@ -26624,7 +26624,10 @@ export type StartVlmInferenceJobResponse = {
26624
26624
  * Optional error description (set if 'success' was false)
26625
26625
  */
26626
26626
  error?: string;
26627
- jobId: number;
26627
+ /**
26628
+ * Job identifier. Status updates will include this identifier.
26629
+ */
26630
+ id: number;
26628
26631
  configId: number;
26629
26632
  };
26630
26633
 
@@ -7,6 +7,9 @@ export type StartVlmInferenceJobResponse = {
7
7
  * Optional error description (set if 'success' was false)
8
8
  */
9
9
  error?: string;
10
- jobId: number;
10
+ /**
11
+ * Job identifier. Status updates will include this identifier.
12
+ */
13
+ id: number;
11
14
  configId: number;
12
15
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edge-impulse-api",
3
- "version": "1.93.24",
3
+ "version": "1.93.25",
4
4
  "description": "Node.js bindings for the Edge Impulse API",
5
5
  "scripts": {
6
6
  "build": "npm run build:node && node bundler/build-browser-bundle.js",