+1
-1
packages/producer/deno.jsonc
+1
-1
packages/producer/deno.jsonc
+2
-2
packages/producer/types.ts
+2
-2
packages/producer/types.ts
···
1
1
import type { BaseClientOptions, ClientRequirements } from "@cistern/shared";
2
-
import type { RecordKey, ResourceUri } from "@atcute/lexicons";
2
+
import type { ResourceUri } from "@atcute/lexicons";
3
3
4
4
/** Credentials and an optional public key, used for deriving `ProducerParams` */
5
5
export interface ProducerOptions extends BaseClientOptions {
6
6
/** 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 */
7
-
publicKey?: RecordKey;
7
+
publicKey?: string;
8
8
}
9
9
10
10
/** Required parameters for constructing a `Producer`. These are automatically created for you in `createProducer` */