@followupus/common 0.10.4 → 0.10.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.
@@ -0,0 +1,30 @@
1
+ export declare const UserSignUp = "UserSignUp";
2
+ export declare const UserLogin = "UserLogin";
3
+ export declare const UserLogout = "UserLogout";
4
+ export declare const UserLoginFailed = "UserLoginFailed";
5
+ export declare const UserSessionTimeout = "UserSessionTimeout";
6
+ export declare const UserSessionRevocation = "UserSessionRevocation";
7
+ export declare const UserInvitation = "UserInvitation";
8
+ export declare const CancelledUserInvitation = "CancelledUserInvitation";
9
+ export declare const AccountDeactivation = "AccountDeactivation";
10
+ export declare const AccountReactivation = "AccountReactivation";
11
+ export declare const AccountDeletion = "AccountDeletion";
12
+ export declare const OrgSecuritySettingChange = "OrgSecuritySettingChange";
13
+ export declare const PermissionChange = "PermissionChange";
14
+ export declare const RoleAssignment = "RoleAssignment";
15
+ export declare const TreeNodeCreation = "TreeNodeCreation";
16
+ export declare const TreeNodeRename = "TreeNodeRename";
17
+ export declare const TreeNodeDeletion = "TreeNodeDeletion";
18
+ export declare const TreeNodeArchiving = "TreeNodeArchiving";
19
+ export declare const TreeNodeRestoring = "TreeNodeRestoring";
20
+ export declare const TreeNodePermanentDeletion = "TreeNodePermanentDeletion";
21
+ export declare const FileImport = "FileImport";
22
+ export declare const WorkspaceDataExport = "WorkspaceDataExport";
23
+ export declare const WorkspaceAuditLogExport = "WorkspaceAuditLogExport";
24
+ export declare const ActivitiesExport = "ActivitiesExport";
25
+ export declare const BoardExport = "BoardExport";
26
+ export declare const DocExport = "DocExport";
27
+ export declare const FileUpload = "FileUpload";
28
+ export declare const FileDownload = "FileDownload";
29
+ export declare const IntegrationCreation = "IntegrationCreation";
30
+ export declare const IntegrationDeletion = "IntegrationDeletion";
@@ -0,0 +1,30 @@
1
+ export const UserSignUp = "UserSignUp";
2
+ export const UserLogin = "UserLogin";
3
+ export const UserLogout = "UserLogout";
4
+ export const UserLoginFailed = "UserLoginFailed";
5
+ export const UserSessionTimeout = "UserSessionTimeout";
6
+ export const UserSessionRevocation = "UserSessionRevocation";
7
+ export const UserInvitation = "UserInvitation";
8
+ export const CancelledUserInvitation = "CancelledUserInvitation";
9
+ export const AccountDeactivation = "AccountDeactivation";
10
+ export const AccountReactivation = "AccountReactivation";
11
+ export const AccountDeletion = "AccountDeletion";
12
+ export const OrgSecuritySettingChange = "OrgSecuritySettingChange";
13
+ export const PermissionChange = "PermissionChange";
14
+ export const RoleAssignment = "RoleAssignment";
15
+ export const TreeNodeCreation = "TreeNodeCreation";
16
+ export const TreeNodeRename = "TreeNodeRename";
17
+ export const TreeNodeDeletion = "TreeNodeDeletion";
18
+ export const TreeNodeArchiving = "TreeNodeArchiving";
19
+ export const TreeNodeRestoring = "TreeNodeRestoring";
20
+ export const TreeNodePermanentDeletion = "TreeNodePermanentDeletion";
21
+ export const FileImport = "FileImport";
22
+ export const WorkspaceDataExport = "WorkspaceDataExport";
23
+ export const WorkspaceAuditLogExport = "WorkspaceAuditLogExport";
24
+ export const ActivitiesExport = "ActivitiesExport";
25
+ export const BoardExport = "BoardExport";
26
+ export const DocExport = "DocExport";
27
+ export const FileUpload = "FileUpload";
28
+ export const FileDownload = "FileDownload";
29
+ export const IntegrationCreation = "IntegrationCreation";
30
+ export const IntegrationDeletion = "IntegrationDeletion";
@@ -3,3 +3,5 @@ export * from "./types.js";
3
3
  export * from "./delta.js";
4
4
  export * from "./currencyList.js";
5
5
  export * from './messageCategory.js';
6
+ export * from "./audit.js";
7
+ export * from "./licenseConfig.js";
@@ -3,3 +3,5 @@ export * from "./types.js";
3
3
  export * from "./delta.js";
4
4
  export * from "./currencyList.js";
5
5
  export * from './messageCategory.js';
6
+ export * from "./audit.js";
7
+ export * from "./licenseConfig.js";
@@ -0,0 +1,25 @@
1
+ export declare const LICENSE_CONFIG: {
2
+ MAX_SPACE_NUM_PER_WORKSPACE: string;
3
+ MAX_BOARD_NUM_PER_BOARD: string;
4
+ MAX_COLUMN_NUM_PER_BOARD: string;
5
+ MAX_BYTES_OF_SINGLE_FILE: string;
6
+ MAX_BYTES_OF_FILE_PER_BOARD: string;
7
+ MAX_WORKFLOW_NUM_PER_APP: string;
8
+ MAX_CONDITION_NUM_PER_WORKFLOW: string;
9
+ MAX_ACTION_NUM_PER_WORKFLOW: string;
10
+ MAX_CHAR_LENGTH_OF_ACTION_PROMPT: string;
11
+ MAX_AUTOMATION_NUM_PER_MINUTE: string;
12
+ MAX_CHAR_LENGTH_OF_DOC: string;
13
+ MAX_BYTES_OF_FILE_PER_DOC: string;
14
+ MAX_USER_NUM_PER_WORKSPACE: string;
15
+ MAX_INTEGRATION_NUM_PER_WORKSPACE: string;
16
+ MAX_BYTES_OF_STORAGE_PER_WORKSPACE: string;
17
+ DYNAMIC_VIEW_ENABLE: string;
18
+ DOMAIN_AUTH_ENABLE: string;
19
+ EXTERNAL_USER_MANAGEMENT_ENABLE: string;
20
+ SSO: string;
21
+ CLAIMED_DOMAIN_ENABLE: string;
22
+ SCIM_PROVISION_ENABLE: string;
23
+ AUDIT_LOG_ENABLE: string;
24
+ };
25
+ export type LicenseConfigType = (typeof LICENSE_CONFIG)[keyof typeof LICENSE_CONFIG];
@@ -0,0 +1,24 @@
1
+ export const LICENSE_CONFIG = {
2
+ MAX_SPACE_NUM_PER_WORKSPACE: "MAX_SPACE_NUM_PER_WORKSPACE",
3
+ MAX_BOARD_NUM_PER_BOARD: "MAX_BOARD_NUM_PER_BOARD",
4
+ MAX_COLUMN_NUM_PER_BOARD: "MAX_COLUMN_NUM_PER_BOARD",
5
+ MAX_BYTES_OF_SINGLE_FILE: "MAX_BYTES_OF_SINGLE_FILE",
6
+ MAX_BYTES_OF_FILE_PER_BOARD: "MAX_BYTES_OF_FILE_PER_BOARD",
7
+ MAX_WORKFLOW_NUM_PER_APP: "MAX_WORKFLOW_NUM_PER_APP",
8
+ MAX_CONDITION_NUM_PER_WORKFLOW: "MAX_CONDITION_NUM_PER_WORKFLOW",
9
+ MAX_ACTION_NUM_PER_WORKFLOW: "MAX_ACTION_NUM_PER_WORKFLOW",
10
+ MAX_CHAR_LENGTH_OF_ACTION_PROMPT: "MAX_CHAR_LENGTH_OF_ACTION_PROMPT",
11
+ MAX_AUTOMATION_NUM_PER_MINUTE: "MAX_AUTOMATION_NUM_PER_MINUTE",
12
+ MAX_CHAR_LENGTH_OF_DOC: "MAX_CHAR_LENGTH_OF_DOC",
13
+ MAX_BYTES_OF_FILE_PER_DOC: "MAX_BYTES_OF_FILE_PER_DOC",
14
+ MAX_USER_NUM_PER_WORKSPACE: "MAX_USER_NUM_PER_WORKSPACE",
15
+ MAX_INTEGRATION_NUM_PER_WORKSPACE: "MAX_INTEGRATION_NUM_PER_WORKSPACE",
16
+ MAX_BYTES_OF_STORAGE_PER_WORKSPACE: "MAX_BYTES_OF_STORAGE_PER_WORKSPACE",
17
+ DYNAMIC_VIEW_ENABLE: "DYNAMIC_VIEW",
18
+ DOMAIN_AUTH_ENABLE: "DOMAIN_AUTH_ENABLE",
19
+ EXTERNAL_USER_MANAGEMENT_ENABLE: "EXTERNAL_USER_MANAGEMENT_ENABLE",
20
+ SSO: "SSO",
21
+ CLAIMED_DOMAIN_ENABLE: "CLAIMED_DOMAIN_ENABLE",
22
+ SCIM_PROVISION_ENABLE: "SCIM_PROVISION_ENABlE",
23
+ AUDIT_LOG_ENABLE: "AUDIT_LOG_ENABLE",
24
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@followupus/common",
3
- "version": "0.10.4",
3
+ "version": "0.10.7",
4
4
  "description": "followup common utils npm package with TypeScript and VSCode",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",