@followupus/common 0.10.7 → 0.10.9
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.
package/dist/shared/audit.d.ts
CHANGED
|
@@ -1,30 +1,32 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
1
|
+
export declare const AUDIT_ACTIONS: {
|
|
2
|
+
UserSignUp: string;
|
|
3
|
+
UserLogin: string;
|
|
4
|
+
UserLogout: string;
|
|
5
|
+
UserLoginFailed: string;
|
|
6
|
+
UserSessionTimeout: string;
|
|
7
|
+
UserSessionRevocation: string;
|
|
8
|
+
UserInvitation: string;
|
|
9
|
+
CancelledUserInvitation: string;
|
|
10
|
+
AccountDeactivation: string;
|
|
11
|
+
AccountReactivation: string;
|
|
12
|
+
AccountDeletion: string;
|
|
13
|
+
OrgSecuritySettingChange: string;
|
|
14
|
+
PermissionChange: string;
|
|
15
|
+
RoleAssignment: string;
|
|
16
|
+
TreeNodeCreation: string;
|
|
17
|
+
TreeNodeRename: string;
|
|
18
|
+
TreeNodeDeletion: string;
|
|
19
|
+
TreeNodeArchiving: string;
|
|
20
|
+
TreeNodeRestoring: string;
|
|
21
|
+
TreeNodePermanentDeletion: string;
|
|
22
|
+
FileImport: string;
|
|
23
|
+
WorkspaceDataExport: string;
|
|
24
|
+
WorkspaceAuditLogExport: string;
|
|
25
|
+
ActivitiesExport: string;
|
|
26
|
+
BoardExport: string;
|
|
27
|
+
DocExport: string;
|
|
28
|
+
FileUpload: string;
|
|
29
|
+
FileDownload: string;
|
|
30
|
+
IntegrationCreation: string;
|
|
31
|
+
IntegrationDeletion: string;
|
|
32
|
+
};
|
package/dist/shared/audit.js
CHANGED
|
@@ -1,30 +1,32 @@
|
|
|
1
|
-
export const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
1
|
+
export const AUDIT_ACTIONS = {
|
|
2
|
+
UserSignUp: "UserSignUp",
|
|
3
|
+
UserLogin: "UserLogin",
|
|
4
|
+
UserLogout: "UserLogout",
|
|
5
|
+
UserLoginFailed: "UserLoginFailed",
|
|
6
|
+
UserSessionTimeout: "UserSessionTimeout",
|
|
7
|
+
UserSessionRevocation: "UserSessionRevocation",
|
|
8
|
+
UserInvitation: "UserInvitation",
|
|
9
|
+
CancelledUserInvitation: "CancelledUserInvitation",
|
|
10
|
+
AccountDeactivation: "AccountDeactivation",
|
|
11
|
+
AccountReactivation: "AccountReactivation",
|
|
12
|
+
AccountDeletion: "AccountDeletion",
|
|
13
|
+
OrgSecuritySettingChange: "OrgSecuritySettingChange",
|
|
14
|
+
PermissionChange: "PermissionChange",
|
|
15
|
+
RoleAssignment: "RoleAssignment",
|
|
16
|
+
TreeNodeCreation: "TreeNodeCreation",
|
|
17
|
+
TreeNodeRename: "TreeNodeRename",
|
|
18
|
+
TreeNodeDeletion: "TreeNodeDeletion",
|
|
19
|
+
TreeNodeArchiving: "TreeNodeArchiving",
|
|
20
|
+
TreeNodeRestoring: "TreeNodeRestoring",
|
|
21
|
+
TreeNodePermanentDeletion: "TreeNodePermanentDeletion",
|
|
22
|
+
FileImport: "FileImport",
|
|
23
|
+
WorkspaceDataExport: "WorkspaceDataExport",
|
|
24
|
+
WorkspaceAuditLogExport: "WorkspaceAuditLogExport",
|
|
25
|
+
ActivitiesExport: "ActivitiesExport",
|
|
26
|
+
BoardExport: "BoardExport",
|
|
27
|
+
DocExport: "DocExport",
|
|
28
|
+
FileUpload: "FileUpload",
|
|
29
|
+
FileDownload: "FileDownload",
|
|
30
|
+
IntegrationCreation: "IntegrationCreation",
|
|
31
|
+
IntegrationDeletion: "IntegrationDeletion",
|
|
32
|
+
};
|
package/dist/shared/delta.d.ts
CHANGED
|
@@ -10,8 +10,11 @@ export declare const DELTA_SCHEMA_NAME: {
|
|
|
10
10
|
FORMS: string;
|
|
11
11
|
WORKSPACES: string;
|
|
12
12
|
DROPDOWNS: string;
|
|
13
|
+
LINKED_COLUMNS: string;
|
|
14
|
+
LINKED_ITEMS: string;
|
|
13
15
|
TREE_NODES: string;
|
|
14
16
|
AI_USER_AGENTS: string;
|
|
17
|
+
RESOURCE_MEMBERS: string;
|
|
15
18
|
};
|
|
16
19
|
export declare const DELTA_ACTION: {
|
|
17
20
|
DELETE: string;
|
|
@@ -21,6 +24,7 @@ export declare const DELTA_ACTION: {
|
|
|
21
24
|
export declare const DELTA_ROOT_SCHEMA_NAME: {
|
|
22
25
|
USERS: string;
|
|
23
26
|
BOARDS: string;
|
|
27
|
+
APPS: string;
|
|
24
28
|
SPACES: string;
|
|
25
29
|
};
|
|
26
30
|
export interface DeltaObject {
|
package/dist/shared/delta.js
CHANGED
|
@@ -11,9 +11,11 @@ export const DELTA_SCHEMA_NAME = {
|
|
|
11
11
|
FORMS: "FORMS",
|
|
12
12
|
WORKSPACES: "WORKSPACES",
|
|
13
13
|
DROPDOWNS: "DROPDOWNS",
|
|
14
|
+
LINKED_COLUMNS: "LINKED_COLUMNS",
|
|
15
|
+
LINKED_ITEMS: "LINKED_ITEMS",
|
|
14
16
|
TREE_NODES: "TREE_NODES",
|
|
15
17
|
AI_USER_AGENTS: "AI_USER_AGENTS",
|
|
16
|
-
|
|
18
|
+
RESOURCE_MEMBERS: "RESOURCE_MEMBERS",
|
|
17
19
|
//PERMISSION_INHERIT: "PERMISSION_INHERIT",
|
|
18
20
|
};
|
|
19
21
|
export const DELTA_ACTION = {
|
|
@@ -24,6 +26,7 @@ export const DELTA_ACTION = {
|
|
|
24
26
|
export const DELTA_ROOT_SCHEMA_NAME = {
|
|
25
27
|
USERS: "USERS",
|
|
26
28
|
BOARDS: "BOARDS",
|
|
29
|
+
APPS: "APPS",
|
|
27
30
|
SPACES: "SPACES",
|
|
28
31
|
};
|
|
29
32
|
export const COMMON_INDEX_DISTANCE = 16384;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const LICENSE_CONFIG: {
|
|
2
2
|
MAX_SPACE_NUM_PER_WORKSPACE: string;
|
|
3
|
-
|
|
3
|
+
MAX_ROW_NUM_PER_BOARD: string;
|
|
4
4
|
MAX_COLUMN_NUM_PER_BOARD: string;
|
|
5
5
|
MAX_BYTES_OF_SINGLE_FILE: string;
|
|
6
6
|
MAX_BYTES_OF_FILE_PER_BOARD: string;
|
|
@@ -22,4 +22,9 @@ export declare const LICENSE_CONFIG: {
|
|
|
22
22
|
SCIM_PROVISION_ENABLE: string;
|
|
23
23
|
AUDIT_LOG_ENABLE: string;
|
|
24
24
|
};
|
|
25
|
+
export declare const CONFIG_TYPE: {
|
|
26
|
+
LICENSE_FREE: string;
|
|
27
|
+
LICENSE_TEAM: string;
|
|
28
|
+
LICENSE_BUSINESS: string;
|
|
29
|
+
};
|
|
25
30
|
export type LicenseConfigType = (typeof LICENSE_CONFIG)[keyof typeof LICENSE_CONFIG];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export const LICENSE_CONFIG = {
|
|
2
2
|
MAX_SPACE_NUM_PER_WORKSPACE: "MAX_SPACE_NUM_PER_WORKSPACE",
|
|
3
|
-
|
|
3
|
+
MAX_ROW_NUM_PER_BOARD: "MAX_ROW_NUM_PER_BOARD",
|
|
4
4
|
MAX_COLUMN_NUM_PER_BOARD: "MAX_COLUMN_NUM_PER_BOARD",
|
|
5
5
|
MAX_BYTES_OF_SINGLE_FILE: "MAX_BYTES_OF_SINGLE_FILE",
|
|
6
6
|
MAX_BYTES_OF_FILE_PER_BOARD: "MAX_BYTES_OF_FILE_PER_BOARD",
|
|
@@ -22,3 +22,8 @@ export const LICENSE_CONFIG = {
|
|
|
22
22
|
SCIM_PROVISION_ENABLE: "SCIM_PROVISION_ENABlE",
|
|
23
23
|
AUDIT_LOG_ENABLE: "AUDIT_LOG_ENABLE",
|
|
24
24
|
};
|
|
25
|
+
export const CONFIG_TYPE = {
|
|
26
|
+
LICENSE_FREE: "LICENSE",
|
|
27
|
+
LICENSE_TEAM: "LICENSE_TEAM",
|
|
28
|
+
LICENSE_BUSINESS: "LICENSE_BUSINESS",
|
|
29
|
+
};
|