Skip to content

Variable: BulkContentBodyConversionInputSchema

ts
const BulkContentBodyConversionInputSchema: ZodObject<{
  conversionInputs: ZodOptional<ZodArray<ZodObject<{
     allowCache: ZodOptional<ZodBoolean>;
     body: ZodObject<{
        representation: ZodCustom<
           | "raw"
           | "storage"
           | "view"
           | ... & ...
           | "export_view"
           | "styled_view"
           | "editor"
           | "editor2"
           | "anonymous_export_view"
           | "wiki"
           | "atlas_doc_format"
           | "plain", 
           | "raw"
           | "storage"
           | "view"
           | ... & ...
           | "export_view"
           | "styled_view"
           | "editor"
           | "editor2"
           | "anonymous_export_view"
           | "wiki"
           | "atlas_doc_format"
          | "plain">;
        value: ZodString;
     }, $loose>;
     contentIdContext: ZodOptional<ZodString>;
     embeddedContentRender: ZodOptional<ZodCustom<string & object | "current" | "version-at-save", string & object | "current" | "version-at-save">>;
     expand: ZodOptional<ZodArray<ZodString>>;
     spaceKeyContext: ZodOptional<ZodString>;
     to: ZodString;
  }, $loose>>>;
}, $loose>;

Defined in: src/v1/models/bulkContentBodyConversionInput.ts:5