@chainstream-io/sdk 0.2.5 → 0.2.6

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/dist/index.cjs CHANGED
@@ -1834,11 +1834,11 @@ __export(jobs_exports, {
1834
1834
  streaming: () => streaming
1835
1835
  });
1836
1836
  var get = (id, options) => {
1837
- return chainstreamApiClient({ url: `/jobs/${id}`, method: "GET" }, options);
1837
+ return chainstreamApiClient({ url: `/v1/jobs/${id}`, method: "GET" }, options);
1838
1838
  };
1839
1839
  var streaming = (id, options) => {
1840
1840
  return chainstreamApiClient(
1841
- { url: `/jobs/${id}/streaming`, method: "GET" },
1841
+ { url: `/v1/jobs/${id}/streaming`, method: "GET" },
1842
1842
  options
1843
1843
  );
1844
1844
  };