Uses atcute to show how you can do upserts with atproto records

forgot a message about how important the clock id is

+3
+3
upsertFullExample.js
··· 1 1 import 'dotenv/config'; 2 2 import { Client, CredentialManager, ok } from '@atcute/client'; 3 3 import * as TID from '@atcute/tid'; 4 + 5 + //You want to make sure this is always the same for the applications you are generating upsert tids for 6 + //If you use the same timestamp but a different clock id, you will get different tids 4 7 const CLOCK_ID = 23; 5 8 6 9 const logErrorAndThrow = (err) => {