Skip to content

Variable: DeleteRelationshipSchema

ts
const DeleteRelationshipSchema: ZodObject<{
  relationName: ZodString;
  sourceKey: ZodString;
  sourceStatus: ZodOptional<ZodString>;
  sourceType: ZodCustom<"content" | "user" | string & object | "space", "content" | "user" | string & object | "space">;
  sourceVersion: ZodOptional<ZodNumber>;
  targetKey: ZodString;
  targetStatus: ZodOptional<ZodString>;
  targetType: ZodCustom<"content" | "user" | string & object | "space", "content" | "user" | string & object | "space">;
  targetVersion: ZodOptional<ZodNumber>;
}, $strip>;

Defined in: src/v1/parameters/deleteRelationship.ts:4