@atproto/pds 0.4.220 → 0.4.221

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/dist/auth-verifier.d.ts +1 -0
  3. package/dist/auth-verifier.d.ts.map +1 -1
  4. package/dist/auth-verifier.js +7 -13
  5. package/dist/auth-verifier.js.map +1 -1
  6. package/dist/index.d.ts +1 -1
  7. package/dist/index.d.ts.map +1 -1
  8. package/dist/index.js +3 -1
  9. package/dist/index.js.map +1 -1
  10. package/dist/lexicons/app/bsky/actor/defs.defs.d.ts +1 -0
  11. package/dist/lexicons/app/bsky/actor/defs.defs.d.ts.map +1 -1
  12. package/dist/lexicons/app/bsky/actor/defs.defs.js +1 -0
  13. package/dist/lexicons/app/bsky/actor/defs.defs.js.map +1 -1
  14. package/dist/lexicons/chat/bsky/actor/defs.defs.d.ts +11 -3
  15. package/dist/lexicons/chat/bsky/actor/defs.defs.d.ts.map +1 -1
  16. package/dist/lexicons/chat/bsky/actor/defs.defs.js +6 -2
  17. package/dist/lexicons/chat/bsky/actor/defs.defs.js.map +1 -1
  18. package/dist/lexicons/chat/bsky/convo/defs.defs.d.ts +98 -23
  19. package/dist/lexicons/chat/bsky/convo/defs.defs.d.ts.map +1 -1
  20. package/dist/lexicons/chat/bsky/convo/defs.defs.js +34 -24
  21. package/dist/lexicons/chat/bsky/convo/defs.defs.js.map +1 -1
  22. package/dist/lexicons/chat/bsky/convo/getConvoMembers.d.ts +3 -0
  23. package/dist/lexicons/chat/bsky/convo/getConvoMembers.d.ts.map +1 -0
  24. package/dist/lexicons/chat/bsky/convo/getConvoMembers.defs.d.ts +26 -0
  25. package/dist/lexicons/chat/bsky/convo/getConvoMembers.defs.d.ts.map +1 -0
  26. package/dist/lexicons/chat/bsky/convo/getConvoMembers.defs.js +55 -0
  27. package/dist/lexicons/chat/bsky/convo/getConvoMembers.defs.js.map +1 -0
  28. package/dist/lexicons/chat/bsky/convo/getConvoMembers.js +45 -0
  29. package/dist/lexicons/chat/bsky/convo/getConvoMembers.js.map +1 -0
  30. package/dist/lexicons/chat/bsky/convo/getMessages.defs.d.ts +3 -0
  31. package/dist/lexicons/chat/bsky/convo/getMessages.defs.d.ts.map +1 -1
  32. package/dist/lexicons/chat/bsky/convo/getMessages.defs.js +2 -0
  33. package/dist/lexicons/chat/bsky/convo/getMessages.defs.js.map +1 -1
  34. package/dist/lexicons/chat/bsky/convo.d.ts +1 -0
  35. package/dist/lexicons/chat/bsky/convo.d.ts.map +1 -1
  36. package/dist/lexicons/chat/bsky/convo.js +2 -1
  37. package/dist/lexicons/chat/bsky/convo.js.map +1 -1
  38. package/dist/lexicons/chat/bsky/group/addMembers.defs.d.ts +3 -0
  39. package/dist/lexicons/chat/bsky/group/addMembers.defs.d.ts.map +1 -1
  40. package/dist/lexicons/chat/bsky/group/addMembers.defs.js +2 -0
  41. package/dist/lexicons/chat/bsky/group/addMembers.defs.js.map +1 -1
  42. package/package.json +11 -12
  43. package/src/auth-verifier.ts +3 -11
  44. package/src/index.ts +5 -1
  45. package/tests/auth.test.ts +3 -1
  46. package/tests/entryway-mock.ts +317 -0
  47. package/tests/entryway.test.ts +18 -100
  48. package/tsconfig.build.tsbuildinfo +1 -1
@@ -64,6 +64,13 @@ type MessageView = {
64
64
  export type { MessageView };
65
65
  declare const messageView: l.TypedObjectSchema<"chat.bsky.convo.defs#messageView", l.Validator<MessageView, MessageView>>;
66
66
  export { messageView };
67
+ type SystemMessageReferredUser = {
68
+ $type?: 'chat.bsky.convo.defs#systemMessageReferredUser';
69
+ did: l.DidString;
70
+ };
71
+ export type { SystemMessageReferredUser };
72
+ declare const systemMessageReferredUser: l.TypedObjectSchema<"chat.bsky.convo.defs#systemMessageReferredUser", l.Validator<SystemMessageReferredUser, SystemMessageReferredUser>>;
73
+ export { systemMessageReferredUser };
67
74
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. */
68
75
  type SystemMessageView = {
69
76
  $type?: 'chat.bsky.convo.defs#systemMessageView';
@@ -82,12 +89,12 @@ type SystemMessageDataAddMember = {
82
89
  /**
83
90
  * Current view of the member who was added.
84
91
  */
85
- member: ActorDefs.ProfileViewBasic;
92
+ member: SystemMessageReferredUser;
86
93
  /**
87
94
  * Role the user was added to the group with. The role from 'member' will reflect the current data, not historical.
88
95
  */
89
96
  role: ActorDefs.MemberRole;
90
- addedBy: ActorDefs.ProfileViewBasic;
97
+ addedBy: SystemMessageReferredUser;
91
98
  };
92
99
  export type { SystemMessageDataAddMember };
93
100
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user was added to the group convo. */
@@ -99,8 +106,8 @@ type SystemMessageDataRemoveMember = {
99
106
  /**
100
107
  * Current view of the member who was removed.
101
108
  */
102
- member: ActorDefs.ProfileViewBasic;
103
- removedBy: ActorDefs.ProfileViewBasic;
109
+ member: SystemMessageReferredUser;
110
+ removedBy: SystemMessageReferredUser;
104
111
  };
105
112
  export type { SystemMessageDataRemoveMember };
106
113
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user was removed from the group convo. */
@@ -112,7 +119,7 @@ type SystemMessageDataMemberJoin = {
112
119
  /**
113
120
  * Current view of the member who joined.
114
121
  */
115
- member: ActorDefs.ProfileViewBasic;
122
+ member: SystemMessageReferredUser;
116
123
  /**
117
124
  * Role the user was added to the group with. The role from 'member' will reflect the current data, not historical.
118
125
  */
@@ -120,7 +127,7 @@ type SystemMessageDataMemberJoin = {
120
127
  /**
121
128
  * If join link was configured to require approval, this will be set to who approved the request. Undefined if approval was not required.
122
129
  */
123
- approvedBy?: ActorDefs.ProfileViewBasic;
130
+ approvedBy?: SystemMessageReferredUser;
124
131
  };
125
132
  export type { SystemMessageDataMemberJoin };
126
133
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user joined the group convo via join link. */
@@ -132,7 +139,7 @@ type SystemMessageDataMemberLeave = {
132
139
  /**
133
140
  * Current view of the member who left the group.
134
141
  */
135
- member: ActorDefs.ProfileViewBasic;
142
+ member: SystemMessageReferredUser;
136
143
  };
137
144
  export type { SystemMessageDataMemberLeave };
138
145
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user voluntarily left the group convo. */
@@ -144,7 +151,7 @@ type SystemMessageDataLockConvo = {
144
151
  /**
145
152
  * Current view of the member who locked the group.
146
153
  */
147
- lockedBy: ActorDefs.ProfileViewBasic;
154
+ lockedBy: SystemMessageReferredUser;
148
155
  };
149
156
  export type { SystemMessageDataLockConvo };
150
157
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group convo was locked. */
@@ -156,7 +163,7 @@ type SystemMessageDataUnlockConvo = {
156
163
  /**
157
164
  * Current view of the member who unlocked the group.
158
165
  */
159
- unlockedBy: ActorDefs.ProfileViewBasic;
166
+ unlockedBy: SystemMessageReferredUser;
160
167
  };
161
168
  export type { SystemMessageDataUnlockConvo };
162
169
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group convo was unlocked. */
@@ -168,7 +175,7 @@ type SystemMessageDataLockConvoPermanently = {
168
175
  /**
169
176
  * Current view of the member who locked the group.
170
177
  */
171
- lockedBy: ActorDefs.ProfileViewBasic;
178
+ lockedBy: SystemMessageReferredUser;
172
179
  };
173
180
  export type { SystemMessageDataLockConvoPermanently };
174
181
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group convo was locked permanently. */
@@ -268,7 +275,7 @@ type ConvoView = {
268
275
  id: string;
269
276
  rev: string;
270
277
  /**
271
- * Members of this conversation. For direct convos, it will be an immutable list of the 2 members. For group convos, it will a list of important members (the first few members, the viewer, the member who invited the viewer, the member who sent the last message, the member who sent the last reaction), but will not contain the full list of members. NOTE: TBD an endpoint to list all members.
278
+ * Members of this conversation. For direct convos, it will be an immutable list of the 2 members. For group convos, it will a list of important members (the first few members, the viewer, the member who invited the viewer, the member who sent the last message, the member who sent the last reaction), but will not contain the full list of members. Use chat.bsky.convo.getConvoMembers to list all members.
272
279
  */
273
280
  members: ActorDefs.ProfileViewBasic[];
274
281
  lastMessage?: l.$Typed<MessageView> | l.$Typed<DeletedMessageView> | l.$Typed<SystemMessageView> | l.Unknown$TypedObject;
@@ -302,6 +309,10 @@ type GroupConvo = {
302
309
  * The display name of the group conversation.
303
310
  */
304
311
  name: string;
312
+ /**
313
+ * The total number of members in the group conversation.
314
+ */
315
+ memberCount: number;
305
316
  joinLink?: GroupDefs.JoinLinkView;
306
317
  /**
307
318
  * The lock status of the conversation.
@@ -435,7 +446,14 @@ type LogAddMember = {
435
446
  $type?: 'chat.bsky.convo.defs#logAddMember';
436
447
  rev: string;
437
448
  convoId: string;
438
- message: SystemMessageDataAddMember;
449
+ /**
450
+ * A system message with data of type #systemMessageDataAddMember
451
+ */
452
+ message: SystemMessageView;
453
+ /**
454
+ * Profiles referred in the system message.
455
+ */
456
+ relatedProfiles: ActorDefs.ProfileViewBasic[];
439
457
  };
440
458
  export type { LogAddMember };
441
459
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a member was added to a group convo. The member who was added gets a logBeginConvo (to create the convo) but also a logAddMember (to show the system message as the first message the user sees). */
@@ -446,7 +464,14 @@ type LogRemoveMember = {
446
464
  $type?: 'chat.bsky.convo.defs#logRemoveMember';
447
465
  rev: string;
448
466
  convoId: string;
449
- message: SystemMessageDataRemoveMember;
467
+ /**
468
+ * A system message with data of type #systemMessageDataRemoveMember
469
+ */
470
+ message: SystemMessageView;
471
+ /**
472
+ * Profiles referred in the system message.
473
+ */
474
+ relatedProfiles: ActorDefs.ProfileViewBasic[];
450
475
  };
451
476
  export type { LogRemoveMember };
452
477
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a member was removed from a group convo. The member who was removed gets a logLeaveConvo (to leave the convo) but not a logRemoveMember (because they already left, so can't see the system message). */
@@ -457,7 +482,14 @@ type LogMemberJoin = {
457
482
  $type?: 'chat.bsky.convo.defs#logMemberJoin';
458
483
  rev: string;
459
484
  convoId: string;
460
- message: SystemMessageDataMemberJoin;
485
+ /**
486
+ * A system message with data of type #systemMessageDataMemberJoin
487
+ */
488
+ message: SystemMessageView;
489
+ /**
490
+ * Profiles referred in the system message.
491
+ */
492
+ relatedProfiles: ActorDefs.ProfileViewBasic[];
461
493
  };
462
494
  export type { LogMemberJoin };
463
495
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a member joined a group convo via join link. The member who was added gets a logBeginConvo (to create the convo) but also a logMemberJoin (to show the system message as the first message the user sees). */
@@ -468,7 +500,14 @@ type LogMemberLeave = {
468
500
  $type?: 'chat.bsky.convo.defs#logMemberLeave';
469
501
  rev: string;
470
502
  convoId: string;
471
- message: SystemMessageDataMemberLeave;
503
+ /**
504
+ * A system message with data of type #systemMessageDataMemberLeave
505
+ */
506
+ message: SystemMessageView;
507
+ /**
508
+ * Profiles referred in the system message.
509
+ */
510
+ relatedProfiles: ActorDefs.ProfileViewBasic[];
472
511
  };
473
512
  export type { LogMemberLeave };
474
513
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a member voluntarily left a group convo. The member who was removed gets a logLeaveConvo (to leave the convo) but not a logMemberLeave (because they already left, so can't see the system message). */
@@ -479,7 +518,14 @@ type LogLockConvo = {
479
518
  $type?: 'chat.bsky.convo.defs#logLockConvo';
480
519
  rev: string;
481
520
  convoId: string;
482
- message: SystemMessageDataLockConvo;
521
+ /**
522
+ * A system message with data of type #systemMessageDataLockConvo
523
+ */
524
+ message: SystemMessageView;
525
+ /**
526
+ * Profiles referred in the system message.
527
+ */
528
+ relatedProfiles: ActorDefs.ProfileViewBasic[];
483
529
  };
484
530
  export type { LogLockConvo };
485
531
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was locked. */
@@ -490,7 +536,14 @@ type LogUnlockConvo = {
490
536
  $type?: 'chat.bsky.convo.defs#logUnlockConvo';
491
537
  rev: string;
492
538
  convoId: string;
493
- message: SystemMessageDataUnlockConvo;
539
+ /**
540
+ * A system message with data of type #systemMessageDataUnlockConvo
541
+ */
542
+ message: SystemMessageView;
543
+ /**
544
+ * Profiles referred in the system message.
545
+ */
546
+ relatedProfiles: ActorDefs.ProfileViewBasic[];
494
547
  };
495
548
  export type { LogUnlockConvo };
496
549
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was unlocked. */
@@ -501,7 +554,14 @@ type LogLockConvoPermanently = {
501
554
  $type?: 'chat.bsky.convo.defs#logLockConvoPermanently';
502
555
  rev: string;
503
556
  convoId: string;
504
- message: SystemMessageDataLockConvoPermanently;
557
+ /**
558
+ * A system message with data of type #systemMessageDataLockConvoPermanently
559
+ */
560
+ message: SystemMessageView;
561
+ /**
562
+ * Profiles referred in the system message.
563
+ */
564
+ relatedProfiles: ActorDefs.ProfileViewBasic[];
505
565
  };
506
566
  export type { LogLockConvoPermanently };
507
567
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was locked permanently. */
@@ -512,7 +572,10 @@ type LogEditGroup = {
512
572
  $type?: 'chat.bsky.convo.defs#logEditGroup';
513
573
  rev: string;
514
574
  convoId: string;
515
- message: SystemMessageDataEditGroup;
575
+ /**
576
+ * A system message with data of type #systemMessageDataEditGroup
577
+ */
578
+ message: SystemMessageView;
516
579
  };
517
580
  export type { LogEditGroup };
518
581
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating info about group convo was edited. */
@@ -523,7 +586,10 @@ type LogCreateJoinLink = {
523
586
  $type?: 'chat.bsky.convo.defs#logCreateJoinLink';
524
587
  rev: string;
525
588
  convoId: string;
526
- message: SystemMessageDataCreateJoinLink;
589
+ /**
590
+ * A system message with data of type #systemMessageDataCreateJoinLink
591
+ */
592
+ message: SystemMessageView;
527
593
  };
528
594
  export type { LogCreateJoinLink };
529
595
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join link was created for a group convo. */
@@ -534,7 +600,10 @@ type LogEditJoinLink = {
534
600
  $type?: 'chat.bsky.convo.defs#logEditJoinLink';
535
601
  rev: string;
536
602
  convoId: string;
537
- message: SystemMessageDataEditJoinLink;
603
+ /**
604
+ * A system message with data of type #systemMessageDataEditJoinLink
605
+ */
606
+ message: SystemMessageView;
538
607
  };
539
608
  export type { LogEditJoinLink };
540
609
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a settings about a join link for a group convo were edited. */
@@ -545,7 +614,10 @@ type LogEnableJoinLink = {
545
614
  $type?: 'chat.bsky.convo.defs#logEnableJoinLink';
546
615
  rev: string;
547
616
  convoId: string;
548
- message: SystemMessageDataEnableJoinLink;
617
+ /**
618
+ * A system message with data of type #systemMessageDataEnableJoinLink
619
+ */
620
+ message: SystemMessageView;
549
621
  };
550
622
  export type { LogEnableJoinLink };
551
623
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join link was enabled for a group convo. */
@@ -556,7 +628,10 @@ type LogDisableJoinLink = {
556
628
  $type?: 'chat.bsky.convo.defs#logDisableJoinLink';
557
629
  rev: string;
558
630
  convoId: string;
559
- message: SystemMessageDataDisableJoinLink;
631
+ /**
632
+ * A system message with data of type #systemMessageDataDisableJoinLink
633
+ */
634
+ message: SystemMessageView;
560
635
  };
561
636
  export type { LogDisableJoinLink };
562
637
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join link was disabled for a group convo. */
@@ -1 +1 @@
1
- {"version":3,"file":"defs.defs.d.ts","sourceRoot":"","sources":["../../../../../src/lexicons/chat/bsky/convo/defs.defs.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"defs.defs.d.ts","sourceRoot":"","sources":["../../../../../src/lexicons/chat/bsky/convo/defs.defs.ts"],"names":[],"mappings":"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"}
@@ -36,8 +36,8 @@ var __importStar = (this && this.__importStar) || (function () {
36
36
  };
37
37
  })();
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.logEnableJoinLink = exports.logEditJoinLink = exports.logCreateJoinLink = exports.logEditGroup = exports.logLockConvoPermanently = exports.logUnlockConvo = exports.logLockConvo = exports.logMemberLeave = exports.logMemberJoin = exports.logRemoveMember = exports.logAddMember = exports.logReadConvo = exports.logRemoveReaction = exports.logAddReaction = exports.logReadMessage = exports.logDeleteMessage = exports.logCreateMessage = exports.logUnmuteConvo = exports.logMuteConvo = exports.logLeaveConvo = exports.logAcceptConvo = exports.logBeginConvo = exports.groupConvo = exports.directConvo = exports.convoView = exports.messageAndReactionView = exports.reactionViewSender = exports.reactionView = exports.messageViewSender = exports.deletedMessageView = exports.systemMessageDataDisableJoinLink = exports.systemMessageDataEnableJoinLink = exports.systemMessageDataEditJoinLink = exports.systemMessageDataCreateJoinLink = exports.systemMessageDataEditGroup = exports.systemMessageDataLockConvoPermanently = exports.systemMessageDataUnlockConvo = exports.systemMessageDataLockConvo = exports.systemMessageDataMemberLeave = exports.systemMessageDataMemberJoin = exports.systemMessageDataRemoveMember = exports.systemMessageDataAddMember = exports.systemMessageView = exports.messageView = exports.messageInput = exports.messageRef = exports.convoStatus = exports.convoLockStatus = exports.convoKind = exports.$nsid = void 0;
40
- exports.logOutgoingJoinRequest = exports.logRejectJoinRequest = exports.logApproveJoinRequest = exports.logIncomingJoinRequest = exports.logDisableJoinLink = void 0;
39
+ exports.logEditJoinLink = exports.logCreateJoinLink = exports.logEditGroup = exports.logLockConvoPermanently = exports.logUnlockConvo = exports.logLockConvo = exports.logMemberLeave = exports.logMemberJoin = exports.logRemoveMember = exports.logAddMember = exports.logReadConvo = exports.logRemoveReaction = exports.logAddReaction = exports.logReadMessage = exports.logDeleteMessage = exports.logCreateMessage = exports.logUnmuteConvo = exports.logMuteConvo = exports.logLeaveConvo = exports.logAcceptConvo = exports.logBeginConvo = exports.groupConvo = exports.directConvo = exports.convoView = exports.messageAndReactionView = exports.reactionViewSender = exports.reactionView = exports.messageViewSender = exports.deletedMessageView = exports.systemMessageDataDisableJoinLink = exports.systemMessageDataEnableJoinLink = exports.systemMessageDataEditJoinLink = exports.systemMessageDataCreateJoinLink = exports.systemMessageDataEditGroup = exports.systemMessageDataLockConvoPermanently = exports.systemMessageDataUnlockConvo = exports.systemMessageDataLockConvo = exports.systemMessageDataMemberLeave = exports.systemMessageDataMemberJoin = exports.systemMessageDataRemoveMember = exports.systemMessageDataAddMember = exports.systemMessageView = exports.systemMessageReferredUser = exports.messageView = exports.messageInput = exports.messageRef = exports.convoStatus = exports.convoLockStatus = exports.convoKind = exports.$nsid = void 0;
40
+ exports.logOutgoingJoinRequest = exports.logRejectJoinRequest = exports.logApproveJoinRequest = exports.logIncomingJoinRequest = exports.logDisableJoinLink = exports.logEnableJoinLink = void 0;
41
41
  const lex_1 = require("@atproto/lex");
42
42
  const RichtextFacet = __importStar(require("../../../app/bsky/richtext/facet.defs.js"));
43
43
  const EmbedRecord = __importStar(require("../../../app/bsky/embed/record.defs.js"));
@@ -74,6 +74,8 @@ const messageView = lex_1.l.typedObject($nsid, 'messageView', lex_1.l.object({
74
74
  sentAt: lex_1.l.string({ format: 'datetime' }),
75
75
  }));
76
76
  exports.messageView = messageView;
77
+ const systemMessageReferredUser = lex_1.l.typedObject($nsid, 'systemMessageReferredUser', lex_1.l.object({ did: lex_1.l.string({ format: 'did' }) }));
78
+ exports.systemMessageReferredUser = systemMessageReferredUser;
77
79
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. */
78
80
  const systemMessageView = lex_1.l.typedObject($nsid, 'systemMessageView', lex_1.l.object({
79
81
  id: lex_1.l.string(),
@@ -97,42 +99,42 @@ const systemMessageView = lex_1.l.typedObject($nsid, 'systemMessageView', lex_1.
97
99
  exports.systemMessageView = systemMessageView;
98
100
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user was added to the group convo. */
99
101
  const systemMessageDataAddMember = lex_1.l.typedObject($nsid, 'systemMessageDataAddMember', lex_1.l.object({
100
- member: lex_1.l.ref((() => ActorDefs.profileViewBasic)),
102
+ member: lex_1.l.ref((() => systemMessageReferredUser)),
101
103
  role: lex_1.l.ref((() => ActorDefs.memberRole)),
102
- addedBy: lex_1.l.ref((() => ActorDefs.profileViewBasic)),
104
+ addedBy: lex_1.l.ref((() => systemMessageReferredUser)),
103
105
  }));
104
106
  exports.systemMessageDataAddMember = systemMessageDataAddMember;
105
107
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user was removed from the group convo. */
106
108
  const systemMessageDataRemoveMember = lex_1.l.typedObject($nsid, 'systemMessageDataRemoveMember', lex_1.l.object({
107
- member: lex_1.l.ref((() => ActorDefs.profileViewBasic)),
108
- removedBy: lex_1.l.ref((() => ActorDefs.profileViewBasic)),
109
+ member: lex_1.l.ref((() => systemMessageReferredUser)),
110
+ removedBy: lex_1.l.ref((() => systemMessageReferredUser)),
109
111
  }));
110
112
  exports.systemMessageDataRemoveMember = systemMessageDataRemoveMember;
111
113
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user joined the group convo via join link. */
112
114
  const systemMessageDataMemberJoin = lex_1.l.typedObject($nsid, 'systemMessageDataMemberJoin', lex_1.l.object({
113
- member: lex_1.l.ref((() => ActorDefs.profileViewBasic)),
115
+ member: lex_1.l.ref((() => systemMessageReferredUser)),
114
116
  role: lex_1.l.ref((() => ActorDefs.memberRole)),
115
- approvedBy: lex_1.l.optional(lex_1.l.ref((() => ActorDefs.profileViewBasic))),
117
+ approvedBy: lex_1.l.optional(lex_1.l.ref((() => systemMessageReferredUser))),
116
118
  }));
117
119
  exports.systemMessageDataMemberJoin = systemMessageDataMemberJoin;
118
120
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user voluntarily left the group convo. */
119
121
  const systemMessageDataMemberLeave = lex_1.l.typedObject($nsid, 'systemMessageDataMemberLeave', lex_1.l.object({
120
- member: lex_1.l.ref((() => ActorDefs.profileViewBasic)),
122
+ member: lex_1.l.ref((() => systemMessageReferredUser)),
121
123
  }));
122
124
  exports.systemMessageDataMemberLeave = systemMessageDataMemberLeave;
123
125
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group convo was locked. */
124
126
  const systemMessageDataLockConvo = lex_1.l.typedObject($nsid, 'systemMessageDataLockConvo', lex_1.l.object({
125
- lockedBy: lex_1.l.ref((() => ActorDefs.profileViewBasic)),
127
+ lockedBy: lex_1.l.ref((() => systemMessageReferredUser)),
126
128
  }));
127
129
  exports.systemMessageDataLockConvo = systemMessageDataLockConvo;
128
130
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group convo was unlocked. */
129
131
  const systemMessageDataUnlockConvo = lex_1.l.typedObject($nsid, 'systemMessageDataUnlockConvo', lex_1.l.object({
130
- unlockedBy: lex_1.l.ref((() => ActorDefs.profileViewBasic)),
132
+ unlockedBy: lex_1.l.ref((() => systemMessageReferredUser)),
131
133
  }));
132
134
  exports.systemMessageDataUnlockConvo = systemMessageDataUnlockConvo;
133
135
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group convo was locked permanently. */
134
136
  const systemMessageDataLockConvoPermanently = lex_1.l.typedObject($nsid, 'systemMessageDataLockConvoPermanently', lex_1.l.object({
135
- lockedBy: lex_1.l.ref((() => ActorDefs.profileViewBasic)),
137
+ lockedBy: lex_1.l.ref((() => systemMessageReferredUser)),
136
138
  }));
137
139
  exports.systemMessageDataLockConvoPermanently = systemMessageDataLockConvoPermanently;
138
140
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group info was edited. */
@@ -202,6 +204,7 @@ exports.directConvo = directConvo;
202
204
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. */
203
205
  const groupConvo = lex_1.l.typedObject($nsid, 'groupConvo', lex_1.l.object({
204
206
  name: lex_1.l.string({ maxGraphemes: 128, maxLength: 1280 }),
207
+ memberCount: lex_1.l.integer(),
205
208
  joinLink: lex_1.l.optional(lex_1.l.ref((() => GroupDefs.joinLinkView))),
206
209
  lockStatus: lex_1.l.ref((() => convoLockStatus)),
207
210
  }));
@@ -289,84 +292,91 @@ exports.logReadConvo = logReadConvo;
289
292
  const logAddMember = lex_1.l.typedObject($nsid, 'logAddMember', lex_1.l.object({
290
293
  rev: lex_1.l.string(),
291
294
  convoId: lex_1.l.string(),
292
- message: lex_1.l.ref((() => systemMessageDataAddMember)),
295
+ message: lex_1.l.ref((() => systemMessageView)),
296
+ relatedProfiles: lex_1.l.array(lex_1.l.ref((() => ActorDefs.profileViewBasic))),
293
297
  }));
294
298
  exports.logAddMember = logAddMember;
295
299
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a member was removed from a group convo. The member who was removed gets a logLeaveConvo (to leave the convo) but not a logRemoveMember (because they already left, so can't see the system message). */
296
300
  const logRemoveMember = lex_1.l.typedObject($nsid, 'logRemoveMember', lex_1.l.object({
297
301
  rev: lex_1.l.string(),
298
302
  convoId: lex_1.l.string(),
299
- message: lex_1.l.ref((() => systemMessageDataRemoveMember)),
303
+ message: lex_1.l.ref((() => systemMessageView)),
304
+ relatedProfiles: lex_1.l.array(lex_1.l.ref((() => ActorDefs.profileViewBasic))),
300
305
  }));
301
306
  exports.logRemoveMember = logRemoveMember;
302
307
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a member joined a group convo via join link. The member who was added gets a logBeginConvo (to create the convo) but also a logMemberJoin (to show the system message as the first message the user sees). */
303
308
  const logMemberJoin = lex_1.l.typedObject($nsid, 'logMemberJoin', lex_1.l.object({
304
309
  rev: lex_1.l.string(),
305
310
  convoId: lex_1.l.string(),
306
- message: lex_1.l.ref((() => systemMessageDataMemberJoin)),
311
+ message: lex_1.l.ref((() => systemMessageView)),
312
+ relatedProfiles: lex_1.l.array(lex_1.l.ref((() => ActorDefs.profileViewBasic))),
307
313
  }));
308
314
  exports.logMemberJoin = logMemberJoin;
309
315
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a member voluntarily left a group convo. The member who was removed gets a logLeaveConvo (to leave the convo) but not a logMemberLeave (because they already left, so can't see the system message). */
310
316
  const logMemberLeave = lex_1.l.typedObject($nsid, 'logMemberLeave', lex_1.l.object({
311
317
  rev: lex_1.l.string(),
312
318
  convoId: lex_1.l.string(),
313
- message: lex_1.l.ref((() => systemMessageDataMemberLeave)),
319
+ message: lex_1.l.ref((() => systemMessageView)),
320
+ relatedProfiles: lex_1.l.array(lex_1.l.ref((() => ActorDefs.profileViewBasic))),
314
321
  }));
315
322
  exports.logMemberLeave = logMemberLeave;
316
323
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was locked. */
317
324
  const logLockConvo = lex_1.l.typedObject($nsid, 'logLockConvo', lex_1.l.object({
318
325
  rev: lex_1.l.string(),
319
326
  convoId: lex_1.l.string(),
320
- message: lex_1.l.ref((() => systemMessageDataLockConvo)),
327
+ message: lex_1.l.ref((() => systemMessageView)),
328
+ relatedProfiles: lex_1.l.array(lex_1.l.ref((() => ActorDefs.profileViewBasic))),
321
329
  }));
322
330
  exports.logLockConvo = logLockConvo;
323
331
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was unlocked. */
324
332
  const logUnlockConvo = lex_1.l.typedObject($nsid, 'logUnlockConvo', lex_1.l.object({
325
333
  rev: lex_1.l.string(),
326
334
  convoId: lex_1.l.string(),
327
- message: lex_1.l.ref((() => systemMessageDataUnlockConvo)),
335
+ message: lex_1.l.ref((() => systemMessageView)),
336
+ relatedProfiles: lex_1.l.array(lex_1.l.ref((() => ActorDefs.profileViewBasic))),
328
337
  }));
329
338
  exports.logUnlockConvo = logUnlockConvo;
330
339
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was locked permanently. */
331
340
  const logLockConvoPermanently = lex_1.l.typedObject($nsid, 'logLockConvoPermanently', lex_1.l.object({
332
341
  rev: lex_1.l.string(),
333
342
  convoId: lex_1.l.string(),
334
- message: lex_1.l.ref((() => systemMessageDataLockConvoPermanently)),
343
+ message: lex_1.l.ref((() => systemMessageView)),
344
+ relatedProfiles: lex_1.l.array(lex_1.l.ref((() => ActorDefs.profileViewBasic))),
335
345
  }));
336
346
  exports.logLockConvoPermanently = logLockConvoPermanently;
337
347
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating info about group convo was edited. */
338
348
  const logEditGroup = lex_1.l.typedObject($nsid, 'logEditGroup', lex_1.l.object({
339
349
  rev: lex_1.l.string(),
340
350
  convoId: lex_1.l.string(),
341
- message: lex_1.l.ref((() => systemMessageDataEditGroup)),
351
+ message: lex_1.l.ref((() => systemMessageView)),
342
352
  }));
343
353
  exports.logEditGroup = logEditGroup;
344
354
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join link was created for a group convo. */
345
355
  const logCreateJoinLink = lex_1.l.typedObject($nsid, 'logCreateJoinLink', lex_1.l.object({
346
356
  rev: lex_1.l.string(),
347
357
  convoId: lex_1.l.string(),
348
- message: lex_1.l.ref((() => systemMessageDataCreateJoinLink)),
358
+ message: lex_1.l.ref((() => systemMessageView)),
349
359
  }));
350
360
  exports.logCreateJoinLink = logCreateJoinLink;
351
361
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a settings about a join link for a group convo were edited. */
352
362
  const logEditJoinLink = lex_1.l.typedObject($nsid, 'logEditJoinLink', lex_1.l.object({
353
363
  rev: lex_1.l.string(),
354
364
  convoId: lex_1.l.string(),
355
- message: lex_1.l.ref((() => systemMessageDataEditJoinLink)),
365
+ message: lex_1.l.ref((() => systemMessageView)),
356
366
  }));
357
367
  exports.logEditJoinLink = logEditJoinLink;
358
368
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join link was enabled for a group convo. */
359
369
  const logEnableJoinLink = lex_1.l.typedObject($nsid, 'logEnableJoinLink', lex_1.l.object({
360
370
  rev: lex_1.l.string(),
361
371
  convoId: lex_1.l.string(),
362
- message: lex_1.l.ref((() => systemMessageDataEnableJoinLink)),
372
+ message: lex_1.l.ref((() => systemMessageView)),
363
373
  }));
364
374
  exports.logEnableJoinLink = logEnableJoinLink;
365
375
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join link was disabled for a group convo. */
366
376
  const logDisableJoinLink = lex_1.l.typedObject($nsid, 'logDisableJoinLink', lex_1.l.object({
367
377
  rev: lex_1.l.string(),
368
378
  convoId: lex_1.l.string(),
369
- message: lex_1.l.ref((() => systemMessageDataDisableJoinLink)),
379
+ message: lex_1.l.ref((() => systemMessageView)),
370
380
  }));
371
381
  exports.logDisableJoinLink = logDisableJoinLink;
372
382
  /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join request was made to a group the viewer owns. Only the owner gets this. */