PublishingTask: {
    createdAt: string;
    error: { code?: string; message?: string } | null;
    id: string;
    packageName: PackageName;
    packageScope: ScopeName;
    packageVersion: Version;
    status: "pending" | "processing" | "processed" | "success" | "failure";
    updatedAt: string;
    userId: UserId & null;
}

Type declaration

  • createdAt: string

    The date and time when the publishing task was created.

  • error: { code?: string; message?: string } | null
  • id: string

    The ID of the publishing task.

  • packageName: PackageName
  • packageScope: ScopeName
  • packageVersion: Version
  • status: "pending" | "processing" | "processed" | "success" | "failure"

    The status of the publishing task.

  • updatedAt: string

    The date and time when the publishing task was last updated.

  • userId: UserId & null