@veltdev/sdk 5.0.2-beta.5 → 5.0.2-beta.7

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.
@@ -5,6 +5,7 @@ import { DocumentUser } from "../models/data/document-user.data.model";
5
5
  import { Location } from "../models/data/location.model";
6
6
  import { User, UserOptions, VeltAuthProvider, VeltPermissionProvider } from "../models/data/user.data.model";
7
7
  import { CustomCss } from "../models/data/custom-css.data.model";
8
+ import { ActivityElement } from "../models/element/activity-element.model";
8
9
  import { AreaElement } from "../models/element/area-element.model";
9
10
  import { ArrowElement } from "../models/element/arrow-element.model";
10
11
  import { CommentElement } from "../models/element/comment-element.model";
@@ -232,6 +233,10 @@ export declare class Snippyly {
232
233
  * Get the Autocomplete Object.
233
234
  */
234
235
  getAutocompleteElement: () => AutocompleteElement;
236
+ /**
237
+ * Get the Activity Element Object.
238
+ */
239
+ getActivityElement: () => ActivityElement;
235
240
  /**
236
241
  * Get the Area Object.
237
242
  */
@@ -0,0 +1,177 @@
1
+ import { Observable } from 'rxjs';
2
+ import { BaseMetadata } from './base-metadata.data.model';
3
+ import { User } from './user.data.model';
4
+ /**
5
+ * Feature types that can generate activities.
6
+ */
7
+ export type ActivityFeatureType = 'comment' | 'reaction' | 'recorder' | 'crdt' | 'custom';
8
+ /**
9
+ * Comment action type constants following the `entity_type.action` naming pattern.
10
+ * Annotation-level actions use `comment_annotation.*`, comment-level use `comment.*`.
11
+ */
12
+ export declare const CommentActivityActionTypes: {
13
+ readonly ANNOTATION_ADD: "comment_annotation.add";
14
+ readonly ANNOTATION_DELETE: "comment_annotation.delete";
15
+ readonly COMMENT_ADD: "comment.add";
16
+ readonly COMMENT_UPDATE: "comment.update";
17
+ readonly COMMENT_DELETE: "comment.delete";
18
+ readonly STATUS_CHANGE: "comment_annotation.status_change";
19
+ readonly PRIORITY_CHANGE: "comment_annotation.priority_change";
20
+ readonly ASSIGN: "comment_annotation.assign";
21
+ readonly ACCESS_MODE_CHANGE: "comment_annotation.access_mode_change";
22
+ readonly CUSTOM_LIST_CHANGE: "comment_annotation.custom_list_change";
23
+ readonly APPROVE: "comment_annotation.approve";
24
+ readonly ACCEPT: "comment.accept";
25
+ readonly REJECT: "comment.reject";
26
+ readonly REACTION_ADD: "comment.reaction_add";
27
+ readonly REACTION_DELETE: "comment.reaction_delete";
28
+ readonly SUBSCRIBE: "comment_annotation.subscribe";
29
+ readonly UNSUBSCRIBE: "comment_annotation.unsubscribe";
30
+ };
31
+ export type CommentActivityActionType = typeof CommentActivityActionTypes[keyof typeof CommentActivityActionTypes];
32
+ /**
33
+ * Recorder action type constants following the `recording.*` naming pattern.
34
+ */
35
+ export declare const RecorderActivityActionTypes: {
36
+ readonly RECORDING_ADD: "recording.add";
37
+ readonly RECORDING_DELETE: "recording.delete";
38
+ };
39
+ export type RecorderActivityActionType = typeof RecorderActivityActionTypes[keyof typeof RecorderActivityActionTypes];
40
+ /**
41
+ * Reaction action type constants following the `reaction.*` naming pattern.
42
+ */
43
+ export declare const ReactionActivityActionTypes: {
44
+ readonly REACTION_ADD: "reaction.add";
45
+ readonly REACTION_DELETE: "reaction.delete";
46
+ };
47
+ export type ReactionActivityActionType = typeof ReactionActivityActionTypes[keyof typeof ReactionActivityActionTypes];
48
+ /**
49
+ * CRDT action type constants following the `crdt.*` naming pattern.
50
+ */
51
+ export declare const CrdtActivityActionTypes: {
52
+ readonly EDITOR_EDIT: "crdt.editor_edit";
53
+ };
54
+ export type CrdtActivityActionType = typeof CrdtActivityActionTypes[keyof typeof CrdtActivityActionTypes];
55
+ /**
56
+ * Represents a single from/to change pair.
57
+ * `from` is always present (null for 'added' events) for uniform structure.
58
+ */
59
+ export interface ActivityChange<T = unknown> {
60
+ from?: T | null;
61
+ to?: T | null;
62
+ }
63
+ /**
64
+ * Dynamic change tracking. Keys are domain-specific (e.g., 'status', 'commentText', 'assignedTo').
65
+ * No fixed keys — activities span multiple features.
66
+ */
67
+ export interface ActivityChanges {
68
+ [key: string]: ActivityChange | undefined;
69
+ }
70
+ /**
71
+ * Metadata for activity records. Extends BaseMetadata with denormalized IDs
72
+ * for efficient querying at the organization level.
73
+ */
74
+ export declare class ActivityMetadata extends BaseMetadata {
75
+ [key: string]: any;
76
+ }
77
+ /**
78
+ * Core activity record representing a single activity event.
79
+ *
80
+ * @typeParam TEntity - Type of the parent entity snapshot (e.g., CommentAnnotation)
81
+ * @typeParam TTarget - Type of the sub-entity snapshot (e.g., Comment)
82
+ */
83
+ export declare class ActivityRecord<TEntity = unknown, TTarget = unknown> {
84
+ /** Auto-generated unique ID */
85
+ id: string;
86
+ /** Feature that generated this activity */
87
+ featureType: ActivityFeatureType;
88
+ /** Action that occurred, following `entity_type.action` pattern */
89
+ actionType: string;
90
+ /** Event type that occurred */
91
+ eventType?: string;
92
+ /** User who performed the action */
93
+ actionUser: User;
94
+ /** Server timestamp (set by backend) */
95
+ timestamp: number;
96
+ /** Denormalized IDs for querying */
97
+ metadata: ActivityMetadata;
98
+ /** ID of the parent entity (annotationId, recordingId, etc.) */
99
+ targetEntityId: string;
100
+ /** ID of the sub-entity acted on (commentId within annotation, null for entity-level actions) */
101
+ targetSubEntityId?: string | null;
102
+ /** Linear-style from/to change pairs */
103
+ changes?: ActivityChanges;
104
+ /** Full parent entity snapshot at time of action */
105
+ entityData?: TEntity;
106
+ /** Sub-entity snapshot (or user-provided data for custom activities) */
107
+ entityTargetData?: TTarget;
108
+ /** Display message template — ONLY for custom activities */
109
+ displayMessageTemplate?: string;
110
+ /** Template variable values — ONLY for custom activities */
111
+ displayMessageTemplateData?: Record<string, unknown>;
112
+ /** Computed display message (generated client-side, never stored in Firestore) */
113
+ displayMessage?: string;
114
+ /** Icon URL or identifier for display */
115
+ actionIcon?: string;
116
+ /** If true, this activity cannot be updated or deleted via REST API */
117
+ immutable?: boolean;
118
+ }
119
+ /**
120
+ * Configuration for subscribing to activities.
121
+ * Behavior is determined by the props passed:
122
+ * - No config → org-wide
123
+ * - documentIds → specific documents
124
+ * - currentDocumentOnly → current document only
125
+ */
126
+ export interface ActivitySubscribeConfig {
127
+ /** Subscribe to activities for a specific organization (defaults to current org) */
128
+ organizationId?: string;
129
+ /** Subscribe to activities for specific document IDs */
130
+ documentIds?: string[];
131
+ /** Subscribe to activities for the current document only (auto-switches on setDocument) */
132
+ currentDocumentOnly?: boolean;
133
+ /** Only fetch activities from the last N days (default: 30) */
134
+ maxDays?: number;
135
+ /** Allowlist: only include activities with these feature types */
136
+ featureTypes?: ActivityFeatureType[];
137
+ /** Disallowlist: exclude activities with these feature types (ignored if featureTypes is set) */
138
+ excludeFeatureTypes?: ActivityFeatureType[];
139
+ /** Allowlist: only include activities with these action types */
140
+ actionTypes?: string[];
141
+ /** Disallowlist: exclude activities with these action types (ignored if actionTypes is set) */
142
+ excludeActionTypes?: string[];
143
+ /** Allowlist: only include activities by these user IDs */
144
+ userIds?: string[];
145
+ /** Disallowlist: exclude activities by these user IDs (ignored if userIds is set) */
146
+ excludeUserIds?: string[];
147
+ }
148
+ /**
149
+ * Represents an active activity subscription.
150
+ * Returned by `activityService.subscribe()`.
151
+ */
152
+ export interface ActivitySubscription {
153
+ /** Observable stream of activities for this subscription's scope. null = not yet loaded. */
154
+ getActivities$(): Observable<ActivityRecord[] | null>;
155
+ /** Unsubscribe and clean up this subscription */
156
+ unsubscribe(): void;
157
+ }
158
+ /**
159
+ * Data required to create an activity.
160
+ * Used for all activity types: comment, reaction, recorder, custom, etc.
161
+ */
162
+ export interface CreateActivityData<TEntity = unknown, TTarget = unknown> {
163
+ featureType: ActivityFeatureType;
164
+ actionType: string;
165
+ eventType?: string;
166
+ targetEntityId: string;
167
+ targetSubEntityId?: string | null;
168
+ changes?: ActivityChanges;
169
+ entityData?: TEntity;
170
+ entityTargetData?: TTarget;
171
+ /** Icon URL or identifier — typically used for custom activities */
172
+ actionIcon?: string;
173
+ /** Display message template — only for custom activities */
174
+ displayMessageTemplate?: string;
175
+ /** Template variable values — only for custom activities */
176
+ displayMessageTemplateData?: Record<string, unknown>;
177
+ }
@@ -1,3 +1,4 @@
1
+ import { DocumentMetadata } from './document-metadata.model';
1
2
  export declare class BaseMetadata {
2
3
  apiKey?: string;
3
4
  documentId?: string;
@@ -6,4 +7,6 @@ export declare class BaseMetadata {
6
7
  clientOrganizationId?: string;
7
8
  folderId?: string;
8
9
  veltFolderId?: string;
10
+ documentMetadata?: DocumentMetadata;
11
+ sdkVersion?: string | null;
9
12
  }
@@ -76,4 +76,9 @@ export interface DisableLogsConfig {
76
76
  }
77
77
  export interface GetProjectConfigResponse {
78
78
  isPrivateCommentsEnabled: boolean;
79
+ activityConfig?: ActivityConfig;
80
+ }
81
+ export interface ActivityConfig {
82
+ immutable: boolean;
83
+ isEnabled: boolean;
79
84
  }
@@ -0,0 +1,33 @@
1
+ // @ts-nocheck
2
+ import { Observable } from "rxjs";
3
+ import { ActivityRecord, ActivitySubscribeConfig, CreateActivityData } from "../data/activity.data.model";
4
+
5
+ export declare class ActivityElement {
6
+
7
+ /**
8
+ * Subscribe to activities with optional filtering configuration.
9
+ * Returns an Observable that, when unsubscribed, automatically cleans up the internal subscription.
10
+ * @param config Optional configuration to filter activities by scope, feature types, action types, etc.
11
+ * @returns Observable<ActivityRecord[] | null>
12
+ */
13
+ getAllActivities: (config?: ActivitySubscribeConfig) => Observable<ActivityRecord[] | null>;
14
+
15
+ /**
16
+ * Create a new activity record.
17
+ * @param data The activity data including feature type, action type, target entity, etc.
18
+ * @returns Promise<void>
19
+ */
20
+ createActivity: (data: CreateActivityData) => Promise<void>;
21
+
22
+ constructor();
23
+
24
+ /**
25
+ * Subscribe to activities with optional filtering configuration.
26
+ */
27
+ private _getAllActivities;
28
+
29
+ /**
30
+ * Create a new activity record.
31
+ */
32
+ private _createActivity;
33
+ }
@@ -95,6 +95,11 @@ export declare class CrdtElement {
95
95
  * @param time debounce time in milliseconds
96
96
  */
97
97
  setWebhookDebounceTime: (time: number) => void;
98
+ /**
99
+ * To set activity debounce time for batching CRDT edits (Default value is 10 minutes)
100
+ * @param time debounce time in milliseconds (minimum: 10 seconds)
101
+ */
102
+ setActivityDebounceTime: (time: number) => void;
98
103
 
99
104
  /**
100
105
  * Subscribe to crdt actions
@@ -204,6 +209,12 @@ export declare class CrdtElement {
204
209
  */
205
210
  private _setWebhookDebounceTime;
206
211
 
212
+ /**
213
+ * Set activity debounce time for batching CRDT edits
214
+ * @param time debounce time in milliseconds (minimum: 10 seconds)
215
+ */
216
+ private _setActivityDebounceTime;
217
+
207
218
  /**
208
219
  * Subscribe to crdt actions
209
220
  * @param action Action to subscribe to
@@ -57,6 +57,8 @@ export declare class Constants {
57
57
  static FIREBASE_PARTIAL_PATH_NOTIFICATIONS: string;
58
58
  static FIREBASE_PARTIAL_PATH_ORGANIZATION_NOTIFICATIONS: string;
59
59
  static FIREBASE_PARTIAL_PATH_LAST_NOTIFICATION_TIMESTAMP: string;
60
+ static FIREBASE_PARTIAL_PATH_ACTIVITIES: string;
61
+ static FIREBASE_PARTIAL_PATH_LAST_ACTIVITY_TIMESTAMP: string;
60
62
  static FIREBASE_PARTIAL_PATH_HEARTBEAT: string;
61
63
  static FIREBASE_PARTIAL_PATH_HEARTBEAT_BY_DOCUMENT: string;
62
64
  static FIREBASE_PARTIAL_PATH_USERS: string;
@@ -259,6 +261,21 @@ export declare class Constants {
259
261
  VELT_AUTOCOMPLETE_CHIP_TOOLTIP_NAME: string;
260
262
  VELT_AUTOCOMPLETE_CHIP_TOOLTIP_DESCRIPTION: string;
261
263
  VELT_AUTOCOMPLETE_CONTEXT_WRAPPER: string;
264
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER: string;
265
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_ICON: string;
266
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_TEXT: string;
267
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN: string;
268
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER: string;
269
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_LABEL: string;
270
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_AVATAR_LIST: string;
271
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_AVATAR_LIST_ITEM: string;
272
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_AVATAR_LIST_REMAINING_COUNT: string;
273
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_ICON: string;
274
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT: string;
275
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_ITEM: string;
276
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_ITEM_ICON: string;
277
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_ITEM_LABEL: string;
278
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_USER_PICKER: string;
262
279
  VELT_COMMENT_COMPOSER: string;
263
280
  VELT_SKELETON_LOADER: string;
264
281
  VELT_SHADOW_DOM_INTERNAL: string;
@@ -172,7 +172,8 @@ export declare enum Features {
172
172
  REWRITER = "rewriter",
173
173
  LIVE_SELECTION = "liveSelection",
174
174
  NOTIFICATION = "notification",
175
- REACTION = "reaction"
175
+ REACTION = "reaction",
176
+ ACTIVITY = "activity"
176
177
  }
177
178
  export declare enum AnalyticsFeatures {
178
179
  AREA = "area",
@@ -194,7 +195,7 @@ export declare enum AnalyticsFeatures {
194
195
  INLINE_COMMENT = "inlineComment",
195
196
  COMMENT_SIDEBAR = "commentSidebar"
196
197
  }
197
- export type FeatureType = 'area' | 'arrow' | 'audioHuddle' | 'comment' | 'cursor' | 'huddle' | 'liveStateSync' | 'presence' | 'recorder' | 'rewriter' | 'tag' | 'liveSelection' | 'notification' | 'reaction' | 'multiThread';
198
+ export type FeatureType = 'area' | 'arrow' | 'audioHuddle' | 'comment' | 'cursor' | 'huddle' | 'liveStateSync' | 'presence' | 'recorder' | 'rewriter' | 'tag' | 'liveSelection' | 'notification' | 'reaction' | 'multiThread' | 'activity';
198
199
  export type AssignToType = 'dropdown' | 'checkbox';
199
200
  export declare enum DeviceType {
200
201
  DESKTOP = "Desktop",
package/models.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from './app/utils/enums';
2
2
  export * from './app/models/data/anchor-record.data.model';
3
3
  export * from './app/models/data/attachment.model';
4
+ export * from './app/models/data/activity.data.model';
4
5
  export * from './app/models/data/area-annotation.data.model';
5
6
  export * from './app/models/data/arrow-annotation.data.model';
6
7
  export * from './app/models/data/base-metadata.data.model';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/sdk",
3
- "version": "5.0.2-beta.5",
3
+ "version": "5.0.2-beta.7",
4
4
  "description": "Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.",
5
5
  "homepage": "https://velt.dev",
6
6
  "keywords": [
package/types.d.ts CHANGED
@@ -17,4 +17,5 @@ export * from './app/models/element/notification-element.model';
17
17
  export * from './app/models/element/autocomplete-element.model';
18
18
  export * from './app/models/element/reaction-element.model';
19
19
  export * from './app/models/element/crdt-element.model';
20
+ export * from './app/models/element/activity-element.model';
20
21
  export * from './models';