@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.
@@ -1627,11 +1627,11 @@ __export(jobs_exports, {
1627
1627
  streaming: () => streaming
1628
1628
  });
1629
1629
  var get = (id, options) => {
1630
- return chainstreamApiClient({ url: `/jobs/${id}`, method: "GET" }, options);
1630
+ return chainstreamApiClient({ url: `/v1/jobs/${id}`, method: "GET" }, options);
1631
1631
  };
1632
1632
  var streaming = (id, options) => {
1633
1633
  return chainstreamApiClient(
1634
- { url: `/jobs/${id}/streaming`, method: "GET" },
1634
+ { url: `/v1/jobs/${id}/streaming`, method: "GET" },
1635
1635
  options
1636
1636
  );
1637
1637
  };