@veltdev/sdk 2.0.19 → 2.0.21
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.
|
@@ -118,4 +118,8 @@ export declare class DocumentPaths {
|
|
|
118
118
|
customerMetadata?: string;
|
|
119
119
|
views?: string;
|
|
120
120
|
notifications?: string;
|
|
121
|
+
organizationNotifications?: string;
|
|
122
|
+
organizationNotificationsWithDocumentId?: string;
|
|
123
|
+
organizationNotificationsUsers?: string;
|
|
124
|
+
organizationNotificationsLastNotificationTimestamp?: string;
|
|
121
125
|
}
|
|
@@ -139,4 +139,38 @@ export declare class Notification {
|
|
|
139
139
|
* Notification annotation data
|
|
140
140
|
*/
|
|
141
141
|
notificationSourceData?: any;
|
|
142
|
+
/**
|
|
143
|
+
* Notification metadata
|
|
144
|
+
*/
|
|
145
|
+
metadata?: NotificationMetadata;
|
|
146
|
+
}
|
|
147
|
+
export declare class NotificationMetadata {
|
|
148
|
+
/**
|
|
149
|
+
* API Key
|
|
150
|
+
*/
|
|
151
|
+
apiKey?: string;
|
|
152
|
+
/**
|
|
153
|
+
* Client organization ID
|
|
154
|
+
*/
|
|
155
|
+
clientOrganizationId?: string;
|
|
156
|
+
/**
|
|
157
|
+
* Organization ID
|
|
158
|
+
*/
|
|
159
|
+
organizationId?: string;
|
|
160
|
+
/**
|
|
161
|
+
* Client document ID
|
|
162
|
+
*/
|
|
163
|
+
clientDocumentId?: string | number;
|
|
164
|
+
/**
|
|
165
|
+
* Document ID
|
|
166
|
+
*/
|
|
167
|
+
documentId?: string;
|
|
168
|
+
/**
|
|
169
|
+
* Location ID
|
|
170
|
+
*/
|
|
171
|
+
locationId?: number;
|
|
172
|
+
/**
|
|
173
|
+
* Location object
|
|
174
|
+
*/
|
|
175
|
+
location?: Location;
|
|
142
176
|
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -33,6 +33,8 @@ export declare class Constants {
|
|
|
33
33
|
static FIREBASE_PARTIAL_PATH_REACTION: string;
|
|
34
34
|
static FIREBASE_PARTIAL_PATH_VIEWS: string;
|
|
35
35
|
static FIREBASE_PARTIAL_PATH_NOTIFICATIONS: string;
|
|
36
|
+
static FIREBASE_PARTIAL_PATH_ORGANIZATION_NOTIFICATIONS: string;
|
|
37
|
+
static FIREBASE_PARTIAL_PATH_LAST_NOTIFICATION_TIMESTAMP: string;
|
|
36
38
|
static FIREBASE_PARTIAL_PATH_USERS: string;
|
|
37
39
|
static FIREBASE_PARTIAL_PATH_USER_REQUESTS: string;
|
|
38
40
|
static FIREBASE_PARTIAL_PATH_FEEDBACK: string;
|
|
@@ -179,6 +181,7 @@ export declare class Constants {
|
|
|
179
181
|
VELT_CHART_COMMENT: string;
|
|
180
182
|
VELT_CANVAS_COMMENT: string;
|
|
181
183
|
VELT_INLINE_COMMENTS_SECTION: string;
|
|
184
|
+
VELT_COMMENTS_MINIMAP: string;
|
|
182
185
|
VELT_HIGHLIGHT_USER_TEXT: string;
|
|
183
186
|
VELT_AUDIO_HUDDLE: string;
|
|
184
187
|
VELT_VIDEO_HUDDLE: string;
|