Encrypted, ephemeral, private memos on atproto
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(producer): relax exported types

+3 -3
+1 -1
packages/producer/deno.jsonc
··· 1 1 { 2 2 "name": "@cistern/producer", 3 - "version": "1.0.1", 3 + "version": "1.0.2", 4 4 "license": "MIT", 5 5 "exports": { 6 6 ".": "./mod.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` */