···12121313class Restore {
14141515- constructor() {
1515+ /**
1616+ *
1717+ * @param pdsMooverInstance {string} - The url of the pds moover instance to restore from. Defaults to https://pdsmover.com
1818+ */
1919+ constructor(pdsMooverInstance = 'https://pdsmover.com') {
1620 /**
1721 * If you want to use a different plc directory create your own instance of the plc ops class and pass it in here
1822 * @type {PlcOps} */
···2226 * This is the base url for the pds moover instance used to restore the files from a backup.
2327 * @type {string}
2428 */
2525- this.pdsMooverInstance = 'https://pdsmover.com'
2929+ this.pdsMooverInstance = pdsMooverInstance
26302731 /**
2832 * To keep it simple, only uses secp256k for the temp verification key that is used to create the new account on the new PDS
+2-2
packages/moover/types/backup.d.ts
···1111 */
1212export class BackupService {
1313 /**
1414- * The did:web for the xrpc service for backups, defaults to pdsmoover.com
1515- * @param backupDidWeb
1414+ *
1515+ * @param backupDidWeb {string} - The did:web for the xrpc service for backups, defaults to did:web:pdsmoover.com
1616 */
1717 constructor(backupDidWeb?: string);
1818 /**
···11export type Operation = import("@atcute/did-plc").Operation;
22export class Restore {
33 /**
44+ *
55+ * @param pdsMooverInstance {string} - The url of the pds moover instance to restore from. Defaults to https://pdsmover.com
66+ */
77+ constructor(pdsMooverInstance?: string);
88+ /**
49 * If you want to use a different plc directory create your own instance of the plc ops class and pass it in here
510 * @type {PlcOps} */
611 plcOps: PlcOps;