shred-api-client 2.5.3 → 2.5.4

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
@@ -2203,6 +2203,7 @@ declare namespace index$6 {
2203
2203
 
2204
2204
  declare const EditorSchema: z.ZodObject<{
2205
2205
  id: z.ZodString;
2206
+ name: z.ZodString;
2206
2207
  email: z.ZodString;
2207
2208
  isEnabled: z.ZodBoolean;
2208
2209
  type: z.ZodEnum<["FT", "PT"]>;
@@ -2213,6 +2214,7 @@ declare const EditorSchema: z.ZodObject<{
2213
2214
  email: string;
2214
2215
  id: string;
2215
2216
  type: "FT" | "PT";
2217
+ name: string;
2216
2218
  isEnabled: boolean;
2217
2219
  goal: number;
2218
2220
  maxHold: number;
@@ -2221,6 +2223,7 @@ declare const EditorSchema: z.ZodObject<{
2221
2223
  email: string;
2222
2224
  id: string;
2223
2225
  type: "FT" | "PT";
2226
+ name: string;
2224
2227
  isEnabled: boolean;
2225
2228
  goal: number;
2226
2229
  maxHold: number;
package/dist/index.js CHANGED
@@ -5671,6 +5671,7 @@ __export(editor_exports, {
5671
5671
  // src/model/editor/Editor.schema.ts
5672
5672
  var EditorSchema = external_exports.object({
5673
5673
  id: external_exports.string(),
5674
+ name: external_exports.string(),
5674
5675
  email: external_exports.string(),
5675
5676
  isEnabled: external_exports.boolean(),
5676
5677
  type: external_exports.enum(["FT", "PT"]),