@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.mjs CHANGED
@@ -1642,11 +1642,11 @@ __export(jobs_exports, {
1642
1642
  streaming: () => streaming
1643
1643
  });
1644
1644
  var get = (id, options) => {
1645
- return chainstreamApiClient({ url: `/jobs/${id}`, method: "GET" }, options);
1645
+ return chainstreamApiClient({ url: `/v1/jobs/${id}`, method: "GET" }, options);
1646
1646
  };
1647
1647
  var streaming = (id, options) => {
1648
1648
  return chainstreamApiClient(
1649
- { url: `/jobs/${id}/streaming`, method: "GET" },
1649
+ { url: `/v1/jobs/${id}/streaming`, method: "GET" },
1650
1650
  options
1651
1651
  );
1652
1652
  };