krisspy-ai 1.1.17 → 1.1.18

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.d.mts CHANGED
@@ -420,6 +420,7 @@ interface VideoJobSubmission {
420
420
  jobId: string;
421
421
  status: VideoJobStatusType;
422
422
  createdAt: string;
423
+ video?: string;
423
424
  }
424
425
  interface VideoJobStatus {
425
426
  jobId: string;
package/dist/index.d.ts CHANGED
@@ -420,6 +420,7 @@ interface VideoJobSubmission {
420
420
  jobId: string;
421
421
  status: VideoJobStatusType;
422
422
  createdAt: string;
423
+ video?: string;
423
424
  }
424
425
  interface VideoJobStatus {
425
426
  jobId: string;
package/dist/index.js CHANGED
@@ -2010,7 +2010,9 @@ var KrisspySoraService = class extends BaseVideoService {
2010
2010
  return {
2011
2011
  jobId: data.jobId,
2012
2012
  status: "succeeded",
2013
- createdAt: (/* @__PURE__ */ new Date()).toISOString()
2013
+ createdAt: (/* @__PURE__ */ new Date()).toISOString(),
2014
+ video: data.video
2015
+ // Return video directly so app doesn't need to download
2014
2016
  };
2015
2017
  }
2016
2018
  async getJobStatus(jobId) {