@veltdev/sdk 2.0.20 → 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
  }
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/sdk",
3
- "version": "2.0.20",
3
+ "version": "2.0.21",
4
4
  "description": "",
5
5
  "main": "velt.js",
6
6
  "scripts": {