shred-api-client 2.4.0 → 2.4.1-rc.0

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.ts CHANGED
@@ -1709,6 +1709,7 @@ declare const ProjectSchema: z.ZodObject<{
1709
1709
  }[];
1710
1710
  comment?: string | undefined;
1711
1711
  }>>;
1712
+ isFeedbackEnabled: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1712
1713
  captionSuggestion: z.ZodOptional<z.ZodString>;
1713
1714
  editorId: z.ZodOptional<z.ZodString>;
1714
1715
  userId: z.ZodString;
@@ -1810,6 +1811,7 @@ declare const ProjectSchema: z.ZodObject<{
1810
1811
  duration?: number | undefined;
1811
1812
  progress?: number | undefined;
1812
1813
  }[] | undefined;
1814
+ isFeedbackEnabled?: boolean | undefined;
1813
1815
  editorId?: string | undefined;
1814
1816
  finalVideoId?: string | undefined;
1815
1817
  feedback?: {
@@ -1857,6 +1859,7 @@ declare const ProjectSchema: z.ZodObject<{
1857
1859
  duration?: number | undefined;
1858
1860
  progress?: number | undefined;
1859
1861
  }[] | undefined;
1862
+ isFeedbackEnabled?: boolean | undefined;
1860
1863
  editorId?: string | undefined;
1861
1864
  finalVideoId?: string | undefined;
1862
1865
  feedback?: {
package/dist/index.js CHANGED
@@ -5032,6 +5032,7 @@ var ProjectSchema = external_exports.object({
5032
5032
  thumbnailUrl: external_exports.string().optional(),
5033
5033
  modified: external_exports.number(),
5034
5034
  feedback: FeedbackSchema.optional(),
5035
+ isFeedbackEnabled: external_exports.boolean().default(true).optional(),
5035
5036
  captionSuggestion: external_exports.string().optional(),
5036
5037
  editorId: external_exports.string().optional(),
5037
5038
  userId: external_exports.string(),