@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.
@@ -1599,11 +1599,11 @@ __export(jobs_exports, {
1599
1599
  streaming: () => streaming
1600
1600
  });
1601
1601
  var get = (id, options) => {
1602
- return chainstreamApiClient({ url: `/jobs/${id}`, method: "GET" }, options);
1602
+ return chainstreamApiClient({ url: `/v1/jobs/${id}`, method: "GET" }, options);
1603
1603
  };
1604
1604
  var streaming = (id, options) => {
1605
1605
  return chainstreamApiClient(
1606
- { url: `/jobs/${id}/streaming`, method: "GET" },
1606
+ { url: `/v1/jobs/${id}/streaming`, method: "GET" },
1607
1607
  options
1608
1608
  );
1609
1609
  };