diff --git a/packages/producer/deno.jsonc b/packages/producer/deno.jsonc index 6f35b52..f76d9d3 100644 --- a/packages/producer/deno.jsonc +++ b/packages/producer/deno.jsonc @@ -1,6 +1,6 @@ { "name": "@cistern/producer", - "version": "1.0.1", + "version": "1.0.2", "license": "MIT", "exports": { ".": "./mod.ts" diff --git a/packages/producer/types.ts b/packages/producer/types.ts index 650019f..92d64e7 100644 --- a/packages/producer/types.ts +++ b/packages/producer/types.ts @@ -1,10 +1,10 @@ import type { BaseClientOptions, ClientRequirements } from "@cistern/shared"; -import type { RecordKey, ResourceUri } from "@atcute/lexicons"; +import type { ResourceUri } from "@atcute/lexicons"; /** Credentials and an optional public key, used for deriving `ProducerParams` */ export interface ProducerOptions extends BaseClientOptions { /** An optional record key to a Cistern public key. Assumed to be within the specified user's PDS, and retrieved before instantiation. You can omit this value if you intend to select a public key later */ - publicKey?: RecordKey; + publicKey?: string; } /** Required parameters for constructing a `Producer`. These are automatically created for you in `createProducer` */