@veltdev/sdk 1.0.171 → 1.0.173

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.
@@ -31,6 +31,18 @@ export declare class DocumentPaths {
31
31
  * Document Id provided by the user.
32
32
  */
33
33
  clientDocumentId?: string;
34
+ /**
35
+ * Organization Id.
36
+ */
37
+ organizationId?: string;
38
+ /**
39
+ * Client organization Id.
40
+ */
41
+ clientOrganizationId?: string;
42
+ /**
43
+ * Organization metadata path.
44
+ */
45
+ organizationMetadata?: string;
34
46
  /**
35
47
  * Group contacts path.
36
48
  */
@@ -66,7 +78,11 @@ export declare class DocumentPaths {
66
78
  /**
67
79
  * IAM (Identity and Access Management) path.
68
80
  */
69
- iam?: string;
81
+ workspaceIam?: string;
82
+ /**
83
+ * Organization IAM (Identity and Access Management) path.
84
+ */
85
+ organizationIam?: string;
70
86
  /**
71
87
  * Document IAM (Identity and Access Management) path.
72
88
  */
@@ -39,6 +39,8 @@ export declare class NotificationRawData {
39
39
  newStatus?: string;
40
40
  metadata?: DocumentMetadata & {
41
41
  apiKey?: string;
42
+ clientOrganizationId?: string;
43
+ organizationId?: string;
42
44
  } | null;
43
45
  documentUser?: DocumentUser;
44
46
  oldAccess?: string;
@@ -65,6 +67,8 @@ export declare class NotificationRawData {
65
67
  commenter?: {
66
68
  clientDocumentId: string;
67
69
  documentId: string;
70
+ clientOrganizationId?: string;
71
+ organizationId?: string;
68
72
  emails: string[];
69
73
  emailProperties: {
70
74
  url?: string;
@@ -37,6 +37,8 @@ export declare class User {
37
37
  * Original groupId provided by the user.
38
38
  */
39
39
  clientGroupId?: string;
40
+ organizationId?: string;
41
+ clientOrganizationId?: string;
40
42
  /**
41
43
  * Auto generated unique user id that is linked with your app's user ID.
42
44
  * This is needed by us for internal processing.
@@ -6,6 +6,7 @@ export declare class Constants {
6
6
  static USER_TYPE_ANONYMOUS: string;
7
7
  static USER_TYPE_SIGNED_IN: string;
8
8
  static LOCALSTORAGE_DATA_ID: string;
9
+ static FIREBASE_PARTIAL_PATH_ORGANIZATIONS: string;
9
10
  static FIREBASE_PARTIAL_PATH_DOCS: string;
10
11
  static FIREBASE_PARTIAL_PATH_PRESENCE: string;
11
12
  static FIREBASE_PARTIAL_PATH_CURSOR: string;
@@ -21,6 +22,7 @@ export declare class Constants {
21
22
  static FIREBASE_PARTIAL_PATH_GLOBAL: string;
22
23
  static FIREBASE_PARTIAL_PATH_LOGINS: string;
23
24
  static FIREBASE_PARTIAL_PATH_METADATA: string;
25
+ static FIREBASE_PARTIAL_PATH_ORGANIZATION_METADATA: string;
24
26
  static FIREBASE_PARTIAL_PATH_LOCATIONS: string;
25
27
  static FIREBASE_PARTIAL_PATH_RECORDER: string;
26
28
  static FIREBASE_PARTIAL_PATH_FOLLOW_ALONG: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/sdk",
3
- "version": "1.0.171",
3
+ "version": "1.0.173",
4
4
  "description": "",
5
5
  "main": "velt.js",
6
6
  "scripts": {