···144144 // Create a note card
145145 const noteCard = new CardBuilder()
146146 .withCuratorId(curatorId.value)
147147- .withNoteCard('This is a test note for publishing', 'Test Note Title')
147147+ .withNoteCard('This is a test note for publishing')
148148 .buildOrThrow();
149149150150 // Add card to curator's library first
···201201 // Create a note card with optional URL
202202 const noteCard = new CardBuilder()
203203 .withCuratorId(curatorId.value)
204204- .withNoteCard('This note references a URL', 'Note with URL')
204204+ .withNoteCard('This note references a URL')
205205 .withUrl(referenceUrl)
206206 .buildOrThrow();
207207···302302 // 2. Create a note card that references the parent URL card
303303 const noteCard = new CardBuilder()
304304 .withCuratorId(curatorId.value)
305305- .withNoteCard('This is my note about the parent article', 'My Notes')
305305+ .withNoteCard('This is my note about the parent article')
306306 .withParentCard(parentUrlCard.cardId)
307307 .withUrl(parentUrl) // Optional: include the same URL as reference
308308 .buildOrThrow();
···2727 return this.props.text;
2828 }
29293030- get title(): string | undefined {
3131- // For backward compatibility, we don't store title separately in the new model
3232- return undefined;
3333- }
3434-3530 get authorId(): CuratorId {
3631 return this.props.authorId;
3732 }
···206206 // Create note by collection author
207207 const authorNote = new CardBuilder()
208208 .withCuratorId(curatorId.value)
209209- .withNoteCard('Note by collection author', 'Author Note')
209209+ .withNoteCard('Note by collection author')
210210 .withParentCard(urlCard.cardId)
211211 .buildOrThrow();
212212···217217 // Create note by different user on the same URL card
218218 const otherUserNote = new CardBuilder()
219219 .withCuratorId(otherCuratorId.value)
220220- .withNoteCard('Note by other user', 'Other User Note')
220220+ .withNoteCard('Note by other user')
221221 .withParentCard(urlCard.cardId)
222222 .buildOrThrow();
223223···278278 // Create note by different user on the URL card (NO note by collection author)
279279 const otherUserNote = new CardBuilder()
280280 .withCuratorId(otherCuratorId.value)
281281- .withNoteCard('Note by other user only', 'Other User Note')
281281+ .withNoteCard('Note by other user only')
282282 .withParentCard(urlCard.cardId)
283283 .buildOrThrow();
284284···342342 // Create note card connected to the OTHER URL card (not in collection)
343343 const noteCard = new CardBuilder()
344344 .withCuratorId(curatorId.value)
345345- .withNoteCard('This note is for the other article', 'Other Note')
345345+ .withNoteCard('This note is for the other article')
346346 .withParentCard(otherUrlCard.cardId)
347347 .buildOrThrow();
348348
···173173 // Create note card connected to URL card
174174 const noteCard = new CardBuilder()
175175 .withCuratorId(curatorId.value)
176176- .withNoteCard('This is my note about the article', 'My Thoughts')
176176+ .withNoteCard('This is my note about the article')
177177 .withParentCard(urlCard.cardId)
178178 .buildOrThrow();
179179···423423 // Create connected note
424424 const noteCard = new CardBuilder()
425425 .withCuratorId(curatorId.value)
426426- .withNoteCard('Detailed analysis of the complex article', 'Analysis')
426426+ .withNoteCard('Detailed analysis of the complex article')
427427 .withParentCard(urlCard.cardId)
428428 .buildOrThrow();
429429